diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index 0751702c88..d6327f6293 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -1,11 +1,17 @@
1.23.0
------
* New block: Group
+* Add support for upload options in Gallery block
1.22.0
------
* Add support for changing images size in Gallery block
* Make inserter to show options on long-press to add before/after
+* Retry displaying image when connectivity restores
+* [iOS] Show an "Edit" button overlay on selected image blocks
+* [Android] Fix blank post when sharing media from another app
+* Add support for image size options in the gallery block
+* Fix issue that sometimes prevented merging paragraph blocks
1.21.0
------
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_audio_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_audio_block.json
new file mode 100644
index 0000000000..c3bfc5fe13
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_audio_block.json
@@ -0,0 +1,38 @@
+{
+ "name": "core/audio",
+ "category": "common",
+ "attributes": {
+ "src": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "audio",
+ "attribute": "src"
+ },
+ "caption": {
+ "type": "string",
+ "source": "html",
+ "selector": "figcaption"
+ },
+ "id": {
+ "type": "number"
+ },
+ "autoplay": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "audio",
+ "attribute": "autoplay"
+ },
+ "loop": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "audio",
+ "attribute": "loop"
+ },
+ "preload": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "audio",
+ "attribute": "preload"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_button_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_button_block.json
new file mode 100644
index 0000000000..bc35b9ff5e
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_button_block.json
@@ -0,0 +1,59 @@
+{
+ "name": "core/button",
+ "category": "layout",
+ "attributes": {
+ "url": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "a",
+ "attribute": "href"
+ },
+ "title": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "a",
+ "attribute": "title"
+ },
+ "text": {
+ "type": "string",
+ "source": "html",
+ "selector": "a"
+ },
+ "backgroundColor": {
+ "type": "string"
+ },
+ "textColor": {
+ "type": "string"
+ },
+ "customBackgroundColor": {
+ "type": "string"
+ },
+ "customTextColor": {
+ "type": "string"
+ },
+ "linkTarget": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "a",
+ "attribute": "target"
+ },
+ "rel": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "a",
+ "attribute": "rel"
+ },
+ "placeholder": {
+ "type": "string"
+ },
+ "borderRadius": {
+ "type": "number"
+ },
+ "gradient": {
+ "type": "string"
+ },
+ "customGradient": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_code_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_code_block.json
new file mode 100644
index 0000000000..d39e5f213b
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_code_block.json
@@ -0,0 +1,11 @@
+{
+ "name": "core/code",
+ "category": "formatting",
+ "attributes": {
+ "content": {
+ "type": "string",
+ "source": "text",
+ "selector": "code"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_column_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_column_block.json
new file mode 100644
index 0000000000..1d9b391731
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_column_block.json
@@ -0,0 +1,14 @@
+{
+ "name": "core/column",
+ "category": "common",
+ "attributes": {
+ "verticalAlignment": {
+ "type": "string"
+ },
+ "width": {
+ "type": "number",
+ "min": 0,
+ "max": 100
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_columns_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_columns_block.json
new file mode 100644
index 0000000000..8dc01cfafa
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_columns_block.json
@@ -0,0 +1,21 @@
+{
+ "name": "core/columns",
+ "category": "layout",
+ "attributes": {
+ "verticalAlignment": {
+ "type": "string"
+ },
+ "backgroundColor": {
+ "type": "string"
+ },
+ "customBackgroundColor": {
+ "type": "string"
+ },
+ "customTextColor" : {
+ "type": "string"
+ },
+ "textColor": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_cover_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_cover_block.json
new file mode 100644
index 0000000000..cb6a0a1c33
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_cover_block.json
@@ -0,0 +1,42 @@
+{
+ "name": "core/cover",
+ "category": "common",
+ "attributes": {
+ "url": {
+ "type": "string"
+ },
+ "id": {
+ "type": "number"
+ },
+ "hasParallax": {
+ "type": "boolean",
+ "default": false
+ },
+ "dimRatio": {
+ "type": "number",
+ "default": 50
+ },
+ "overlayColor": {
+ "type": "string"
+ },
+ "customOverlayColor": {
+ "type": "string"
+ },
+ "backgroundType": {
+ "type": "string",
+ "default": "image"
+ },
+ "focalPoint": {
+ "type": "object"
+ },
+ "minHeight": {
+ "type": "number"
+ },
+ "gradient": {
+ "type": "string"
+ },
+ "customGradient": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_file_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_file_block.json
new file mode 100644
index 0000000000..0c36a06aa9
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_file_block.json
@@ -0,0 +1,38 @@
+{
+ "name": "core/file",
+ "category": "common",
+ "attributes": {
+ "id": {
+ "type": "number"
+ },
+ "href": {
+ "type": "string"
+ },
+ "fileName": {
+ "type": "string",
+ "source": "html",
+ "selector": "a:not([download])"
+ },
+ "textLinkHref": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "a:not([download])",
+ "attribute": "href"
+ },
+ "textLinkTarget": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "a:not([download])",
+ "attribute": "target"
+ },
+ "showDownloadButton": {
+ "type": "boolean",
+ "default": true
+ },
+ "downloadButtonText": {
+ "type": "string",
+ "source": "html",
+ "selector": "a[download]"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_gallery_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_gallery_block.json
new file mode 100644
index 0000000000..0879d4af75
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_gallery_block.json
@@ -0,0 +1,74 @@
+{
+ "name": "core/gallery",
+ "category": "common",
+ "attributes": {
+ "images": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": ".blocks-gallery-item",
+ "query": {
+ "url": {
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "src"
+ },
+ "fullUrl": {
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "data-full-url"
+ },
+ "link": {
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "data-link"
+ },
+ "alt": {
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "alt",
+ "default": ""
+ },
+ "id": {
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "data-id"
+ },
+ "caption": {
+ "type": "string",
+ "source": "html",
+ "selector": ".blocks-gallery-item__caption"
+ }
+ }
+ },
+ "ids": {
+ "type": "array",
+ "items": {
+ "type": "number"
+ },
+ "default": []
+ },
+ "columns": {
+ "type": "number",
+ "minimum": 1,
+ "maximum": 8
+ },
+ "caption": {
+ "type": "string",
+ "source": "html",
+ "selector": ".blocks-gallery-caption"
+ },
+ "imageCrop": {
+ "type": "boolean",
+ "default": true
+ },
+ "linkTo": {
+ "type": "string",
+ "default": "none"
+ },
+ "sizeSlug": {
+ "type": "string",
+ "default": "large"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_group_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_group_block.json
new file mode 100644
index 0000000000..8883720bbc
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_group_block.json
@@ -0,0 +1,18 @@
+{
+ "name": "core/group",
+ "category": "layout",
+ "attributes": {
+ "backgroundColor": {
+ "type": "string"
+ },
+ "customBackgroundColor": {
+ "type": "string"
+ },
+ "textColor": {
+ "type": "string"
+ },
+ "customTextColor": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_heading_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_heading_block.json
new file mode 100644
index 0000000000..2c47b2c709
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_heading_block.json
@@ -0,0 +1,28 @@
+{
+ "name": "core/heading",
+ "category": "common",
+ "attributes": {
+ "align": {
+ "type": "string"
+ },
+ "content": {
+ "type": "string",
+ "source": "html",
+ "selector": "h1,h2,h3,h4,h5,h6",
+ "default": ""
+ },
+ "level": {
+ "type": "number",
+ "default": 2
+ },
+ "placeholder": {
+ "type": "string"
+ },
+ "textColor": {
+ "type": "string"
+ },
+ "customTextColor": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_html_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_html_block.json
new file mode 100644
index 0000000000..1a62e7c76a
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_html_block.json
@@ -0,0 +1,10 @@
+{
+ "name": "core/html",
+ "category": "formatting",
+ "attributes": {
+ "content": {
+ "type": "string",
+ "source": "html"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_image_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_image_block.json
new file mode 100644
index 0000000000..23b9ae0239
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_image_block.json
@@ -0,0 +1,73 @@
+{
+ "name": "core/image",
+ "category": "common",
+ "attributes": {
+ "align": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "src"
+ },
+ "alt": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "alt",
+ "default": ""
+ },
+ "caption": {
+ "type": "string",
+ "source": "html",
+ "selector": "figcaption"
+ },
+ "title": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "img",
+ "attribute": "title"
+ },
+ "href": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure > a",
+ "attribute": "href"
+ },
+ "rel": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure > a",
+ "attribute": "rel"
+ },
+ "linkClass": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure > a",
+ "attribute": "class"
+ },
+ "id": {
+ "type": "number"
+ },
+ "width": {
+ "type": "number"
+ },
+ "height": {
+ "type": "number"
+ },
+ "sizeSlug": {
+ "type": "string"
+ },
+ "linkDestination": {
+ "type": "string",
+ "default": "none"
+ },
+ "linkTarget": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure > a",
+ "attribute": "target"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_list_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_list_block.json
new file mode 100644
index 0000000000..71bca30f1a
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_list_block.json
@@ -0,0 +1,27 @@
+{
+ "name": "core/list",
+ "category": "common",
+ "attributes": {
+ "ordered": {
+ "type": "boolean",
+ "default": false
+ },
+ "values": {
+ "type": "string",
+ "source": "html",
+ "selector": "ol,ul",
+ "multiline": "li",
+ "__unstableMultilineWrapperTags": [ "ol", "ul" ],
+ "default": ""
+ },
+ "type": {
+ "type": "string"
+ },
+ "start": {
+ "type": "number"
+ },
+ "reversed": {
+ "type": "boolean"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_mediatext_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_mediatext_block.json
new file mode 100644
index 0000000000..eb16cddf7d
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_mediatext_block.json
@@ -0,0 +1,86 @@
+{
+ "name": "core/media-text",
+ "category": "layout",
+ "attributes": {
+ "align": {
+ "type": "string",
+ "default": "wide"
+ },
+ "backgroundColor": {
+ "type": "string"
+ },
+ "customBackgroundColor": {
+ "type": "string"
+ },
+ "mediaAlt": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure img",
+ "attribute": "alt",
+ "default": ""
+ },
+ "mediaPosition": {
+ "type": "string",
+ "default": "left"
+ },
+ "mediaId": {
+ "type": "number"
+ },
+ "mediaUrl": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure video,figure img",
+ "attribute": "src"
+ },
+ "mediaLink": {
+ "type": "string"
+ },
+ "linkDestination": {
+ "type": "string"
+ },
+ "linkTarget": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure a",
+ "attribute": "target"
+ },
+ "href": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure a",
+ "attribute": "href"
+ },
+ "rel": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure a",
+ "attribute": "rel"
+ },
+ "linkClass": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "figure a",
+ "attribute": "class"
+ },
+ "mediaType": {
+ "type": "string"
+ },
+ "mediaWidth": {
+ "type": "number",
+ "default": 50
+ },
+ "isStackedOnMobile": {
+ "type": "boolean",
+ "default": true
+ },
+ "verticalAlignment": {
+ "type": "string"
+ },
+ "imageFill": {
+ "type": "boolean"
+ },
+ "focalPoint": {
+ "type": "object"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_missing_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_missing_block.json
new file mode 100644
index 0000000000..46d9195608
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_missing_block.json
@@ -0,0 +1,16 @@
+{
+ "name": "core/missing",
+ "category": "common",
+ "attributes": {
+ "originalName": {
+ "type": "string"
+ },
+ "originalUndelimitedContent": {
+ "type": "string"
+ },
+ "originalContent": {
+ "type": "string",
+ "source": "html"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_more_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_more_block.json
new file mode 100644
index 0000000000..15cd328807
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_more_block.json
@@ -0,0 +1,13 @@
+{
+ "name": "core/more",
+ "category": "layout",
+ "attributes": {
+ "customText": {
+ "type": "string"
+ },
+ "noTeaser": {
+ "type": "boolean",
+ "default": false
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_nextpage_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_nextpage_block.json
new file mode 100644
index 0000000000..2d3ccc904e
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_nextpage_block.json
@@ -0,0 +1,4 @@
+{
+ "name": "core/nextpage",
+ "category": "layout"
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_paragraph_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_paragraph_block.json
new file mode 100644
index 0000000000..4f1d668b7c
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_paragraph_block.json
@@ -0,0 +1,44 @@
+{
+ "name": "core/paragraph",
+ "category": "common",
+ "attributes": {
+ "align": {
+ "type": "string"
+ },
+ "content": {
+ "type": "string",
+ "source": "html",
+ "selector": "p",
+ "default": ""
+ },
+ "dropCap": {
+ "type": "boolean",
+ "default": false
+ },
+ "placeholder": {
+ "type": "string"
+ },
+ "textColor": {
+ "type": "string"
+ },
+ "customTextColor": {
+ "type": "string"
+ },
+ "backgroundColor": {
+ "type": "string"
+ },
+ "customBackgroundColor": {
+ "type": "string"
+ },
+ "fontSize": {
+ "type": "string"
+ },
+ "customFontSize": {
+ "type": "number"
+ },
+ "direction": {
+ "type": "string",
+ "enum": [ "ltr", "rtl" ]
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_preformatted_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_preformatted_block.json
new file mode 100644
index 0000000000..d582451f5e
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_preformatted_block.json
@@ -0,0 +1,13 @@
+{
+ "name": "core/preformatted",
+ "category": "formatting",
+ "attributes": {
+ "content": {
+ "type": "string",
+ "source": "html",
+ "selector": "pre",
+ "default": "",
+ "__unstablePreserveWhiteSpace": true
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_pullquote_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_pullquote_block.json
new file mode 100644
index 0000000000..59784cbf56
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_pullquote_block.json
@@ -0,0 +1,30 @@
+{
+ "name": "core/pullquote",
+ "category": "formatting",
+ "attributes": {
+ "value": {
+ "type": "string",
+ "source": "html",
+ "selector": "blockquote",
+ "multiline": "p"
+ },
+ "citation": {
+ "type": "string",
+ "source": "html",
+ "selector": "cite",
+ "default": ""
+ },
+ "mainColor": {
+ "type": "string"
+ },
+ "customMainColor": {
+ "type": "string"
+ },
+ "textColor": {
+ "type": "string"
+ },
+ "customTextColor": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_quote_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_quote_block.json
new file mode 100644
index 0000000000..05b07ad5bb
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_quote_block.json
@@ -0,0 +1,22 @@
+{
+ "name": "core/quote",
+ "category": "common",
+ "attributes": {
+ "value": {
+ "type": "string",
+ "source": "html",
+ "selector": "blockquote",
+ "multiline": "p",
+ "default": ""
+ },
+ "citation": {
+ "type": "string",
+ "source": "html",
+ "selector": "cite",
+ "default": ""
+ },
+ "align": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_separator_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_separator_block.json
new file mode 100644
index 0000000000..98bcbb9150
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_separator_block.json
@@ -0,0 +1,12 @@
+{
+ "name": "core/separator",
+ "category": "layout",
+ "attributes": {
+ "color": {
+ "type": "string"
+ },
+ "customColor": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_shortcode_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_shortcode_block.json
new file mode 100644
index 0000000000..b31c213871
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_shortcode_block.json
@@ -0,0 +1,10 @@
+{
+ "name": "core/shortcode",
+ "category": "widgets",
+ "attributes": {
+ "text": {
+ "type": "string",
+ "source": "html"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_spacer_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_spacer_block.json
new file mode 100644
index 0000000000..c8240f036c
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_spacer_block.json
@@ -0,0 +1,10 @@
+{
+ "name": "core/spacer",
+ "category": "layout",
+ "attributes": {
+ "height": {
+ "type": "number",
+ "default": 100
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_subhead_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_subhead_block.json
new file mode 100644
index 0000000000..ebb48d386e
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_subhead_block.json
@@ -0,0 +1,14 @@
+{
+ "name": "core/subhead",
+ "category": "common",
+ "attributes": {
+ "align": {
+ "type": "string"
+ },
+ "content": {
+ "type": "string",
+ "source": "html",
+ "selector": "p"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_table_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_table_block.json
new file mode 100644
index 0000000000..d5e52c7de8
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_table_block.json
@@ -0,0 +1,124 @@
+{
+ "name": "core/table",
+ "category": "formatting",
+ "attributes": {
+ "hasFixedLayout": {
+ "type": "boolean",
+ "default": false
+ },
+ "backgroundColor": {
+ "type": "string"
+ },
+ "caption": {
+ "type": "string",
+ "source": "html",
+ "selector": "figcaption",
+ "default": ""
+ },
+ "head": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": "thead tr",
+ "query": {
+ "cells": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": "td,th",
+ "query": {
+ "content": {
+ "type": "string",
+ "source": "html"
+ },
+ "tag": {
+ "type": "string",
+ "default": "td",
+ "source": "tag"
+ },
+ "scope": {
+ "type": "string",
+ "source": "attribute",
+ "attribute": "scope"
+ },
+ "align": {
+ "type": "string",
+ "source": "attribute",
+ "attribute": "data-align"
+ }
+ }
+ }
+ }
+ },
+ "body": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": "tbody tr",
+ "query": {
+ "cells": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": "td,th",
+ "query": {
+ "content": {
+ "type": "string",
+ "source": "html"
+ },
+ "tag": {
+ "type": "string",
+ "default": "td",
+ "source": "tag"
+ },
+ "scope": {
+ "type": "string",
+ "source": "attribute",
+ "attribute": "scope"
+ },
+ "align": {
+ "type": "string",
+ "source": "attribute",
+ "attribute": "data-align"
+ }
+ }
+ }
+ }
+ },
+ "foot": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": "tfoot tr",
+ "query": {
+ "cells": {
+ "type": "array",
+ "default": [],
+ "source": "query",
+ "selector": "td,th",
+ "query": {
+ "content": {
+ "type": "string",
+ "source": "html"
+ },
+ "tag": {
+ "type": "string",
+ "default": "td",
+ "source": "tag"
+ },
+ "scope": {
+ "type": "string",
+ "source": "attribute",
+ "attribute": "scope"
+ },
+ "align": {
+ "type": "string",
+ "source": "attribute",
+ "attribute": "data-align"
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_textcolumns_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_textcolumns_block.json
new file mode 100644
index 0000000000..cf86b62ec5
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_textcolumns_block.json
@@ -0,0 +1,26 @@
+{
+ "name": "core/text-columns",
+ "icon": "columns",
+ "category": "layout",
+ "attributes": {
+ "content": {
+ "type": "array",
+ "source": "query",
+ "selector": "p",
+ "query": {
+ "children": {
+ "type": "string",
+ "source": "html"
+ }
+ },
+ "default": [ {}, {} ]
+ },
+ "columns": {
+ "type": "number",
+ "default": 2
+ },
+ "width": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_verse_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_verse_block.json
new file mode 100644
index 0000000000..6342361685
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_verse_block.json
@@ -0,0 +1,16 @@
+{
+ "name": "core/verse",
+ "category": "formatting",
+ "attributes": {
+ "content": {
+ "type": "string",
+ "source": "html",
+ "selector": "pre",
+ "default": "",
+ "__unstablePreserveWhiteSpace": true
+ },
+ "textAlign": {
+ "type": "string"
+ }
+ }
+}
diff --git a/bundle/android/raw/gutenberg_packages_blocklibrary_src_video_block.json b/bundle/android/raw/gutenberg_packages_blocklibrary_src_video_block.json
new file mode 100644
index 0000000000..c62179b360
--- /dev/null
+++ b/bundle/android/raw/gutenberg_packages_blocklibrary_src_video_block.json
@@ -0,0 +1,64 @@
+{
+ "name": "core/video",
+ "category": "common",
+ "attributes": {
+ "autoplay": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "autoplay"
+ },
+ "caption": {
+ "type": "string",
+ "source": "html",
+ "selector": "figcaption"
+ },
+ "controls": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "controls",
+ "default": true
+ },
+ "id": {
+ "type": "number"
+ },
+ "loop": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "loop"
+ },
+ "muted": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "muted"
+ },
+ "poster": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "poster"
+ },
+ "preload": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "preload",
+ "default": "metadata"
+ },
+ "src": {
+ "type": "string",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "src"
+ },
+ "playsInline": {
+ "type": "boolean",
+ "source": "attribute",
+ "selector": "video",
+ "attribute": "playsinline"
+ }
+ }
+}
diff --git a/bundle/android/raw/i18ncache_data_ar.json b/bundle/android/raw/i18ncache_data_ar.json
new file mode 100644
index 0000000000..3b5af0968d
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ar.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":["كبير جدًا"],"Block breadcrumb":["مسارات التنقّل للمكوّنات"],"Editor footer":["تذييل المحرّر"],"Site Title":["عنوان الموقع"],"Open Colors Selector":["فتح مُحدّد الألوان"],"Templates list":["قائمة القوالب"],"Templates list navigation":["تصفّح قائمة القوالب"],"Filter templates list":["تصّفية قائمة القوالب"],"Uploaded to this template":["المرفوعة إلى هذا القالب"],"Insert into template":["إدراج في القالب"],"Template archives":["أرشيف القالب"],"No templates found in Trash.":["لم يتم العثور على قوالب في سلة المُهملات."],"No templates found.":["لم يتم العثور على قوالب."],"Parent Template:":["القالب الأب:"],"Search Templates":["البحث في القوالب"],"All Templates":["جميع القوالب"],"View Template":["عرض القالب"],"Edit Template":["تحرير القالب"],"New Template":["قالب جديد"],"Add New Template":["إضافة قالب جديد"],"Template\u0004Add New":["أضف جديداً"],"Admin Menu text\u0004Templates":["القوالب"],"Template":["القالب"],"No matching template found":["لم يتم العثور على قوالب متطابقة"],"Gradient: %s":["التدرج: %s"],"Gradient code: %s":["رمز التدرج: %s"],"All content copied.":["تم نسخ كل المحتوى."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["فشل رفع الوسائط. إذا كانت هذه صورة أو لقطة كبيرة، فيرجى إعادة تصغيرها والمحاولة مرة أخرى."],"Gradient":["التدرج"],"Gradient Presets":["مسبقة التدرّج"],"No Preview Available.":["لا تتوفر معاينة."],"Midnight":["منتصف الليل"],"Electric grass":["أخضر مشع"],"Pale ocean":["محيط شاحب"],"Luminous dusk":["برتقالي مضيء"],"Blush bordeaux":["وردي نبيذي"],"Blush light purple":["بنفسجي متورد"],"Cool to warm spectrum":["بارد إلى طيف دافئ"],"Very light gray to cyan bluish gray":["رمادي فاتح جداً إلى أزرق سماوي رمادي"],"Luminous vivid orange to vivid red":["برتقالي فاقع إلى أحمر فاقع"],"Luminous vivid amber to luminous vivid orange":["برتقالي ناري إلى برتقالي فاقع"],"Light green cyan to vivid green cyan":["أخضر سماوي فاتح إلى أخضر سماوي حيوي"],"Vivid cyan blue to vivid purple":["أزرق سماوي حيوي إلى بنفسجي ساطع"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 ديسمبر، 2018"],"February 21, 2019":["21 فبراير، 2019"],"May 7, 2019":["7 مايو، 2019"],"Release Date":["تاريخ الإصدار"],"Jazz Musician":["موسيقار الجاز"],"Version":["النسخة"],"Six.":["ستة."],"Five.":["خمسة."],"Four.":["أربعة."],"Three.":["ثلاثة."],"Two.":["اثنان."],"One.":["واحد."],"One of the hardest things to do in technology is disrupt yourself.":["أحد أصعب الأشياء التي يمكن القيام بها في مجال التقنية هو تعطيل نفسك."],"— Kobayashi Issa (一茶)":["— كوباياشي عيسى (一茶)"],"The wren
Earns his living
Noiselessly.":["طائر النِّمنِمَة
يكتسب رزقه
بلا ضجة."],"Welcome to the wonderful world of blocks…":["أهلاً بك إلى عالم رائع من المكوّنات…"],"Snow Patrol":["دورة الثلج"],"Dimensions":["الأبعاد"],"Minimum height in pixels":["أدنى ارتفاع بالبكسل"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["في الواقع تضمين الكوكب، التي فهرست واشتدّت أن التغيرات بوابة، ومع ذلك فإنه ليس انتهاء. ضمنها للأراضي الأوروبية ذات معنى."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["حتى أبجد وإنفاذ القانون. الذي يمكن أن يعيش مع سياسات المستهلك السهام الجزر. الحوار الاقتصادي الاستراتيجي عدد صحيح بواسطة القوس، معرف لمكافأة الجائزة. حتى كرة القدم مكتب سلطة دافئة."],"Call to Action":["دعوة لاتخاذ إجراء"],"In quoting others, we cite ourselves.":["اقتباسًا من الآخرين، نستشهد بأنفسنا."],"cite":["استشهاد مقتبس"],"Mont Blanc appears—still, snowy, and serene.":["يظهر جبل مون بلان — ساكن، ثلجي، وهادئ."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["1 في قرية لامانشا، والتي لا أرغب في ذكرها، خسائر اللازمة ومطالبة حدة بل، الآخر الحلفاء واقتصّت المحور. حتى سيطرة مدن الأسطول، ثم لم يمض وقت طويل على حياة أحد هؤلاء السادة والذين يحتفظون بالرمح القديم على الرف، وترس قديم، اختراق هزيل، وكلب الصيد للتعقيب."],"Block navigation":["قائمة المكوّنات"],"Full Site Editing":["تحرير الموقع بالكامل"],"Templates to include in your theme.":["قوالب/نماذج لتضمينها في قالبك."],"Templates":["القوالب"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["يرجى التواصل مع مدير موقعك لتنصيب مكوّنات جديدة."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["لم يتم العثور على مكوّنات في مكتبتك، يرجى التواصل مع مدير موقعك لتنصيب مكوّنات جديدة."],"No blocks found in your library.":["لم يتم العثور على مكوّنات في مكتبتك."],"No blocks found in your library. These blocks can be downloaded and installed:":["لم يتم العثور على مكوّنات في مكتبتك، باستطاعتك تنزيل وتنصيب هذه المكوّنات:"],"No blocks found in your library. We did find %d block available for download.":["لم يتم العثور على مكوّنات في مكتبتك. وجدنا %d مكوّن متاح للتنزيل.","لم يتم العثور على مكوّنات في مكتبتك. وجدنا مكوّن واحد (%d) متاحًا للتنزيل.","لم يتم العثور على مكوّنات في مكتبتك. وجدنا %d مكوّن متاح للتنزيل.","لم يتم العثور على مكوّنات في مكتبتك. وجدنا %d مكوّنات متاح للتنزيل.","لم يتم العثور على مكوّنات في مكتبتك. وجدنا %d مكوّن متاح للتنزيل.","لم يتم العثور على مكوّنات في مكتبتك. وجدنا %d مكوّن متاح للتنزيل."],"Block previews can’t load.":["لا يمكن تحميل معاينات المكوّن."],"Retry":["إعادة المحاولة"],"Block previews can't install.":["لا يمكن تنصيب معاينات المكوّن."],"Updated %s":["تم تحديث %s"],"%d active installation":["لا توجد تنصيبات نشطة (%d)","%d تنصيب نشط","%d تنصيبات نشطة","%d تنصيبات نشطة","%d تنصيب نشط","%d تنصيب نشط"],"This author has %d block, with an average rating of %d.":["يحتوي هذا المؤلف على %d مكوّن، بمتوسط تقييم %d.","يحتوي هذا المؤلف على مكوّن واحد (%d)، بمتوسط تقييم %d.","يحتوي هذا المؤلف على %d مكوّن، بمتوسط تقييم %d.","يحتوي هذا المؤلف على %d مكوّنات، بمتوسط تقييم %d.","يحتوي هذا المؤلف على %d مكوّن، بمتوسط تقييم %d.","يحتوي هذا المؤلف على %d مكوّن، بمتوسط تقييم %d."],"Authored by %s":["نُشرت بواسطة %s"],"%d total rating":["إجمالي التقييم %d","إجمالي التقييم %d","إجمالي التقييمات %d","إجمالي التقييمات %d","إجمالي التقييمات %d","إجمالي التقييمات %d"],"%s out of 5 stars":["%s من 5 نجوم"],"Enter Address":["أدخل العنوان"],"Pill Shape":["شكل قرص"],"Logos Only":["شعارات فقط"],"Create a block of links to your social media or external sites":["إنشاء مكوّن لمجموعة من روابط مواقع التواصل الاجتماعي الخاصة بك أو مواقع خارجية"],"Social links":["الروابط الاجتماعية"],"Open block navigator":["فتح قائمة المكوّنات"],"Attachment page":["صفحة المرفق"],"Fill":["تعبئة"],"Link rel":["خصائص الرابط Rel"],"Border Radius":["زوايا الحدود"],"Write gallery caption…":["كتابة تسمية توضيحية للمعرض…"],"Content blocks":[],"Restore the backup":["استعادة النسخة الاحتياطية"],"The backup of this post in your browser is different from the version below.":["النسخة الاحتياطية لهذه المقالة في المتصفح الخاص بك مختلفة عن النسخة أدناه."],"Enable block directory search":[],"Block Directory":["دليل المكوّنات"],"Unable to connect to the filesystem. Please confirm your credentials.":["غير قادر على الاتصال بنظام الملفات. يرجى التأكّد من صحة بيانات الدخول."],"Sorry, you are not allowed to install blocks.":["عذرًا، غير مسموح لك بتنصيب المكوّنات."],"%1$d block is disabled.":["لم يتم تعطيل أي مكوّن.","تمّ تعطيل مكوّن واحد (%1$d).","تمّ تعطيل مكوّنان (%1$d).","تمّ تعطيل %1$d مكوّنات.","تمّ تعطيل %1$d مكوّن.","تمّ تعطيل %1$d مكوّن."],"Reverse List Numbering":["عكس قائمة الترقيم"],"Start Value":["قيمة البداية"],"Ordered list settings":[],"Clear Media":["مسح الوسائط"],"Default Style":["النمط الافتراضي"],"Not set":["لم يتم التعيين"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["استعراض المكتبة لمعرفة المزيد حول وظيفة كل مكوّن."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["هناك مكوّنات متاحة لجميع أنواع المحتوى: إدراج نصّ، عناوين رئيسية، صور، قوائم، مقاطع فيديو، جداول، وغير ذلك الكثير!"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["أهلاً بك إلى عالم المكوّنات المذهل! المكوّنات هي أساس كل المحتوى ضمن المحرر."],"Version of the content block format used by the object.":["إصدار تنسيق مكوّن المحتوى المُستخدم بواسطة الكائن."],"HTML content for the object, transformed for display.":["محتوى (HTML) الكائن، مُعد للعرض."],"Content for the object, as it exists in the database.":["محتوى الكائن، كما هو موجود في قاعدة البيانات."],"The content for the object.":["محتوى الكائن."],"Change column alignment":["تغيير محاذاة العمود"],"Align Column Right":["محاذاة العمود لليمين"],"Align Column Center":["محاذاة العمود للوسط"],"Align Column Left":["محاذاة العمود لليسار"],"Color":["اللون"],"Vivid purple":["بنفسجي ساطع"],"Disable & Reload":["تعطيل وإعادة تحميل"],"Enable & Reload":["تفعيل وإعادة تحميل"],"A page reload is required for this change. Make sure your content is saved before reloading.":["لابدّ من إعادة تحميل الصفحة لإجراء هذا التغيير، تأكّد من حفظ المحتوى قبل إعادة التحميل."],"Display these keyboard shortcuts.":["عرض اختصارات لوحة المفاتيح هذه."],"Experiments Settings":["إعدادات التجارب"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["اسم المكوّن ينبغي أن يكون سلسلة نصية."],"Custom":["مُخصص"],"Draft":["مسودة"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["لا يحتوي المكوّن \"%1$s\" على نمط مسمى \"%2$s.\"."],"Learn more about anchors":["معرفة المزيد حول روابط القفز"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["أدخل كلمة أو كلمتين — بدون مسافات — لإنشاء عنوان ويب فريد لهذا العنوان فقط، يسمى \"رابط للقفز.\" بعد ذلك، ستتمكن من الارتباط مباشرةً بهذا القسم من صفحتك."],"Widget Blocks (Experimental)":["مكوّنات الودجت (تجريبي)"],"Upload a video file, pick one from your media library, or add one with a URL.":["رفع ملف فيديو، أو اختيار فيديو من مكتبة الوسائط الخاصة بك، أو إضافة فيديو من رابط URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["رفع ملف صورة، أو اختيار صورة من مكتبة الوسائط الخاصة بك، أو إضافة صورة من رابط URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["رفع ملف صوت، أو اختيار ملف من مكتبة الوسائط الخاصة بك، أو إضافة ملف من رابط URL."],"Upload a media file or pick one from your media library.":["رفع ملف أو اختيار ملف من مكتبة الوسائط الخاصة بك."],"Skip":["تخطي"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["ما هذا؟"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["لا تدع محركات البحث تتبّع هذا الرابط."],"Provide more context about where the link goes.":["توفير المزيد من السياق حول أين يذهب الرابط."],"Title Attribute":["خصائص العنوان"],"SEO settings":[],"Description":["الوصف"],"Open in new tab":["فتح في علامة تبويب جديدة"],"links":["الروابط"],"navigation":["التنقل"],"menu":["القائمة"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["رفع ملف أو اختيار ملف من مكتبة الوسائط الخاصة بك."],"Learn more about embeds":["معرفة المزيد حول التضمينات"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["لصق رابطًا للمحتوى الذي تريد عرضه على موقعك."],"Upload an image or video file, or pick one from your media library.":["رفع ملف صورة أو فيديو، أو اختيار ملف من مكتبة الوسائط الخاصة بك."],"Three columns; wide center column":["ثلاثة أعمدة; عمود بالوسط واسع"],"Three columns; equal split":["ثلاثة أعمدة; مقسمة بالتساوي"],"Two columns; two-thirds, one-third split":["عمودين: مقسمة على ثلثين، وثلث منفصل"],"Two columns; one-third, two-thirds split":["عمودين: مقسمة ثلث، وثلثين منفصلة"],"Two columns; equal split":["عمودين; مقسمة بالتساوي"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["لا يحتوي موقعك على أي %s، لذلك لا يوجد شي لعرضه هنا في الوقت الحالي."],"More tools & options":["المزيد من الأدوات والخيارات"],"Create Table":["إنشاء جدول"],"Insert a table for sharing data.":["إدراج جدول لمشاركة بيانات."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["فكّ التجميع"],"verb\u0004Group":["تجميع"],"Separate with commas or the Enter key.":["الفصل بينها بفواصل أو مفتاح الإدخال Enter."],"Separate with commas, spaces, or the Enter key.":["الفصل بينها بفواصل، أو مسافات، أو مفتاح الإدخال Enter."],"Separate multiple classes with spaces.":["فصل الفئات المتعددة بمسافات."],"Move image forward":["تحريك الصورة للأمام"],"Move image backward":["تحريك الصورة للخلف"],"Sorry, you are not allowed to edit sidebars.":["عذرًا، غير مسموح لك تحرير الأشرطة الجانبية."],"Sorry, you are not allowed to read sidebars.":["عذرًا، غير مسموح لك قراءة الأشرطة الجانبية."],"The sidebar’s ID.":["مُعرّف الشريط الجانبي."],"Displays a set of blocks":["استعراض مجموعة من المكوّنات"],"Blocks Area":["منطقة المكوّنات"],"Block rendered as empty.":["المكوّن المقدم فارغاً"],"Inline Code":["كود مضمّن"],"Note: Autoplaying videos may cause usability issues for some visitors.":["ملاحظة: قد يؤدي تشغيل الفيديو تلقائيًا إلى مشاكل في قابلية الاستخدام لبعض الزوار."],"Footer section":["قسم التذييل"],"Header section":["قسم الترويسة"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["محتوى المقالة"],"Post content settings":[],"Percentage width":["نسبة العرض"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["ملاحظة: قد يؤدي تشغيل الصوت تلقائيًا إلى مشاكل في قابلية الاستخدام لبعض الزوار."],"Block area updated.":["تمّ تحديث منطقة المكوّن."],"Block area scheduled.":["تمّ جدولة منطقة المكوّن."],"Block area published.":["تمّ نشر منطقة المكوّن."],"Block areas list":["قائمة مناطق المكوّنات"],"Block areas list navigation":["تصفّح قائمة مناطق المكوّنات"],"Filter block areas list":["تصفية قائمة مناطق المكوّنات"],"No block area found.":["لم يتم العثور على منطقة مكوّن."],"Search Block Areas":["البحث في مناطق المكوّنات"],"All Block Areas":["جميع مناطق المكوّنات"],"View Block Area":["عرض منطقة المكوّن"],"Edit Block Area":["تحرير منطقة المكوّن"],"New Block Area":["منطقة مكوّن جديدة"],"Add New Block Area":["إضافة منطقة مكوّن جديدة"],"admin menu\u0004Block Areas":["مناطق المكوّن"],"post type singular name\u0004Block Area (Experimental)":["منطقة المكوّن (تجريبي)"],"post type general name\u0004Block Area (Experimental)":["منطقة المكوّن (تجريبي)"],"Experimental custom post type that will store block areas referenced by themes.":["نوع مقالة مخصص تجريبي، سيخزن مناطق المكوّنات المشار إليها بواسطة القوالب."],"Widgets screen content":["محتوى شاشة الودجات"],"header":[],"Widgets advanced settings":["إعدادات الودجات المتقدمة"],"(experimental)":["(تجريبي)"],"Block Areas":["مناطق المكوّن"],"Widgets screen top bar":["شريط الشاشة العلوي للودجات"],"This color combination may be hard for people to read.":["قد يكون هذا المزيج اللوني صعبًا على القرّاء."],"There is no poster image currently selected":["لا توجد صورة ملصق محددة حاليًا"],"The current poster image url is %s":["رابط صورة الملصق الحالي %s"],"section":["قسم"],"row":["row"],"wrapper":["غلاف"],"container":["حاوية"],"A block that groups other blocks.":["إضافة مكوّن يجمع مجموعة مكوّنات أخرى."],"Group":["مجموعة"],"Crop image to fill entire column":["قصّ الصورة لملء العمود بأكمله"],"Play inline":["تشغيل مضمّن"],"Leave empty if the image is purely decorative.":["اتركه فارغًا إذا كانت الصورة زخرفية أو عنصر تزيين بشكل عام."],"Describe the purpose of the image":["وصف الغرض من الصورة"],"Add a block":["إضافة مكوّن"],"Block vertical alignment setting label\u0004Change vertical alignment":["تغيير المحاذاة العمودية"],"Block vertical alignment setting\u0004Vertically Align Bottom":["محاذاة عمودية أسفل"],"Block vertical alignment setting\u0004Vertically Align Middle":["محاذاة عمودية وسط"],"Replace Image":["استبدال الصورة"],"Block vertical alignment setting\u0004Vertically Align Top":["محاذاة عمودية أعلى"],"Display a legacy widget.":["عرض ودجت مخزَّن."],"Legacy Widget (Experimental)":["ودجت مخزَّن (تجريبي)"],"Change widget":["تغيير الودجت"],"Legacy Widget":["ودجت مخزَّن"],"You don't have permissions to use widgets on this site.":["ليس لديك أذونات لاستخدام الودجات على هذا الموقع."],"Select a legacy widget to display:":["تحديد ودجت مخزَّن لعرضه:"],"There are no widgets available.":["لا توجد ودجات متاحة."],"Change block type or style":["تغيير نوع المكوّن أو التنسيق"],"keyboard key\u0004Space":["زر المسافة"],"keyboard key\u0004Backspace":["زر Backspace"],"More rich text controls":["المزيد من عناصر التحكم للنصّ"],"Search Terms":["مصطلحات البحث"],"Exit the Editor":["الخروج من المُحرر"],"Block Manager":["مدير المكوّنات"],"Class name of the widget.":["اسم فئة الودجت."],"Sorry, you are not allowed to access widgets on this site.":["عذرًا، غير مسموح لك بالوصول إلى الودجات على هذا الموقع."],"Widgets (beta)":["ودجات (تجريبي)"],"link":["رابط"],"Embedded content from %s can't be previewed in the editor.":["لا يمكن معاينة المحتوى المُضمّن من %s في المحرر."],"Custom Color":["لون مخصص"],"Prompt visitors to take action with a button-style link.":["توجيه الزوّار لاتخاذ إجراء باستخدام رابط على شكل زر."],"Stick to the top of the blog":["التثبيت بالجزء العلوي من المدونة"],"Read about permalinks":["إقرأ حول الروابط الدائمة"],"The last part of the URL.":["الجزء الأخير من الرابط."],"URL Slug":["رابط الاسم اللطيف Slug"],"A cloud of your most used tags.":["سحابة من وسومك الأكثر استخدامًا."],"Tag Cloud":["سحابة وسوم"],"Taxonomy":["فئة"],"Tag Cloud settings":[],"- Select -":["- تحديد -"],"Default":["افتراضي"],"find":["إيجاد"],"Help visitors find your content.":["مساعدة الزوار في العثور على المحتوى الخاص بك."],"Search":["بحث"],"Add button text…":["إضافة نصّ للزر…"],"Button text":["نصّ الزر"],"Optional placeholder…":["عنصر نائب اختياري…"],"Optional placeholder text":["نص عنصر نائب اختياري"],"Add label…":["إضافة تسمية…"],"Label text":["نص التسمية"],"image %1$d of %2$d in gallery":["صورة %1$d من %2$d في المعرض"],"archive":["الأرشيف"],"posts":["مقالات"],"A calendar of your site’s posts.":["إضافة تقويم لمقالات موقعك."],"Calendar":["التقويم"],"by":["بواسطة"],"An error has occurred, which probably means the feed is down. Try again later.":["حدث خطأ ما، مما يعني أن الخلاصة معطلة. حاول مرة أخرى في وقت لاحق."],"RSS Error:":["خطأ RSS:"],"block style\u0004Default":["افتراضي"],"Fullscreen mode deactivated":["تم تعطيل وضع الشاشة الكاملة"],"Fullscreen mode activated":["تمّ تفعيل وضع الشاشة الكاملة"],"Spotlight mode deactivated":["تم تعطيل وضع تسليط الضوء"],"Spotlight mode activated":["تمّ تفعيل وضع تسليط الضوء"],"Top toolbar deactivated":["تم تعطيل شريط الأدوات العلوي"],"Top toolbar activated":["تمّ تفعيل شريط الأدوات العلوي"],"Back":["رجوع"],"Feature activated":["تمّ تفعيل الميزة"],"Feature deactivated":["تم تعطيل الميزة"],"Vertical Pos.":["الوضع العمودي"],"Horizontal Pos.":["الوضع الأفقي"],"feed":["خلاصة Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["عرض الإدخالات من أي رابط خلاصة RSS أو Atom."],"RSS":["RSS"],"Max number of words in excerpt":["أقصى عدد من الكلمات في المقتطف"],"Display excerpt":["عرض المقتطف"],"Display date":["عرض التاريخ"],"Display author":["عرض الكاتب"],"RSS settings":[],"Edit RSS URL":["تحرير رابط RSS"],"Content before this block will be shown in the excerpt on your archives page.":["سيتمّ عرض المحتوى المعروض قبل هذا المكوّن في المقتطف الموجود على صفحة الأرشيفات."],"Hide the excerpt on the full content page":["إخفاء المقتطف في صفحة المحتوى الكاملة"],"The excerpt is visible.":["المقتطف مرئي."],"The excerpt is hidden.":["المقتطف مخفي."],"Sorry, this content could not be embedded.":["عذرًا، لا يمكن تضمين هذا المحتوى."],"Embed Amazon Kindle content.":["تضمين محتوى Amazon Kindle."],"ebook":["كتاب إلكتروني"],"Embed Crowdsignal (formerly Polldaddy) content.":["تضمين محتوى Crowdsignal (يعرف بـ Polldaddy سابقًا)."],"Focal Point Picker":["مُلتقط النقطة المحورية"],"Underline":["تحته خط"],"Attempt Block Recovery":["محاولة استعادة مكوّن"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["المحتوى…"],"button label\u0004Convert to link":["تحويل إلى رابط"],"button label\u0004Try again":["المحاولة مرة أخرى"],"Editor tips":["إرشادات المُحرر"],"Block (selected)":["مكوّن (مُحدد)"],"Document (selected)":["مستند (مُحدد)"],"%d word":["%d كلمة","كلمة واحدة %d","كلمتين %d","%d كلمات","%d كلمة","%d كلمة"],"Top toolbar":[],"Link Rel":["خصائص الرابط Rel"],"Link CSS Class":["فئة الرابط (CSS Class)"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["أنشئ محتوى، ثم قم بحفظه لتتمكّن أنت والمساهمين الآخرين من إعادة استخدامه عبر موقعك. حدّث المكوّن، وسيتم تطبيق التغييرات في كل مكان تم استخدام المكوّن فيه."],"To edit the featured image, you need permission to upload media.":["لتحرير الصورة البارزة، تحتاج إلى صلاحية لرفع الوسائط."],"To edit this block, you need permission to upload media.":["لتحرير هذا المكوّن، تحتاج إلى صلاحية لرفع الوسائط."],"(selected block)":["(مكوّن مُحدد)"],"Block tools":["أدوات المكوّن"],"Permalink":["الرابط الدائم"],"This image has an empty alt attribute":["تحتوي هذه الصورة على سمة alt فارغة"],"This image has an empty alt attribute; its file name is %s":["تحتوي هذه الصورة على سمة alt فارغة; اسم الملف هو %s"],"Block area reverted to draft.":["تمّ إعادة منطقة المكوّن إلى حالة المسودة."],"Block area published privately.":["تمّ نشر منطقة المكوّن بشكل خاص."],"No block areas found in Trash.":["لم يتم العثور على مناطق مكوّنات في سلة المُهملات."],"Block\u0004Add New":["أضف جديداً"],"add new on admin bar\u0004Block Area":["منطقة مكوّن"],"Link inserted.":["تمّ إدراج الرابط."],"Warning: the link has been inserted but may have errors. Please test it.":["تحذير: لقد تم إدراج الرابط ولكن قد يحتوي على أخطاء. يرجى اختبار الرابط."],"%s block selected.":["لم يتم تحديد أي مكوّن.","تمّ تحديد مكوّن واحد.","تمّ تحديد مكوّنين.","تمّ تحديد %s مكوّنات.","تمّ تحديد %s مكوّن.","تمّ تحديد %s مكوّن."],"Thumbnail":["صورة مصغرة"],"Full Size":["الحجم الكامل"],"Link selected.":["تمّ تحديد الرابط."],"Start writing with text or HTML":["ابدأ الكتابة بـ نصّ أو شفرة HTML"],"Type text or HTML":["اكتب نصًّا أو شفرة HTML"],"Block icon":["أيقونة المكوّن"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["ابدأ بالكتابة أو اكتب / لاختيار مكوّن"],"Empty block; start writing or type forward slash to choose a block":["مكوّن فارغ; ابدأ بالكتابة أو اكتب شرطة مائلة لاختيار مكوّن"],"Paragraph block":["مكوّن فقرة"],"Page Break":["فاصل الصفحة"],"Stack on mobile":["تجميع على الجوال"],"Annotation":["تعليقات توضيحية"],"Drag images, upload new ones or select files from your library.":["اسحب صورًا، ارفع صورة جديدة أو تحديد ملفات من مكتبتك."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["إصلاح"],"font size name\u0004Huge":["ضخم"],"font size name\u0004Large":["كبير"],"font size name\u0004Medium":["متوسط"],"font size name\u0004Small":["صغير"],"font size name\u0004Normal":["عادي"],"keyboard button\u0004Enter":["إدخال"],"button label\u0004Import":["استيراد"],"button label\u0004Download":["تنزيل"],"button label\u0004Embed":["تضمين"],"block title\u0004Embed":["تضمين"],"block title\u0004Classic":["تقليدي"],"block style\u0004Large":["كبير"],"block style\u0004Rounded":["دائري"],"%s (opens in a new tab)":["%s (يُفتح في علامة تبويب جديدة)"],"Link edited.":["تمّ تحرير الرابط."],"Link removed.":["تمّ إزالة الرابط."],"media":["وسائط"],"Double-check your settings before publishing.":["تحقق مجددًا من إعداداتك قبل النشر."],"Generating preview…":["تجهيز المعاينة…"],"Edit or update the image":["تحرير أو تحديث الصورة"],"Media":["وسائط"],"Navigate to the nearest toolbar.":["الانتقال إلى أقرب شريط أدوات."],"Document tools":["أدوات المستند"],"Document and block tools":["أدوات المستند والمكوّن"],"Embed a video from your media library or upload a new one.":["تضمين فيديو من مكتبة الوسائط الخاصة بك أو ارفع ملف جديد."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["إدراج بيت شِعر. استخدم تنسيقات المسافات الخاصة. أو اقتباس كلمات لقصيدة."],"Add white space between blocks and customize its height.":["إضافة مسافة بيضاء بين المكوّنات وتخصيص ارتفاعها."],"Insert additional custom elements with a WordPress shortcode.":["إدراج عناصر مخصصة إضافية باستخدام الأكواد القصيرة الخاصة بـ ووردبريس."],"Create a break between ideas or sections with a horizontal separator.":["إنشاء فاصل بين الأفكار أو الأقسام باستخدام فاصل أفقي."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["منح النصّ المقتبس تركيزاً بصرياً. \"في اقتباسات الآخرين، نحن نذكّر أنفسنا.\" — خوليو كورتاثر"],"Give special visual emphasis to a quote from your text.":["منح التركيز البصري على اقتباس من النص الخاص بك."],"Start with the building block of all narrative.":["ابدأ بناء مكوّنات لكل الحكايا."],"Separate your content into a multi-page experience.":["فصل المحتوى الخاص بك بتجربة الصفحات المتعددة."],"Set media and words side-by-side for a richer layout.":["ضبط الوسائط والكلمات جنبًا إلى جنب للحصول على تنسيق أكثر ثراءًا."],"Media & Text settings":[],"Create a bulleted or numbered list.":["إنشاء قائمة نقاط أو قائمة مرقّمة."],"Display a list of your most recent comments.":["عرض قائمة بأحدث التعليقات."],"Insert an image to make a visual statement.":["إدراج صورة من أجل جذب الانتباه."],"Add custom HTML code and preview it as you edit.":["إضافة شفرة HTML مخصصة ومعاينتها أثناء التحرير."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["تقديم أقسام جديدة وتنظيم المحتوى لمساعدة الزوّار (ومحركات البحث) لفهم بنية المحتوى الخاص بك."],"Display multiple images in a rich gallery.":["عرض صور متعددة في معرض صور ثريّ."],"Add a link to a downloadable file.":["أضف رابطًا إلى ملف قابل للتنزيل."],"Embed videos, images, tweets, audio, and other content from external sources.":["تضمين مقاطع فيديو، صور، تغريدات، صوت، ومحتويات أخرى من مصادر خارجية."],"Resize for smaller devices":["تغيير الحجم من أجل الأجهزة الصغيرة"],"This embed may not preserve its aspect ratio when the browser is resized.":["هذا التضمين قد لا يحافظ على نسبة العرض إلى الارتفاع الخاصة به عند تغيير حجم المتصفح."],"This embed will preserve its aspect ratio when the browser is resized.":["هذا التضمين سوف يحافظ على نسبة العرض إلى الارتفاع الخاصة به عند تغيير حجم المتصفح."],"Embed an Animoto video.":["تضمين فيديو Animoto."],"Embed a Vimeo video.":["تضمين فيديو Vimeo."],"Embed Flickr content.":["تضمين محتوى Flickr."],"Embed Spotify content.":["تضمين محتوى Spotify."],"Embed SoundCloud content.":["تضمين محتوى SoundCloud."],"Embed a WordPress post.":["تضمين مقالة ووردبريس."],"Embed an Instagram post.":["تضمين منشور Instagram."],"Embed a Facebook post.":["تضمين منشور فيس بوك."],"Embed a WordPress.tv video.":["تضمين فيديو WordPress.tv."],"Embed a VideoPress video.":["تضمين فيديو VideoPress."],"Embed a Tumblr post.":["تضمين منشور Tumblr."],"Embed a TED video.":["تضمين فيديو TED."],"Embed Speaker Deck content.":["تضمين محتوى Speaker Deck."],"Embed a YouTube video.":["تضمين فيديو YouTube."],"Embed SmugMug content.":["تضمين محتوى SmugMug."],"Embed Slideshare content.":["تضمين محتوى Slideshare."],"Embed Scribd content.":["تضمين محتوى Scribd."],"Embed Screencast content.":["تضمين محتوى Screencast."],"Embed ReverbNation content.":["تضمين محتوى ReverbNation."],"Embed a Reddit thread.":["تضمين موضوع Reddit."],"Embed Polldaddy content.":["تضمين محتوى Polldaddy."],"Embed Mixcloud content.":["تضمين محتوى Mixcloud."],"Embed a tweet.":["تضمين تغريدة من تويتر."],"Embed Meetup.com content.":["تضمين محتوى Meetup.com."],"Embed Kickstarter content.":["تضمين محتوى Kickstarter."],"Embed Issuu content.":["تضمين محتوى Issuu."],"Embed Imgur content.":["تضمين محتوى Imgur."],"Embed Hulu content.":["تضمين محتوى Hulu."],"Embed a Dailymotion video.":["تضمين فيديو Dailymotion."],"Embed CollegeHumor content.":["تضمين محتوى CollegeHumor."],"Embed Cloudup content.":["تضمين محتوى Cloudup."],"Add an image or video with a text overlay — great for headers.":["إضافة صورة أو فيديو، وطبقة من النص فوقها — رائعة من أجل الترويسة."],"Display code snippets that respect your spacing and tabs.":["عرض مقتطفات الشفرة الخاصة بك بطريقة تحترم المسافات وترتيب الكود."],"Use the classic WordPress editor.":["استخدام مُحرر ووردبريس التقليدي."],"Display a list of all categories.":["عرض قائمة جميع التصنيفات."],"Embed a simple audio player.":["تضمين مشغل صوت بسيط."],"noun\u0004View":["العرض"],"editor button\u0004Left to right":["محاذاة من اليسار لليمين"],"Save as Pending":["حفظ بإنتظار المراجعة"],"%s address":["عنوان %s"],"Paste or type URL":["لصق أو كتابة رابط URL"],"Insert from URL":["إدراج من رابط URL"],"Block Navigator":["قائمة المكوّنات"],"Styles":["الأنماط"],"Advanced panels":[],"Document panels":[],"General":["عام"],"Open the block navigation menu.":["فتح قائمة التنقل بين المكوّنات."],"Work without distraction":["العمل دون تشتيت الانتباه"],"Focus on one block at a time":["التركيز على مكوّن واحد أثناء التحرير"],"Access all block and document tools in a single place":["الوصول إلى جميع أدوات المكوّن والمستند في مكان واحد"],"Options":["الخيارات"],"(opens in a new tab)":["(يُفتح في علامة تبويب جديدة)"],"Minutes":["دقائق"],"Hours":["ساعات"],"Time":["الوقت"],"Year":["السنة"],"Day":["اليوم"],"December":["ديسمبر"],"November":["نوفمبر"],"October":["أكتوبر"],"September":["سبتمبر"],"August":["أغسطس"],"July":["يوليو"],"June":["يونيو"],"May":["مايو"],"April":["أبريل"],"March":["مارس"],"February":["فبراير"],"January":["يناير"],"Month":["الشهر"],"Date":["الوقت"],"Go to the first (home) or last (end) day of a week.":["الانتقال إلى أول (زرّ home) أو آخر (زرّ end) يوم في الأسبوع."],"Home/End":["Home/End"],"Home and End":["البداية والنهاية"],"Move backward (PgUp) or forward (PgDn) by one month.":["الانتقال للخلف (PgUp) أو التقدم للأمام (PgDn) خلال شهر واحد."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up و Page Down"],"Move backward (up) or forward (down) by one week.":["الانتقال للخلف (up) أو التقدم للأمام (down) خلال أسبوع واحد."],"Up and Down Arrows":["الأسهم للأعلى والأسفل"],"Move backward (left) or forward (right) by one day.":["الانتقال للخلف (left) أو التقدم للأمام (right) خلال يوم واحد."],"Left and Right Arrows":["الأسهم لليمين واليسار"],"Select the date in focus.":["تحديد التاريخ بوضع التركيز."],"Navigating with a keyboard":["التنقل باستخدام لوحة المفاتيح"],"Click the desired day to select it.":["أنقر فوق اليوم المرغوب تحديده."],"Click the right or left arrows to select other months in the past or the future.":["أنقر الأسهم اليمين أو اليسار لتحديد أشهر أخرى في الماضي أو في المستقبل."],"Click to Select":["أنقر للتحديد"],"Calendar Help":["تعليمات التقويم"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["استخدم مفاتيح الأسهم الخاصة بك لتغيير اللون الأساسي. تحرّك لأعلى لتفتيح اللون، لأسفل لجعله أغمق، وإلى اليسار لزيادة التشبع، وإلى اليمين لتقليل التشبع."],"Choose a shade":["اختيار ظل"],"Change color format":["تغيير تنسيق اللون"],"Color value in HSL":["قيمة اللون HSL"],"Color value in RGB":["قيمة اللون RGB"],"Color value in hexadecimal":["قيمة اللون برموز Hex"],"RGB mode active":["وضع RGB نشط"],"Hex color mode active":["وضع اللون Hex نشط"],"Hue/saturation/lightness mode active":["وضع تدرّج اللون/التشبّع/الإضاءة نشط"],"Move the arrow left or right to change hue.":["حرّك السهم لليسار أو اليمين لتغيير درجة اللون."],"Hue value in degrees, from 0 to 359.":["قيمة درجة اللون، من 0 إلى 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["قيمة ألفا، من 0 (شفاف) إلى 1 (معتمة بالكامل)."],"Stripes":["شرائط"],"Your site doesn’t include support for this block.":["موقعك لا يشمل الدعم لهذا المكوّن."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["لا يتضمن موقعك دعماً للمكوّن \"%s\". يمكنك ترك هذا المكوّن سليماً أو إزالته كليًا."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["لا يتضمن موقعك دعماً للمكوّن \"%s\". يمكنك ترك هذا المكوّن سليماً. أو تحويل محتواه إلى مكوّن كود HTML مخصص، أو إزالته كليًا."],"Media area":["منطقة الوسائط"],"Media & Text":["وسائط مع نصّ"],"Show media on right":["عرض الوسائط بالجهة اليمنى"],"Show media on left":["عرض الوسائط بالجهة اليسرى"],"Open in New Tab":["فتح في علامة تبويب جديدة"],"Cover":["غلاف"],"Border settings":[],"Medium":["متوسط"],"Paste URL or type to search":["ألصق رابط أو اكتب للبحث"],"Terms":["العناصر"],"Your work will be published at the specified date and time.":["سيتم نشر ماقمت بعمله في التاريخ والوقت المُحدد."],"Are you ready to schedule?":["هل أنت مستعدّ للجدولة؟"],"Always show pre-publish checks.":["عرض التحقق قبل النشر دائمًا."],"Take Over":["إستيلاء"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["هناك مستخدم آخر يعمل حاليًا على هذه الصفحة، مما يعني أنه ليس بإمكانك إجراء تغييرات، ما لم تتولى المهمة."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["يقوم %s حاليًا بالعمل على هذه الصفحة، مما يعني أنه ليس بإمكانك إجراء تغييرات، ما لم تتولى المهمة."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["هناك مستخدم آخر حاليًا لديه التحكّم لتحرير هذه الصفحة. لا تقلق، لقد تمّ حفظ تغييراتك حتى هذه اللحظة."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["يمتلك %s حاليًا التحكّم لتحرير هذه الصفحة. لا تقلق، لقد تمّ حفظ تغييراتك حتى هذه اللحظة."],"Avatar":["الصورة الرمزية Avatar"],"This post is already being edited.":["هذه الصفحة يجري تحريرها بالفعل حاليًا."],"Someone else has taken over this post.":["استولى شخص آخر على تحرير هذه الصفحة."],"This block contains unexpected or invalid content.":["يحتوي هذا المكوّن على محتوى غير متوقع أو غير صالح."],"Resolve Block":["إصلاح المكوّن"],"Convert to HTML":["تحويل إلى HTML"],"This block can only be used once.":["يُمكن استخدام هذا المكوّن لمرة واحدة فقط."],"Exit Code Editor":["الخروج من مُحرر الشفرة البرمجية"],"Editing Code":["تحرير الشفرة البرمجية"],"Solid Color":["لون كامل"],"Main Color":["اللون الرئيسي"],"HTML":["HTML"],"Write HTML…":["كتابة كود HTML…"],"Media settings":[],"Overlay":["غطاء Overlay"],"Insert Media":["إدراج وسائط"],"Reusable block imported successfully!":["تم استيراد المكوّن القابل لإعادة الاستخدام بنجاح!"],"Invalid Reusable Block JSON file":["ملف JSON غير صالح لمكوّن قابل للاستخدام"],"Invalid JSON file":["ملف JSON غير صالح"],"Import from JSON":["استيراد من JSON"],"Backtick":["فاصلة علوية مائلة Backtick"],"Period":["فترة"],"Comma":["فاصلة"],"Change type of %d block":["لم يتم تحديد مكوّنات لتغييرها","تغيير نوع مكوّن واحد","تغيير نوع مكوّنين","تغيير نوع %d مكوّنات","تغيير نوع %d مكوّن","تغيير نوع %d مكوّن"],"Current":["الحالي"],"After Conversion":["بعد التحويل"],"Change alignment":["تغيير المحاذاة"],"Change text alignment":["تغيير محاذاة النص"],"%d block":["لا توجد مكوّنات %d","مكوّن واحد %d","مكوّنين %d","%d مكوّنات","%d مكوّن","%d مكوّن"],"Forward-slash":["خط مائل"],"No archives to show.":["لا توجد أرشيفات لعرضها."],"This file is empty.":["هذا الملف فارغ."],"Sorry, this file type is not supported here.":["عذرًا، نوع الملف هذا غير مدعوم هنا."],"Manage all reusable blocks":[],"Title":["العنوان"],"Fullscreen mode":[],"Beautiful landscape":["منظر طبيعي جميل"],"Close panel":["إغلاق اللوحة"],"Convert to Classic Block":["تحويل إلى مكوّن تقليدي"],"Remove Poster Image":["إزالة صورة الملصق"],"Select Poster Image":["تحديد صورة الملصق"],"Poster Image":["صورة الملصق"],"This block is deprecated. Please use the Columns block instead.":["هذا المكوّن مُهمل. يرجى استخدام مكوّن الأعمدة بدلاً من ذلك."],"Text Columns (deprecated)":["أعمدة النص (مُهمل)"],"Create":["إنشاء"],"Row Count":["عدد الصفوف"],"Column Count":["عدد الأعمدة"],"This block is deprecated. Please use the Paragraph block instead.":["هذا المكوّن مُهمل. يرجى استخدام مكوّن الفقرة بدلاً من ذلك."],"Subheading (deprecated)":["عنوان فرعي (مُهمل)"],"blockquote":["صندوق اقتباس"],"Change the block type after adding a new paragraph.":["تغيير نوع المكوّن بعد إضافة فقرة جديدة."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["الوسوم تساعد المستخدمين ومحركات البحث بالتنقل في موقعك والعثور على المحتوى الخاص بك. أضف بعض الكلمات الدليلية الرئيسية لوصف مقالتك."],"Add tags":["إضافة وسوم"],"Apply the \"%1$s\" format.":["تطبيق التنسيق \"%1$s\" لبنية المقالة."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["يستخدم القالب الخاص بك تنسيقات بنية المقالة لإبراز أنواع مختلفة من المحتوى، مثل الصور أو مقاطع الفيديو. قم بتطبيق تنسيق بنية المقالة لترى هذا التنسيق الخاص."],"Use a post format":["استخدام بنية المقالة"],"Insert After":["إدراج بعد"],"Insert Before":["إدراج قبل"],"Move %1$d block from position %2$d down by one place":["تحريك المكوّن من الموضع %2$d للأسفل بمقدار موضع واحد","تحريك المكوّن من الموضع %2$d للأسفل بمقدار موضع واحد","تحريك المكوّنين من الموضع %2$d للأسفل بمقدار موضع واحد","تحريك %1$d مكوّنات من الموضع %2$d للأسفل بمقدار موضع واحد","تحريك %1$d مكوّن من الموضع %2$d للأسفل بمقدار موضع واحد","تحريك %1$d مكوّن من الموضع %2$d للأسفل بمقدار موضع واحد"],"Move %1$d block from position %2$d up by one place":["تحريك المكوّن من الموضع %2$d للأعلى بمقدار موضع واحد","تحريك المكوّن من الموضع %2$d للأعلى بمقدار موضع واحد","تحريك المكوّنين من الموضع %2$d للأعلى بمقدار موضع واحد","تحريك %1$d مكوّنات من الموضع %2$d للأعلى بمقدار موضع واحد","تحريك %1$d مكوّن من الموضع %2$d للأعلى بمقدار موضع واحد","تحريك %1$d مكوّن من الموضع %2$d للأعلى بمقدار موضع واحد"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["فيلم"],"Insert a new block before the selected block(s).":["إدراج مكوّن جديد قبل المكوّنات المُحددة."],"Remove the selected block(s).":["إزالة المكوّنات المُحددة."],"Duplicate the selected block(s).":["تكرار المكوّنات المُحددة."],"Block shortcuts":["اختصارات المكوّنات"],"Clear selection.":["إزالة التحديد."],"Select all text when typing. Press again to select all blocks.":["تحديد كل النص عند الكتابة. اضغط مرة أخرى لتحديد جميع المكوّنات."],"Selection shortcuts":["اختصارات التحديد"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["الإنتقال إلى الجزء السابق من المُحرر."],"Navigate to the next part of the editor.":["الانتقال إلى الجزء التالي من المُحرر."],"Show or hide the settings sidebar.":["إظهار أو إخفاء الشريط الجانبي للإعدادات."],"Redo your last undo.":["إعادة آخر تعديلاتك."],"Undo your last changes.":["تراجع عن آخر تعديلاتك."],"Save your changes.":["حفظ تعديلاتك."],"Global shortcuts":["اخنصارات عامة"],"Remove a link.":["إزالة الرابط."],"Convert the selected text into a link.":["تحويل النص المُحدد إلى رابط."],"Underline the selected text.":["وضع خط تحت النص المُحدد."],"Make the selected text italic.":["اجعل النص المُحدد مائلاً."],"Make the selected text bold.":["اجعل النص المُحدد عريضًا."],"Text formatting":["تنسيق النص"],"Insert a new block after the selected block(s).":["إدراج مكوّن جديد بعد المكوّنات المُحددة."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["شكراً لك على تجربة مُحرر Gutenberg!"],"Help build Gutenberg":["المساعدة في بناء Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["إذا كنت تريد معرفة المزيد حول كيفية بناء مكوّنات المُحرر الإضافية، أو إذا كنت مهتماً بالمساعدة في المشروع، فانتقل إلى مستودع GitHub."],"The WordPress community":["مجتمع الووردبريس"],"Code is Poetry":["الكود شعر"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["يمكنك بناء أي مكوّن تريده، ثابت أو ديناميكي، بنصّ عادي أو مزخرف وبرموز أو أيقونات خاصة. وإليك هنا مكوّن اقتباس مائل:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["يمكن لأي مكوّن أن يختار هذه المحاذاة. مكوّن التضمين لديه الأسلوب، والإستجابة لطريقة الخروج من الصندوق:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["ماسبق هو معرض صور مكوّن من صورتين فقط، إنها طريقة أسهل لإنشاء تنسيقات جذابة بصرياً، دون الاضطرار للتعامل مع موضع الصور. يمكنك أيضًا تحويل المعرض بسهولة إلى صور فردية مرة أخرى، باستخدام زر تغيير نوع المكوّن."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["لا شك! أن الصورة بعرض كامل قد تكون كبيرة جداً. لكن في بعض الأحيان تستحق الصورة ذلك."],"Accessibility is important — don’t forget image alt attribute":["إمكانية الوصول مهمة — لا تنسى ميزة النص البديل \"alt\" للصورة"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["إذا قمت بضمّ وجمع المحاذاة الجديدة واسع و عرض واسع مع المعارض، فيمكنك إنشاء تخطيط ثري جداً بالوسائط، وبسرعة كبيرة:"],"Media Rich":["وسائط ثرية"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["يمكنك تغيير عدد الأعمدة في المعارض الخاصة بك عن طريق سحب شريط التمرير من إعدادات المعرض للمكوّن في الشريط الجانبي."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["يمكن أن تكون المكوّنات أي شيء أنت بحاجة إليه. على سبيل المثال، قد ترغب في إضافة اقتباس خافت كجزء من تركيبة النص الخاص بك. أو قد تفضّل عرضها بأسلوب أكبر. كل هذه الخيارات متاحة في أداة الإدراج."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["المعلومات ذات الصلة لمصدر الاقتباس عبارة عن حقل نصّ منفصل، شبيهة بالتسميات التوضيحية أسفل الصور، لذا تتم حماية بنية الاقتباس حتى إذا قمت بتحديد المصدر أو تعديله أو إزالته. من السهل دائماً إعادة إضافته."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["يسعى المُحرر على إنشاء تجربة بناء جديدة لإنشاء الصفحات والمقالات مما يجعل كتابة المقالات الغنية بالمحتوى بجهد أقل، كما أن المُحرر الجديد الجديد لديه \"مكوّنات\" لجعل الأمر سهلاً بدلاً من الطريقة التي نقوم بها حالياً عند التحرير بالأكواد القصيرة أو إضافة شفرات HTML مخصصة أو \"أشياء أكثر غموضاً\"."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["من الفوائد الهائلة للمكوّنات أنه يمكنك تحريرها مباشرة في مكانها وسهولة معالجة المحتوى الخاص بك. يمكنك تغيير المحتوى مباشرةً بدلاً من وجود حقول لتحرير الأشياء من محتوى المقال أو الصفحة مثل: مصدر اقتباس، أو نص لزر ما. جرّب طريقة التحرير للاقتباس التالي:"],"Visual Editing":["تحرير مرئي"],"And Lists like this one of course :)":["ومثل هذه الـقوائم بالطبع :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["مكوّنات التخطيط، مثل الأزرار، صور البطل، فواصل، وغير ذلك."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["تضمين، مثل يوتيوب، تغريدات، أو مقالات ووردبريس أخرى."],"Galleries":["معارض"],"Images & Videos":["صور ومقاطع فيديو"],"Text & Headings":["نص وعناوين"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["قم بتجربتها، قد تكتشف أشياء لم تكن تعرفها من قبل يستطيع من خلالها ووردبريس أن يضيفها بالفعل إلى مقالاتك. إليك قائمة قصيرة بما يمكنك العثور عليه حاليًا:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["تخيّل أن كل ما يمكن لـ ووردبريس فعله متاح لك بسرعة، وفي المكان نفسه على واجهة التحرير. لست بحاجة إلى معرفة وسوم HTML أو الـ Classes أو تذكّر صيغة الأكواد القصيرة المعقدة. هذه هي الروح التي تكمن خلف أداة الإدراج — زر (+)
الذي ستراه بأرجاء المُحرر — والذي يسمح لك باستعراض جميع مكوّنات المحتوى المتاحة، وإضافتها إلى مقالاتك. كما يمكن للإضافات والقوالب تسجيل وإضافة المكوّنات الخاصة بها، مما سيتيح ويجعل كل أنواع وإمكانيات التحرير والنشر مفتوحة وغنية بالمحتويات."],"The Inserter Tool":["أداة الإدراج"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["جرّب تحديد التسمية التوضيحية أو إزالتها أو تعديلها، وحالياً لا يتعين عليك توخي الحذر عند تحديد الصورة أو أي نص آخر عن طريق الخطأ الذي يؤدي لفقدان بيانات العرض أو المحتوى الذي تعمل من أجله."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["إذا كان القالب الخاص بك يدعم التسميات، فسترى الزر \"عرض واسع\" على شريط أدوات الصورة. جرّبها."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["تم الاهتمام والتركيز وبعناية فائقة في طريقة التعامل مع الصور والوسائط في المُحرر الجديد. نأمل أن تجد السهولة والقوة أكثر من أي وقت سابق من ناحية إضافة تسميات توضيحية أو إدراج صورك بعرض كامل."],"A Picture is Worth a Thousand Words":["الصورة تعادل ألف كلمة"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["كذلك تعتبر العناوين مكوّنات منفصلة، والتي تساعدك في تخطيط المحتوى الخاص بك وتنظيمه."],"... like this one, which is right aligned.":["... مثل هذه الفقرة، والذي تم وضعها بمحاذاة اليمين."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["ما تقرأه الآن هو مكوّن نص وهو أكثر مكوّن بسيط بين بقية المكوّنات. مكوّن النص لديه عناصر التحكم الخاصة به ليتم نقله بحريّة بين أجزاء المقالة."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["الهدف من هذا المُحرر الجديد هو إضافة محتوى ثريّ إلى ووردبريس بشكل بسيط وممتع. تتكون هذه المقالة بالكامل من أجزاء من المحتوى— تشبه إلى حدّ ما مكعبات LEGO— التي يمكنك تحريكها والتنقل بها والتفاعل معها. حرّك المؤشر حولك وستلاحظ أن المكوّنات المختلفة تضيء مع المخططات والأسهم. اضغط على الأسهم لإعادة ضبط موضع المكوّنات بسرعة، دون خوف من فقدان المحتويات والأشياء أثناء عملية النسخ واللصق."],"Of Mountains & Printing Presses":["عبر الجبال وآلية الطباعة"],"Welcome to the Gutenberg Editor":["أهلاً بك في محرر Gutenberg"],"block name\u0004More":["المزيد"],"button to expand options\u0004More":["المزيد"],"Are you sure you want to unschedule this post?":["هل أنت متأكد من رغبتك بإلغاء جدولة هذه المقالة؟"],"Alt Text (Alternative Text)":["النص البديل"],"Reusable Block":["مكوّن قابل لإعادة الاستخدام"],"Unique identifier for the object.":["مُعرّف فريد للكائن."],"Untitled Reusable Block":["مكوّن قابل لإعادة الاستخدام بدون عنوان"],"Small":["صغير"],"Reusable":["قابل لإعادة الاستخدام"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["الاحتفاظ كـ HTML"],"Edit URL":["تحرير الرابط"],"Color settings":[],"The response is not a valid JSON response.":["الاستجابة لا تمثل رد JSON صحيح."],"Editor publish":["محرر النشر"],"Muted":["تم التجاهل"],"Video settings":[],"recent comments":["أحدث التعليقات"],"Latest Comments":["آخر التعليقات"],"Display Excerpt":["عرض المقتطف"],"Display Date":["عرض التاريخ"],"Display Avatar":["عرض الصورة الرمزية"],"Latest comments settings":[],"Number of Comments":["عدد التعليقات"],"Background Opacity":["شفافية الخلفية"],"Auto":["تلقائي"],"Preload":["تحميل مسبق"],"Audio settings":[],"Display a monthly archive of your posts.":["عرض أرشيف شهري لمقالات موقعك."],"Display as Dropdown":["عرض كقائمة منسدلة"],"Show Post Counts":["عرض عدد المقالات"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["الدعم"],"No comments to show.":["لا توجد تعليقات للعرض."],"%1$s on %2$s":["%1$s على %2$s"],"Select Post":["تحديد مقالة"],"Select Week":["تحديد الأسبوع"],"Select Day":["تحديد اليوم"],"Select Month":["تحديد الشهر"],"Select Year":["تحديد السنة"],"Archives":["الأرشيف"],"Very dark gray":["رمادي غامق جداً"],"Cyan bluish gray":["أزرق سماوي رمادي"],"Very light gray":["رمادي فاتح جداً"],"Vivid cyan blue":["أزرق سماوي حيوي"],"Pale cyan blue":["أزرق سماوي شاحب"],"Vivid green cyan":["أخضر سماوي حيوي"],"Light green cyan":["أخضر سماوي فاتح"],"Luminous vivid amber":["برتقالي ناري"],"Luminous vivid orange":["برتقالي فاقع"],"Vivid red":["أحمر فاقع"],"Pale pink":["زهري فاتح"],"Inline image":["صورة مضمنة"],"Available block types":["أنواع المكوّن المتاحة"],"Transform To:":["تحويل إلى:"],"Remove Block":["إزالة المكوّن"],"Open publish panel":["فتح لوحة النشر"],"Dots":["نقاط"],"Wide Line":["خط عريض"],"Large":["حجم كبير"],"Show download button":["عرض زر التنزيل"],"Download button settings":["إعدادات زر التنزيل"],"Link To":["رابط لـ"],"Text link settings":["إعدادات نص الرابط"],"download":[],"pdf":["pdf"],"document":["مستند"],"Copy URL":["نسخ الرابط URL"],"Write file name…":["كتابة اسم الملف…"],"File":["ملف"],"A single column within a columns block.":["عمود واحد داخل مكوّن الأعمدة."],"Column":["عمود"],"Outline":["مُحدد"],"Loop":["حلقة"],"Autoplay":["تشغيل تلقائي"],"Playback Controls":["ضوابط التشغيل"],"Close dialog":["إغلاق مربع الحوار"],"Sorry, this file type is not permitted for security reasons.":["المعذرة، نوع الملف هذا غير مسموح به لأسباب أمنية."],"Disable tips":["تعطيل التلميحات"],"Got it":["فهمت"],"See next tip":["مشاهدة التلميح التالي"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["عندما تكون جاهزاً، أرسل عملك للمراجعة، ليتمكن المحرر من الموافقة عليه نيابة عنك."],"Are you ready to submit for review?":["هل أنت مستعد للتقديم لأجل المراجعة؟"],"Replace image":["استبدال الصورة"],"Remove image":["إزالة الصورة"],"Error while uploading file %s to the media library.":["حدث خطأ أثناء تحميل الملف %s إلى مكتبة الوسائط."],"This file exceeds the maximum upload size for this site.":["يتجاوز هذا الملف الحدّ الأقصى لحجم الملفات المرفوعة لهذا الموقع."],"View the autosave":["عرض الحفظ التلقائي"],"There is an autosave of this post that is more recent than the version below.":["هناك حفظ تلقائي لهذه المقالة أحدث من النسخة أدناه."],"Autosaving":["حفظ تلقائي"],"Enter URL here…":["أدخل عنوان الرابط هنا…"],"Pin to toolbar":["التثبيت إلى شريط الأدوات"],"Unpin from toolbar":["إلغاء التثبيت من شريط الأدوات"],"Insert a table — perfect for sharing charts and data.":["إدراج جدول — مثالي لمشاركة الرسوم البيانية والبيانات."],"Fixed width table cells":["خلايا الجدول ذات عرض ثابت"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["إضافة نص يحترم الفراغات وعلامات التبويب الخاصة بك، كما يسمح أيضًا بالأنماط."],"Display a list of your most recent posts.":["عرض قائمة بأحدث مشاركاتك."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["إضافة مكوّن يعرض محتوى تم سحبه من مواقع أخرى، مثل Twitter أو Instagram أو YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["أضف مكوّن يعرض المحتوى في أعمدة متعددة، ثم أضف أي محتوى تريده."],"Error loading block: %s":["خطأ في تحميل المكوّن: %s"],"Unknown error":["خطأ غير معروف"],"Embed Handler":["تضمين معالج"],"term\u0004Remove %s":["إزالة %s"],"Copy the permalink":["نسخ الرابط الدائم"],"Permalink copied":["تم نسخ الرابط الدائم"],"Height in pixels":["الارتفاع بالبكسل"],"Spacer settings":[],"Spacer":["فراغ فاصل"],"Toggle to show a large initial letter.":["تبديل لعرض أول حرف عند بداية الفقرة بشكل كبير."],"Showing large initial letter.":["يُعرض الحرف الأول كبيرًا."],"Name:":["الاسم:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s من %3$s)"],"Remove item":["إزالة العنصر"],"Color code: %s":["رمز اللون: %s"],"Skip to the selected block":["التخطي إلى المكوّن المُحدد"],"Publish…":["نشر…"],"Schedule…":["جدولة…"],"Edit post permalink":["تحرير الرابط الدائم للمقالة"],"Show Block Settings":["إظهار إعدادات المكوّن"],"Hide Block Settings":["إخفاء إعدادات المكوّن"],"Block settings closed":["تم إغلاق إعدادات المكوّن"],"Close plugin":["إغلاق الإضافة"],"Editor settings":["إعدادات المحرر"],"Link settings":["إعدادات الرابط"],"Unlink":["إزالة الربط"],"Page break":["فاصل الصفحة"],"pagination":["تعدد الصفحات"],"next page":["الصفحة التالية"],"Image Size":["حجم الصورة"],"Height":["الارتفاع"],"Width":["العرض"],"Image Dimensions":["أبعاد الصورة"],"Thumbnails are not cropped.":["الصور المصغرة غير مقصوصة."],"Thumbnails are cropped to align.":["يتم اقتصاص الصور المصغّرة لضبط المحاذاة."],"Media Library":["مكتبة الوسائط"],"Advanced":["متقدم"],"Add item":["إضافة عنصر"],"Reset the template":["إعادة تعيين القالب"],"Keep it as is":["ابقها كما هي"],"The content of your post doesn’t match the template assigned to your post type.":["لا يتطابق محتوى مقالتك مع القالب المخصص لهذا النوع من المقالات الخاصة بك."],"Resetting the template may result in loss of content, do you want to continue?":["إعادة تعيين القالب قد يؤدي إلى فقدان المحتوى، هل تريد المتابعة؟"],"Document Statistics":["إحصائيات المستند"],"is now scheduled. It will go live on":["لقد تمت الجدولة. سيتم النشر في"],"Scheduled":["مجدول"],"Scheduling…":["جاري الجدولة..."],"Code editor selected":["مُحرر الشفرة البرمجية المُحدد"],"Visual editor selected":["المحرر المرئي المُحدد"],"Plugins":["الإضافات"],"Custom Size":["حجم مخصص"],"Layout elements":[],"term\u0004%s removed":["تمّ إزالة %s"],"term\u0004%s added":["تمّ إضافة %s"],"imperative verb\u0004Preview":["معاينة"],"Block deleted.":["تم حذف المكوّن."],"Block updated.":["تم تحديث المكوّن."],"Block created.":["تم إنشاء المكوّن."],"Trashing failed":[" فشلت عملية الحذف"],"Updating failed.":["فشلت عملية التحديث."],"Scheduling failed.":["فشلت عملية الجدولة."],"Publishing failed.":["فشلت عملية النشر."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["لديك تعديلات غير محفظة. في حال المتابعة، سوف تلغى التعديلات."],"Document Outline":["ملخص عناوين المستند"],"Paragraphs":["فقرات"],"Headings":["عناوين"],"Words":["أحرف"],"Content structure":["بنية المحتوى"],"Public":["عام"],"Protected with a password you choose. Only those with the password can view this post.":["محمي بكلمة مرور قمت باختيارها. ستظهر الصفحة لمن يملك كلمة المرور فقط."],"Password Protected":["محمي بكلمة مرور"],"Only visible to site admins and editors.":["تظهر فقط لمدراء الموقع والمحررين."],"Private":["خاص"],"Visible to everyone.":["مرئي للجميع."],"Post Visibility":["حالة الظهور"],"Would you like to privately publish this post now?":["هل تودّ نشر هذه المقالة الآن بصورة خاصة؟"],"Use a secure password":["استخدم كلمة مرور آمنة"],"Create password":["إنشاء كلمة مرور"],"Move to Trash":["نقل إلى سلة المُهملات"],"Parent Term":["العنصر الرئيسي"],"Parent Category":["التصنيف الأب"],"Add new term":["إضافة عنصر جديد"],"Add new category":["إضافة تصنيف جديد"],"Term":["عنصر"],"Tag":["وسم"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["هل أنت متأكد من أنك تريد إلغاء نشر هذا المقال؟"],"Immediately":["فوراً"],"Save Draft":["حفظ المسودة"],"Saving":["جاري الحفظ"],"Publish:":["نشر:"],"Visibility:":["الظهور:"],"Are you ready to publish?":["هل أنت مُستعد للنشر؟"],"Copy Link":["نسخ الرابط"],"What’s next?":["ما هو التالي؟"],"is now live.":["تمّ نشره الآن."],"Published":["منشور"],"Schedule":["جدولة"],"Update":["تحديث"],"Submit for Review":["إرسال للمراجعة"],"Updating…":["جاري التحديث…"],"Publishing…":["جاري النشر…"],"Allow pingbacks & trackbacks":[],"Permalink:":["الرابط الدائم:"],"Pending review":[],"%d Revision":["%d مراجعات","%d مراجعة","%d مراجعتان","%d مراجعات","%d مراجعة","%d مراجعة"],"Suggestion:":["اقتراح:"],"Post Format":["بنية المقالة"],"Chat":["محادثة"],"Status":["الحالة"],"Standard":["قياسي"],"Aside":["الجانب"],"Featured image":["الصورة البارزة"],"Set featured image":[],"Learn more about manual excerpts":["تعلم المزيد حول المقتطفات اليدوية"],"Write an excerpt (optional)":["كتابة مقتطف (اختياري)"],"Allow comments":[],"Template:":["القالب:"],"no parent":["لا توجد صفحة أساسية"],"no title":["بلا عنوان"],"Order":["ترتيب"],"No blocks found.":["لم يتم العثور على مكوّنات."],"%d result found.":["لم يتم العثور على نتائج.","تم العثور على نتيجة واحدة.","تم العثور على نتيجتين.","تم العثور على %d نتائج.","تم العثور على %d نتيجة.","تم العثور على %d نتيجة."],"Saved":["تم الحفظ"],"Embeds":["التضمينات"],"Blocks":["مكوّنات"],"Search for a block":["البحث عن مكوّن"],"Add block":["إضافة مكوّن"],"Copy Error":["خطأ في النسخ"],"Copy Post Text":["نسخ نص المقالة"],"Attempt Recovery":["محاولة الاسترداد"],"The editor has encountered an unexpected error.":["واجه المحرر خطأ غير متوقع."],"Undo":["تراجع"],"Redo":["إعادة"],"(Multiple H1 headings are not recommended)":["(لا يوصى بالعناوين H1 المتعددة)"],"(Your theme may already use a H1 for the post title)":["(القالب الخاص بك قد يستخدم بالفعل عنوان H1 لعنوان هذه المقالة)"],"(Incorrect heading level)":["(مستوى العنوان غير صحيح)"],"(Empty heading)":["(عنوان فارغ)"],"Block Styles":["أنماط المكوّن"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["هل أنت متأكد من أنك تريد حذف هذا القسم الذي يمكنك إعادة استخدامه؟\n\nسيتم إزالتها نهائياً من جميع المقالات والصفحات التي تستخدمها."],"Convert to Regular Block":["تحويل إلى مكوّن عادي"],"More options":["مزيد من الخيارات"],"Edit visually":["تحرير بشكل مرئي"],"Duplicate":["تكرار"],"Blocks cannot be moved down as they are already at the bottom":["لا يمكن نقل المكوّنات إلى أسفل لأنها بالفعل بالأسفل"],"Blocks cannot be moved up as they are already at the top":["لا يمكن نقل المكوّنات إلى أعلى لأنها بالفعل بالأعلى"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["المكوّن %s هو المكوّن الوحيد، ولا يمكن تحريكه"],"Edit as HTML":["تحرير كـ HTML"],"Convert to Blocks":["تحويل إلى مكوّنات"],"Block: %s":["المكوّن: %s"],"This block has encountered an error and cannot be previewed.":["لقد واجه هذه المكوّن خطأ ولا يمكن معاينته."],"No block selected.":["لم يتم تحديد أي مكوّن."],"Transform into:":["تحويل إلى:"],"Remove":["إزالة"],"Find original":["البحث عن الأصل"],"Copy all content":[],"Copied!":["تم النسخ!"],"Additional settings are now available in the Editor block settings sidebar":["إعدادات إضافية متاحة الآن في إعدادات محرر المكوّنات ضمن الشريط الجانبي"],"Visibility":["الظهور"],"Status & visibility":[],"Page attributes":[],"Block":["المكوّن"],"Document":["المستند"],"Close settings":["إغلاق الإعدادات"],"Editor content":["محتوى المحرر"],"Tools":["أدوات"],"Editor":["المُحرر"],"Code editor":[],"Visual editor":[],"Editor top bar":["شريط أدوات المحرر العلوي"],"Settings":["الإعدادات"],"Reset":["إعادة تعيين"],"Dismiss this notice":["إخفاء هذه الملاحظة"],"Item removed.":["تمّ إزالة العنصر."],"Item added.":["تمّ إضافة العنصر."],"Drop files to upload":["أسقط الملفات للتحميل"],"PM":["مساءً"],"AM":["صباحًا"],"An unknown error occurred.":["حصل خطأ غير معروف."],"No results.":["لا توجد نتائج."],"%d result found, use up and down arrow keys to navigate.":["لم يتم العثور على نتائج.","تم العثور على نتيجة واحدة.","تم العثور على نتيجتين، استخدم مفاتيح الأسهم للأعلى والأسفل للتنقل.","تم العثور على %d نتائج، استخدم مفاتيح الأسهم للأعلى والأسفل للتنقل.","تم العثور على %d نتيجة، استخدم مفاتيح الأسهم للأعلى والأسفل للتنقل.","تم العثور على %d نتيجة، استخدم مفاتيح الأسهم للأعلى والأسفل للتنقل."],"(no title)":["(بلا عنوان)"],"URL":["رابط الـ"],"Submit":["إرسال"],"Close":["إغلاق"],"Insert link":["إدراج رابط"],"Edit link":["تحرير الرابط"],"Link":["رابط"],"Strikethrough":["نصّ مشطوب"],"Italic":["مائل"],"Bold":["خط عريض"],"Remove link":["إزالة الرابط"],"Number of items":["عدد العناصر"],"All":["الكل"],"Category":["تصنيف"],"Z → A":["ي ← أ"],"A → Z":["أ ← ي"],"Oldest to Newest":["الأقدم الى الأحدث"],"Newest to Oldest":["الأحدث الى الأقدم"],"Order by":["الترتيب حسب"],"Select":["تحديد"],"Select or Upload Media":["تحديد أو رفع وسائط"],"Video":["فيديو"],"Write…":["كتابة…"],"poetry":["الشِعر"],"Verse":["بيت شعر/عبارة"],"New Column":["عمود جديد"],"Delete Column":["حذف العمود"],"Add Column After":["إضافة عمود بعد"],"Add Column Before":["إضافة عمود قبل"],"Delete Row":["حذف الصف"],"Add Row After":["إضافة صف بعد"],"Add Row Before":["إضافة صف قبل"],"Edit table":["تحرير الجدول"],"Table":["جدول"],"Write subheading…":["كتابة عنوان فرعي…"],"Write shortcode here…":["كتابة الكود القصير هنا…"],"Shortcode":["كود قصير"],"divider":["مُقسّم"],"horizontal-line":["خط أفقي"],"Separator":["فاصل"],"Quote":["اقتباس"],"Write citation…":["كتابة اقتباس…"],"Write quote…":["كتابة اقتباس..."],"Pullquote":["اقتباس مائل"],"Write preformatted text…":["كتابة نص مهيأ مسبقًا…"],"Preformatted":["مهيأ مسبقا"],"text":["نص"],"Paragraph":["فقرة"],"Font Size":["حجم الخط"],"Drop Cap":["الحرف الكبير"],"Text settings":[],"Read more":["اقرأ المزيد"],"Write list…":["كتابة قائمة…"],"numbered list":["قائمة مرقّمة"],"ordered list":["قائمة مرتبة"],"bullet list":["قائمة النقاط"],"Indent list item":["أضف مسافة بادئة لعنصر القائمة"],"Outdent list item":["تحريك عنصر القائمة"],"Convert to ordered list":["تحويل إلى قائمة مرقّمة"],"Convert to unordered list":["تحويل إلى قائمة نقطية"],"List":["قائمة"],"recent posts":["أحدث المقالات"],"No posts found.":["لم يتم العثور على مقالات."],"Latest Posts":["آخر المقالات"],"Display post date":["عرض تاريخ النشر"],"Grid view":["عرض شبكي"],"List view":["عرض القائمة"],"photo":["صورة"],"Image settings":[],"Image":["صورة"],"Preview":["معاينة"],"embed":["تضمين"],"Custom HTML":["HTML مخصص"],"subtitle":["عنوان فرعي"],"title":["العنوان"],"Heading":["عنوان"],"Write heading…":["كتابة عنوان…"],"Heading %d":["العنوان %d"],"Level":["المستوى"],"Heading settings":[],"photos":["صور"],"images":["الصور"],"None":["بدون"],"Media File":["ملف الوسائط"],"Attachment Page":["صفحة المرفق"],"Link to ":[],"Crop Images":["اقتصاص الصور"],"Gallery settings":[],"Gallery":["معرض"],"Classic":["تقليدي"],"video":["فيديو"],"audio":["صوتيات"],"music":["موسيقى"],"image":["صورة"],"blog":["مدونة"],"post":["المقالة"],"Embedded content from %s":["محتوى مضمّن من %s"],"Enter URL to embed here…":["أدخل الرابط لتضمينه هنا..."],"%s URL":["الرابط %s"],"Embedding…":["تضمين…"],"Write title…":["كتابة عنوان…"],"Fixed Background":["خلفية ثابتة"],"Edit image":["تحرير الصورة"],"Columns":["أعمدة"],"Experiments":["التجارب"],"Code":["كود"],"Write code…":["كتابة كود…"],"Categories":["تصنيفات"],"Show Hierarchy":["إظهار التسلسل الهرمي"],"Show post counts":["عرض عدد المقالات"],"Categories settings":[],"Add text…":["إضافة نص…"],"Button":["زر"],"Apply":["تطبيق"],"Text Color":["لون الخط"],"Background Color":["لون الخلفية"],"Block has been deleted or is unavailable.":["لقد تم حذف المكوّن أو أنه غير متاح."],"Reusable blocks":[],"Cancel":["إلغاء"],"Edit":["تحرير"],"Write caption…":["كتابة تسمية توضيحية…"],"Use URL":["استخدام رابط URL"],"Audio":["صوت"],"Upload":["رفع"],"Additional CSS Class(es)":["وضع فئة CSS Class إضافي"],"HTML Anchor":["رابط القفز HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["قد يكون من الصعب قراءة تركيبة الألوان هذه. جرب استخدام لون خلفية أكثر إشراقاً و/أو لون نص داكن."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["قد يكون من الصعب قراءة تركيبة الألوان هذه. جرب استخدام لون خلفية أكثر إشراقاً و/أو لون نص داكن."],"Clear":["مسح"],"Custom color picker":["ملتقط اللون المُخصص"],"Color: %s":["اللون: %s"],"Full width":[],"Wide width":[],"Widgets":["ودجات"],"Formatting":["التنسيق"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["الطباعة منذ 1440. هذه هي إضافة التطوير من أجل محرر المكوّنات الجديد في نواة ووردبريس."],"Add title":["إضافة عنوان"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["يتطلب وضع تطوير إضافة Gutenberg إنشاء بعض الملفات. قم بتشغيل npm install
لتنصيب التبعيات npm run build
لبناء الملفات أو npm run dev
لبناء الملفات ومشاهدة التغييرات. يرجى قراءة ملف كيفية المساهمة للمزيد من المعلومات."],"Author":["كاتب"],"Slug":["الاسم اللطيف"],"Discussion":["مناقشة"],"Custom fields":[],"Excerpt":["المقتطف"],"Publish":["نشر"],"Metadata":["البيانات الوصفية"],"Save":["حفظ"],"Documentation":["وثائق المساعدة"],"Select Category":["تحديد التصنيف"],"(Untitled)":["(بدون عنوان)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["تتطلب إضافة Gutenberg إصدار ووردبريس %s أو أحدث لتعمل بشكل صحيح. يرجى ترقية ووردبريس قبل تفعيل إضافة Gutenberg."],"Gutenberg Team":["فريق Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["عرض توضيحي"],"%s ago":["قبل %s"],"Block style name must be a string.":["يجب أن يحتوي اسم نمط المكوّن على أحرف فقط."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_bg.json b/bundle/android/raw/i18ncache_data_bg.json
new file mode 100644
index 0000000000..009efb6357
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_bg.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":["Грешка при отваряне на хранилката. Вероятно за момента не работи, опитайте скоро пак."],"RSS Error:":["Грешка в RSS:"],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":["Назад"],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":["RSS "],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":["Подчертан"],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":["Блок (избран)"],"Document (selected)":["Документ (избран)"],"%d word":["%d дума","%d думи"],"Top toolbar":[],"Link Rel":["rel атрибут"],"Link CSS Class":["Свързване на CSS клас"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Създайте съдържание и го запазете, за да може да се преизползва от вас и другите потребители в сайта ви. Обновете блока и промените ще се отразят навсякъде, където е използва."],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":["(избран блок)"],"Block tools":["Блок инструменти"],"Permalink":["Постоянна връзка"],"This image has an empty alt attribute":["Снимката има празен alt атрибут"],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":["Връзката е добавена."],"Warning: the link has been inserted but may have errors. Please test it.":["Внимание: Връзката е добавена, но може да съдържа грешки. Проверете я."],"%s block selected.":["Избран е %s блок.","Избрани са %s блока."],"Thumbnail":["Умалена картинка"],"Full Size":["Пълен размер"],"Link selected.":["Връзката е избрана."],"Start writing with text or HTML":["Започнете да пишете текст или HTML"],"Type text or HTML":[],"Block icon":["Блок икона"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Започнете да пишете или напишете / за да изберете блок "],"Empty block; start writing or type forward slash to choose a block":["Празен блок; започнете да пишете или натиснете наклонена напред черта, за да изберете блок"],"Paragraph block":["Блок за абзац"],"Page Break":["Разделител на страницата"],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":["Импортиране"],"button label\u0004Download":["Изтегляне"],"button label\u0004Embed":["Вграждане"],"block title\u0004Embed":[],"block title\u0004Classic":["Класически"],"block style\u0004Large":["Голям"],"block style\u0004Rounded":[],"%s (opens in a new tab)":["%s (отваря се в нов подпрозорец)"],"Link edited.":["Връзката е променена."],"Link removed.":["Връзката е премахната."],"media":["медия"],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":["Медия"],"Navigate to the nearest toolbar.":["Преместване до най-близката лента с инструменти."],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":["Вградете видео от файловата библиотека или качете ново."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Въведете поезия. Използвайте специални формати за отстояние. Или цитирайте текст на песен."],"Add white space between blocks and customize its height.":["Добавете празно място между блоковете и променете височината му."],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":["Добавете връзка към файла за изтегляне."],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":["Оразмеряване за по-малки устройства"],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":["Вграждане на видео от WordPress.tv."],"Embed a VideoPress video.":["Вграждане на видео от VideoPress."],"Embed a Tumblr post.":["Вграждане на публикация от Tumblr."],"Embed a TED video.":["Вграждане на видео от TED."],"Embed Speaker Deck content.":["Вграждане на съдържание от Speaker Deck."],"Embed a YouTube video.":[],"Embed SmugMug content.":["Вграждане на съдържание от SmugMug."],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":["Показване на списък с всички категории."],"Embed a simple audio player.":["Вградете обикновен аудио плейър."],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":["Обложка"],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],"Backtick":[],"Period":[],"Comma":[],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":["Заглавие"],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],"Small":[],"Reusable":[],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":[],"Edit URL":[],"Color settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],"Muted":[],"Video settings":[],"recent comments":[],"Latest Comments":[],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest comments settings":[],"Number of Comments":[],"Background Opacity":[],"Auto":[],"Preload":[],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":[],"Support":[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],"Archives":[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],"Dots":[],"Wide Line":[],"Large":[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],"download":[],"pdf":[],"document":[],"Copy URL":[],"Write file name…":[],"File":[],"A single column within a columns block.":[],"Column":[],"Outline":[],"Loop":[],"Autoplay":[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":[],"Enter URL here…":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish…":[],"Schedule…":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Editor settings":[],"Link settings":[],"Unlink":[],"Page break":[],"pagination":[],"next page":[],"Image Size":[],"Height":[],"Width":[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],"Advanced":[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],"Scheduled":[],"Scheduling…":[],"Code editor selected":[],"Visual editor selected":[],"Plugins":[],"Custom Size":[],"Layout elements":[],"term\u0004%s removed":[],"term\u0004%s added":[],"imperative verb\u0004Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],"Paragraphs":[],"Headings":[],"Words":[],"Content structure":[],"Public":[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],"Private":[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],"Term":[],"Tag":[],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":[],"Immediately":[],"Save Draft":[],"Saving":[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What’s next?":[],"is now live.":[],"Published":[],"Schedule":[],"Update":[],"Submit for Review":[],"Updating…":[],"Publishing…":[],"Allow pingbacks & trackbacks":[],"Permalink:":[],"Pending review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],"Chat":[],"Status":[],"Standard":[],"Aside":[],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow comments":[],"Template:":[],"no parent":[],"no title":["няма заглавие"],"Order":[],"No blocks found.":[],"%d result found.":[],"Saved":[],"Embeds":[],"Blocks":[],"Search for a block":[],"Add block":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],"Undo":[],"Redo":[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],"Remove":[],"Find original":[],"Copy all content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":[],"Status & visibility":[],"Page attributes":[],"Block":[],"Document":[],"Close settings":[],"Editor content":[],"Tools":[],"Editor":[],"Code editor":[],"Visual editor":[],"Editor top bar":[],"Settings":[],"Reset":[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],"PM":[],"AM":[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],"URL":[],"Submit":[],"Close":[],"Insert link":[],"Edit link":[],"Link":[],"Strikethrough":[],"Italic":[],"Bold":[],"Remove link":[],"Number of items":[],"All":[],"Category":[],"Z → A":[],"A → Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],"Select":[],"Select or Upload Media":[],"Video":[],"Write…":[],"poetry":[],"Verse":[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],"Table":[],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":[],"horizontal-line":[],"Separator":[],"Quote":["Цитат"],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":[],"Preformatted":[],"text":[],"Paragraph":[],"Font Size":[],"Drop Cap":[],"Text settings":[],"Read more":[],"Write list…":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],"List":[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],"photo":[],"Image settings":[],"Image":[],"Preview":[],"embed":[],"Custom HTML":[],"subtitle":["подзаглавие"],"title":[],"Heading":["Заглавие"],"Write heading…":[],"Heading %d":[],"Level":[],"Heading settings":[],"photos":[],"images":[],"None":[],"Media File":[],"Attachment Page":[],"Link to ":[],"Crop Images":[],"Gallery settings":[],"Gallery":["Галерия"],"Classic":[],"video":[],"audio":[],"music":[],"image":[],"blog":[],"post":[],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":[],"Embedding…":[],"Write title…":[],"Fixed Background":[],"Edit image":[],"Columns":[],"Experiments":[],"Code":[],"Write code…":[],"Categories":[],"Show Hierarchy":[],"Show post counts":[],"Categories settings":[],"Add text…":[],"Button":[],"Apply":[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable blocks":[],"Cancel":[],"Edit":[],"Write caption…":[],"Use URL":[],"Audio":[],"Upload":[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":[],"Custom color picker":[],"Color: %s":[],"Full width":[],"Wide width":[],"Widgets":[],"Formatting":[],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Добавяне на заглавие"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":[],"Slug":[],"Discussion":[],"Custom fields":[],"Excerpt":[],"Publish":[],"Metadata":[],"Save":[],"Documentation":[],"Select Category":[],"(Untitled)":[],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":[],"https://github.com/WordPress/gutenberg":[],"Gutenberg":[],"Demo":[],"%s ago":[],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_bo.json b/bundle/android/raw/i18ncache_data_bo.json
new file mode 100644
index 0000000000..ddaecead5f
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_bo.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":["འགྲེམས་སྟོན་སྒྲིག་འགོད།"],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":["2018 ལོའི་ཟླ 12 ཚེས 6 ཉིན།"],"February 21, 2019":["2019 ལོའི་ཟླ 2 ཚེས 21 ཉིན།"],"May 7, 2019":["2019 ལོའི་ཟླ 5 ཚེས 7 ཉིན།"],"Release Date":["འགྲེམ་སྤེལ་ཟླ་ཚེས།"],"Jazz Musician":["ཇཱཛ་རོལ་མོ་བ།"],"Version":["ཐོན་རིམ།"],"Six.":["དྲུག་པ།"],"Five.":["ལྔ་བ།"],"Four.":["བཞི་བ།"],"Three.":["གསུམ་པ།"],"Two.":["གཉིས་པ།"],"One.":["དང་པོ།"],"One of the hardest things to do in technology is disrupt yourself.":["བློ་དང་ལྡན་པའི་ཚིག་དག་ནི།།"],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["ནགས་བྱིའུ་ཡི་
ལྷིང་འཇགས་ཀྱི་
འཚོ་བ་སྐྱེལ་སྟངས།"],"Welcome to the wonderful world of blocks…":["ངོ་མཚར་ཆེ་བའི་རྡོག་པོའི་འཇིག་རྟེན་ལ་བྱོན་པ་ལེགས…"],"Snow Patrol":["བསིལ་ལྡན་ཁ་བའི་ལྗོངས།"],"Dimensions":["ཆ་ཚད།"],"Minimum height in pixels":["ཉུང་མཐའི་མཐོ་ཚད་པིག་ཟེལ།"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["ནང་པར་རྨི་ལམ་གྱི་མཐའ་བཤད་དེ། ལམ་དུ་ཞུགས་པ་ལས། ཇི་ཙམ་ན་གཞོན་ནུ་མ་ཞིག་སྣོད་བཟང་བོ་འོ་མས་བཀང་བ་ཐོགས་ནས་འགྲོ་བ་གཟིགས་པ་ན། མཚན་མོའི་རྨི་ལམ་དྲན་པར་གྱུར་ཏེ་སྣོད་འོ་མས་གང་བ་དེ་ཉིད་འཕྲོགས་ཏེ་བདག་གིར་བཟུང༌།"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["ཇི་ཞིག་ན་ཞམ་རིང་བས་ཟ་མ་ཏོག་ཇ་བཟང་པོས་གང་བ་ཁྱེར་འོངས་པ་དེ་ཡང་འོ་མ་དང་བསྲེས། ཐོན་རིགས་ཀྱི་ས་ལ་སྤྱོད་པ་དེའི་བྲན་གྱིས་ཚ་བ་ཁྱེར་འོངས་པ་ཡང་དེའི་སྟེང་དུ་བསྲེས། ཉེ་འདབས་ན་རྒན་མོ་ཞིག་གིས་ཆང་གི་སྙིང་པོ་བཏོན་པའི་སྦང་མ་དང༌། མར་རག་གི་འབའ་ཆ་དང༌། ཆང་གི་ཡང་ཚ་བསྲེས་ནས་བ་གླང་མོ་ཞིག་ལ་སྟེར་བར་བྱེད་པ་དེ་ཡང་བླངས་ཏེ་བསྲེས།"],"Call to Action":["བཀོལ་སྤྱོད་བྱེད་པར་འབོད།"],"In quoting others, we cite ourselves.":["མི་གཞན་གྱི་བཤད་ཚུལ་དྲངས་དོན་ནི་རང་ཉིད་ཀྱི་རྒྱས་བཤད་ལ་ཤུགས་སྣོན་རྒྱག་ཆེད་ཡིན།"],"cite":["ལུང་འདྲེན་བྱེད་པ།"],"Mont Blanc appears—still, snowy, and serene.":["པོ་ལན་རི་རྩེ་ནི་སྔར་བཞིན་ལྷིང་འཇགས་ཁྲོད་ཁ་བས་ཡོངས་སུ་གཡོག་འདུག"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["ཅང་མ་འགོར་བའི་སྔོན་ལ། མི་དྲག་ཅིག་ཅོ་མན་གྱི་སྡེ་བ་ཞིག་གི་ནང་དུ་བསྡད་ཡོད་ལ། གྲོང་ཚོའི་མིང་ངས་བཤད་མི་འདོད། མི་དྲག་དེ་རིགས་ཀྱིས་དུས་རྒྱུན་མེ་མདའ་གཅིག་མེ་མདའི་འཇོག་སྟེགས་སུ་བཞག་ནས་ཡོད་ལ། གནའ་བོའི་ཕུབ་དང་། རྟ་སྐམ་པོ་གཅིག ད་དུང་ཤ་ཁྱི་གཅིག་བཅས་ཡོད།"],"Block navigation":["རྡོག་པོའི་ཕྱོགས་སྟོན།"],"Full Site Editing":["དྲ་ཚིགས་ཆ་ཚང་རྩོམ་སྒྲིག"],"Templates to include in your theme.":["ཁྱེད་ཀྱི་དཔེ་སྒྲོམ་ནང་དུ་ཐེ་བའི་དཔེ་པང་།"],"Templates":["དཔེ་པང་།"],"Inserter help panel":["བར་འཇུག་གི་རོགས་རམ་པང་ལེབ།"],"Pre-publish checks":["མ་སྤེལ་གོང་གི་ཞིབ་བཤེར།"],"Please contact your site administrator to install new blocks.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་དོ་དམ་པར་འབྲེལ་གཏུག་བྱས་ནས་རྡོག་པོ་གསར་བ་སྒྲིག་འཇུག་བྱེད་རོགས།"],"No blocks found in your library. Please contact your site administrator to install new blocks.":["ཁྱེད་ཀྱི་མཛོད་ལས་རྡོག་པོ་རྙེད་མ་སོང་། ཁྱེད་ཀྱི་དྲ་ཚིགས་དོ་དམ་པར་འབྲེལ་གཏུག་བྱས་ནས་རྡོག་པོ་གསར་བ་སྒྲིག་འཇུག་བྱེད་རོགས།"],"No blocks found in your library.":["ཁྱེད་ཀྱི་མཛོད་ལས་རྡོག་པོ་རྙེད་མ་སོང་།"],"No blocks found in your library. These blocks can be downloaded and installed:":["ཁྱེད་ཀྱི་མཛོད་ལས་རྡོག་པོ་རྙེད་མ་སོང་། རྡོག་པོ་འདི་དག་ཕབ་ལེན་དང་སྒྲིག་འཇུག་བྱེད་རོགས:"],"No blocks found in your library. We did find %d block available for download.":["ཁྱེད་ཀྱི་མཛོད་ལས་རྡོག་པོ་རྙེད་མ་སོང་། ང་ཚོས་རྡོག་པོ %d རྙེད་སོན་བྱུང་བ་ཕབ་ལེན་བྱེད་རུང་གི་ཡོད།"],"Block previews can’t load.":["རྡོག་པོ་སྔོན་ལྟ་འཇུག་མ་ཐུབ།"],"Retry":["ཡང་བསྐྱར་ཚོད་ལྟ།"],"Block previews can't install.":["རྡོག་པོ་སྔོན་ལྟ་སྒྲིག་འཇུག་བྱ་མ་ཐུབ།"],"Updated %s":["%s གསར་བཅོས་བྱས་ཟིན།"],"%d active installation":["འགུལ་ལྡན་སྒྲིག་འཇུག་བྱས་ཚད: %d"],"This author has %d block, with an average rating of %d.":["རྩོམ་པ་པོ་འདིར་རྡོག་པོ %d ཡོད་ལ། ཆ་སྙོམས་ཀྱི་གདེང་འཇོག་ནི་སྐར %d ཡིན།"],"Authored by %s":["རྩོམ་པ་པོ། %s"],"%d total rating":["བསྡོམས་གྲངས %d ཡི་གདེང་འཇོག"],"%s out of 5 stars":["སྐར་མ %s ཧྲིལ་སྐར་ནི 5 ཡིན།"],"Enter Address":["ས་གནས་བླུགས།"],"Pill Shape":["སྨན་གྱི་རིལ་བུའི་དབྱིབས།"],"Logos Only":["ལས་རྟགས་ཁོ་ན།"],"Create a block of links to your social media or external sites":["ཁྱེད་ཀྱི་འདུ་འཛོམས་སྨྱན་གཟུགས་དང་ཡང་ན་ཕྱིའི་དྲ་ཚིགས་ལ་སྦྲེལ་མཐུད་བྱེད་པའི་རྡོག་པོ་གསར་སྐྲུན།"],"Social links":["འདུ་འཛོམས་སྦྲེལ་མཐུད།"],"Open block navigator":["རྡོག་པོའི་ཕྱོགས་སྟོན་ཆས་ཁ་ཕྱེ།"],"Attachment page":["ཞར་བྱུང་ཤོག་ངོས།"],"Fill":["འགེང་པ།"],"Link rel":["སྦྲེལ་མཐུད Rel"],"Border Radius":["མཐའ་སྒྲོམ་གྱི་ཕྱེད་ཚངས་ཐིག"],"Write gallery caption…":["པར་དེབ་ཀྱི་གསལ་བཤད་འབྲི་བ…"],"Content blocks":["ནང་དོན་རྡོག་པོ།"],"Restore the backup":["གྲབས་ཉར་སླར་གསོ།"],"The backup of this post in your browser is different from the version below.":["ཁྱེད་ཀྱི་བཤར་ལྟ་ཆས་ནང་གི་རྩོམ་ཡིག་འདིའི་གྲབས་ཉར་དང་གཤམ་གྱི་པར་གཞི་མི་འདྲ།"],"Enable block directory search":["རྡོག་པོའི་དཀར་ཆག་བཤེར་འཚོལ་སྤྱོད་འགོ་འཛུགས་པ།"],"Block Directory":["རྡོག་པོའི་དཀར་ཆག"],"Unable to connect to the filesystem. Please confirm your credentials.":["ཡིག་ཆའི་མ་ལག་ལ་འབྲེལ་མཐུད་བྱ་མ་ཐུབ། ཁྱེད་ཀྱི་དཔང་ཡིག་ལ་ངོས་འཛིན་བྱ་རོགས།"],"Sorry, you are not allowed to install blocks.":["དགོངས་དག ཁྱེད་ལ་རྡོག་པོ་སྒྲིག་འཇུག་བྱེད་པའི་དབང་ཚད་མི་འདུག"],"%1$d block is disabled.":["རྡོག་པོ %1$d སྤྱད་མེད།"],"Reverse List Numbering":["ལྡོག་ཕྱོགས་གསལ་ཐོ་ཨང་གྲངས།"],"Start Value":["འགོ་འཛུགས་གྲངས་ཐང་།"],"Ordered list settings":["སྟར་སྒྲིག་གསལ་ཐོ་སྒྲིག་འགོད།"],"Clear Media":["སྨྱན་གཟུགས་གཙང་སེལ།"],"Default Style":["སོར་བཞག་གི་བཟོ་ལྟ།"],"Not set":["སྒྲིག་འགོད་བྱས་མི་འདུག"],"While writing, you can press / to quickly insert new blocks.":["འབྲི་བའི་སྐབས་སུ། ཁྱེད་ཀྱིས་གསེག་ཐིག / འདི་བླུགས་ནས་རྡོག་པོ་གསར་བ་བར་འཇུག་བྱེད་ཆོག"],"Browse through the library to learn more about what each block does.":["མཛོད་ལ་བཤར་ལྟ་བྱས་ནས་རྡོག་པོ་སོ་སོའི་བྱེད་ནུས་སྐོར་ལ་ཞིབ་ཏུ་རྒྱུས་ལོན་བྱེད་ཆོག"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["ནང་དོན་སྣ་ཚོགས་སུ་སྤྱོད་རུང་བའི་རྡོག་པོ་ཡོད་པ: དཔེར་ན་ཡིག་རྐྱང་དང་ཁ་བྱང་། བརྙན་རིས་དང་གསལ་ཐོ། བརྙན་ཟློས། རེའུ་མིག་སོགས།"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["ངོ་མཚར་ཆེ་བའི་རྡོག་པོའི་འཇིག་རྟེན་ལ་བྱོན་པ་ལེགས། རྡོག་པོ་ནི་རྩོམ་སྒྲིག་ཆས་ཀྱི་ནང་དོན་ཡོངས་ཀྱི་རྨང་གཞི་ཡིན།"],"Version of the content block format used by the object.":["བྱ་ཡུལ་གྱིས་སྤྱད་པའི་ནང་དོན་རྡོག་གི་རྣམ་གཞག་གི་ཐོན་རིམ།"],"HTML content for the object, transformed for display.":["བྱ་ཡུལ་གྱི HTML ནང་དོན། དབྱིབས་རྣམ་སྒྱུར་བ་འཆར་བའི་ཆེད་དུ།"],"Content for the object, as it exists in the database.":["བྱ་ཡུལ་གྱི་ནང་དོན་དེ། གཞི་གྲངས་མཛོད་དུ་གནས་ཡོད།"],"The content for the object.":["བྱ་ཡུལ་གྱི་ནང་དོན།"],"Change column alignment":["སྟར་གྱི་སྙོམས་སྒྲིག་ཚུལ་བརྗེ་འགྱུར།"],"Align Column Right":["སྟར་གཡས་སུ་སྙོམས་སྒྲིག"],"Align Column Center":["སྟར་དཀྱིལ་དུ་སྙོམས་སྒྲིག"],"Align Column Left":["སྟར་གཡོན་དུ་སྙོམས་སྒྲིག"],"Color":["ཁ་དོག"],"Vivid purple":["གསལ་ཆ་ཆེ་བའི་རྒྱ་སྨུག"],"Disable & Reload":["སྤྱོད་མཚམས་བཞག་ནས་བསྐྱར་འཇུག་བྱེད་པ།"],"Enable & Reload":["སྤྱོད་འགོ་བཙུགས་ནས་བསྐྱར་འཇུག་བྱེད་པ།"],"A page reload is required for this change. Make sure your content is saved before reloading.":["བརྗེ་འགྱུར་འདི་ལ་ངེས་པར་ཏུ་ཤོག་ངོས་བསྐྱར་འཇུག་བྱེད་དགོས། བསྐྱར་འཇུག་མ་བྱས་གོང་དུ་རང་ཉིད་ཀྱི་ནང་དོན་ཉར་ཚགས་བྱེད་རོགས།"],"Display these keyboard shortcuts.":["མཐེབ་གཞོང་མྱུར་ལམ་འདི་དག་འགྲེམས་སྟོན།"],"Experiments Settings":["ཚོད་ལྟའི་རང་བཞིན་ཅན་སྒྲིག་འགོད།"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":["ཚོད་ལྟའི་རང་བཞིན་ཅན་སྒྲིག་འགོད།"],"Block name name must be a string.":["རྡོག་པོའི་མིང་ནི་ངེས་པར་དུ་ཡིག་རྟགས་ཕྲེང་ཡིན་དགོས།"],"Custom":["རང་བཟོ།"],"Draft":["མ་ཟིན།"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["རྡོག་པོ \"%1$s\" ཡི་ཁྲོད་དུ་མིང་ལ \"%2$s.\" ཡིན་པའི་བཟོ་ལྟ་ཚུད་མེད།"],"Learn more about anchors":["རྟོད་ཕུར་གྱི་སྐོར་ནས་ཞིབ་ཏུ་རྒྱུས་ལོན།"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["མིང་ཚིག་གཅིག་དང་ཡང་ན་གཉིས་བླུགས་ནས་ — སྟོང་མིག་མི་འདུས — ཁ་བྱང་འདི་ལ་དེ་ཁོ་ན་ཡིན་པའི་དྲ་གནས་ཤིག་བཟོ་བ་དེ་ལ་ “རྟོད་ཕུར་” ཟེར། དེས་ཐར་ཀར་དུ་རང་གི་ཤོག་ངོས་ཀྱི་ཚན་པ་འདིར་སྦྲེལ་མཐུད་བྱེད་ཐུབ་པ་ཡིན།"],"Widget Blocks (Experimental)":["ལྷུ་ཆུང་རྡོག་པོ། (ཚོད་ལྟའི་རང་བཞིན་ཅན།)"],"Upload a video file, pick one from your media library, or add one with a URL.":["བརྙན་ཟློས་ཡིག་ཆ་སྐྱེལ་འཇོག་བྱེད་པ། སྨྱན་མཛོད་ལས་འདེམས་པའམ་ཡང་ན URL བརྒྱུད་ནས་ཁ་སྣོན་བྱེད་པ།"],"Upload an image file, pick one from your media library, or add one with a URL.":["བརྙན་རིས་ཡིག་ཆ་སྐྱེལ་འཇོག་བྱེད་པ། སྨྱན་མཛོད་ལས་འདེམས་པའམ་ཡང་ན URL བརྒྱུད་ནས་ཁ་སྣོན་བྱེད་པ།"],"Upload an audio file, pick one from your media library, or add one with a URL.":["སྒྲ་ཟློས་ཡིག་ཆ་སྐྱེལ་འཇོག་བྱེད་པ། སྨྱན་མཛོད་ལས་འདེམས་པའམ་ཡང་ན URL བརྒྱུད་ནས་ཁ་སྣོན་བྱེད་པ།"],"Upload a media file or pick one from your media library.":["བརྙན་གཟུགས་ཡིག་ཆ་སྐྱེལ་འཇོག་བྱེད་པའམ་ཡང་ན་སྨྱན་མཛོད་ནས་ཡིག་ཆ་འདེམས་པ།"],"Skip":["མཆོང་པ།"],"Select a variation to start with.":["གཟུགས་འགྱུར་ཞིག་བདམས་ནས་འགོ་འཛུགས་པ།"],"Add a page, link, or another item to your navigation.":["ཁྱེད་ཀྱི་ཕྱོགས་སྟོན་དུ་ཤོག་ངོས་དང་སྦྲེལ་མཐུད། ཡང་ན་སྡེ་ཚན་གཞན་པ་ཁ་སྣོན་བྱེད་པ།"],"What's this?":["འདི་ནི་ཅི་ཞིག་ཡིན་ནམ།"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["བཤེར་འཚོལ་མ་འཕྲུལ་གྱིས་སྦྲེལ་མཐུད་འདི་ལ་རྗེས་འདེད་མི་བྱེད་པའི་རེ་བ་འདོན།"],"Provide more context about where the link goes.":["འབྲེལ་ཡོད་སྦྲེལ་མཐུད་ཀྱི་གོང་འོག་དེ་བས་མང་བ་མཁོ་འདོན་བྱེད་པ།"],"Title Attribute":["ཁ་བྱང་གཏོགས་གཤིས།"],"SEO settings":["SEO སྒྲིག་འགོད།"],"Description":["ཞིབ་བརྗོད།"],"Open in new tab":["གདམ་བྱང་གསར་པའི་ཁྲོད་དུ་ཁ་ཕྱེ།"],"links":["སྦྲེལ་མཐུད།"],"navigation":["ཕྱོགས་སྟོན།"],"menu":["གདམ་ཐོ།"],"Add a navigation block to your site.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་སུ་ཕྱོགས་སྟོན་རྡོག་པོ་ཁ་སྣོན།"],"Upload a file or pick one from your media library.":["ཡིག་ཆ་སྐྱེལ་འཇོག་བྱེད་པའམ་ཡང་ན་སྨྱན་མཛོད་ནས་ཡིག་ཆ་འདེམས་པ།"],"Learn more about embeds":["བཙུད་འཇུག་གི་སྐོར་ནས་ཞིབ་ཏུ་རྒྱུས་ལོན།"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་སྟེང་དུ་འགྲེམས་སྟོན་བྱ་དགོས་པའི་ནང་དོན་གྱི་སྦྲེལ་མཐུད་སྦྱོར་རོགས།"],"Upload an image or video file, or pick one from your media library.":["བརྙན་རིས་དང་ཡང་ན་བརྙན་ཟློས་ཡིག་ཆ་སྐྱེལ་འཇོག་བྱེད་པའམ། ཡང་ན་སྨྱན་མཛོད་ལས་འདེམས་པ།"],"Three columns; wide center column":["སུམ་སྟར། མཐའ་བྲལ་བའི་དཀྱིལ་སྟར།"],"Three columns; equal split":["སུམ་སྟར། ཞེང་མཉམ།"],"Two columns; two-thirds, one-third split":["ཉིས་སྟར། ཞེང་ལ་སུམ་ཆའི་གཉིས་དང་ཞེང་ལ་སུམ་ཆའི་གཅིག"],"Two columns; one-third, two-thirds split":["ཉིས་སྟར། ཞེང་ལ་སུམ་ཆའི་གཅིག་དང་ཞེང་ལ་སུམ་ཆའི་གཉིས།"],"Two columns; equal split":["ཉིས་སྟར། ཞེང་མཉམ།"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་སུ %s སྐོར་གྱི་ནང་དོན་གང་ཡང་མེད་པས་མིག་སྔར་འདི་རུ་འགྲེམས་སྟོན་བྱ་རྒྱུ་གང་ཡང་མེད།"],"More tools & options":["དེ་ལས་མང་བའི་ལག་ཆ་དང་གདམ་ཚན།"],"Create Table":["རེའུ་མིག་གསར་སྐྲུན།"],"Insert a table for sharing data.":["རེའུ་མིག་བར་འཇུག་བྱས་ནས་གཞི་གྲངས་མཉམ་སྤྱོད་བྱེད་པ།"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["ཚོགས་སྒྲིལ་ལས་གྲོལ།"],"verb\u0004Group":["ཚོགས་སྒྲིལ།"],"Separate with commas or the Enter key.":["བར་ཚེགས་(,) འདི་དང་ཡང་ན་འབེབས་བརྡའི་མཐེབ་སྤྱད་ནས་དབྱེ་མཚམས་གཅོད་པ།"],"Separate with commas, spaces, or the Enter key.":["བར་ཚེགས་(,) འདི་དང་སྟོང་མིག ཡང་ན་འབེབས་བརྡའི་མཐེབ་སྤྱད་ནས་དབྱེ་མཚམས་གཅོད་པ།"],"Separate multiple classes with spaces.":["སྟོང་མིག་གིས་རིགས་གྲས་དུ་མའི་བར་གཅོད།"],"Move image forward":["བརྙན་རིས་མདུན་ཕྱོགས་སུ་སྤོ་བསྣུར།"],"Move image backward":["བརྙན་རིས་རྒྱབ་ཕྱོགས་སུ་སྤོ་བསྣུར།"],"Sorry, you are not allowed to edit sidebars.":["དགོངས་དག ཁྱེད་ལ་འགྲམ་ཚང་རྩོམ་སྒྲིག་བྱེད་པའི་དབང་ཚད་མི་འདུག"],"Sorry, you are not allowed to read sidebars.":["དགོངས་དག ཁྱེད་ལ་འགྲམ་ཚང་ཀློག་འདོན་གྱི་དབང་ཚད་མི་འདུག"],"The sidebar’s ID.":[],"Displays a set of blocks":["རྡོག་པོའི་ཚོགས་འགྲེམས་སྟོན།"],"Blocks Area":["རྡོག་པོའི་ས་ཁུལ།"],"Block rendered as empty.":["རྡོག་པོ་སྟོང་བར་སྒྱུར་ཟིན།"],"Inline Code":["ནང་ཁུལ་གྱི་ཚབ་ཨང་།"],"Note: Autoplaying videos may cause usability issues for some visitors.":["ཞར་མཆན: རང་འགུལ་གྱིས་གཏོང་བའི་བརྙན་ཟློས་ཀྱིས་འཚམས་འདྲི་བྱེད་མཁན་ལ་སྤྱོད་གོ་ཆོད་པའི་རང་བཞིན་གྱི་གནད་དོན་བཟོ་སྲིད།"],"Footer section":["ངོས་ཞབས་ཀྱི་ཚན་པ།"],"Header section":["འགོ་བརྗོད་ཀྱི་ཚན་པ།"],"Sorting and filtering":["རིམ་སྒྲིག་དང་གདམ་གསེས།"],"Post meta settings":["རྩོམ་ཡིག་ཟུར་བརྗོད་སྒྲིག་འགོད།"],"Post Content":["རྩོམ་གྱི་ནང་དོན།"],"Post content settings":["རྩོམ་གྱི་ནང་དོན་སྒྲིག་འགོད།"],"Percentage width":["ཞེང་ཚད་བརྒྱ་ཆའི་འབབ།"],"Column settings":["སྟར་སྒྲིག་འགོད།"],"Note: Autoplaying audio may cause usability issues for some visitors.":["ཞར་མཆན: རང་འགུལ་གྱིས་གཏོང་བའི་སྒྲ་ཟློས་ཀྱིས་འཚམས་འདྲི་བྱེད་མཁན་ལ་སྤྱོད་གོ་ཆོད་པའི་རང་བཞིན་གྱི་གནད་དོན་བཟོ་སྲིད།"],"Block area updated.":["རྡོག་པོའི་ས་ཁུལ་གསར་བཅོས་བྱས་ཟིན།"],"Block area scheduled.":["རྡོག་པོའི་ས་ཁུལ་དུས་བཀག་བྱས་ཟིན།"],"Block area published.":["རྡོག་པོ་པར་འགྲེམས་བྱས་ཟིན།"],"Block areas list":["རྡོག་པོའི་གསལ་ཐོ།"],"Block areas list navigation":["རྡོག་པོའི་གསལ་ཐོ་ཕྱོགས་སྟོན།"],"Filter block areas list":["རྡོག་པོའི་གསལ་ཐོ་གདམ་གསེས།"],"No block area found.":["རྡོག་པོ་རྙེད་མ་སོང་།"],"Search Block Areas":["རྡོག་པོ་བཤེར་འཚོལ།"],"All Block Areas":["རྡོག་པོ་ཡོངས།"],"View Block Area":["རྡོག་པོ་ལྟ་ཞིབ།"],"Edit Block Area":["རྡོག་པོ་རྩོམ་སྒྲིག"],"New Block Area":["རྡོག་པོ་གསར་བ།"],"Add New Block Area":["རྡོག་པོ་གསར་བ་ཁ་སྣོན།"],"admin menu\u0004Block Areas":["རྡོག་པོའི་ས་ཁུལ།"],"post type singular name\u0004Block Area (Experimental)":["རྡོག་པོའི་ས་ཁུལ། (ཚོད་ལྟའི་རང་བཞིན་ཅན)"],"post type general name\u0004Block Area (Experimental)":["རྡོག་པོའི་ས་ཁུལ། (ཚོད་ལྟའི་རང་བཞིན་ཅན)"],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["ལྷུ་ཆུང་བརྙན་ཡོལ་གྱི་ནང་དོན།"],"header":["མགོ་བརྗོད།"],"Widgets advanced settings":["ལྷུ་ཆུང་གི་མཐོ་རིམ་སྒྲིག་འགོད།"],"(experimental)":["(ཚོད་ལྟའི་རང་བཞིན་ཅན)"],"Block Areas":["རྡོག་པོའི་ས་ཁུལ།"],"Widgets screen top bar":["ལྷུ་ཆུང་བརྙན་ཡོལ་གྱི་རྩེའི་ཚང་།"],"This color combination may be hard for people to read.":["ཁ་དོག་འདི་མཉམ་སྡེབ་བྱས་ཚེ་ཀློག་མཁན་གྱིས་ཀློག་འདོན་བྱེད་པར་དཀའ་ངལ་བཟོ་སྲིད།"],"There is no poster image currently selected":["མིག་སྔར་འགྲེམས་ཤོག་བརྙན་རིས་གང་ཡང་འདེམས་མི་འདུག"],"The current poster image url is %s":["མིག་སྔར་འགྲེམས་ཤོག་བརྙན་རིས་ཀྱི་དྲ་གནས་ནི། %s"],"section":["ཚན་པ།"],"row":["ཕྲེང་།"],"wrapper":["ཕྱི་ཤུབས།"],"container":["སྣོད་ཆས།"],"A block that groups other blocks.":["རྡོག་པོ་གཞན་པ་ཚོ་ཁག་སྒྲིག་ཐུབ་པའི་རྡོག་པོ།"],"Group":["ཚོ་ཁག"],"Crop image to fill entire column":["བརྙན་རིས་དྲས་གཏུབ་བྱས་ནས་སྟར་ཧྲིལ་བོ་འགེང་པ།"],"Play inline":["ནང་འབྲེལ་གཏོང་བ།"],"Leave empty if the image is purely decorative.":["གལ་ཏེ་བརྙན་རིས་ནི་རྒྱན་སྤྲོས་ཁོ་ནའི་ཆེད་དུ་ཡིན་ཚེ་སྟོང་བར་བསྐྱུར་རོགས།"],"Describe the purpose of the image":["བརྙན་རིས་ཀྱི་སྤྱོད་སྒོ་ཞིབ་བརྗོད་བྱེད་པ།"],"Add a block":["རྡོག་པོ་ཁ་སྣོན།"],"Block vertical alignment setting label\u0004Change vertical alignment":["དྲང་འཕྱང་སྙོམས་སྒྲིག་ཚུལ་བརྗེ་འགྱུར།"],"Block vertical alignment setting\u0004Vertically Align Bottom":["ཞབས་ཀྱི་དྲང་འཕྱང་སྙོམས་སྒྲིག"],"Block vertical alignment setting\u0004Vertically Align Middle":["དཀྱིལ་གྱི་དྲང་འཕྱང་སྙོམས་སྒྲིག"],"Replace Image":["བརྙན་རིས་བརྗེ་སྤོར།"],"Block vertical alignment setting\u0004Vertically Align Top":["རྩེའི་དྲང་འཕྱང་སྙོམས་སྒྲིག"],"Display a legacy widget.":["ལྷུ་ཆུང་རྙིང་པ་འགྲེམས་སྟོན།"],"Legacy Widget (Experimental)":["ལྷུ་ཆུང་རྙིང་པ། (ཚོད་ལྟའི་རང་བཞིན་ཅན།)"],"Change widget":["ལྷུ་ཆུང་བརྗེ་འགྱུར།"],"Legacy Widget":["ལྷུ་ཆུང་རྙིང་པ།"],"You don't have permissions to use widgets on this site.":["ཁྱེད་ལ་དྲ་ཚིགས་འདིར་ལྷུ་ཆུང་བཀོལ་བའི་དབང་ཚད་མི་འདུག"],"Select a legacy widget to display:":["འགྲེམས་སྟོན་བྱེད་དགོས་པའི་ལྷུ་ཆུང་རྙིང་པ་འདེམས:"],"There are no widgets available.":["སྤྱོད་རུང་པའི་ལྷུ་ཆུང་མི་འདུག"],"Change block type or style":["རྡོག་པོའི་རིགས་གྲས་དང་ཡང་ན་བཟོ་ལྟ་བརྗེ་འགྱུར།"],"keyboard key\u0004Space":["སྟོང་མིག"],"keyboard key\u0004Backspace":["ཕྱིར་བཤོལ།"],"More rich text controls":["དེ་ལས་མང་པའི་ཕུན་ཚོགས་ཡིག་རྐྱང་གི་སྟངས་འཛིན།"],"Search Terms":["སྡེ་ཚན་བཤེར་འཚོལ།"],"Exit the Editor":["རྩོམ་སྒྲིག་ཆས་ནས་ཕྱིར་ཐོན།"],"Block Manager":["རྡོག་པོ་དོ་དམ་ཆས།"],"Class name of the widget.":["ལྷུ་ཆུང་གི Class མིང་།"],"Sorry, you are not allowed to access widgets on this site.":["དགོངས་དག་ཞུ། ཁྱེད་ལ་དྲ་ཚིགས་འདིའི་སྟེང་གི་ལྷུ་ཆུང་ལ་བཅར་འདྲིའི་དབང་ཚད་མི་འདུག"],"Widgets (beta)":["ལྷུ་ཆུང་། (beta)"],"link":["སྦྲེལ་མཐུད།"],"Embedded content from %s can't be previewed in the editor.":["%s ནས་ཐོན་པའི་བཙུད་འཇུག་གི་ནང་དོན་དེ་རྩོམ་སྒྲིག་ཆས་ཁྲོད་དུ་སྔོན་ལྟ་བྱེད་མི་ཐུབ།"],"Custom Color":["རང་བཟོས་ཁ་དོག"],"Prompt visitors to take action with a button-style link.":["བཅར་འདྲི་མཁན་ལ་མཐེབ་གཅུས་བཟོ་ལྟའི་སྦྲེལ་མཐུད་སྤྱད་ནས་བཀོལ་སྤྱོད་བྱེད་པར་གསལ་འདེབས་གཏོང་བ།"],"Stick to the top of the blog":["པོད་ཁུག་གི་རྩེ་རུ་སྦྱོར་བ།"],"Read about permalinks":["གཏན་འཇགས་སྦྲེལ་མཐུད་སྐོར་ལ་རྒྱུས་ལོན་བྱེད་པ།"],"The last part of the URL.":["URL ཡི་མཇུག་མཐའི་ཆ་ཤས།"],"URL Slug":["URL ཡི་མིང་གཞན།"],"A cloud of your most used tags.":["ཆེས་རྒྱུན་བཀོལ་གྱི Tag སྤྲིན།"],"Tag Cloud":["Cloud འགྲེལ་བྱང་།"],"Taxonomy":["རིགས་དགར་ཐབས།"],"Tag Cloud settings":["Cloud འགྲེལ་བྱང་སྒྲིག་འགོད།"],"- Select -":["- འདེམས -"],"Default":["སོར་བཞག"],"find":["འཚོལ།"],"Help visitors find your content.":["བཅར་འདྲི་བྱེད་མཁན་ལ་རོགས་རམ་གྱིས་ཁྱེད་ཀྱི་ནང་དོན་འཚོལ།"],"Search":["བཤེར་འཚོལ།"],"Add button text…":["མཐེབ་གཅུས་ཡིག་རྐྱང་ཁ་སྣོན…"],"Button text":["མཐེབ་གཅུས་ཡིག་རྐྱང་།"],"Optional placeholder…":["རང་མོས་ཀྱི་གནས་བཟུང་རྟགས…"],"Optional placeholder text":["རང་མོས་ཀྱི་གནས་བཟུང་རྟགས་ཡིག་རྐྱང་།"],"Add label…":["ཤོག་བྱང་ཁ་སྣོན…"],"Label text":["ཤོག་བྱང་ཡིག་རྐྱང་།"],"image %1$d of %2$d in gallery":["བརྙན་རིས %1$d པ། པར་དེབ་ཁྲོད་དུ་བརྙན་རིས %2$d ཡོད།"],"archive":["ཡིག་མཛོད།"],"posts":["རྩོམ་ཡིག"],"A calendar of your site’s posts.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་ཀྱི་རྩོམ་ཡིག་གི་ལོ་ཐོ།"],"Calendar":["ལོ་ཐོ།"],"by":["རྩོམ་པ་པོ།"],"An error has occurred, which probably means the feed is down. Try again later.":["ནོར་འཁྲུལ་ཞིག་བྱུང་སོང་། ཁྱབ་སྤེལ་མེད་པ་འདྲ་བས། ཡུད་ཙམ་གྱིས་ཚོད་ལྟ་བྱ་རོགས།"],"RSS Error:":["RSS ནོར་འཁྲུལ:"],"block style\u0004Default":["སོར་བཞག"],"Fullscreen mode deactivated":["ཡོལ་གང་དཔེ་རྣམ་སྤྱོད་མཚམས་བཞག་ཟིན།"],"Fullscreen mode activated":["ཡོལ་གང་དཔེ་རྣམ་ནུས་སློང་བྱས་ཟིན།"],"Spotlight mode deactivated":["འོད་འདུའི་གློག་ཞུ་དཔེ་རྣམ་སྤྱོད་མཚམས་བཞག་ཟིན།"],"Spotlight mode activated":["འོད་འདུའི་གློག་ཞུ་དཔེ་རྣམ་ནུས་སློང་བྱས་ཟིན།"],"Top toolbar deactivated":["རྩེའི་ལག་ཆའི་ཚང་སྤྱོད་མཚམས་བཞག་ཟིན།"],"Top toolbar activated":["རྩེའི་ལག་ཆའི་ཚང་ནུས་སློང་བྱས་ཟིན།"],"Back":["ཕྱིར་ལོག"],"Feature activated":["ཁྱད་གཤིས་ནུས་སློང་བྱས་ཟིན།"],"Feature deactivated":["ཁྱད་གཤིས་སྤྱོད་མཚམས་བཞག་ཟིན།"],"Vertical Pos.":["དྲང་འཕྱང་གི་གནས་ཡུལ།"],"Horizontal Pos.":["ཆུ་སྙོམས་ཀྱི་གནས་ཡུལ།"],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["RSS གང་རུང་དང་ཡང་ན Atom feed ནས་ཐོན་པའི་ས་བཅད་འགྲེམས་སྟོན།"],"RSS":["RSS"],"Max number of words in excerpt":["ནང་དོན་གནད་བསྡུས་ཀྱི་ཡིག་གྲངས་ཚད་བཀག"],"Display excerpt":["གནད་བསྡུས་འགྲེམས་སྟོན།"],"Display date":["ཟླ་ཚེས་འགྲེམས་སྟོན།"],"Display author":["རྩོམ་པ་པོ་འགྲེམས་སྟོན།"],"RSS settings":["RSS སྒྲིག་འགོད།"],"Edit RSS URL":["RSS URL རྩོམ་སྒྲིག"],"Content before this block will be shown in the excerpt on your archives page.":["རྡོག་པོ་འདིའི་སྔོན་གྱི་ནང་དོན་དག་ཁྱེད་ཀྱི་ཡིག་མཛོད་ཤོག་ངོས་ཀྱི་གནད་བསྡུས་ཁྲོད་དུ་འགྲེམ་སྟོན་བྱེད་པ་ཡིན།"],"Hide the excerpt on the full content page":["ཤོག་ངོས་ཆ་ཚང་གི་ནང་དོན་ཁྲོད་དུ་གནད་བསྡུས་གབ།"],"The excerpt is visible.":["གནད་བསྡུས་ནི་མངོན་རུང་ཡིན།"],"The excerpt is hidden.":["གནད་བསྡུས་ནི་སྦས་སྐུང་ཡིན།"],"Sorry, this content could not be embedded.":["དགོངས་དག་ཞུ། ནང་དོན་འདི་བཙུད་འཇུག་བྱེད་མི་ཐུབ།"],"Embed Amazon Kindle content.":["Amazon Kindle ཡི་ནང་དོན་བཙུད་འཇུག"],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (དེ་སྔའི་ Polldaddy) ནང་དོན་བཙུད་འཇུག"],"Focal Point Picker":["མདོ་ཚེག་འདེམས་ཆས།"],"Underline":["འོག་ཐིག"],"Attempt Block Recovery":["རྡོག་པོ་ཕྱིར་སོན་ལ་འབད།"],"Word count type. Do not translate!\u0004words":["characters_excluding_spaces"],"content placeholder\u0004Content…":["ནང་དོན…"],"button label\u0004Convert to link":["སྦྲེལ་མཐུད་ལ་བརྗེ་སྒྱུར།"],"button label\u0004Try again":["ཡང་བསྐྱར་ཚོད་ལྟ་བྱེད།"],"Editor tips":["རྩོམ་སྒྲིག་ཆས་ཀྱི་སྣེ་སྟོན།"],"Block (selected)":["རྡོག (བདམས་ཟིན)"],"Document (selected)":["ཡིག་ཚགས། (བདམས་ཟིན)"],"%d word":["ཡིག་གྲངས། %d"],"Top toolbar":["རྩེའི་ལག་ཆའི་ཚང་།"],"Link Rel":["སྦྲེལ་མཐུད Rel"],"Link CSS Class":["སྦྲེལ་མཐུད CSS རིགས།"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["ནང་དོན་གསར་སྐྲུན་དང་ཉར་ཚགས་བྱས་ནས་ཁྱེད་རང་དང་བྱས་རྗེས་འཇོག་མཁན་གཞན་པས་ཁྱེད་ཀྱི་དྲ་ཚིགས་སྟེང་དུ་བསྐྱར་ཟློས་ཀྱིས་སྤྱོད་པར་སྟབས་བདེ་བཟོ་བ། རྡོག་གསར་བཅོས་བྱས་ནས་བཟོ་བཅོས་བྱས་པ་དག་གནས་གང་རུང་དུ་སྤྱོད་པ་ཡིན།"],"To edit the featured image, you need permission to upload media.":["ཁྱད་ལྡན་བརྙན་རིས་ལ་རྩོམ་སྒྲིག་བྱེད་དགོས་ན། ཁྱེད་ལ་སྨྱན་གཟུགས་སྐྱེལ་འཇོག་གི་དབང་ཚད་དགོས་ཀྱི་འདུག"],"To edit this block, you need permission to upload media.":["རྡོག་འདི་ལ་རྩོམ་སྒྲིག་བྱེད་དགོས་ན། ཁྱེད་ལ་སྨྱན་གཟུགས་སྐྱེལ་འཇོག་གི་དབང་ཚད་དགོས་ཀྱི་འདུག"],"(selected block)":["(རྡོག་གདམ་ཟིན)"],"Block tools":["རྡོག་གི་ལག་ཆ།"],"Permalink":["གཏན་འཇགས་སྦྲེལ་མཐུད།"],"This image has an empty alt attribute":["བརྙན་རིས་འདིར alt གཏོགས་གཤིས་སྟོང་བ་ཡོད་འདུག"],"This image has an empty alt attribute; its file name is %s":["བརྙན་རིས་འདིར alt གཏོགས་གཤིས་སྟོང་བ་ཡོད་འདུག དེའི་ཡིག་ཆའི་མིང་ནི། %s"],"Block area reverted to draft.":["རྡོག་པོའི་ས་ཁུལ་མ་ཟིན་ལ་སོར་སློག་བྱས་ཟིན།"],"Block area published privately.":["རྡོག་པོའི་ས་ཁུལ་ལྐོག་ཏུ་པར་འགྲེམས་བྱས་ཟིན།"],"No block areas found in Trash.":["སྙིགས་སྣོད་དུ་རྡོག་པོའི་ས་ཁུལ་རྙེད་མ་སོང་།"],"Block\u0004Add New":["གསར་སྣོན།"],"add new on admin bar\u0004Block Area":["རྡོག་པོའི་ས་ཁུལ།"],"Link inserted.":["སྦྲེལ་མཐུད་བཅུག་ཟིན།"],"Warning: the link has been inserted but may have errors. Please test it.":["ཉེན་བརྡ: སྦྲེལ་མཐུད་བར་འཇུག་བྱས་ཟིན་མོད། འོན་ཀྱང་སྐྱོན་ཡོད་སྲིད་པས། ཚོད་ལྟ་བྱེད་རོགས།"],"%s block selected.":["རྡོག %s གདམ་ཟིན།"],"Thumbnail":["བསྡུས་རིས།"],"Full Size":["ཆེ་ཆུང་ཆ་ཚང་།"],"Link selected.":["སྦྲེལ་མཐུད་བདམས་ཟིན།"],"Start writing with text or HTML":["ཡི་གེ་དང་ཡང་ན HTML འབྲི་མགོ་རྩོམ།"],"Type text or HTML":["ཡི་གེ་དང་ཡང་ན HTML བླུགས།"],"Block icon":["རྡོག་རྟགས་རིས།"],"Align text right":["ཡིག་རྐྱང་གཡས་སུ་སྙོམས་སྒྲིག"],"Align text center":["ཡིག་རྐྱང་དཀྱིལ་དུ་སྙོམས་སྒྲིག"],"Align text left":["ཡིག་རྐྱང་གཡོན་དུ་སྙོམས་སྒྲིག"],"Start writing or type / to choose a block":["འབྲི་མགོ་རྩོམ་པའམ་ཡང་ན་གསེག་ཐིག / བླུགས་ནས་རྡོག་པོ་འདེམས།"],"Empty block; start writing or type forward slash to choose a block":["རྡོག་སྟོང་བ། འབྲི་མགོ་རྩོམ་པའམ་ཡང་ན་གསེག་ཐིག / བླུགས་ནས་རྡོག་འདེམས།"],"Paragraph block":["དུམ་ཚན་རྡོག"],"Page Break":["ཤོག་ངོས་དབྱེ་རྟགས།"],"Stack on mobile":["སྤོ་རུང་སྟེང་དུ་སྤུང་རྩེག"],"Annotation":["མཆན་འགྲེལ།"],"Drag images, upload new ones or select files from your library.":["བརྙན་རིས་འདྲུད་པ། གསར་དུ་སྐྱེལ་འཇོག་བྱེད་པའམ་ཡང་ན་ཁྱེད་ཀྱི་སྨྱན་མཛོད་ལས་ཡིག་ཆ་འདེམས།"],"blocks\u0004Most used":["སྤྱད་མང་ཤོས།"],"imperative verb\u0004Resolve":["ཐག་གཅོད་པ།"],"font size name\u0004Huge":["ཤིན་ཏུ་ཆེན་པོ།"],"font size name\u0004Large":["ཆེ་བ།"],"font size name\u0004Medium":["འབྲིང་བ།"],"font size name\u0004Small":["ཆུང་བ།"],"font size name\u0004Normal":["སྤྱིར་བཏང་པ།"],"keyboard button\u0004Enter":["ཐོང་།"],"button label\u0004Import":["ནང་འདྲེན།"],"button label\u0004Download":["ཕབ་ལེན།"],"button label\u0004Embed":["བཙུད་འཇུག"],"block title\u0004Embed":["བཙུད་འཇུག"],"block title\u0004Classic":["ཚད་ལྡན།"],"block style\u0004Large":["ཆེ་བ།"],"block style\u0004Rounded":["ཕུབ་སྒོར།"],"%s (opens in a new tab)":["%s (གདམ་བྱང་གསར་པ་ཞིག་ནས་ཁ་ཕྱེ)"],"Link edited.":["སྦྲེལ་ཐག་རྩོམ་སྒྲིག་བྱས་ཟིན།"],"Link removed.":["སྦྲེལ་ཐག་སྤོ་འབུད་བྱས་ཟིན།"],"media":["སྨྱན་གཟུགས།"],"Double-check your settings before publishing.":["པར་འགྲེམས་མ་བྱས་སྔོན་ལ་ཁྱེད་ཀྱི་སྒྲིག་འགོད་ལ་བསྐྱར་ཞིབ་བྱོས།"],"Generating preview…":["སྔོན་ལྟ་སྐྱེད་གྲུབ་སྒང…"],"Edit or update the image":["བརྙན་རིས་རྩོམ་སྒྲིག་དང་ཡང་ན་གསར་བཅོས།"],"Media":["སྨྱན་གཟུགས།"],"Navigate to the nearest toolbar.":["ཆེས་ཉེ་བའི་ལག་ཆའི་ཚང་ལ་ཕྱོགས་སྟོན།"],"Document tools":["ཡིག་ཚགས་ལག་ཆ།"],"Document and block tools":["ཡིག་ཚགས་དང་རྡོག་གི་ལག་ཆ།"],"Embed a video from your media library or upload a new one.":["ཁྱེད་ཀྱི་སྨྱན་གཟུགས་མཛོད་ལས་བརྙན་ཟློས་བཙུད་འཇུག་བྱེད་པའམ་ཡང་ན་གསར་དུ་སྐྱེལ་འཇོག་བྱེད་པ།"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["སྙན་ངག་བར་འཇུག་བྱེད་པ། དམིགས་བསལ་གྱི་བར་རྟགས་རྣམ་གཞག་སྤྱོད་པའམ་ཡང་ན་གཞས་ཚིག་ལུང་འདྲེན་བྱེད་པ།"],"Add white space between blocks and customize its height.":["རྡོག་གི་དབར་དུ་བར་རྟགས་ཁ་སྣོན་བྱེད་པ་དང་དེའི་མཐོ་ཚད་རང་བཟོ་བྱེད་པ།"],"Insert additional custom elements with a WordPress shortcode.":["WordPress ཡི་ཚབ་ཨང་ཐུང་བ་སྤྱད་ནས་རང་བཟོ་གྲུབ་ཆ་འཕར་མ་བར་འཇུག་བྱེད་པ།"],"Create a break between ideas or sections with a horizontal separator.":["ཆུ་སྙོམས་བར་རྟགས་སྤྱད་ནས་བློ་བཀོད་དང་ཡང་ན་ཚན་པའི་དབར་ལ་མཚམས་གཅོད་པ།"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["དྲངས་པའི་ལུང་ཚིག་ལ་དངོས་སྣང་གིས་རྩལ་འདོན་བྱེད་པ་སྟེ། \"གཞན་གྱི་བཤད་ཚུལ་ལུང་དུ་འདྲེན་པ་ནི་རང་གི་སྒྲུབ་བྱེད་བརྟན་པོར་གཏོང་ཆེད་ཡིན།\" — ཇུ་ལིའོ•ཁོ་ཐ་ཟར།"],"Give special visual emphasis to a quote from your text.":["ཡི་གེའི་ཁྲོད་ཀྱི་ལུང་འདྲེན་གལ་ཆེ་ཚུལ་གྱི་དམིགས་བསལ་ཐད་མཐོང་སྟེར་བ།"],"Start with the building block of all narrative.":["རྒྱས་བཤད་ཡོངས་ཀྱི་རྡོག་གསར་སྐྲུན་ནས་མགོ་འཛུགས་པ།"],"Separate your content into a multi-page experience.":["ཁྱེད་ཀྱི་ནང་དོན་དེ་ཤོག་ངོས་དུ་མར་བགོ་རྒྱུ་ཡིན།"],"Set media and words side-by-side for a richer layout.":["སྨྱན་གཟུགས་དང་མིང་ཚིག་གྲལ་སྟར་གཅིག་སྒྲིག་བྱས་ནས་ཕུན་ཚོགས་ཀྱི་བཀོད་པ་ལེན་ཆོག"],"Media & Text settings":["སྨྱན་གཟུགས། & ཡིག་རྐྱང་སྒྲིག་འགོད།"],"Create a bulleted or numbered list.":["རྣམ་གྲངས་རྟགས་སམ་ཡང་ན་ཨང་གྲངས་གསལ་ཐོ་གསར་སྐྲུན།"],"Display a list of your most recent comments.":["ཉེ་ཆར་སྤེལ་བའི་དཔྱད་མཆན་གསལ་ཐོ་འཆར་བ།"],"Insert an image to make a visual statement.":["བརྙན་རིས་བར་འཇུག་བྱས་ཏེ་ཐད་མཐོང་གསལ་བསྒྲགས་བཟོ་བ།"],"Add custom HTML code and preview it as you edit.":["རང་བཟོ་ཀྱི HTML ཚབ་ཨང་ཁ་སྣོན་བྱེད་པ་དང་སྦྲགས་རྩོམ་སྒྲིག་བྱེད་དུས་སུ་སྔོན་ལྟ་བྱེད།"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["ཚན་པ་གསར་བ་འདྲེན་པ་དང་ནང་དོན་དོ་དམ་བྱས་ཏེ་བཅར་འདྲི་བྱེད་མཁན (བཤེར་འཚོལ་མ་འཕྲུལ་) ལ་རོགས་རམ་བྱས་ཏེ་ཁྱེད་ཀྱི་ནང་དོན་གཞི་སྒྲོམ་ལ་རྒྱུས་ལོན་བྱེད་པ།"],"Display multiple images in a rich gallery.":["ཕུན་སུམ་ཚོགས་པའི་པར་དེབ་ཁྲོད་དུ་བརྙན་རིས་དུ་མ་འཆར་བ།"],"Add a link to a downloadable file.":["ཕབ་ལེན་བྱེད་ཐུབ་པའི་ཡིག་ཆའི་སྦྲེལ་མཐུད་ཁ་སྣོན།"],"Embed videos, images, tweets, audio, and other content from external sources.":["ཕྱིའི་ཐོན་ཁུངས་ལས་བྱུང་བའི་བརྙན་ཟློས་དང་བརྙན་རིས། ཐོས་ཡིག སྒྲ་དང་ནང་དོན་གཞན་པ་བཙུད་འཇུག"],"Resize for smaller devices":["སྒྲིག་ཆས་ཅུང་ཆུང་བའི་ཆེ་ཆུང་ལེགས་སྒྲིག"],"This embed may not preserve its aspect ratio when the browser is resized.":["བཤར་ལྟ་ཆས་ཀྱི་ཆེ་ཆུང་ལེགས་སྒྲིག་བྱེད་དུས་སུ་བཙུད་འཇུག་འདི་དཀྱིས་ཞེང་བསྡུར་ཚད་སོར་འཇོག་བྱེད་མི་ཐུབ་ཀྱང་སྲིད།"],"This embed will preserve its aspect ratio when the browser is resized.":["བཤར་ལྟ་ཆས་ཀྱི་ཆེ་ཆུང་ལེགས་སྒྲིག་བྱེད་དུས་སུ་བཙུད་འཇུག་འདི་དཀྱིས་ཞེང་བསྡུར་ཚད་སོར་འཇོག་བྱེད་པ་ཡིན།"],"Embed an Animoto video.":["Animoto བརྙན་ཟློས་བཙུད་འཇུག"],"Embed a Vimeo video.":["Vimeo བརྙན་ཟློས་བཙུད་འཇུག"],"Embed Flickr content.":["Flickr ནང་དོན་བཙུད་འཇུག"],"Embed Spotify content.":["Spotify ནང་དོན་བཙུད་འཇུག"],"Embed SoundCloud content.":["SoundCloud ནང་དོན་བཙུད་འཇུག"],"Embed a WordPress post.":["WordPress རྩོམ་ཡིག་བཙུད་འཇུག"],"Embed an Instagram post.":["Instagram རྩོམ་ཡིག་བཙུད་འཇུག"],"Embed a Facebook post.":["Facebook རྩོམ་ཡིག་བཙུད་འཇུག"],"Embed a WordPress.tv video.":["WordPress.tv བརྙན་ཟློས་བཙུད་འཇུག"],"Embed a VideoPress video.":["VideoPress བརྙན་ཟློས་བཙུད་འཇུག"],"Embed a Tumblr post.":["Tumblr རྩོམ་ཡིག་བཙུད་འཇུག"],"Embed a TED video.":["TED བརྙན་ཟློས་བཙུད་འཇུག"],"Embed Speaker Deck content.":["Speaker Deck ནང་དོན་བཙུད་འཇུག"],"Embed a YouTube video.":["YouTube བརྙན་ཟློས་བཙུད་འཇུག"],"Embed SmugMug content.":["SmugMug ནང་དོན་བཙུད་འཇུག"],"Embed Slideshare content.":["Slideshare ནང་དོན་བཙུད་འཇུག"],"Embed Scribd content.":["Scribd ནང་དོན་བཙུད་འཇུག"],"Embed Screencast content.":["Screencast ནང་དོན་བཙུད་འཇུག"],"Embed ReverbNation content.":["ReverbNation ནང་དོན་བཙུད་འཇུག"],"Embed a Reddit thread.":["Reddit thread བཙུད་འཇུག"],"Embed Polldaddy content.":["Polldaddy ནང་དོན་བཙུད་འཇུག"],"Embed Mixcloud content.":["Mixcloud ནང་དོན་བཙུད་འཇུག"],"Embed a tweet.":["tweet བཙུད་འཇུག"],"Embed Meetup.com content.":["Meetup.com ནང་དོན་བཙུད་འཇུག"],"Embed Kickstarter content.":["Kickstarter ནང་དོན་བཙུད་འཇུག"],"Embed Issuu content.":["Issuu ནང་དོན་བཙུད་འཇུག"],"Embed Imgur content.":["Imgur ནང་དོན་བཙུད་འཇུག"],"Embed Hulu content.":["Hulu ནང་དོན་བཙུད་འཇུག"],"Embed a Dailymotion video.":["Dailymotion བརྙན་ཟློས་བཙུད་འཇུག"],"Embed CollegeHumor content.":["CollegeHumor ནང་དོན་བཙུད་འཇུག"],"Embed Cloudup content.":["Cloudup ནང་དོན་བཙུད་འཇུག"],"Add an image or video with a text overlay — great for headers.":["ཡི་གེ་ལྡན་པའི་སྣོན་བརྩེགས་ཅན་གྱི་བརྙན་རིས་དང་ཡང་ན་བརྙན་ཟློས་ཁ་སྣོན། — ཁ་བྱང་ལ་ཧ་ཅང་འཚམས།"],"Display code snippets that respect your spacing and tabs.":["བར་སྟོང་དང་གདམ་བྱང་ལ་སྒོ་བསྟུན་བྱེད་པའི་ཚབ་ཨང་དུམ་བུ་འཆར་བ།"],"Use the classic WordPress editor.":["ཚད་ལྡན་གྱི WordPress རྩོམ་སྒྲིག་ཆས་བཀོལ་བ།"],"Display a list of all categories.":["དཀར་ཆག་ཡོངས་ཀྱི་གསལ་ཐོ་འཆར་བ།"],"Embed a simple audio player.":["སྟབས་བདེའི་སྒྲ་ཟློས་གཏོང་ཆས་བཙུད་འཇུག"],"noun\u0004View":["མཐོང་སྣང་།"],"editor button\u0004Left to right":["གཡོན་ནས་གཡས།"],"Save as Pending":["བཤེར་སྒུག་ལ་ཉར་ཚགས།"],"%s address":["%s ས་གནས།"],"Paste or type URL":["URL སྦྱོར་བའམ་ཡང་ན་བླུགས།"],"Insert from URL":["URL ནས་བར་འཇུག"],"Block Navigator":["རྡོག་པོའི་ཕྱོགས་སྟོན་ཆས།"],"Styles":["བཟོ་ལྟ།"],"Advanced panels":["མཐོ་རིམ་པང་ལེབ།"],"Document panels":["ཡིག་ཚགས་པང་ལེབ།"],"General":["རྒྱུན་ལྡན།"],"Open the block navigation menu.":["རྡོག་ཕྱོགས་སྟོན་གདམ་ཐོ་ཁ་ཕྱེ།"],"Work without distraction":["ལས་ཀར་རྣམ་གཡེང་མེད་པ།"],"Focus on one block at a time":["ཐེངས་གཅིག་ལ་རྡོག་གཅིག་དོ་སྣང་།"],"Access all block and document tools in a single place":["གནས་ཡུལ་གཅིག་ནས་རྡོག་ཡོངས་དང་ཡིག་ཚགས་ལག་ཆའི་ཚང་ལ་བཅར་འདྲི།"],"Options":["གདམ་ཚན།"],"(opens in a new tab)":["(གདམ་བྱང་གསར་པའི་ཁྲོད་དུ་ཁ་ཕྱེ)"],"Minutes":["སྐར་མ།"],"Hours":["ཆུ་ཚོད།"],"Time":["དུས་ཚོད།"],"Year":["ལོ།"],"Day":["ཉིན།"],"December":["ཟླ་བཅུ་གཉིས་པ།"],"November":["ཟླ་བཅུ་གཅིག་པ།"],"October":["ཟླ་བཅུ་པ།"],"September":["ཟླ་དགུ་པ།"],"August":["ཟླ་བརྒྱད་པ།"],"July":["ཟླ་བདུན་པ།"],"June":["ཟླ་དྲུག་པ།"],"May":["ཟླ་ལྔ་པ།"],"April":["ཟླ་བཞི་བ།"],"March":["ཟླ་གསུམ་པ།"],"February":["ཟླ་གཉིས་པ།"],"January":["ཟླ་དང་པོ།"],"Month":["ཟླ་བ།"],"Date":["ཟླ་ཚེས།"],"Go to the first (home) or last (end) day of a week.":["མཐེབ Home དང་ཡང་ན End སྤྱད་ནས་གཟའ་འཁོར་དེའི་ཉིན་དང་པོའམ་ཡང་ན་ཉིན་མཐའ་མ་ལ་བསྐྱོད།"],"Home/End":["Home/End"],"Home and End":["མཐེབ Home དང End"],"Move backward (PgUp) or forward (PgDn) by one month.":["མཐེབ PgUp དང་ཡང་ན PgDn སྤྱད་ནས་ཟླ་བ་རེ་རྩིས་གཞི་བྱས་ཏེ་མཇུག་ཕྱོགས་དང་སྔོན་ཕྱོགས་སུ་སྤོ་བསྣུར།"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up དང Page Down"],"Move backward (up) or forward (down) by one week.":["མཐེབ་ཡར་ཕྱོགས་དང་མར་ཕྱོགས་སྤྱད་ནས་གཟའ་འཁོར་རེ་རྩིས་གཞི་བྱས་ཏེ་མཇུག་ཕྱོགས་དང་སྔོན་ཕྱོགས་སུ་སྤོ་བསྣུར།"],"Up and Down Arrows":["མཐེབ་ཡར་ཕྱོགས་དང་མར་ཕྱོགས།"],"Move backward (left) or forward (right) by one day.":["མཐེབ་གཡོན་ཕྱོགས་དང་གཡས་ཕྱོགས་སྤྱད་ནས་ཉིན་རེ་རྩིས་གཞི་བྱས་ཏེ་མཇུག་ཕྱོགས་དང་སྔོན་ཕྱོགས་སུ་སྤོ་བསྣུར།"],"Left and Right Arrows":["མཐེབ་གཡོན་ཕྱོགས་དང་གཡས་ཕྱོགས།"],"Select the date in focus.":["འདུ་གནས་ཀྱི་ཟླ་ཚེས་འདེམས།"],"Navigating with a keyboard":["མཐེབ་གཞོང་བཀོལ་སྤྱོད་བྱེད་སྟངས།"],"Click the desired day to select it.":["དགོས་པའི་ཟླ་ཚེས་མནན་ཚེ་དེ་འདེམས་ཐུབ།"],"Click the right or left arrows to select other months in the past or the future.":["གཡས་རྟགས་དང་གཡོན་རྟགས་མནན་ནས་འདས་པ་དང་མ་འོངས་པའི་ཟླ་བ་འདེམས།"],"Click to Select":["མནན་ནས་འདེམས།"],"Calendar Help":["ལོ་ཐོའི་རོགས་རམ།"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["མཐེབ་གཞོང་ཁྲོད་ཀྱི་མདའ་རྟགས་སྤྱད་ནས་རྩ་བའི་ཁ་དོག་ལ་བཟོ་བཅོས་བྱེད་ཆོག ཡར་རྟགས་དང་མར་རྟགས་ཀྱིས་ཁ་དོག་ཇེ་གསལ་དང་ཇེ་ནག་ཏུ་གཏོང་བ་དང་། གཡས་རྟགས་དང་གཡོན་རྟགས་ཀྱིས་ཚད་ལོངས་ཚད་ཇེ་མཐོ་དང་ཇེ་དམའ་རུ་གཏོང་ཐུབ།"],"Choose a shade":["གྲིབ་མ་འདེམས།"],"Change color format":["ཁ་དོག་རྣམ་གཞག་བཟོ་བཅོས།"],"Color value in HSL":["HSL ཁ་དོག་གྲངས་ཐང་།"],"Color value in RGB":["RGB ཁ་དོག་གྲངས་ཐང་།"],"Color value in hexadecimal":["Hex (བཅུ་དྲུག་གོང་འགྲིལ་ལུགས) ཁ་དོག་གྲངས་ཐང་།"],"RGB mode active":["RGB དཔེ་རྣམ་སྤྱད་ཟིན།"],"Hex color mode active":["Hex ཁ་དོག་དཔེ་རྣམ་སྤྱད་ཟིན།"],"Hue/saturation/lightness mode active":["ཚོན་མདངས།/ཚད་ལོངས་ཚད།/གསལ་ཚད་ དཔེ་རྣམ་སྤྱད་ཟིན།"],"Move the arrow left or right to change hue.":["གཡོན་རྟགས་དང་གཡས་རྟགས་མནན་ནས་ཚོན་མདངས་བཟོ་བཅོས་བྱེད།"],"Hue value in degrees, from 0 to 359.":["ཚོན་མདངས་ཀྱི་གྲངས་ཐང་ནི་ཏུའུ་ཡིས་འཇལ་ཏེ། 0 ནས 359 དབར་གྱི་གྲངས་ཐང་ཡིན་ཆོག"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha གྲངས་ཐང་ནི། 0 (ནང་གསལ།) ནས 1 (ཡོངས་སུ་ནང་གསལ་མིན་པ།) དབར་ཡིན་ཆོག"],"Stripes":["ཁྲ་ཐིག"],"Your site doesn’t include support for this block.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་སུ་རྡོག་འདིའི་རམ་འདེགས་མི་ཐེ།"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་སུ་རྡོག་ \"%s\" ཡི་རམ་འདེགས་མི་ཐེ། ཁྱེད་ཀྱིས་རྡོག་འདི་ཡོངས་སུ་སོར་འཇོག་བྱེད་པའམ་ཡང་ན་སྤོ་འབུད་བྱེད་ཆོག་པ་ཡིན།"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["ཁྱེད་ཀྱི་དྲ་ཚིགས་སུ་རྡོག་ \"%s\" ཡི་རམ་འདེགས་མི་ཐེ། ཁྱེད་ཀྱིས་རྡོག་འདི་ཡོངས་སུ་སོར་འཇོག་བྱས་ནས་དེའི་ནང་དོན་དེ་རང་བཟོ་ཀྱི HTML རྡོག་ལ་བརྗེ་སྒྱུར་བྱེད་པའམ་ཡང་ན་སྤོ་འབུད་བྱེད་ཆོག་པ་ཡིན།"],"Media area":["སྨྱན་གཟུགས་ས་ཁུལ།"],"Media & Text":["སྨྱན་གཟུགས། & ཡི་གེ"],"Show media on right":["གཡས་སུ་སྨྱན་གཟུགས་འཆར།"],"Show media on left":["གཡོན་དུ་སྨྱན་གཟུགས་འཆར།"],"Open in New Tab":["གདམ་བྱང་གསར་པའི་ཁྲོད་དུ་ཁ་ཕྱེ།"],"Cover":["ཕྱི་སྐོགས།"],"Border settings":["མཐའ་སྒྲོམ་སྒྲིག་འགོད།"],"Medium":["འབྲིང་བ།"],"Paste URL or type to search":["URL སྦྱོར་བའམ་བླུགས་ནས་བཤེར་འཚོལ།"],"Terms":["སྡེ་ཚན།"],"Your work will be published at the specified date and time.":["ཁྱེད་ཀྱི་བརྩམས་ཆོས་དེ་དམིགས་འཛུགས་བྱས་ཟིན་པའི་ཟླ་ཚེས་དང་དུས་ཚོད་སྟེང་དུ་པར་འགྲེམས་བྱེད་ཀྱི་རེད།"],"Are you ready to schedule?":["ཁྱེད་ཀྱིས་དུས་བཀག་གྲ་སྒྲིག་བྱས་ཡོད་དམ།"],"Always show pre-publish checks.":["ནམ་ཡིན་ཡང་མ་སྤེལ་སྔོན་གྱི་ཞིབ་བཤེར་འཆར།"],"Take Over":["རྩིས་ལེན།"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["སྤྱོད་མཁན་གཞན་ཞིག་གིས་རྩོམ་ཡིག་འདིར་ལས་ཀ་བྱེད་བཞིན་འདུག་པས། ཁྱེད་ཀྱིས་བཟོ་བཅོས་རྒྱག་མི་ཐུབ། རྩིས་ལེན་བྱས་ན་མ་གཏོགས།"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s ཡིས་རྩོམ་ཡིག་འདིར་ལས་ཀ་བྱེད་བཞིན་འདུག་པས། ཁྱེད་ཀྱིས་བཟོ་བཅོས་རྒྱག་མི་ཐུབ། རྩིས་ལེན་བྱས་ན་མ་གཏོགས།"],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["ད་ལྟའི་ཆར་རྩོམ་འདིའི་རྩོམ་སྒྲིག་སྟངས་འཛིན་སྤྱོད་མཁན་གཞན་ཞིག་ལ་ཡོད་འདུག སེམས་ཁུར་མ་བྱེད་དང་། ཁྱེད་ཀྱིས་བཟོ་བཅོས་བྱས་པ་དག་ཉར་ཟིན་ཡོད།"],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["ད་ལྟའི་ཆར་རྩོམ་འདིའི་རྩོམ་སྒྲིག་སྟངས་འཛིན %s ལ་ཡོད་འདུག སེམས་ཁུར་མ་བྱེད་དང་། ཁྱེད་ཀྱིས་བཟོ་བཅོས་བྱས་པ་དག་ཉར་ཟིན་ཡོད།"],"Avatar":["དབུ་བརྙན།"],"This post is already being edited.":["རྩོམ་འདིར་རྩོམ་སྒྲིག་བྱས་ཟིན།"],"Someone else has taken over this post.":["གཞན་གྱིས་རྩོམ་ཡིག་འདི་རྩིས་ལེན་བྱས་འདུག"],"This block contains unexpected or invalid content.":["རྡོག་འདིར་ཐོལ་རྒྱག་གམ་ཡང་ན་ནུས་མེད་ཀྱི་ནང་དོན་ཚུད་འདུག"],"Resolve Block":["རྡོག་ཐག་གཅོད།"],"Convert to HTML":["HTML ལ་བརྗེ་སྒྱུར།"],"This block can only be used once.":["རྡོག་འདི་ཐེངས་གཅིག་ལ་མ་གཏོགས་སྤྱོད་མི་ཐུབ།"],"Exit Code Editor":["ཚབ་ཨང་རྩོམ་སྒྲིག་ཆས་ལས་ཕྱིར་ཐོན།"],"Editing Code":["ཚབ་ཨང་རྩོམ་སྒྲིག"],"Solid Color":["མདོག་རྐྱང་།"],"Main Color":["ཁ་དོག་གཙོ་བོ།"],"HTML":["HTML"],"Write HTML…":["HTML འབྲི་བ…"],"Media settings":["སྨྱན་གཟུགས་སྒྲིག་འགོད།"],"Overlay":["སྣོན་བརྩེགས།"],"Insert Media":["སྨྱན་གཟུགས་བར་འཇུག"],"Reusable block imported successfully!":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག་པོ་བདེ་བླག་ངང་ནང་འདྲེན་བྱས་ཟིན།"],"Invalid Reusable Block JSON file":["ནུས་མེད་ཀྱི་ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག JSON ཡིག་ཆ།"],"Invalid JSON file":["ནུས་མེད་ཀྱི JSON ཡིག་ཆ།"],"Import from JSON":["JSON ལས་ནང་འདྲེན།"],"Backtick":["Backtick གསེག་ཚེག"],"Period":["Period"],"Comma":["Comma"],"Change type of %d block":["རྡོག %d ཡི་རིགས་གྲས་བཟོ་བཅོས།"],"Current":["མིག་སྔར།"],"After Conversion":["བརྗེ་བསྒྱུར་བཏང་རྗེས།"],"Change alignment":["སྙོམས་སྒྲིག་ཚུལ་བརྗེ་འགྱུར།"],"Change text alignment":["ཡིག་རྐྱང་གི་སྙོམས་སྒྲིག་ཚུལ་བརྗེ་འགྱུར།"],"%d block":["རྡོག %d"],"Forward-slash":["གསེག་ཤད།"],"No archives to show.":["ཡིག་མཛོད་འཆར་དགོས་པ་མེད།"],"This file is empty.":["ཡིག་ཆ་འདི་སྟོང་བ་རེད།"],"Sorry, this file type is not supported here.":["དགོངས་དག་ཞུ། གནས་འདིར་ཡིག་ཆའི་རིགས་འདི་ལ་རམ་འདེགས་མི་བྱེད།"],"Manage all reusable blocks":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག་པོ་ཡོངས་དོ་དམ།"],"Title":["ཁ་བྱང་།"],"Fullscreen mode":["ཡོལ་གང་དཔེ་རྣམ།"],"Beautiful landscape":["ལྟ་ན་སྡུག་པའི་ཡུལ་ལྗོངས།"],"Close panel":["པང་ལེབ་ཁ་རྒྱག"],"Convert to Classic Block":["ཚད་ལྡན་གྱི་རྡོག་ལ་བརྗེ་སྒྱུར།"],"Remove Poster Image":["འགྲེམ་ཤོག་བརྙན་རིས་སྤོ་འབུད།"],"Select Poster Image":["འགྲེམས་ཤོག་བརྙན་རིས་འདེམས།"],"Poster Image":["འགྲེམས་ཤོག་བརྙན་རིས།"],"This block is deprecated. Please use the Columns block instead.":["རྡོག་འདི་སྤྱད་ན་མི་ལེགས། སྟར་གྱི་རྡོག་སྤྱོད་རོགས་ཞུ།"],"Text Columns (deprecated)":["ཡི་གེའི་སྟར། (སྤྱད་ན་མི་ལེགས)"],"Create":["གསར་སྐྲུན།"],"Row Count":["ཕྲེང་གི་གྲངས།"],"Column Count":["སྟར་གྱི་གྲངས།"],"This block is deprecated. Please use the Paragraph block instead.":["རྡོག་འདི་སྤྱད་ན་མི་ལེགས། དུམ་ཚན་གྱི་རྡོག་སྤྱོད་རོགས་ཞུ།"],"Subheading (deprecated)":["ཁ་བྱང་ཕལ་བ། (སྤྱད་ན་མི་ལེགས།)"],"blockquote":["རྡོག་འདྲེན་བཀོལ།"],"Change the block type after adding a new paragraph.":["དུམ་ཚན་གསར་པ་ཁ་སྣོན་བྱས་རྗེས་རྡོག་རིགས་གྲས་བཟོ་བཅོས།"],"Spotlight mode":["འོད་འདུའི་གློག་ཞུ་དཔེ་རྣམ།"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["འགྲེལ་བྱང་གིས་སྤྱོད་མཁན་དང་བཤེར་འཚོལ་མ་འཕྲུལ་ལ་ཁྱེད་ཀྱི་དྲ་ཚིགས་དང་ནང་དོན་འཚོལ་བར་རོགས་རམ་བྱས་ཏེ་ཕྱོགས་སྟོན་བྱེད་ཀི་རེད། གནད་ཚིག་ཞིག་ཁ་སྣོན་བྱས་ཏེ་ཁྱེད་རང་གི་རྩོམ་ལ་ཞིབ་བརྗོད་བྱོས།"],"Add tags":["འགྲེལ་བྱང་ཁ་སྣོན།"],"Apply the \"%1$s\" format.":["རྣམ་གཞག \"%1$s\" བཀོལ་སྤྱོད།"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["ཁྱེད་ཀྱི་དཔེ་སྒྲོམ་གྱིས་རྩོམ་ཡིག་རྣམ་གཞག་སྤྱད་ནས་རིགས་མི་འདྲ་བའི་ནང་དོན་དམིགས་བསལ་གྱིས་འཆར་གི་རེད། དཔེར་ན་བརྙན་རིས་དང་ཡང་ན་བརྙན་ཟློས་ལྟ་བུ། རྩོམ་ཡིག་རྣམ་གཞག་སྤྱད་ནས་དམིགས་བསལ་བཟོ་ལྟ་འདི་ལ་ལྟོས།"],"Use a post format":["རྩོམ་ཡིག་རྣམ་གཞག་སྤྱོད་པ།"],"Insert After":["རྗེས་སུ་བར་འཇུག"],"Insert Before":["སྔོན་དུ་བར་འཇུག"],"Move %1$d block from position %2$d down by one place":["རྡོག %1$d གནས་ཡུལ %2$d ནས་མར་ཕྱོགས་སུ་ས་ཆ་གཅིག་སྤོ་བསྣུར་བྱེད།"],"Move %1$d block from position %2$d up by one place":["རྡོག %1$d གནས་ཡུལ %2$d ནས་ཡར་ཕྱོགས་སུ་ས་ཆ་གཅིག་སྤོ་བསྣུར་བྱེད།"],"Move %1$s block from position %2$d right to position %3$d":["རྡོག %1$s གནས་ཡུལ %2$d ནས་གཡས་ཕྱོགས་སུ་གནས་ཡུལ %3$d ལ་སྤོ་བསྣུར་བྱེད།"],"movie":["གློག་བརྙན།"],"Insert a new block before the selected block(s).":["གདམ་པའི་རྡོག་གི་སྔོན་དུ་རྡོག་གསར་པ་བར་འཇུག"],"Remove the selected block(s).":["གདམ་པའི་རྡོག་སྤོ་འབུད།"],"Duplicate the selected block(s).":["གདམ་པའི་རྡོག་འདྲ་བཟོ།"],"Block shortcuts":["རྡོག་གི་མྱུར་ལམ།"],"Clear selection.":["འདེམ་སྒྲུག་གཙང་སེལ།"],"Select all text when typing. Press again to select all blocks.":["ཡི་གེ་གཏག་དུས་སུ་ཡི་གེ་ཡོངས་སུ་འདེམས། ཡང་བསྐྱར་མནན་ནས་རྡོག་ཡོངས་སུ་འདེམས།"],"Selection shortcuts":["མྱུར་ལམ་འདེམ་སྒྲུག"],"Switch between Visual editor and Code editor.":["ཐད་མཐོང་རྩོམ་སྒྲིག་ཆས་དང་ཚབ་ཨང་རྩོམ་སྒྲིག་ཆས་ཕར་ཚུར་བརྗེ་བ།"],"Navigate to the previous part of the editor.":["རྩོམ་སྒྲིག་ཆས་ཀྱི་ཆ་ཤས་སྔོན་མར་ཕྱོགས་སྟོན།"],"Navigate to the next part of the editor.":["རྩོམ་སྒྲིག་ཆས་ཀྱི་ཆ་ཤས་རྗེས་མར་ཕྱོགས་སྟོན།"],"Show or hide the settings sidebar.":["སྒྲིག་འགོད་འགྲམ་ཚང་འཆར་བའམ་གབ་པ།"],"Redo your last undo.":["ཁྱེད་ཀྱི་མཐའ་མའི་ཕྱིར་འཐེན་བསྐྱར་བཟོ།"],"Undo your last changes.":["ཁྱེད་ཀྱི་མཐའ་མའི་བཟོ་བཅོས་ཕྱིར་འཐེན།"],"Save your changes.":["བཟོ་བཅོས་ཉར་ཚགས།"],"Global shortcuts":["ཁྱོན་ཡོངས་མྱུར་ལམ།"],"Remove a link.":["སྦྲེལ་ཐག་སྤོ་འབུད།"],"Convert the selected text into a link.":["གདམ་པའི་ཡི་གེ་སྦྲེལ་མཐུད་ལ་བརྗེ་སྒྱུར་བྱེད།"],"Underline the selected text.":["གདམ་པའི་ཡི་གེར་འོག་ཐིག་འཇོག"],"Make the selected text italic.":["གདམ་པའི་ཡི་གེ་གསེག་གཟུགས་བཅའ་བ།"],"Make the selected text bold.":["གདམ་པའི་ཡི་གེ་ཤ་ཆེན་བཅའ་བ།"],"Text formatting":["ཡི་གེའི་རྣམ་གཞག"],"Insert a new block after the selected block(s).":["གདམ་པའི་རྡོག་གི་རྗེས་སུ་རྡོག་གསར་པ་བར་འཇུག"],"Keyboard shortcuts":["མཐེབ་གཞོང་མྱུར་ལམ།"],"Thanks for testing Gutenberg!":["Gutenberg ཚོད་ལྟ་གནང་བར་ཐུགས་རྗེ་ཆེ་ཞུ།"],"Help build Gutenberg":["Gutenberg ལ་རོགས་རམ་བྱས་ཏེ་འཛུགས་སྐྲུན་བྱེད་པ།"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["གལ་ཏེ་ཁྱེད་ཀྱིས་རྡོག་གཞན་པ་འཛུགས་སྐྲུན་བྱེད་པའི་ཐད་ནས་དེ་ལས་མང་བའི་གནས་ཚུལ་མཁྱེན་འདོད་པའམ་ཡང་ན་རྣམ་གྲངས་ལེགས་འགྲུབ་བྱེད་པར་རོགས་རམ་བྱེད་འདོད་ཡོད་ཚེ། GitHub repository སྟེང་ལ་ཕེབས་རོགས།"],"The WordPress community":["WordPress མི་སྡེ།"],"Code is Poetry":["ཚབ་ཨང་ནི་སྙན་ངག་གོ།"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["ཁྱེད་ཀྱིས་རང་ཉིད་མོས་པའི་རྡོག་གང་རུང་འཛུགས་སྐྲུན་བྱེད་ཆོག་པ་ཡིན། གསོར་གནས་སམ་ཡང་ན་སྒུལ་ལྡན། རྒྱན་བཀོད་དང་ཡང་ན་གསལ་ཆ་དོད་པོ། འདི་ནི pullquote ཡི་རྡོག་ཞིག་ཡིན:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["ཕུན་སུམ་ཚོགས་པའི་སྨྱན་གཟུགས།"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg ཡིས 2017 ལོར་བརྩམས།"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["ཐད་མཐོང་རྩོམ་སྒྲིག"],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":["པར་དེབ།"],"Images & Videos":["བརྙན་རིས། & བརྙན་ཟློས།"],"Text & Headings":["ཡི་གེ & ཁ་བྱང་།"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":["ལག་ཆ་ བར་འཇུག"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Gutenberg རྩོམ་སྒྲིག་ཆས་སུ་བྱོན་པ་ལེགས།"],"block name\u0004More":["དེ་ལས་མང་།"],"button to expand options\u0004More":["དེ་ལས་མང་།"],"Are you sure you want to unschedule this post?":["ཁྱེད་ཀྱིས་རྩོམ་འདིར་སྔོན་ཚུད་ནས་སྒྲིག་གཤོམ་བྱེད་ཀྱི་མིན་ནམ།"],"Alt Text (Alternative Text)":["ཚབ་བྱེད་ཡི་གེའི་གསལ་བཤད།"],"Reusable Block":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག"],"Unique identifier for the object.":["བྱ་ཡུལ་གྱི་མཚོན་རྟགས་ཉག་གཅིག"],"Untitled Reusable Block":["ཁ་བྱང་མེད་པའི་ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག"],"Small":[],"Reusable":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པ།"],"Remove from Reusable blocks":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག་པོ་ལས་སྤོ་འབུད།"],"Add to Reusable blocks":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག་པོར་ཁ་སྣོན།"],"Keep as HTML":["HTML སྲུང་འཛིན།"],"Edit URL":["URL རྩོམ་སྒྲིག"],"Color settings":["ཁ་དོག་སྒྲིག་འགོད།"],"The response is not a valid JSON response.":["ཡ་ལེན་འདི་ནི་ནུས་ལྡན་གྱི JSON ཡ་ལེན་ཞིག་མ་རེད།"],"Editor publish":["རྩོམ་སྒྲིག་ཆས་པར་འགྲེམས།"],"Muted":["སྒྲ་མེད།"],"Video settings":["བརྙན་ཟློས་སྒྲིག་འགོད།"],"recent comments":["ཉེ་མཆན།"],"Latest Comments":["མཆན་གསར་ཤོས།"],"Display Excerpt":["གནད་བསྡུས་འཆར་བ།"],"Display Date":["ཟླ་ཚེས་འཆར་བ།"],"Display Avatar":["དབུ་བརྙན་འཆར་བ།"],"Latest comments settings":["དཔྱད་མཆན་གསར་ཤོས་སྒྲིག་འགོད།"],"Number of Comments":["དཔྱད་མཆན་གྱི་ཁ་གྲངས།"],"Background Opacity":["རྒྱབ་ལྗོངས་ནང་གསལ་མིན་ཚད།"],"Auto":["རང་འགུལ།"],"Preload":["སྔོན་ལ་སྣོན་འཇུག"],"Audio settings":["སྒྲ་ཟློས་སྒྲིག་འགོད།"],"Display a monthly archive of your posts.":["ཁྱེད་ཀྱི་རྩོམ་ཡིག་གི་ཟླ་འཁོར་ཡིག་མཛོད་འཆར་བ།"],"Display as Dropdown":["མར་འགྲེམས་འདེམས་བྱང་ལྟར་འཆར།"],"Show Post Counts":["རྩོམ་གྱི་ཁ་གྲངས་འཆར།"],"Archives settings":["ཡིག་མཛོད་སྒྲིག་འགོད།"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["རམ་འདེགས།"],"No comments to show.":["དཔྱད་མཆན་འཆར་དགོས་པ་མེད།"],"%1$s on %2$s":["%1$s ལགས་ཀྱིས «%2$s» སྟེང་དུ།"],"Select Post":["རྩོམ་ཡིག་འདེམས།"],"Select Week":["གཟའ་འཁོར་འདེམས།"],"Select Day":["ཉིན་འདེམས།"],"Select Month":["ཟླ་བ་འདེམས།"],"Select Year":["ལོ་འདེམས།"],"Archives":["ཡིག་མཛོད།"],"Very dark gray":["གོ་ཐལ་མདོག"],"Cyan bluish gray":["སྔོ་ལྗང་ཐལ་མདོག"],"Very light gray":["ཤིན་ཏུ་སྐྱ་བོ།"],"Vivid cyan blue":["སྔོ་ལྗང་གསལ་པོ།"],"Pale cyan blue":["སྔོ་ལྗང་སྐྱ་མདངས།"],"Vivid green cyan":["སྔོ་ལྗང་གསལ་པོ།"],"Light green cyan":["སྔོ་ལྗང་འོད་ཅན།"],"Luminous vivid amber":["སྤོས་ཤེལ་བཀྲ་མདངས་ཅན།"],"Luminous vivid orange":["ལི་མདོག་བཀྲ་མདངས་ཅན།"],"Vivid red":["དམར་གསལ།"],"Pale pink":["ཟིང་སྐྱ།"],"Inline image":["ནང་ཁུལ་བརྙན་རིས།"],"Available block types":["སྤྱོད་རུང་བའི་རྡོག་གི་རིགས།"],"Transform To:":["དབྱིབས་རྣམ་སྒྱུར་བ:"],"Remove Block":["རྡོག་སྤོ་འབུད།"],"Open publish panel":["པར་འགྲེམས་པང་ལེབ་ཁ་ཕྱེ།"],"Dots":["ཚེག"],"Wide Line":["ཐིག་རིང་།"],"Large":["ཆེ་བ།"],"Show download button":["ཕབ་ལེན་མཐེབ་གཅུས་ངོམ་སྟོན།"],"Download button settings":["ཕབ་ལེན་མཐེབ་གཅུས་སྒྲིག་འགོད།"],"Link To":["སྦྲེལ་ཡུལ།"],"Text link settings":["ཡིག་རྐྱང་སྦྲེལ་མཐུད་སྒྲིག་འགོད།"],"download":[],"pdf":["pdf"],"document":["ཡིག་ཚགས།"],"Copy URL":["URL མཁོ་ཕབ།"],"Write file name…":["ཡིག་ཆའི་མིང་འབྲི་བ…"],"File":["ཡིག་ཆ།"],"A single column within a columns block.":["སྟར་རྡོག་ཁྲོད་ཀྱི་སྟར་ཆིག་རྐྱང་།"],"Column":["སྟར།"],"Outline":["སྤྱི་ཁོག"],"Loop":["རེས་འཁོར།"],"Autoplay":["རང་འགུལ་གྱིས་གཏོང་།"],"Playback Controls":["གཏོང་ཆས་སྟངས་འཛིན།"],"Close dialog":["གླེང་སྒྲོམ་ཁ་རྒྱག"],"Sorry, this file type is not permitted for security reasons.":["དགོངས་དག་ཞུ། བདེ་འཇགས་ཀྱི་རྐྱེན་པས། ཡིག་ཆའི་རིགས་གྲས་འདི་ལ་རྒྱབ་སྐྱོར་མེད།"],"Disable tips":["སྣེ་སྟོན་མི་སྤྱོད།"],"Got it":["ཤེས་སོང་།"],"See next tip":["སྣེ་སྟོན་རྗེས་མར་བལྟ།"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["གྲ་སྒྲིག་བྱས་ཚར་དུས། ཁྱེད་ཀྱི་བརྩམས་ཆོས་འབུལ་སྤྲོད་བྱས་ཏེ་ཞིབ་བཤེར་བྱེད་དུ་ཆུགས་དང་། རྩོམ་སྒྲིག་པས་ཁྱེད་ལ་ཆོག་མཆན་སྤྲོད་གི་རེད།"],"Are you ready to submit for review?":["ཁྱེད་ཀྱིས་ཞིབ་བཤེར་འབུལ་སྤྲོད་གྲ་སྒྲིག་བྱས་ཡོད་དམ།"],"Replace image":["བརྙན་རིས་བརྗེ་སྤོར།"],"Remove image":["བརྙན་རིས་སྤོ་འབུད།"],"Error while uploading file %s to the media library.":["ཡིག་ཆ %s སྨྱན་མཛོད་དུ་སྐྱེལ་འཇོག་བྱེད་དུས་སུ་ནོར་འཁྲུལ་བྱུང་བ།"],"This file exceeds the maximum upload size for this site.":["ཡིག་ཆ་འདི་དྲ་ཚིགས་འདིའི་ཆེས་ཆེ་བའི་སྐྱེལ་འཇོག་གི་ཆེ་ཆུང་ལས་བརྒལ་འདུག"],"View the autosave":["རང་འགུལ་ཉར་ཚགས་ལ་བལྟ།"],"There is an autosave of this post that is more recent than the version below.":["རྩོམ་འདིའི་རང་འགུལ་ཉར་ཚགས་ནི་གཤམ་གྱི་ཐོན་རིམ་ལས་ཀྱང་གསར་བ་ཡིན།"],"Autosaving":["རང་འགུལ་ཉར་ཚགས།"],"Enter URL here…":["འདིར་ URL བླུགས…"],"Pin to toolbar":["ལག་ཆའི་ཚང་ལ་གཏན་འཇགས།"],"Unpin from toolbar":["ལག་ཆའི་ཚང་ནས་ལེན་པ།"],"Insert a table — perfect for sharing charts and data.":["རེའུ་མིག་བར་འཇུག — རེའུ་མིག་དང་གཞི་གྲངས་མཉམ་སྤྱོད་བྱེད་པར་ཤིན་ཏུ་འཚམ།"],"Fixed width table cells":["ཞེང་ཚད་གཏན་འཇགས་ཡིན་པའི་རེའུ་མིག་གི་སྡེ་ཚན་མིག"],"Table settings":["རེའུ་མིག་སྒྲིག་འགོད།"],"Add text that respects your spacing and tabs, and also allows styling.":["སྟོང་མིག་དང་གདམ་བྱང་བརྩི་འཇོག་བྱེད་པའི་ཡི་གེ་བླུགས་ཆོག་པ་མ་ཟད། བཟོ་ལྟ་ཅན་དུའང་བྱེད་ཆོག་པ་ཡིན།"],"Display a list of your most recent posts.":["ཉེ་ཆར་སྤེལ་བའི་རྩོམ་ཡིག་གསལ་ཐོ་འཆར་བ།"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["རྡོག་གཅིག་ཁ་སྣོན་བྱས་ནས་དྲ་ཚིགས་གཞན་པ (དཔེར་ན། Twitter, Instagram ཡང་ན YouTube སོགས་ལྟ་བུ) ལས་ནང་དོན་ལེན་པ།"],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["སྟར་དུ་མའི་ནང་དོན་གྱི་རྡོག་གཅིག་ཁ་སྣོན་བྱས་རྗེས། ཁྱེད་ལ་མཁོ་བའི་ནང་དོན་རྡོག་གང་རུང་ཁ་སྣོན་བྱེད།"],"Error loading block: %s":["རྡོག་འཇུག་དུས་ཀྱི་ནོར་འཁྲུལ: %s"],"Unknown error":["མ་ཤེས་པའི་ནོར་འཁྲུལ།"],"Embed Handler":["སྒྲིག་གཅོད་བྱ་རིམ་བཙུད་འཇུག"],"term\u0004Remove %s":["%s སྤོ་འབུད།"],"Copy the permalink":["གཏན་འཇགས་སྦྲེལ་མཐུད་མཁོ་ཕབ།"],"Permalink copied":["གཏན་འཇགས་སྦྲེལ་མཐུད་མཁོ་ཕབ་བྱས་ཟིན།"],"Height in pixels":["མཐོ་ཚད་པིག་ཟེལ།"],"Spacer settings":["བར་རྟགས་སྒྲིག་འགོད།"],"Spacer":["བར་རྟགས།"],"Toggle to show a large initial letter.":["གསལ་བྱེད་ཐོག་མ་ཆེ་བ་འཆར་བར་བརྗེ་སྒྱུར།"],"Showing large initial letter.":["གསལ་བྱེད་ཐོག་མ་ཆེ་བ་འཆར་བ།"],"Name:":["མིང:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s/%3$s)"],"Remove item":["སྡེ་ཚན་སྤོ་འབུད།"],"Color code: %s":["ཁ་དོག་ཚབ་ཨང: %s"],"Skip to the selected block":["གདམ་པའི་རྡོག་ལས་མཆོང་།"],"Publish…":["པར་འགྲེམས…"],"Schedule…":["དུས་བཀག…"],"Edit post permalink":["རྩོམ་གྱི་གཏན་འཇགས་སྦྲེལ་མཐུད་རྩོམ་སྒྲིག"],"Show Block Settings":["རྡོག་སྒྲིག་འགོད་འཆར།"],"Hide Block Settings":["རྡོག་སྒྲིག་འགོད་གབ།"],"Block settings closed":["རྡོག་སྒྲིག་འགོད་ཁ་བཅད་ཟིན།"],"Close plugin":["མཐུད་སྣེའི་ཁ་རྒྱག"],"Editor settings":["རྩོམ་སྒྲིག་ཆས་སྒྲིག་འགོད།"],"Link settings":["སྦྲེལ་མཐུད་སྒྲིག་འགོད།"],"Unlink":["སྦྲེལ་མཐུད་དོར།"],"Page break":["ཤོག་ངོས་དབྱེ་རྟགས།"],"pagination":["ཤོག་གྲངས་བཀོད་སྒྲིག"],"next page":["ཤོག་ངོས་རྗེས་མ།"],"Image Size":["བརྙན་རིས་ཆེ་ཆུང་།"],"Height":["མཐོ་ཚད།"],"Width":["ཞེང་ཚད།"],"Image Dimensions":["བརྙན་རིས་འབྱེད་ཕྱོད།"],"Thumbnails are not cropped.":["བསྡུས་རིས་དྲས་གཏུབ་མི་བྱེད།"],"Thumbnails are cropped to align.":["བསྡུས་རིས་སྙོམས་སྒྲིག་ལ་དྲས་གཏུབ་མི་བྱེད།"],"Media Library":["སྨྱན་གཟུགས་མཛོད།"],"Advanced":["མཐོ་རིམ།"],"Add item":["སྡེ་ཚན་ཁ་སྣོན།"],"Reset the template":["དཔེ་པང་སོར་སློག"],"Keep it as is":["མ་གཞིའི་རྣམ་པ་སྲུང་འཛིན།"],"The content of your post doesn’t match the template assigned to your post type.":["ཁྱེད་ཀྱིས་རྩོམ་གྱི་ནང་དོན་དང་ཁྱེད་ལ་སྤྲད་པའི་རྩོམ་ཡིག་རིགས་གྲས་ཀྱི་དཔེ་པང་གཉིས་ཟླ་མི་འགྲིག"],"Resetting the template may result in loss of content, do you want to continue?":["དཔེ་པང་སོར་སློག་བྱས་ཚེ་ནང་དོན་བོར་བརླག་འབྱུང་སྲིད། ཁྱེད་ཀྱིས་མུ་མཐུད་དུ་བྱེད་འདོད་དམ།"],"Document Statistics":["ཡིག་ཚགས་བསྡོམས་རྩིས།"],"is now scheduled. It will go live on":["ད་ལྟ་དུས་བཀག་བྱས་ཟིན། དེ་ག་མུ་མཐུད་དུ་གནས་ངེས།"],"Scheduled":["དུས་བཀག་བྱས་ཟིན།"],"Scheduling…":["བཀོད་སྒྲིག་སྒང…"],"Code editor selected":["ཚབ་ཨང་རྩོམ་སྒྲིག་ཆས་གདམ།"],"Visual editor selected":["ཐད་མཐོང་རྩོམ་སྒྲིག་ཆས་འདེམས་ཟིན།"],"Plugins":["མཐུད་སྣེ།"],"Custom Size":["རང་བཟོས་ཆེ་ཆུང་།"],"Layout elements":["གྲུབ་ཆའི་བཀོད་པ།"],"term\u0004%s removed":["%s སྤོ་འབུད་བྱས་ཟིན།"],"term\u0004%s added":["%s ཁ་སྣོན་བྱས་ཟིན།"],"imperative verb\u0004Preview":["སྔོན་ལྟ།"],"Block deleted.":["རྡོག་སུབ་ཟིན།"],"Block updated.":["རྡོག་གསར་བཅོས་བྱས་ཟིན།"],"Block created.":["རྡོག་གསར་སྐྲུན་བྱས་ཟིན།"],"Trashing failed":["སྙིགས་སྣོད་དུ་གཡུག་མ་ཐུབ།"],"Updating failed.":["གསར་བཅོས་བྱ་མ་ཐུབ།"],"Scheduling failed.":["བཀོད་སྒྲིག་བྱ་མ་ཐུབ།"],"Publishing failed.":["པར་འགྲེམས་བྱེད་མ་ཐུབ།"],"View post":["རྩོམ་ལ་ལྟ།"],"You have unsaved changes. If you proceed, they will be lost.":["ཉར་ཚགས་བྱས་མེད་པའི་བཟོ་བཅོས་ལྷགས་འདུག་པས་གལ་སྲིད་མུ་མཐུད་དུ་བྱས་ཚེ་དེ་དག་བོར་སྲིད།"],"Document Outline":["ཡིག་ཚགས་ཀྱི་སྤྱི་ཁོག"],"Paragraphs":["དུམ་ཚན།"],"Headings":["ཁ་བྱང་།"],"Words":["ཡིག་གྲངས།"],"Content structure":["ནང་དོན་གཞི་སྒྲོམ།"],"Public":["ཡོངས་བསྒྲགས།"],"Protected with a password you choose. Only those with the password can view this post.":["ཁྱེད་ཀྱིས་གདམ་པའི་གསང་ཨང་གིས་སྲུང་སྐྱོབ་བྱེད་པ། གསང་ཨང་ཡོད་པའི་མི་ཁོ་ནས་རྩོམ་འདིར་བལྟ་ཐུབ།"],"Password Protected":["གསང་ཨང་གིས་སྲུང་སྐྱོབ།"],"Only visible to site admins and editors.":["དྲ་ཚིགས་ཀྱི་དོ་དམ་པ་དང་རྩོམ་སྒྲིག་པ་ཁོ་ནས་མཐོང་ཐུབ།"],"Private":["གསང་བ།"],"Visible to everyone.":["མི་སུས་ཀྱང་མཐོང་ཐུབ།"],"Post Visibility":["རྩོམ་ཡིག་བསྒྲགས་ཚད།"],"Would you like to privately publish this post now?":["ཁྱེད་ཀྱིས་ད་ལྟ་ལྐོག་ཏུ་རྩོམ་འདི་པར་འགྲེམས་བྱེད་འདོད་དམ།"],"Use a secure password":["ཉེན་མེད་གསང་ཨང་བཀོལ་བ།"],"Create password":["གསང་ཨང་གསར་སྐྲུན།"],"Move to Trash":["སྙིགས་སྣོད་དུ་སྤོ་བསྣུར།"],"Parent Term":["ཕ་རྒྱུད་སྡེ་ཚན།"],"Parent Category":["ཕ་རྒྱུད་དཀར་ཆག"],"Add new term":["སྡེ་ཚན་གསར་སྣོན།"],"Add new category":["དཀར་ཆག་གསར་སྣོན།"],"Term":["སྡེ་ཚན།"],"Tag":["འགྲེལ་བྱང་།"],"Add new Term":["སྡེ་ཚན་གསར་སྣོན།"],"Add new tag":["འགྲེལ་བྱང་གསར་སྣོན།"],"Switch to draft":["མ་ཟིན་ལ་བརྗེ་སྒྱུར།"],"Are you sure you want to unpublish this post?":["ཁྱེད་ཀྱིས་རྩོམ་འདི་པར་འགྲེམས་བྱེད་ཀྱི་མིན་ནམ།"],"Immediately":["འཕྲལ་དུ།"],"Save Draft":["མ་ཟིན་དུ་ཉར།"],"Saving":["ཉར་ཚགས།"],"Publish:":["པར་འགྲེམས:"],"Visibility:":["བསྒྲགས་ཚད:"],"Are you ready to publish?":["ཁྱེད་ཀྱིས་པར་འགྲེམས་གྲ་སྒྲིག་བྱས་ཡོད་དམ།"],"Copy Link":["སྦྲེལ་མཐུད་མཁོ་ཕབ།"],"What’s next?":["གོམ་པ་རྗེས་མ་ནི་གང་ཡིན་ནམ།"],"is now live.":["སྤེལ་ཟིན།"],"Published":["པར་འགྲེམས་བྱས་ཟིན།"],"Schedule":["དུས་བཀག"],"Update":["གསར་བཅོས།"],"Submit for Review":["བཤེར་སྤྲོད།"],"Updating…":["གསར་བཅོས་སྒང…"],"Publishing…":["པར་འགྲེམས་སྒང…"],"Allow pingbacks & trackbacks":["Pingbacks དང Trackbacks ཆོག་པ།"],"Permalink:":["གཏན་འཇགས་སྦྲེལ་མཐུད:"],"Pending review":["བསྐྱར་བཤེར་ལ་སྒུག"],"%d Revision":["བཟོ་བཅོས་པར་གཞི། %d"],"Suggestion:":["གྲོས་འདོན:"],"Post Format":["རྩོམ་ཡིག་རྣམ་གཞག"],"Chat":["གླེང་མོལ།"],"Status":["གནས་བབས།"],"Standard":["ཚད་ལྡན།"],"Aside":["ཆིག་ལབ།"],"Featured image":[],"Set featured image":["ཁྱད་ལྡན་བརྙན་རིས་སུ་འགོད།"],"Learn more about manual excerpts":["ལག་ཐབས་ཀྱིས་གནད་བསྡུས་བླུགས་པར་ཞིབ་ཏུ་རྒྱུས་ལོན།"],"Write an excerpt (optional)":["གནད་བསྡུས་འབྲི་བ། (རང་མོས)"],"Allow comments":["དཔྱད་མཆན་སྤེལ་ཆོག"],"Template:":["དཔེ་པང:"],"no parent":["ཕ་རྒྱུད་མེད།"],"no title":["ཁ་བྱང་མེད།"],"Order":["སྟར་སྒྲིག"],"No blocks found.":["རྡོག་རྙེད་མ་སོང་།"],"%d result found.":["མཐའ་འབྲས %d རྙེད་སོང་།"],"Saved":["ཉར་ཟིན།"],"Embeds":["བཙུད་འཇུག"],"Blocks":["རྡོག"],"Search for a block":["རྡོག་བཤེར་འཚོལ།"],"Add block":["རྡོག་ཁ་སྣོན།"],"Copy Error":["མཁོ་ཕབ་ནོར་འཁྲུལ།"],"Copy Post Text":["རྩོམ་གྱི་ཡི་གེ་མཁོ་ཕབ།"],"Attempt Recovery":["ཕྱིར་སོན་ལ་འབད།"],"The editor has encountered an unexpected error.":["རྩོམ་སྒྲིག་ཆས་ལ་གློ་བུར་གྱི་ནོར་འཁྲུལ་ཞིག་ལ་འཕྲད་སོང་།"],"Undo":["ཕྱིར་འཐེན།"],"Redo":["བསྐྱར་བཟོ།"],"(Multiple H1 headings are not recommended)":["(ཁ་བྱང H1 དུ་མ་སྤྱད་ན་མི་ལེགས།)"],"(Your theme may already use a H1 for the post title)":["(ཁྱེད་ཀྱི་དཔེ་སྒྲོམ་གྱིས་སྔ་ས་ནས་རྩོམ་གྱི་ཁ་བྱང་ལ H1 སྤྱད་ཡོད་སྲིད།)"],"(Incorrect heading level)":["(ཁ་བྱང་གནས་ཚད་ནོར་བ།)"],"(Empty heading)":["(ཁ་བྱང་སྟོང་བ།)"],"Block Styles":["རྡོག་གི་བཟོ་ལྟ།"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":["སྤྱིར་བཏང་གི་རྡོག་ལ་བརྗེ་སྒྱུར།"],"More options":["དེ་ལས་མང་བའི་གདམ་ཚན།"],"Edit visually":["ཐད་མཐོང་གིས་རྩོམ་སྒྲིག"],"Duplicate":["འདྲ་བཟོ།"],"Blocks cannot be moved down as they are already at the bottom":["རྡོག་དེ་མར་ཕྱོགས་སུ་སྤོ་བསྣུར་བྱེད་མི་ཐུབ། དེ་ནི་ཞབས་ན་ཡོད་པས་རེད།"],"Blocks cannot be moved up as they are already at the top":["རྡོག་དེ་ཡར་ཕྱོགས་སུ་སྤོ་བསྣུར་བྱེད་མི་ཐུབ། དེ་ནི་རྩེ་ན་ཡོད་པས་རེད།"],"Block %1$s is at the beginning of the content and can’t be moved right":["རྡོག་པོ %1$s དེ་ནང་དོན་གྱི་རྩེ་རུ་ཡོད་པས་གཡས་ཕྱོགས་སུ་སྤོ་བསྣུར་བྱེད་མི་ཐུབ།"],"Block %1$s is at the end of the content and can’t be moved right":["རྡོག་པོ %1$s དེ་ནང་དོན་གྱི་མཇུག་ན་ཡོད་པས་གཡས་ཕྱོགས་སུ་སྤོ་བསྣུར་བྱེད་མི་ཐུབ།"],"Block %s is the only block, and cannot be moved":["རྡོག %s རྡོག་གཅིག་པུ་དེ་ཡིན་པས་སྤོ་བསྣུར་བྱེད་མི་ཐུབ།"],"Edit as HTML":["HTML ཇི་བཞིན་རྩོམ་སྒྲིག"],"Convert to Blocks":["རྡོག་ལ་བརྗེ་སྒྱུར།"],"Block: %s":["རྡོག: %s"],"This block has encountered an error and cannot be previewed.":["རྡོག་འདི་ནོར་འཁྲུལ་ཞིག་དང་འཕྲད་པས་སྔོན་ལྟ་བྱ་ཐབས་མི་འདུག"],"No block selected.":["རྡོག་གང་ཡང་གདམ་མི་འདུག"],"Transform into:":["དབྱིབས་རྣམ་སྒྱུར་ནས:"],"Remove":["སྤོ་འབུད།"],"Find original":["གདོད་མ་འཚོལ།"],"Copy all content":["ནང་དོན་ཡོངས་མཁོ་ཕབ།"],"Copied!":["མཁོ་ཕབ་བྱས་ཟིན།"],"Additional settings are now available in the Editor block settings sidebar":["ད་ལྟ་རྩོམ་སྒྲིག་ཆས་ཀྱི་རྡོག་སྒྲིག་འགོད་འགྲམ་ཚང་ཁྲོད་དུ་སྒྲིག་འགོད་འཕར་མ་སྤྱོད་རུང་བ་ཡིན།"],"Visibility":["བསྒྲགས་ཚད།"],"Status & visibility":["གནས་བབས། & བསྒྲགས་ཚད།"],"Page attributes":["ཤོག་ངོས་གཏོགས་གཤིས།"],"Block":["རྡོག"],"Document":["ཡིག་ཚགས།"],"Close settings":["སྒྲིག་འགོད་ཁ་རྒྱག"],"Editor content":["རྩོམ་སྒྲིག་ཆས་ཀྱི་ནང་དོན།"],"Tools":["ལག་ཆ།"],"Editor":["རྩོམ་སྒྲིག་ཆས།"],"Code editor":["ཚབ་ཨང་རྩོམ་སྒྲིག་ཆས།"],"Visual editor":["ཐད་མཐོང་རྩོམ་སྒྲིག་ཆས།"],"Editor top bar":["རྩོམ་སྒྲིག་ཆས་ཀྱི་རྩེའི་ཚང་།"],"Settings":["སྒྲིག་འགོད།"],"Reset":["སོར་སློག"],"Dismiss this notice":["བརྡ་འདི་ཡང་བསྐྱར་མི་འཆར།"],"Item removed.":["སྡེ་ཚན་སྤོ་འབུད་བྱས་ཟིན།"],"Item added.":["སྡེ་ཚན་ཁ་སྣོན་བྱས་ཟིན།"],"Drop files to upload":["ཡིག་ཆ་དྲུད་ནས་སྐྱེལ་འཇོག"],"PM":["ཕྱི་དྲོ།"],"AM":["སྔ་དྲོ།"],"An unknown error occurred.":["མ་ཤེས་པའི་ནོར་འཁྲུལ་བྱུང་སོང་།"],"No results.":["མཐའ་འབྲས་མེད།"],"%d result found, use up and down arrow keys to navigate.":["མཐའ་འབྲས %d རྙེད་སོང་། མཐེབ་གཞོང་ཁྲོད་ཀྱི་ཡར་ཕྱོགས་དང་མར་ཕྱོགས་སྤྱད་ནས་ཕྱོགས་སྟོན་བྱེད་ཆོག"],"(no title)":["(ཁ་བྱང་མེད)"],"URL":["URL"],"Submit":["འབུལ་སྤྲོད།"],"Close":["ཁ་རྒྱག"],"Insert link":["སྦྲེལ་མཐུད་བར་འཇུག"],"Edit link":["སྦྲེལ་མཐུད་རྩོམ་སྒྲིག"],"Link":["སྦྲེལ་མཐུད།"],"Strikethrough":["སུབ་ཐིག"],"Italic":["གསེག་ཡིག"],"Bold":["ཤ་ཆེན།"],"Remove link":["སྦྲེལ་མཐུད་སྤོ་འབུད།"],"Number of items":["སྡེ་ཚན་གྱི་ཁ་གྲངས།"],"All":["ཡོངས།"],"Category":["དཀར་ཆག"],"Z → A":["Z ནས A"],"A → Z":["A ནས Z"],"Oldest to Newest":["རྙིང་ཤོས་ནས་གསར་ཤོས།"],"Newest to Oldest":["གསར་ཤོས་ནས་རྙིང་ཤོས།"],"Order by":["སྟར་སྒྲིག"],"Select":["འདེམས།"],"Select or Upload Media":["སྨྱན་གཟུགས་འདེམས་པའམ་སྐྱེལ་འཇོག"],"Video":["བརྙན་ཟློས།"],"Write…":["འབྲི་བ…"],"poetry":["སྙན་ངག"],"Verse":["སྙན་ངག"],"New Column":["སྟར་གསར་པ།"],"Delete Column":["སྟར་སུབ།"],"Add Column After":["སྟར་གྱི་རྗེས་སུ་ཁ་སྣོན།"],"Add Column Before":["སྟར་གྱི་སྔོན་དུ་ཁ་སྣོན།"],"Delete Row":["ཕྲེང་སུབ།"],"Add Row After":["ཕྲེང་གི་རྗེས་སུ་ཁ་སྣོན།"],"Add Row Before":["ཕྲེང་གི་སྔོན་དུ་ཁ་སྣོན།"],"Edit table":["རེའུ་མིག་རྩོམ་སྒྲིག"],"Table":["རེའུ་མིག"],"Write subheading…":["ཁ་བྱང་ཕལ་བ་འབྲི་བ…"],"Write shortcode here…":["འདི་རུ་ཚབ་ཨང་འབྲི་བ…"],"Shortcode":["ཚབ་ཨང་ཐུང་བ།"],"divider":["མཚམས་གཅོད་ཐིག"],"horizontal-line":["ཆུ་སྙོམས་ཐིག"],"Separator":["མཚམས་གཅོད་རྟགས།"],"Quote":["ལུང་འདྲེན།"],"Write citation…":["འདྲེན་ཚིག་འབྲི་བ…"],"Write quote…":["ལུང་འདྲེན་པ…"],"Pullquote":["ལུང་གལ་ཆེན་འདྲེན་པ།"],"Write preformatted text…":["preformatted ཅན་གྱི་ཡི་གེ་འབྲི་བ…"],"Preformatted":["Preformatted"],"text":["ཡི་གེ"],"Paragraph":["དུམ་ཚན།"],"Font Size":["ཡིག་གཟུགས་ཀྱི་ཆེ་ཆུང་།"],"Drop Cap":["ཡི་གེ་དང་པོ་མར་འགྲིབ།"],"Text settings":["ཡིག་རྐྱང་སྒྲིག་འགོད།"],"Read more":["མང་དུ་ཀློག"],"Write list…":["གསལ་ཐོ་འབྲི་བ…"],"numbered list":["སྒྲིག་ཨང་གསལ་ཐོ།"],"ordered list":["སྟར་སྒྲིག་གསལ་ཐོ།"],"bullet list":["རྣམ་གྲངས་རྟགས་གསལ་ཐོ།"],"Indent list item":["གསལ་ཐོའི་སྡེ་ཚན་སྐུམ་པ།"],"Outdent list item":["གསལ་ཐོའི་སྡེ་ཚན་སྐྱེད་པ།"],"Convert to ordered list":["སྟར་སྒྲིག་གསལ་ཐོར་བརྗེ་སྒྱུར།"],"Convert to unordered list":["སྟར་མེད་གསལ་ཐོར་བརྗེ་སྒྱུར།"],"List":["གསལ་ཐོ།"],"recent posts":["ཉེ་རྩོམ།"],"No posts found.":["རྩོམ་ཡིག་རྙེད་མ་སོང་།"],"Latest Posts":["རྩོམ་ཡིག་གསར་ཤོས།"],"Display post date":["རྩོམ་གྱི་ཟླ་ཚེས་འཆར་བ།"],"Grid view":["དྲ་མིག་མཐོང་རིས།"],"List view":["གསལ་ཐོ་མཐོང་རིས།"],"photo":["འདྲ་པར།"],"Image settings":["བརྙན་རིས་སྒྲིག་འགོད།"],"Image":["བརྙན་རིས།"],"Preview":["སྔོན་ལྟ།"],"embed":["བཙུད་འཇུག"],"Custom HTML":["རང་བཟོས HTML"],"subtitle":["ཁ་བྱང་ཕལ་བ།"],"title":["ཁ་བྱང་།"],"Heading":["ཁ་བྱང་།"],"Write heading…":["ཁ་བྱང་འབྲི་བ…"],"Heading %d":["ཁ་བྱང་། %d"],"Level":["ངོས་སྙོམ།"],"Heading settings":["ཁ་བྱང་སྒྲིག་འགོད།"],"photos":["འདྲ་པར།"],"images":["བརྙན་རིས།"],"None":["མེད།"],"Media File":["སྨྱན་གཟུགས་ཡིག་ཆ།"],"Attachment Page":["ཞར་བྱུང་ཤོག་ངོས།"],"Link to ":[],"Crop Images":["བརྙན་རིས་དྲས་གཏུབ།"],"Gallery settings":["པར་དེབ་སྒྲིག་འགོད།"],"Gallery":["པར་དེབ།"],"Classic":["ཚད་ལྡན།"],"video":["བརྙན་ཟློས།"],"audio":["སྒྲ་ཟློས།"],"music":["རོལ་དབྱངས།"],"image":["བརྙན་རིས།"],"blog":["པོད་ཁུག"],"post":["རྩོམ་ཡིག"],"Embedded content from %s":["%s ལས་འཕྲོས་པའི་ནང་དོན་བཙུད་འཇུག"],"Enter URL to embed here…":["འདིར URL བླུགས་ནས་བཙུད་འཇུག…"],"%s URL":["%s URL"],"Embedding…":["བཙུད་འཇུག་བྱེད་བཞིན་པ…"],"Write title…":["ཁ་བྱང་འབྲི་བ…"],"Fixed Background":["རྒྱབ་ལྗོངས་གཏན་འཇགས།"],"Edit image":["བརྙན་རིས་རྩོམ་སྒྲིག"],"Columns":["སྟར།"],"Experiments":[],"Code":["ཚབ་ཨང་།"],"Write code…":["ཚབ་ཨང་འབྲི་བ…"],"Categories":["དཀར་ཆག"],"Show Hierarchy":["རྩེག་རིམ་འབྲེལ་བ་མངོན།"],"Show post counts":["རྩོམ་གྱི་ཁ་གྲངས་འཆར།"],"Categories settings":["དཀར་ཆག་སྒྲིག་འགོད།"],"Add text…":["ཡི་གེ་ཁ་སྣོན…"],"Button":["མཐེབ་གཅུས།"],"Apply":["བཀོལ་སྤྱོད།"],"Text Color":["ཡིག་རྐྱང་གི་ཁ་དོག"],"Background Color":["རྒྱབ་ལྗོངས་ཁ་དོག"],"Block has been deleted or is unavailable.":["རྡོག་སུབ་ཟིན་པའམ་ཡང་ན་སྤྱོད་མི་རུང་བ།"],"Reusable blocks":["ཡང་བསྐྱར་སྤྱོད་ཆོག་པའི་རྡོག་པོ།"],"Cancel":["འདོར་བ།"],"Edit":["རྩོམ་སྒྲིག"],"Write caption…":["གསལ་བཤད་འབྲི་བ…"],"Use URL":["URL བཀོལ་བ།"],"Audio":["སྒྲ་ཟློས།"],"Upload":["སྐྱེལ་འཇོག"],"Additional CSS Class(es)":["CSS རིགས་འཕར་མ།"],"HTML Anchor":["HTML རྟོད་ཕུར།"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["ཁ་དོག་འདི་མཉམ་སྡེབ་བྱས་ཚེ་མིས་ཀློག་པར་དཀའ་ངལ་འཕྲད་སྲིད། རྒྱབ་ལྗོངས་ཀྱི་ཁ་དོག་དེ་ལས་བཀྲག་མདངས་ཅན་དང་ཡང་ན་ཡི་གེའི་ཁ་དོག་དེ་ལས་མུན་ནག་ཏུ་བཏང་ནས་ཚོད་ལྟ་བྱོས།"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["ཁ་དོག་འདི་མཉམ་སྡེབ་བྱས་ཚེ་མིས་ཀློག་པར་དཀའ་ངལ་འཕྲད་སྲིད། རྒྱབ་ལྗོངས་ཀྱི་ཁ་དོག་དེ་ལས་མུན་ནག་དང་ཡང་ན་ཡི་གེའི་ཁ་དོག་དེ་ལས་བཀྲག་མདངས་ཅན་དུ་བཏང་ནས་ཚོད་ལྟ་བྱོས།"],"Clear":["གཙང་སེལ།"],"Custom color picker":["རང་བཟོ་ཁ་དོག་འདེམས་ཆས།"],"Color: %s":["ཁ་དོག: %s"],"Full width":["ཞེང་ཡོངས།"],"Wide width":["ཞེང་མཐའ་བྲལ།"],"Widgets":["ལྷུ་ཆུང་།"],"Formatting":["རྣམ་གཞག"],"Common blocks":["སྤྱིར་བཏང་གི་རྡོག་པོ།"],"Align right":["གཡས་སྙོམས།"],"Align center":["དཀྱིལ་སྙོམས།"],"Align left":["གཡོན་སྙོམས།"],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["ཁ་བྱང་ཁ་སྣོན།"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["རྩོམ་པ་པོ།"],"Slug":["མིང་གཞན།"],"Discussion":["བགྲོ་གླེང་།"],"Custom fields":["རང་བཟོས་ཡིག་དུམ།"],"Excerpt":["གནད་བསྡུས།"],"Publish":["པར་འགྲེམས།"],"Metadata":["རྩོམ་ཡིག་གི་གནས་ཚུལ་ཡིག་ཆ།"],"Save":["ཉར་ཚགས།"],"Documentation":["ཡིག་ཚགས།"],"Select Category":["དཀར་ཆག་འདེམས།"],"(Untitled)":["(ཁ་བྱང་མེད)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg ལ་ངེས་པར་ཚང་དགོས་པ་ནི WordPress %s དང་ཡང་ན་དེ་ལས་མཐོ་བའི་ཐོན་རིམ་ཡིན། Gutenberg ནུས་སློང་མ་བྱས་སྔོན་ལ WordPress རིམ་སྤར་བྱེད་རོགས་གནང་།"],"Gutenberg Team":["Gutenberg ཚན་ཁག"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["དཔེ་སྟོན།"],"%s ago":["%s སྔོན།"],"Block style name must be a string.":["རྡོག་པོའི་བཟོ་ལྟའི་མིང་ནི་ངེས་པར་དུ་ཡིག་རྟགས་ཕྲེང་ཡིན་དགོས།"]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ca.json b/bundle/android/raw/i18ncache_data_ca.json
new file mode 100644
index 0000000000..71e54c0ccf
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ca.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":["Versió"],"Six.":["Sis."],"Five.":["Cinc."],"Four.":["Quatre."],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["Contingut de la pantalla dels ginys"],"header":[],"Widgets advanced settings":["Configuració avançada dels ginys"],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":["Barra superior de la pantalla dels ginys"],"This color combination may be hard for people to read.":["Amb aquesta combinació de colors podria ser complicat llegir."],"There is no poster image currently selected":["Actualment no hi ha cap imatge seleccionada de l'autor de l'entrada"],"The current poster image url is %s":["La imatge actual de l'autor de l'entrada és %s"],"section":["secció"],"row":["fila"],"wrapper":[],"container":["contenidor"],"A block that groups other blocks.":[],"Group":["Grup"],"Crop image to fill entire column":["Retalleu la imatge per fer servir la columna sencera"],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":["Edita l'URL de l'RSS"],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":["llibre electrònic"],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":["Subratllat"],"Attempt Block Recovery":["Intenta restablir el bloc"],"Word count type. Do not translate!\u0004words":["paraules"],"content placeholder\u0004Content…":["Contingut…"],"button label\u0004Convert to link":["Converteix en enllaç"],"button label\u0004Try again":["Prova de nou"],"Editor tips":["Consells de l'editor"],"Block (selected)":["Bloc (seleccionat)"],"Document (selected)":["Document (seleccionat)"],"%d word":["%d paraula","%d paraules"],"Top toolbar":[],"Link Rel":["Atribut link rel"],"Link CSS Class":["Enllaça la classe CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Creeu contingut, i deseu-lo per a vosaltres i altres coŀlaboradors al llarg del web. Actualitzeu el bloc, i els canvis s'aplicaran on s'utilitzi el bloc."],"To edit the featured image, you need permission to upload media.":["Per editar la imatge destacada, necessiteu permisos per penjar mèdia."],"To edit this block, you need permission to upload media.":["Per editar aquest bloc, necessiteu permisos per a penjar mèdia."],"(selected block)":["(bloc seleccionat)"],"Block tools":["Eines de bloc"],"Permalink":["Enllaç permanent"],"This image has an empty alt attribute":["Aquesta imatge té un atribut alt buit"],"This image has an empty alt attribute; its file name is %s":["Aquesta imatge té un atribut alt buit; el nom de fitxer és %s"],"Block area reverted to draft.":["S'ha revertit l'àrea de blocs a esborrany."],"Block area published privately.":["S'ha publicat l'àrea de blocs de forma privada."],"No block areas found in Trash.":["No s'ha trobat cap àrea de blocs a la paperera."],"Block\u0004Add New":["Afegeix"],"add new on admin bar\u0004Block Area":["Àrea de blocs"],"Link inserted.":["Enllaç inserit."],"Warning: the link has been inserted but may have errors. Please test it.":["Atenció: l'enllaç s'ha inserit però pot tenir errors. Comproveu-lo."],"%s block selected.":["S'ha seleccionat %s bloc.","S'han seleccionat %s blocs."],"Thumbnail":["Miniatura"],"Full Size":["Mida completa"],"Link selected.":["Enllaç seleccionat."],"Start writing with text or HTML":["Comenceu a escriure text o HTML"],"Type text or HTML":["Teclegeu text o HTML"],"Block icon":["Icona del bloc"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Comenceu a escriure o teclegeu / per triar un bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc buit; comenceu a escriure o teclegeu una barra obliqua per triar un bloc"],"Paragraph block":["Bloc de paràgraf"],"Page Break":["Salt de pàgina"],"Stack on mobile":["Apila al mòbil"],"Annotation":["Anotació"],"Drag images, upload new ones or select files from your library.":["Arrossegueu imatges, pugeu-ne algunes o seleccioneu-les des de la biblioteca."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resol"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Gran"],"font size name\u0004Medium":["Mitjana"],"font size name\u0004Small":["Petita"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Retorn"],"button label\u0004Import":["Importa"],"button label\u0004Download":["Baixa"],"button label\u0004Embed":["Incrusta"],"block title\u0004Embed":["Incrusta"],"block title\u0004Classic":["Clàssic"],"block style\u0004Large":["Gran"],"block style\u0004Rounded":["Arrodonit"],"%s (opens in a new tab)":["%s (s'obre en una pestanya nova)"],"Link edited.":["S'ha editat l'enllaç."],"Link removed.":["S'ha suprimit l'enllaç."],"media":["multimèdia"],"Double-check your settings before publishing.":["Comproveu dues vegades els paràmetres abans de publicar."],"Generating preview…":["S'està generant la previsualització..."],"Edit or update the image":["Edita o penja la imatge"],"Media":["Multimèdia"],"Navigate to the nearest toolbar.":["Navega a la barra d'eines més propera."],"Document tools":["Eines del document"],"Document and block tools":["Eines del document i bloc"],"Embed a video from your media library or upload a new one.":["Incrusta un vídeo de la mediateca o penja un nou."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inseriu poesia. Useu formats d'espai especials. O citeu lletres de cançons."],"Add white space between blocks and customize its height.":["Afegeix espais en blanc entre blocs i personalitza l'alçada."],"Insert additional custom elements with a WordPress shortcode.":["Insereix elements personalitzats addicionals amb codis de substitució del WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea un salt entre línies o seccions amb un separador horitzontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Emfatitza visualment el text citat. \"En citar a altres, ens citem a nosaltres.\" -- Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Doneu un èmfasi visual especial a una cita des del text."],"Start with the building block of all narrative.":["Comenceu amb el bloc constructor de tota la narrativa."],"Separate your content into a multi-page experience.":["Separeu el contingut en una experiència multi pàgina."],"Set media and words side-by-side for a richer layout.":["Defineix els mèdia i les paraules un al costat de l'altre per a un format més ric."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Crea una llista amb pics o numerada."],"Display a list of your most recent comments.":["Mostra una llista dels comentaris més recents."],"Insert an image to make a visual statement.":["Insereix una imatge per fer una declaració visual."],"Add custom HTML code and preview it as you edit.":["Afegiu un codi HTML personalitzat i previsualitzeu-lo mentre editeu."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduïu seccions noves i organitzeu continguts per ajudar els visitants (i els motors de cerca) a comprendre l'estructura del contingut."],"Display multiple images in a rich gallery.":["Mostra diverses imatges en una galeria."],"Add a link to a downloadable file.":["Afegeix un enllaç a un fitxer descarregable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusteu vídeos, imatges, piulades, àudio i altre contingut des d'orígens externs."],"Resize for smaller devices":["Redimensiona per a dispositius petits"],"This embed may not preserve its aspect ratio when the browser is resized.":["Aquesta incrustació pot no preservar l'aspecte quan el navegador es redimensiona."],"This embed will preserve its aspect ratio when the browser is resized.":["Aquesta incrustació preservarà l'aspecte quan el navegador es redimensioni."],"Embed an Animoto video.":["Incrusta un vídeo d'Animoto."],"Embed a Vimeo video.":["Incrusta un vídeo de Vimeo."],"Embed Flickr content.":["Incrusta contingut de Flickr."],"Embed Spotify content.":["Incrusta contingut de Spotify."],"Embed SoundCloud content.":["Incrusta contingut de SoundCloud."],"Embed a WordPress post.":["Incrusta una entrada del WordPress."],"Embed an Instagram post.":["Incrusta una entrada d'Instagram."],"Embed a Facebook post.":["Incrusta una entrada de Facebook."],"Embed a WordPress.tv video.":["Incrusta un vídeo de WordPress.tv."],"Embed a VideoPress video.":["Incrusta un vídeo de VideoPress."],"Embed a Tumblr post.":["Incrusta una entrada de Tumblr."],"Embed a TED video.":["Incrusta un vídeo de TED."],"Embed Speaker Deck content.":["Incrusta un contingut de Speaker Deck."],"Embed a YouTube video.":["Incrusta un vídeo de YouTube."],"Embed SmugMug content.":["Incrusta contingut de SmugMug."],"Embed Slideshare content.":["Incrusta contingut de Slideshare."],"Embed Scribd content.":["Incrusta contingut de Scribd."],"Embed Screencast content.":["Incrusta contingut de Screencast."],"Embed ReverbNation content.":["Incrusta contingut de ReverbNation."],"Embed a Reddit thread.":["Incrusta un fil de Reddit."],"Embed Polldaddy content.":["Incrusta contingut de Polldaddy."],"Embed Mixcloud content.":["Incrusta contingut de Mixcloud."],"Embed a tweet.":["Incrusta una piulada."],"Embed Meetup.com content.":["Incrusta contingut de Meetup.com."],"Embed Kickstarter content.":["Incrusta contingut de Kickstarter."],"Embed Issuu content.":["Incrusta contingut d'Issuu."],"Embed Imgur content.":["Incrusta contingut d'Imgur."],"Embed Hulu content.":["Incrusta contingut de Hulu."],"Embed a Dailymotion video.":["Incrusta un vídeo de Dalymotion."],"Embed CollegeHumor content.":["Incrusta contingut de CollegeHumor."],"Embed Cloudup content.":["Incrusta contingut de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Afegeix una imatge o vídeo amb una text superposat -- perfecte per a capçaleres."],"Display code snippets that respect your spacing and tabs.":["Mostra trossos de codi que respectin l'espaiat i les tabulacions."],"Use the classic WordPress editor.":["Utilitza l'editor clàssic del WordPress."],"Display a list of all categories.":["Mostra una llista de totes les categories."],"Embed a simple audio player.":["Incrusta un reproductor d'àudio simple."],"noun\u0004View":["Visualització:"],"editor button\u0004Left to right":["Direcció d'esquerra a dreta"],"Save as Pending":["Desa com a pendent"],"%s address":["%s adreça"],"Paste or type URL":["Enganxeu o escriviu l'URL"],"Insert from URL":["Insereix des d'un URL"],"Block Navigator":["Navegador de blocs"],"Styles":["Estils"],"Advanced panels":[],"Document panels":[],"General":["General"],"Open the block navigation menu.":["Obre el menú de navegació del bloc."],"Work without distraction":["Treballa lliure de distraccions"],"Focus on one block at a time":["Posa el focus en un bloc cada vegada"],"Access all block and document tools in a single place":["Accedeix a totes les eines dels documents i blocs en un sol lloc"],"Options":["Opcions"],"(opens in a new tab)":["(s'obre en una pestanya nova)"],"Minutes":["Minuts"],"Hours":["Hores"],"Time":["Hora"],"Year":["Any"],"Day":["Dia"],"December":["Desembre"],"November":["Novembre"],"October":["Octubre"],"September":["Setembre"],"August":["Agost"],"July":["Juliol"],"June":["Juny"],"May":["Maig"],"April":["Abril"],"March":["Març"],"February":["Febrer"],"January":["Gener"],"Month":["Mes"],"Date":["Data"],"Go to the first (home) or last (end) day of a week.":["Vés al primer (pàgina inicial) o l'últim (final) dia de la setmana."],"Home/End":["Inici/final"],"Home and End":["Inici i final"],"Move backward (PgUp) or forward (PgDn) by one month.":["Vés enrere (Re Pàg) o endavant (Av Pàg) un mes."],"PgUp/PgDn":["Av Pàg/Re Pàg"],"Page Up and Page Down":["Avança i retrocedeix la pàgina"],"Move backward (up) or forward (down) by one week.":["Vés enrere (amunt) o endavant (avall) una setmana."],"Up and Down Arrows":["Fletxes d'amunt i avall"],"Move backward (left) or forward (right) by one day.":["Vés enrere (esquerra) o endavant (dreta) una setmana."],"Left and Right Arrows":["Fletxes de dreta i esquerra"],"Select the date in focus.":["Selecciona la data al focus."],"Navigating with a keyboard":["Navegació amb un teclat"],"Click the desired day to select it.":["Feu clic al dia desitjat per seleccionar-lo."],"Click the right or left arrows to select other months in the past or the future.":["Feu clic a les fletxes dreta o esquerra per seleccionar altres mesos en el passat o en el futur,"],"Click to Select":["Feu clic per a seleccionar"],"Calendar Help":["Ajuda del calendari"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Useu les tecles de fletxa per canviar el color base. Aneu amunt per a un color més clar, avall per a un color més obscur, esquerra per augmentar la saturació, i dreta per a disminuir la saturació."],"Choose a shade":["Tria una ombra"],"Change color format":["Canvia el format del color"],"Color value in HSL":["Valor del color en HSL"],"Color value in RGB":["Valor del color en RGB"],"Color value in hexadecimal":["Valor del color en hexadecimal"],"RGB mode active":["Mode RGB actiu"],"Hex color mode active":["Mode de color hexadecimal actiu"],"Hue/saturation/lightness mode active":["Mode de To/Saturació/Lluminositat actiu"],"Move the arrow left or right to change hue.":["Mogueu la fletxa esquerra o dreta per canviat la tonalitat."],"Hue value in degrees, from 0 to 359.":["Valor de la tonalitat en graus, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor d'alfa, de 0 (transparent) a 1 (completament opac)."],"Stripes":["Ratlles"],"Your site doesn’t include support for this block.":["El lloc web no inclou suport per a aquest bloc."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["El lloc web no inclou suport per al bloc \"%s\". Podeu deixar aquest bloc intacte o suprimir-lo completament."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["El lloc web no inclou suport per al bloc \"%s\". Podeu deixar aquest bloc intacte, convertir el contingut a un bloc HTML personalitzat, o suprimir-lo completament."],"Media area":["Àrea del mèdia"],"Media & Text":["Mèdia i text"],"Show media on right":["Mostra el mèdia a la dreta"],"Show media on left":["Mostra el mèdia a l'esquerra"],"Open in New Tab":["Obre en una pestanya nova"],"Cover":["Coberta"],"Border settings":[],"Medium":["Mitjà"],"Paste URL or type to search":["Enganxeu l'URL o escriviu per cercar"],"Terms":["Termes"],"Your work will be published at the specified date and time.":["L'entrada es publicarà a la data i hora especificades."],"Are you ready to schedule?":["Esteu llestos per planificar?"],"Always show pre-publish checks.":["Sempre mostra les comprovacions abans de publicar."],"Take Over":["Pren possessió"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Altre usuari està treballant ara amb aquesta entrada, el que significa que no podeu fer canvis, a no ser que prengueu possessió."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s està treballant ara amb aquesta entrada, el que significa que no podeu fer canvis, a no ser que prengueu possessió."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Altre usuari té control d'edició ara sobre aquesta entrada. Els canvis fins ara s'han desat."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s té control d'edició ara sobre aquesta entrada. Els canvis fins ara s'han desat."],"Avatar":["Avatar"],"This post is already being edited.":["Aquesta entrada ja s'està editant."],"Someone else has taken over this post.":["Algú altre ha pres possessió d'aquesta entrada."],"This block contains unexpected or invalid content.":["Aquest bloc conté contingut no esperat o no vàlid."],"Resolve Block":["Resol el bloc"],"Convert to HTML":["Converteix a HTML"],"This block can only be used once.":["Aquest bloc només es pot utilitzar una vegada."],"Exit Code Editor":["Surt de l'editor de codi"],"Editing Code":["S'està editant el codi"],"Solid Color":["Color sòlid"],"Main Color":["Color principal"],"HTML":["HTML"],"Write HTML…":["Escriu HTML..."],"Media settings":[],"Overlay":["Superposició"],"Insert Media":["Insereix un mèdia"],"Reusable block imported successfully!":["El bloc reusable ha estat importat satisfactòriament!"],"Invalid Reusable Block JSON file":["El fitxer JSON de blocs reutilitzable no és vàlid"],"Invalid JSON file":["El fitxer JSON no és vàlid"],"Import from JSON":["Importa des de JSON"],"Backtick":["Accent obert"],"Period":["Període"],"Comma":["Coma"],"Change type of %d block":["Canvia el tipus d'%d bloc","Canvia el tipus de %d blocs"],"Current":["Actual"],"After Conversion":["Després de convertir"],"Change alignment":["Canvia l'alineació"],"Change text alignment":["Canvia l'alineació de text"],"%d block":["%d bloc","%d blocs"],"Forward-slash":["Barra inclinada"],"No archives to show.":["No hi ha arxius per a mostrar."],"This file is empty.":["Aquest fitxer és buit."],"Sorry, this file type is not supported here.":["Aquest tipus d'arxiu no és compatible."],"Manage all reusable blocks":[],"Title":["Títol"],"Fullscreen mode":[],"Beautiful landscape":["Paisatge bonic"],"Close panel":["Tanca el tauler"],"Convert to Classic Block":["Converteix a un bloc clàssic"],"Remove Poster Image":["Elimina la imatge de pòster"],"Select Poster Image":["Selecciona la imatge de pòster"],"Poster Image":["Imatge de pòster"],"This block is deprecated. Please use the Columns block instead.":["Aquest bloc està obsolet. Enlloc d'això utilitzeu el bloc de Columnes."],"Text Columns (deprecated)":["Columnes de text (obsoletes)"],"Create":["Crea"],"Row Count":["Recompte de files"],"Column Count":["Recompte de columnes"],"This block is deprecated. Please use the Paragraph block instead.":["Aquest bloc està obsolet. Enlloc d'això utilitzeu el bloc de Paràgraf. "],"Subheading (deprecated)":["Capçalera secundària (obsolet)"],"blockquote":["Cita"],"Change the block type after adding a new paragraph.":["Canvia el tipus de bloc desprès d'afegir un nou paràgraf."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Les etiquetes ajuden als usuaris i als motors de cerca a navegar pel lloc web i trobar el contingut. Afegiu unes poques paraules claus per descriure la entrada."],"Add tags":["Afegeix etiquetes"],"Apply the \"%1$s\" format.":["Aplica el format \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["El tema utilitza formats d'entrada per destacar diferent tipus de contingut, com imatges o vídeos. Apliqueu aquest format d'entrada per veure aquest estil especial. "],"Use a post format":["Usa un format d'entrada"],"Insert After":["Insereix després "],"Insert Before":["Insereix abans"],"Move %1$d block from position %2$d down by one place":["Mou %1$d bloc des de la posició %2$d un lloc avall ","Mou %1$d blocs des de la posició %2$d un lloc avall "],"Move %1$d block from position %2$d up by one place":["Mou %1$d bloc des de la posició %2$d un lloc amunt ","Mou %1$d blocs des de la posició %2$d un lloc amunt "],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["pel·lícula"],"Insert a new block before the selected block(s).":["Insereix un nou bloc abans del blocs seleccionats."],"Remove the selected block(s).":["Elimina els blocs seleccionats."],"Duplicate the selected block(s).":["Duplicat els blocs seleccionats."],"Block shortcuts":["Dreceres pels blocs."],"Clear selection.":["Neteja la selecció."],"Select all text when typing. Press again to select all blocks.":["Selecciona tot el text mentre escriviu. Torneu a prémer per a seleccionar tots els blocs."],"Selection shortcuts":["Dreceres de selecció "],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navega a l'anterior part de l'editor."],"Navigate to the next part of the editor.":["Navega a la següent part de l'editor."],"Show or hide the settings sidebar.":["Mostra o oculta la barra de configuració."],"Redo your last undo.":["Refés l'últim «desfés»."],"Undo your last changes.":["Desfés els ultims canvis"],"Save your changes.":["Desa els canvis."],"Global shortcuts":["Dreceres globals"],"Remove a link.":["Elimina l'enllaç."],"Convert the selected text into a link.":["Converteix el text seleccionat en un enllaç."],"Underline the selected text.":["Subratlla el text seleccionat"],"Make the selected text italic.":["Posa en cursiva el text seleccionat"],"Make the selected text bold.":["Posa en negreta el text seleccionat"],"Text formatting":["Format de text"],"Insert a new block after the selected block(s).":["Insereix un nou bloc després del blocs seleccionats."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Gràcies per provar el Gutenberg!"],"Help build Gutenberg":["Ajudeu a construir el Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si voleu aprendre més sobre com construir blocs addicionals o si esteu interessats en ajudar amb el projecte, adreceu-vos al repositori GitHub."],"The WordPress community":["La comunitat de WordPress"],"Code is Poetry":["El codi es poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Podeu construir qualsevol tipus de bloc, estàtic o dinàmic, decoratiu o simple. Aquí hi ha un bloc de contraportada. "],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Qualsevol bloc pot fer ús d'aquestes alineacions. El bloc incrustat també les té i és totalment responsiu:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Això és una galeria amb dues imatges. És una manera més fàcil de crear dissenys d'una manera visual sense haver de fer servir elements flotants. També podeu fàcilment tornar a convertir la galeria a imatges individuals una altra vegada usant l'intercanviador de blocs."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["La imatge en mida completa potser molt gran però, de vegades, la imatge val la pena. "],"Accessibility is important — don’t forget image alt attribute":["L'accessibilitat és important; no oblideu l'atribut alt de la imatge."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combineu els nous alineaments ample i amplada completa amb les galeries, podeu crear una disposició mèdia molt rica, molt ràpidament:"],"Media Rich":["Ric en mèdia"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Podeu canviar la quantitat de columnes en la galeria arrossegant un desplaçador situat a l'inspector de blocs de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Els blocs poden ser qualsevol cosa que necessiteu. Per exemple, podeu afegir una citació subtil com a part de la composicio del text, o potser preferiu mostrar-ne una gran i estilitzada. Totes aquestes opcions estan disponibles a l'eina d'inserció."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La informació corresponent a la font de la citació és un camp de text diferent, semblant a les llegendes baix de les imatges, de manera que l'estructura de la citació està protegida fins i tot si seleccioneu, modifiqueu o elimineu la font. Sempre és fàcil tornar-la a afegir."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["L'editor us guiarà a crear una nova experiència de creació de pàgines i entrades, que fa l'escriptura d'entrades riques sense esforç, i té «blocs» per a fer més fàcil el que avuí es fa mitjançat codis de substitució, HTML personalitzat o \"misteriosos\" descobriments d'elements incrustats."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un benefici molt gran dels blocs és que podeu editar-los en lloc i manipular el contingut directament. Enlloc de tindre camps per a editar coses com el codi d'una citació o el text d'un botó, podeu canviar el continngut directament. Proveu a editar la citació següent:"],"Visual Editing":["Edició visual"],"And Lists like this one of course :)":["I llistes com aquesta, és clar :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Plantilla de blocs, botons de m'agrada, imatges de capçalera, separadors, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Elements incrustats, com YouTube, tuits, o altres entrades del WordPress."],"Galleries":["Galeries"],"Images & Videos":["Imatges i videos"],"Text & Headings":["Text i encapçalaments"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Proveu-lo, podeu descubrir coses que no sabíeu que el WordPress ja pot afegir a les vostres entrades. Aquí teniu una llista de què podeu trobar a hores d'ara:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine-vos que tot el que pot fer el WordPress està disponible ràpidament des del mateix lloc a la interfície. Sense necessitat d'encertar etiquetes HTML, classes, o recordar l'estranya sintaxi dels codis de substitució. Eixe és l'esperit de l'eina d'inserció — el botó (+)
que veureu a l'editor — que us permetrà navegar per tots els blocs de contingut disponible i afegir-los a la vostra entrada. Extensions i temes poden registrar-ne de nous, obrint tot un ventall de possibilitats per a l'edició rica i la publicació."],"The Inserter Tool":["L'eina d'inserció"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Proveu a seleccionar i eliminar o editar la llegenda, ara no hey d'anar en compte amb seleccionar una imatge o un altre text per error i arruinar la presentació."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["SI el tema és compatible, veureu el botó «ample» a la barra d'eines de la imatge. Proveu-ho!"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["La gestió d'imatges i mèdia amb la màxima cura és una de les prioritats del nou editor. Trobareu formes d'afegir llegendes o posar imatges a pantalla completa molt més fàcils i robustes que abans."],"A Picture is Worth a Thousand Words":["Una imatge val més que mil paraules"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Les capçaleres també són blocs separats, que us ajuda a esquematitzar i organitzar el contingut."],"... like this one, which is right aligned.":["...com aquesta, que està alineada a la dreta."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["El que esteu llegint és un bloc de text. Aquest és el bloc més bàsic de tots. El bloc de text té els seus propis controls per moure'l lliurement per l'entrada..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["L'objectiu de l'editor nou és fer l'addició de contingut ric al WordPress simple i entretingut. Aquesta entrada està tota escrita amb peces de contingut — una cosa semblant a peces de LEGO — amb què podeu moure i interactuar. Moveu el cursos per la pantalla i veureu com diferents blocs s'iluminen amb vores i fletxes. Premeu les fletxes per a reposicionar ràpidament els blocs, sense por a perdre res en el procés de copiar i enganxar."],"Of Mountains & Printing Presses":["de muntanyes i impremtes"],"Welcome to the Gutenberg Editor":["Benvingut a l'editor Gutenberg"],"block name\u0004More":["Més"],"button to expand options\u0004More":["Més"],"Are you sure you want to unschedule this post?":["Esteu segur de desprogramar aquest missatge?"],"Alt Text (Alternative Text)":["Text Alt (Text alternatiu)"],"Reusable Block":["Bloc reutilitzable"],"Unique identifier for the object.":["Identificador únic per a l'objecte."],"Untitled Reusable Block":["Blocs reutilitzables sense títol"],"Small":["Petit"],"Reusable":["Reutilitzable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Manté com a HTML"],"Edit URL":["Edita l'URL"],"Color settings":[],"The response is not a valid JSON response.":["La resposta no es una resposta JSON vàlida."],"Editor publish":["Publicació de l'editor"],"Muted":["Silenciat"],"Video settings":[],"recent comments":["comentaris recents"],"Latest Comments":["Ultims comentaris"],"Display Excerpt":["Mostra l'extracte"],"Display Date":["Mostra la data"],"Display Avatar":["Mostra l'avatar"],"Latest comments settings":[],"Number of Comments":["Número de comentaris"],"Background Opacity":["Opacitat de fons"],"Auto":["Auto"],"Preload":["Precarrega"],"Audio settings":[],"Display a monthly archive of your posts.":["Mostra un arxiu mensual de les entrades."],"Display as Dropdown":["Mostra com a menú desplegable"],"Show Post Counts":["Mostra el recompte d'entrades"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Suport"],"No comments to show.":["No s'han trobat comentaris."],"%1$s on %2$s":["%1$s a %2$s"],"Select Post":["Selecciona un post"],"Select Week":["Selecciona la setmana"],"Select Day":["Selecciona el dia"],"Select Month":["Selecciona el mes"],"Select Year":["Selecciona l'any"],"Archives":["Arxius"],"Very dark gray":["Gris molt fosc"],"Cyan bluish gray":["Gris blavós"],"Very light gray":["Gris molt clar"],"Vivid cyan blue":["Blau cian viu"],"Pale cyan blue":["Blau cel pàl·lid"],"Vivid green cyan":["Verd cian viu"],"Light green cyan":["Turquesa verdós clar"],"Luminous vivid amber":["Àmbar viu i lluminós"],"Luminous vivid orange":["Taronja viu i lluminós"],"Vivid red":["Vermell viu"],"Pale pink":["Rosa pàl·lid"],"Inline image":["Imatge en línia"],"Available block types":["Tipus de blocs disponibles"],"Transform To:":["Transforma a:"],"Remove Block":["Elimina el bloc"],"Open publish panel":["Obre el tauler de publicació"],"Dots":["Punts"],"Wide Line":["Línia ampla"],"Large":["Gran"],"Show download button":["Mostra el botó de baixada"],"Download button settings":["Paràmetres del botó de baixada"],"Link To":["Enllaça a"],"Text link settings":["Paràmetres dels enllaços de text"],"download":[],"pdf":["pdf"],"document":["document"],"Copy URL":["Copia l'URL"],"Write file name…":["Escriu el nom de fitxer..."],"File":["Fitxer"],"A single column within a columns block.":["Una columna simple dins d'un bloc de columnes."],"Column":["Columna"],"Outline":["Esquema"],"Loop":["Bucle"],"Autoplay":["Reprodueix automàticament"],"Playback Controls":["Controls de reproducció"],"Close dialog":["Tanca el diàleg"],"Sorry, this file type is not permitted for security reasons.":["Aquest tipus de fitxer no està permès per raons de seguretat."],"Disable tips":["Deshabilita les suggerències"],"Got it":["Ho heu aconseguit"],"See next tip":["Mostra el següent consell"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quan hàgiu acabat, envieu la feina per a revisió i un editor l'aprovarà."],"Are you ready to submit for review?":["Esteu llest per enviar la revisió?"],"Replace image":["Reemplaça la imatge"],"Remove image":["Suprimeix la imatge"],"Error while uploading file %s to the media library.":["S'ha produït un error carregant el fitxer %s a la mediateca."],"This file exceeds the maximum upload size for this site.":["El fitxer sobrepassa la mida màxima de càrrega per aquest lloc web."],"View the autosave":["Mostra el desat automàtic"],"There is an autosave of this post that is more recent than the version below.":["Hi ha una desat automàtic d'aquesta entrada que és més recent que la versió mostrada a sota. "],"Autosaving":["Desat automàtic"],"Enter URL here…":["Insereix l'URL aqui..."],"Pin to toolbar":["Fixa a la barra d'eines"],"Unpin from toolbar":["Treu de la barra d'eines"],"Insert a table — perfect for sharing charts and data.":["Insereix una taula -- perfecte per compartir gràfics i dades."],"Fixed width table cells":["Cel·les de taula d'amplada fixa"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Afegeix text que respecti els espais i tabulats, i que també permeti estils."],"Display a list of your most recent posts.":["Mostra una llista de les entrades més recents."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Afegeix un bloc que mostri contingut extret d'altres llocs, com Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Afegiu un bloc que mostri contingut en diverses columnes, i, a continuació, afegiu qualsevol bloc de contingut que vulguis."],"Error loading block: %s":["Error en carregar el bloc: %s"],"Unknown error":["Error desconegut"],"Embed Handler":["Gestor del servei"],"term\u0004Remove %s":["Suprimeix %s"],"Copy the permalink":["Copia l'enllaç permanent"],"Permalink copied":["S'ha copiat l'enllaç permanent"],"Height in pixels":["Alçada en píxels"],"Spacer settings":[],"Spacer":["Espaiador"],"Toggle to show a large initial letter.":["Commuta per mostrar una lletra inicial gran."],"Showing large initial letter.":["S'està mostrant la lletra inicial gran."],"Name:":["Nom:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Suprimeix element"],"Color code: %s":["Codi de color: %s"],"Skip to the selected block":["Salta al bloc seleccionat"],"Publish…":["Publica..."],"Schedule…":["Planifica..."],"Edit post permalink":["Edita l'enllaç permanent de l'entrada"],"Show Block Settings":["Mostra la configuració del bloc"],"Hide Block Settings":["Amaga la configuració del bloc"],"Block settings closed":["Configuració del bloc tancada"],"Close plugin":["Tanca l'extensió"],"Editor settings":["Configuració de l'editor"],"Link settings":["Paràmetres de l'enllaç"],"Unlink":["Desenllaça"],"Page break":["Salt de pàgina"],"pagination":["paginació"],"next page":["pàgina següent"],"Image Size":["Mida de la imatge"],"Height":["Alçada"],"Width":["Amplada"],"Image Dimensions":["Dimensions de la imatge"],"Thumbnails are not cropped.":["Les miniatures no estan escapçades."],"Thumbnails are cropped to align.":["Las miniatures s'escapcen alineades."],"Media Library":["Mediateca"],"Advanced":["Avançat"],"Add item":["Afegeix un element"],"Reset the template":["Reinicia la plantilla"],"Keep it as is":["Deixa com està"],"The content of your post doesn’t match the template assigned to your post type.":["El contingut de l'entrada no coincideix amb la plantilla assignada al tipus d'entrada."],"Resetting the template may result in loss of content, do you want to continue?":["La reinicialització de la plantilla pot provocar pèrdues de contingut, voleu continuar?"],"Document Statistics":["Estadístiques del document"],"is now scheduled. It will go live on":["està planificada. Es publicarà el"],"Scheduled":["Previst"],"Scheduling…":["Planificant..."],"Code editor selected":["Editor de codi seleccionat"],"Visual editor selected":["Editor visual seleccionat"],"Plugins":["Extensions"],"Custom Size":["Mida personalitzada"],"Layout elements":[],"term\u0004%s removed":["%s eliminat"],"term\u0004%s added":["%s afegit"],"imperative verb\u0004Preview":["Previsualitza"],"Block deleted.":["S'ha eliminat el bloc."],"Block updated.":["S'ha actualitzat el bloc."],"Block created.":["S'ha creat el bloc."],"Trashing failed":["L'enviament a la paperera ha fallat"],"Updating failed.":["L'actualització ha fallat."],"Scheduling failed.":["La planificació ha fallat."],"Publishing failed.":["La publicació ha fallat."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Hi ha canvis sense desar. Si continueu es perdran."],"Document Outline":["Esquema del document"],"Paragraphs":["Paràgrafs"],"Headings":["Capçaleres"],"Words":["Paraules"],"Content structure":["Estructura del contingut"],"Public":["Pública"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida amb una contrasenya que trieu. Només aquells que coneguin la contrasenya podran veure aquesta entrada."],"Password Protected":["Protegit amb contrasenya"],"Only visible to site admins and editors.":["Només visible per administradors i editors."],"Private":["Privada"],"Visible to everyone.":["Visible per tothom."],"Post Visibility":["Visibilitat de l'entrada"],"Would you like to privately publish this post now?":["Voleu publicar aquesta entrada de forma privada ara mateix?"],"Use a secure password":["Utilitza una contrasenya segura"],"Create password":["Crea una contrasenya"],"Move to Trash":["Mou a la paperera"],"Parent Term":["Terme pare"],"Parent Category":["Categoria mare"],"Add new term":["Afegeix un terme nou"],"Add new category":["Afegeix una categoria nova"],"Term":["Terme"],"Tag":["Etiqueta"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Segur que voleu anul·lar la publicació d'aquesta entrada?"],"Immediately":["Immediatament"],"Save Draft":["Desa"],"Saving":["S'està desant"],"Publish:":["Publica:"],"Visibility:":["Visibilitat:"],"Are you ready to publish?":["Esteu preparats per publicar?"],"Copy Link":["Copia l'enllaç"],"What’s next?":["I ara què?"],"is now live.":["és ara visible."],"Published":["Publicada"],"Schedule":["Planifica"],"Update":["Actualitza"],"Submit for Review":["Envia per a revisió"],"Updating…":["S'està actualitzant..."],"Publishing…":["S'està publicant..."],"Allow pingbacks & trackbacks":[],"Permalink:":["Enllaç permanent:"],"Pending review":[],"%d Revision":["%d revisió","%d revisions"],"Suggestion:":["Suggeriment:"],"Post Format":["Format d'entrada"],"Chat":["Xat"],"Status":["Estat"],"Standard":["Estàndard"],"Aside":["Anotació"],"Featured image":["Imatge destacada"],"Set featured image":[],"Learn more about manual excerpts":["Més informació sobre els resums manuals"],"Write an excerpt (optional)":["Escriu un resum (opcional)"],"Allow comments":[],"Template:":["Plantilla:"],"no parent":["sense pare"],"no title":["sense títol"],"Order":["Ordre"],"No blocks found.":["No s'ha trobat cap bloc."],"%d result found.":["S'ha trobat %d resultat.","S'han trobat %d resultats."],"Saved":["S'ha desat"],"Embeds":["Incrustats"],"Blocks":["Blocs"],"Search for a block":["Cerca un bloc"],"Add block":["Afegeix bloc"],"Copy Error":["Error de còpia"],"Copy Post Text":["Copia el text de l'entrada"],"Attempt Recovery":["Intenta la recuperació"],"The editor has encountered an unexpected error.":["L'editor s'ha trobat amb un error inesperat."],"Undo":["Desfés"],"Redo":["Refés"],"(Multiple H1 headings are not recommended)":["(Múltiples capçaleres H1 no són recomanables)"],"(Your theme may already use a H1 for the post title)":["(El tema potser ja està utilitzant una capçalera H1 per al títol de l'entrada)"],"(Incorrect heading level)":["(Nivell de capçalera incorrecte)"],"(Empty heading)":["(Capçalera buida)"],"Block Styles":["Estils de bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Esteu segur que voleu suprimir aquest bloc reutilitzable?\n\nS'eliminarà de forma permanent de totes les entrades i pàgines que el facin servir."],"Convert to Regular Block":["Converteix en bloc normal"],"More options":["Més opcions"],"Edit visually":["Edita visualment"],"Duplicate":["Duplica"],"Blocks cannot be moved down as they are already at the bottom":["Els blocs no es poden moure més avall perquè ja es troben al final"],"Blocks cannot be moved up as they are already at the top":["Els blocs no es poden moure més amunt perquè ja es troben al principi"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["El bloc %s es l'únic bloc i no es pot moure"],"Edit as HTML":["Edita com HTML"],"Convert to Blocks":["Converteix a blocs"],"Block: %s":["Bloc: %s"],"This block has encountered an error and cannot be previewed.":["Aquest bloc ha trobat un error i no es pot previsualitzar."],"No block selected.":["No s'ha seleccionat cap bloc."],"Transform into:":["Transforma en:"],"Remove":["Suprimeix"],"Find original":["Troba l'original"],"Copy all content":[],"Copied!":["S'ha copiat!"],"Additional settings are now available in the Editor block settings sidebar":["Ara hi ha paràmetres addicionals disponibles a la barra de configuració de l'editor de blocs"],"Visibility":["Visibilitat"],"Status & visibility":[],"Page attributes":[],"Block":["Bloc"],"Document":["Document"],"Close settings":["Tanca la configuració"],"Editor content":["Contingut de l'editor"],"Tools":["Eines"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor de la barra superior"],"Settings":["Opcions"],"Reset":["Reinicia"],"Dismiss this notice":["Descarta aquest avís"],"Item removed.":["S'ha suprimit l'element."],"Item added.":["S'ha afegit l'element."],"Drop files to upload":["Desa els fitxers per penjar"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["S'ha produït un error desconegut."],"No results.":["Cap resultat."],"%d result found, use up and down arrow keys to navigate.":["S'ha trobat %d resultat, feu servir les fletxes amunt i avall per navegar.","S'han trobat %d resultats, feu servir les fletxes amunt i avall per navegar."],"(no title)":["(sense títol)"],"URL":["URL"],"Submit":["Tramet"],"Close":["Tanca"],"Insert link":["Insereix un enllaç"],"Edit link":["Edita l'enllaç"],"Link":["Enllaç"],"Strikethrough":["Ratllat"],"Italic":["Itàlica"],"Bold":["Negreta"],"Remove link":[],"Number of items":["Nombre d'elements"],"All":["Tot"],"Category":["Categoria"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["De més antigues a més recents"],"Newest to Oldest":["De més recents a més antigues"],"Order by":["Ordena per"],"Select":["Selecciona"],"Select or Upload Media":["Selecciona o penja fitxers multimèdia"],"Video":["Vídeo"],"Write…":["Escriu..."],"poetry":["poesia"],"Verse":["Vers"],"New Column":["Columna nova"],"Delete Column":["Suprimeix la columna"],"Add Column After":["Afegeix una columna després de"],"Add Column Before":["Afegeix una columna abans de"],"Delete Row":["Suprimeix la fila"],"Add Row After":["Afegeix una fila després de"],"Add Row Before":["Afegeix una fila abans de"],"Edit table":["Edita la taula"],"Table":["Taula"],"Write subheading…":["Escriu un subtítol..."],"Write shortcode here…":["Escriu el codi de substitució aquí..."],"Shortcode":["Codi de substitució"],"divider":["divisor"],"horizontal-line":["línia-horitzontal"],"Separator":["Separador"],"Quote":["Cita"],"Write citation…":["Escriu una cita..."],"Write quote…":["Escriu la cita..."],"Pullquote":["Nota destacada"],"Write preformatted text…":["Escriu text preformatat..."],"Preformatted":["Preformatat"],"text":["text"],"Paragraph":["Paràgraf"],"Font Size":["Mida de la font"],"Drop Cap":["Lletra de caixa alta"],"Text settings":[],"Read more":["Llegeix més"],"Write list…":["Escriu una llista..."],"numbered list":["llista numerada"],"ordered list":["llista ordenada"],"bullet list":["llista de pics"],"Indent list item":["Sagna l'element de la llista"],"Outdent list item":["Desfés el sagnat de l'element de la llista"],"Convert to ordered list":["Converteix en llista ordenada"],"Convert to unordered list":["Converteix en llista no ordenada"],"List":["Llista"],"recent posts":["entrades recents"],"No posts found.":["No s'ha trobat cap entrada."],"Latest Posts":["Últimes entrades"],"Display post date":["Mostra la data de l'entrada"],"Grid view":["Vista en graella"],"List view":["Vista en llista"],"photo":["foto"],"Image settings":[],"Image":["Imatge"],"Preview":["Previsualitza"],"embed":["incrusta"],"Custom HTML":["HTML personalitzat"],"subtitle":["subtítol"],"title":["títol"],"Heading":["Capçalera"],"Write heading…":["Escriu la capçalera..."],"Heading %d":["Capçalera %d"],"Level":["Nivell"],"Heading settings":[],"photos":["fotos"],"images":["imatges"],"None":["Cap"],"Media File":["Mèdia"],"Attachment Page":["Pàgina dels adjunts"],"Link to ":[],"Crop Images":["Escapça imatges"],"Gallery settings":[],"Gallery":["Galeria"],"Classic":["Edita el clàssic"],"video":["vídeo"],"audio":["àudio"],"music":["música"],"image":["imatge"],"blog":["blog"],"post":["entrada"],"Embedded content from %s":["Contingut incrustat des de %s"],"Enter URL to embed here…":["Introdueix l'URL a incrustar aquí..."],"%s URL":["URL %s"],"Embedding…":["S'està incrustant..."],"Write title…":["Escriu un títol..."],"Fixed Background":["Fons fix"],"Edit image":["Edita la imatge"],"Columns":["Columnes"],"Experiments":["Experiments"],"Code":["Codi"],"Write code…":["Escriu codi..."],"Categories":["Categories"],"Show Hierarchy":["Mostra la jerarquia"],"Show post counts":["Mostra el nombre d'entrades"],"Categories settings":[],"Add text…":["Afegeix un text..."],"Button":["Botó"],"Apply":["Aplica"],"Text Color":["Color del text"],"Background Color":["Color de fons"],"Block has been deleted or is unavailable.":["El bloc s'ha eliminat o no està disponible."],"Reusable blocks":[],"Cancel":["Cancel·la"],"Edit":["Edita"],"Write caption…":["Escriu una llegenda..."],"Use URL":["Utilitza l'URL"],"Audio":["Àudio"],"Upload":["Penja"],"Additional CSS Class(es)":["Classe(s) CSS addicional(s)"],"HTML Anchor":["Àncora HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Aquesta combinació de colors pot ser difícil de llegir. Intenteu fer servir un color de fons més brillant i/o un color de text més fosc."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Aquesta combinació de colors pot ser difícil de llegir. Intenteu fer servir un color de fons més fosc i/o un color de text més brillant."],"Clear":["Neteja"],"Custom color picker":["Selector de color personalitzat"],"Color: %s":["Color: %s"],"Full width":[],"Wide width":[],"Widgets":["Ginys"],"Formatting":["Format"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["S'està imprimint des de 1440. Aquesta és una extensió en desenvolupament per a l'editor de blocs nou del nucli."],"Add title":["Afegeix títol"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["El mode de desenvolupament de Gutenberg necessita generar alguns fitxers. Executeu npm install
per instal·lar-ne les dependències, npm run build
per generar els fitxers o npm run dev
per generar els fitxers i mirar els canvis de codi. Vegeu el fitxer contribucions per a més informació."],"Author":["Autor"],"Slug":["Resum"],"Discussion":["Debats "],"Custom fields":[],"Excerpt":["Extracte"],"Publish":["Publica"],"Metadata":["Metadades"],"Save":["Desa"],"Documentation":["Documentació (en anglès)"],"Select Category":["Selecciona la categoria"],"(Untitled)":["(sense títol)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["El Gutenberg necessita el WordPress %s o superior per a funcionar correctament. Actualitzeu el WordPress abans d'activar el Gutenberg."],"Gutenberg Team":["Equip del Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["fa %s"],"Block style name must be a string.":["El nom de l'estil del bloc ha de ser una cadena de text."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_cs.json b/bundle/android/raw/i18ncache_data_cs.json
new file mode 100644
index 0000000000..e83e6bc57f
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_cs.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":["Barevný přechod: %s"],"Gradient code: %s":["Kód barevného přechodu: %s"],"All content copied.":["Veškerý obsah byl zkopírován."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Nahrávání souboru se nezdařilo. Pokud se jedná o fotku, nebo velký obrázek, zmenšete jeho rozměry a zkuste to znovu."],"Gradient":["Barevný přechod"],"Gradient Presets":["Předvolby přechodů"],"No Preview Available.":["Náhled není k dispozici."],"Midnight":["Půlnoc"],"Electric grass":["Elektrizující tráva"],"Pale ocean":["Bledý oceán"],"Luminous dusk":["Světélkující prach"],"Blush bordeaux":["Purpurově červená"],"Blush light purple":["Pastelově světle fialová"],"Cool to warm spectrum":["Studené až teplé barvy"],"Very light gray to cyan bluish gray":["Velice světle šedá až azurově-modro-šedá"],"Luminous vivid orange to vivid red":["Světlá sytě oranžová až sytě červená"],"Luminous vivid amber to luminous vivid orange":["Světlá sytě žlutá až světlá sytě oranžová"],"Light green cyan to vivid green cyan":["Světlá azurově-zelená až sytě azurově-zelená"],"Vivid cyan blue to vivid purple":["Sytě azurově-modrá až sytě azurově-fialová"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6. prosince 2018"],"February 21, 2019":["21. ledna 2019"],"May 7, 2019":["7. května 2019"],"Release Date":["Datum vydání"],"Jazz Musician":["Jazzman"],"Version":["Verze"],"Six.":["Šest."],"Five.":["Pět."],"Four.":["Čtyři."],"Three.":["Tři."],"Two.":["Dvě."],"One.":["Jedna."],"One of the hardest things to do in technology is disrupt yourself.":["Jednou z nejobtížnějších věcí s dnešní technikou je schopnost odpoutat se."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["The wren
Earns his living
Noiselessly."],"Welcome to the wonderful world of blocks…":["Vítejte v báječném světe bloků…"],"Snow Patrol":["Sněžná stráž"],"Dimensions":["Rozměry"],"Minimum height in pixels":["Minimální výška (v pixelech)"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Výzva k akci"],"In quoting others, we cite ourselves.":["Člověk by musel žít úplně nesmyslně, aby tu nekonečnou nesmyslnost nakonec prolomil."],"cite":["citát"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc – vypadá stále zasněžená, klidná a vyrovnaná."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean vel eros non orci gravida lobortis a non felis. Sed ultrices id orci hendrerit tempus. Integer nulla risus, porttitor quis auctor quis, sodales quis eros."],"Block navigation":["Navigace mezi bloky"],"Full Site Editing":["Úpravy celého webu"],"Templates to include in your theme.":["Šablony (stránek), které mají být obsaženy v šabloně."],"Templates":["Šablony"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["Pro instalaci nových bloků nemáte dostatečné oprávnění."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["V adresáři nebyly nalezeny žádné bloky. Pro instalaci nových bloků kontaktujte administrátora webu."],"No blocks found in your library.":["V adresáři nebyly nalezeny žádné bloky."],"No blocks found in your library. These blocks can be downloaded and installed:":["V adresáři nebyly nalezeny žádné bloky. Tyto bloky mohou být staženy a nainstalovány:"],"No blocks found in your library. We did find %d block available for download.":["V adresáři nebyly nalezeny žádné bloky. %d blok je dostupný ke stažení.","V adresáři nebyly nalezeny žádné bloky. %d bloky jsou dostupné ke stažení.","V adresáři nebyly nalezeny žádné bloky. %d bloků je dostupných ke stažení."],"Block previews can’t load.":["Náhledy bloků nelze načíst."],"Retry":["Opakovat"],"Block previews can't install.":["Náhledy bloků nelze instalovat."],"Updated %s":["Aktualizováno %s"],"%d active installation":["%d aktivní instalace","%d aktivní instalace","%d aktivních instalací"],"This author has %d block, with an average rating of %d.":["Autor má %d blok, s průměrným hodnocením %d.","Autor má %d bloky, s průměrným hodnocením %d.","Autor má %d bloků, s průměrným hodnocením %d."],"Authored by %s":["Autor: %s"],"%d total rating":["%d hodnocení","%d hodnocení","%d hodnocení"],"%s out of 5 stars":["%s z 5 hvězdiček"],"Enter Address":["Zadejte adresu"],"Pill Shape":["Tvar pilulky"],"Logos Only":["Jen loga"],"Create a block of links to your social media or external sites":["Vytvořte blok odkazů na sociální sítě nebo externí weby"],"Social links":["Odkazy sociálních sítí"],"Open block navigator":["Otevřít blok navigace"],"Attachment page":["Stránku se zobrazením souboru"],"Fill":["S výplní"],"Link rel":["Druh odkazu (rel)"],"Border Radius":["Zaoblení okrajů"],"Write gallery caption…":["Napište titulek galerie…"],"Content blocks":[],"Restore the backup":["Obnovit zálohu"],"The backup of this post in your browser is different from the version below.":["Záloha tohoto příspěvku ve vašem prohlížeči se liší od níže uvedené verze."],"Enable block directory search":[],"Block Directory":["Adresář bloků"],"Unable to connect to the filesystem. Please confirm your credentials.":["Nelze se připojit k souborovému systému. Potvrďte své přihlašovací údaje."],"Sorry, you are not allowed to install blocks.":["Pro instalaci bloků nemáte dostatečné oprávnění."],"%1$d block is disabled.":["%1$d blok je zakázán.","%1$d bloky jsou zakázány.","%1$d bloků je zakázáno."],"Reverse List Numbering":["Obrátit směr číslování"],"Start Value":["První hodnota"],"Ordered list settings":[],"Clear Media":["Vymazat média"],"Default Style":["Výchozí styl"],"Not set":["Není nastaveno"],"While writing, you can press / to quickly insert new blocks.":["Během psaní můžete stisknout klávesu „/“, pro rychlé přidání nových bloků."],"Browse through the library to learn more about what each block does.":["Projděte si adresář bloků a zjistěte, co každý blok umí."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["K dispozici jsou bloky pro všechny druhy obsahu: můžete vkládat text, nadpisy, obrázky, seznamy, a mnoho dalšího."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Vítejte v báječném světě bloků! Blok je základní částí obsahu v tomto editoru."],"Version of the content block format used by the object.":["Verze formátu bloku obsahu použitého objektem."],"HTML content for the object, transformed for display.":["Obsah HTML pro daný objekt, pro zobrazení."],"Content for the object, as it exists in the database.":["Obsah objektu tak, jak existuje v databázi."],"The content for the object.":["Obsah objektu."],"Change column alignment":["Změnit zarovnání sloupce"],"Align Column Right":["Zarovnat doprava"],"Align Column Center":["Zarovnat na střed"],"Align Column Left":["Zarovnat doleva"],"Color":["Barva"],"Vivid purple":["Sytě fialová"],"Disable & Reload":["Zakázat a načíst znovu"],"Enable & Reload":["Povolit a načíst znovu"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Tato změna vyžaduje opětovné načtení stránky. Před opětovným načtením zkontrolujte, zda je obsah uložen."],"Display these keyboard shortcuts.":["Zobrazit tyto klávesové zkratky."],"Experiments Settings":["Nastavení experimentálních funkcí"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["Název bloku musí být řetězec."],"Custom":["Vlastní"],"Draft":["Koncept"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blok „%1$s“ neobsahuje styl s názvem „%2$s.“."],"Learn more about anchors":["Více o HTML záložkách"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Napište jedno nebo dvě slova, bez mezer, abyste vytvořili jedinečnou URL adresu pro tento nadpis, zvanou „záložka“. Poté budete moci přímo odkázat na tuto část stránky."],"Widget Blocks (Experimental)":["Bloky widget (experimentální)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Nahrajte video, vyberte stávající z knihovny médií, nebo jej přidejte pomocí URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Nahrajte obrázek, vyberte stávající z knihovny médií, nebo jej přidejte pomocí URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Nahrajte audio, vyberte stávající z knihovny médií, nebo jej přidejte pomocí URL."],"Upload a media file or pick one from your media library.":["Nahrajte soubor, nebo vyberte stávající z knihovny médií."],"Skip":["Přeskočit"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["Více informací"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Zakázat vyhledávačům následovat tento odkaz."],"Provide more context about where the link goes.":["Poskytněte širší kontext, kam odkaz směřuje."],"Title Attribute":["Atribut title"],"SEO settings":[],"Description":["Popis"],"Open in new tab":["Otevírat v nové záložce"],"links":["odkazy"],"navigation":["navigace"],"menu":["menu"],"Add a navigation block to your site.":["Přidá na web navigační menu."],"Upload a file or pick one from your media library.":["Nahrajte soubor, nebo vyberte stávající z knihovny médií."],"Learn more about embeds":["Více o sdíleném obsahu"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Vložte odkaz na obsah, který chcete vidět na svém webu."],"Upload an image or video file, or pick one from your media library.":["Nahrajte obrázek či video, nebo vyberte stávající soubor z knihovny médií."],"Three columns; wide center column":["Tři sloupce; široký střední sloupec"],"Three columns; equal split":["Tři sloupce; rovnoměrně rozdělené"],"Two columns; two-thirds, one-third split":["Dva sloupce; rozděleno na 2/3 a 1/3"],"Two columns; one-third, two-thirds split":["Dva sloupce; rozděleno na 1/3 a 2/3"],"Two columns; equal split":[" Dva sloupce; rovnoměrně rozdělené"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Tento web nemá žádné %s, aktuálně zde proto není nic k zobrazení."],"More tools & options":["Více možností a nástrojů"],"Create Table":["Vytvořit"],"Insert a table for sharing data.":["Vložte tabulku pro sdílení dat."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Rozdělit"],"verb\u0004Group":["Seskupit"],"Separate with commas or the Enter key.":["Oddělte je čárkami nebo klávesou ENTER."],"Separate with commas, spaces, or the Enter key.":["Oddělte je čárkami, mezerami nebo klávesou ENTER."],"Separate multiple classes with spaces.":["Více tříd oddělte mezerami."],"Move image forward":["Posunout obrázek dopředu"],"Move image backward":["Přesunout obrázek dozadu"],"Sorry, you are not allowed to edit sidebars.":["Nemáte oprávnění k úpravám postranních panelů."],"Sorry, you are not allowed to read sidebars.":["Nemáte oprávnění číst postranní panely."],"The sidebar’s ID.":["ID postranního panelu."],"Displays a set of blocks":["Zobrazí se jako sadu bloků"],"Blocks Area":["Oblast bloků"],"Block rendered as empty.":["Blok je vykreslen jako prázdný."],"Inline Code":["Vložený kód"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Poznámka: Automatické přehrávání videa může u některých návštěvníků způsobit problémy s použitelností."],"Footer section":["Sekce zápatí"],"Header section":["Sekce záhlaví"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Obsah příspěvku"],"Post content settings":[],"Percentage width":["Šířka v procentech"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Poznámka: Automatické přehrávání zvuku může u některých návštěvníků způsobit problémy s použitelností."],"Block area updated.":["Oblast bloku byla aktualizována."],"Block area scheduled.":["Oblast bloku byla naplánována."],"Block area published.":["Oblast bloku byla publikována."],"Block areas list":["Seznam oblastí bloků"],"Block areas list navigation":["Navigace v seznamu oblastí bloků"],"Filter block areas list":["Filtrovat seznam oblasti bloků"],"No block area found.":["Nebyla nalezena žádná oblast bloku."],"Search Block Areas":["Hledat oblasti bloků"],"All Block Areas":["Všechny oblasti bloků"],"View Block Area":["Zobrazit oblast bloku"],"Edit Block Area":["Upravit oblast bloku"],"New Block Area":["Nová oblast bloku"],"Add New Block Area":["Přidat novou oblast bloku"],"admin menu\u0004Block Areas":["Oblasti bloků"],"post type singular name\u0004Block Area (Experimental)":["Oblast bloku (experimentální)"],"post type general name\u0004Block Area (Experimental)":["Oblast bloků (experimentální)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimentální vlastní typ obsahu, který bude ukládat oblasti bloků odkazované šablonami."],"Widgets screen content":["Obsah obrazovky widgetů"],"header":[],"Widgets advanced settings":["Pokročilé nastavení widgetů"],"(experimental)":["(experimentální)"],"Block Areas":["Oblasti bloků"],"Widgets screen top bar":["Horní lišta obrazovky widgetů"],"This color combination may be hard for people to read.":["Tato barevná kombinace může být hůře čitelná."],"There is no poster image currently selected":["Náhledový obrázek aktuálně není vybrán"],"The current poster image url is %s":["Aktuální URL náhledového obrázku je %s"],"section":["sekce"],"row":["řádek"],"wrapper":["wrapper"],"container":["kontejner"],"A block that groups other blocks.":["Blok, který seskupuje jiné bloky."],"Group":["Skupina"],"Crop image to fill entire column":["Oříznout obrázek, aby vyplnil celý sloupec"],"Play inline":["Přehrávat uvnitř obsahu stránky"],"Leave empty if the image is purely decorative.":["Nevyplňujte jestli je obrázek čistě dekorativní."],"Describe the purpose of the image":["Popište smysl obrázku"],"Add a block":["Přidat blok"],"Block vertical alignment setting label\u0004Change vertical alignment":["Změnit svislé zarovnání"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Zarovnat dolů"],"Block vertical alignment setting\u0004Vertically Align Middle":["Zarovnat doprostřed"],"Replace Image":["Nahradit obrázek"],"Block vertical alignment setting\u0004Vertically Align Top":["Zarovnat nahoru"],"Display a legacy widget.":["Zobrazí původní WordPress widget."],"Legacy Widget (Experimental)":["Starší verze widgetu (experimentální)"],"Change widget":["Změnit widget"],"Legacy Widget":["Starší verze widgetu"],"You don't have permissions to use widgets on this site.":["Nemáte dostatečné oprávnění pro používání widgetů na tomto webu."],"Select a legacy widget to display:":["Vyberte starší verzi widgetu, který chcete zobrazit:"],"There are no widgets available.":["Nejsou k dispozici žádné widgety."],"Change block type or style":["Změnit typ nebo styl bloku"],"keyboard key\u0004Space":["Mezerník"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Další prvky formátovaného textu"],"Search Terms":["Hledané výrazy"],"Exit the Editor":["Ukončit editor"],"Block Manager":["Správce bloků"],"Class name of the widget.":["Název třídy widgetu."],"Sorry, you are not allowed to access widgets on this site.":["Nemáte dostatečné oprávnění pro přístup k widgetům na tomto webu."],"Widgets (beta)":["Widgety (beta)"],"link":["odkaz"],"Embedded content from %s can't be previewed in the editor.":["Vložený obsah z %s nelze v editoru zobrazit."],"Custom Color":["Vlastní barva"],"Prompt visitors to take action with a button-style link.":["Vyzvěte návštěvníky k provedení akce pomocí odkazu ve stylu tlačítka."],"Stick to the top of the blog":["Zvýraznit tento příspěvek"],"Read about permalinks":["Více o trvalých odkazech (anglicky)"],"The last part of the URL.":["Poslední část URL adresy."],"URL Slug":["Název v URL"],"A cloud of your most used tags.":["Nejpoužívanější štítky (či další volitelné taxonomie) zobrazené ve formě přehledného shluku."],"Tag Cloud":["Štítky"],"Taxonomy":["Taxonomie"],"Tag Cloud settings":[],"- Select -":["- Vybrat -"],"Default":["Výchozí"],"find":["hledat"],"Help visitors find your content.":["Pomozte návštěvníkům najít váš obsah."],"Search":["Hledat"],"Add button text…":["Přidat text tlačítka…"],"Button text":["Text tlačítka"],"Optional placeholder…":["Volitelný zástupný text…"],"Optional placeholder text":["Volitelný zástupný text"],"Add label…":["Přidat popisek…"],"Label text":["Text popisku"],"image %1$d of %2$d in gallery":["%1$d. obrázek z %2$d v galerii"],"archive":["archiv"],"posts":["příspěvky"],"A calendar of your site’s posts.":["Kalendář publikovaných příspěvků."],"Calendar":["Kalendář"],"by":["od"],"An error has occurred, which probably means the feed is down. Try again later.":["Objevila se nečekaná chyba, RSS zdroj je pravděpodobně mimo provoz. Zkuste to prosím později."],"RSS Error:":["Chyba RSS:"],"block style\u0004Default":["Výchozí"],"Fullscreen mode deactivated":["Celoobrazovkový režim byl deaktivován"],"Fullscreen mode activated":["Celoobrazovkový režim byl aktivován"],"Spotlight mode deactivated":["Režim nevyrušovaného psaní byl deaktivován"],"Spotlight mode activated":["Režim nevyrušovaného psaní byl aktivován"],"Top toolbar deactivated":["Horní panel nástrojů byl deaktivován"],"Top toolbar activated":["Horní panel nástrojů byl aktivován"],"Back":["Zpět"],"Feature activated":["Prvek byl aktivován"],"Feature deactivated":["Prvek byl deaktivován"],"Vertical Pos.":["Vertikální poz."],"Horizontal Pos.":["Vodorovná poz."],"feed":["RSS"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Zobrazí položky z libovolného informačního RSS nebo Atom kanálu."],"RSS":["RSS"],"Max number of words in excerpt":["Maximální počet slov ve stručném výpisu"],"Display excerpt":["Zobrazit stručný výpis"],"Display date":["Zobrazit datum"],"Display author":["Zobrazit autora"],"RSS settings":[],"Edit RSS URL":["Upravit URL RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Obsah nad tímto blokem se v archivu zobrazí jako stručný výpis příspěvku."],"Hide the excerpt on the full content page":["Nezobrazovat stručný výpis při zobrazení celého příspěvku"],"The excerpt is visible.":["Stručný výpis příspěvku je viditelný."],"The excerpt is hidden.":["Stručný výpis příspěvku je skrytý."],"Sorry, this content could not be embedded.":["Tento obsah nemohl být vložen."],"Embed Amazon Kindle content.":["Vložte obsah z Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Vložte obsah z Crowdsignalu (dříve PollDaddy)."],"Focal Point Picker":["Výběr ústředního bodu"],"Underline":["Podtržení"],"Attempt Block Recovery":["Pokusit se o obnovení bloku"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Text…"],"button label\u0004Convert to link":["Převést na odkaz"],"button label\u0004Try again":["Zkusit znovu"],"Editor tips":["Tipy editoru"],"Block (selected)":["Blok (vybráno)"],"Document (selected)":["Dokument (vybráno)"],"%d word":["%d slovo","%d slova","%d slov"],"Top toolbar":[],"Link Rel":["Druh odkazu (rel)"],"Link CSS Class":["Připojit třídu CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Vytvořte obsah a uložte jej pro opakované použití v rámci webu. Při aktualizaci bloku se změny projeví všude, kde se daný blok používá."],"To edit the featured image, you need permission to upload media.":["Pro úpravu náhledového obrázku potřebujete oprávnění k nahrávání mediálních souborů."],"To edit this block, you need permission to upload media.":["Chcete-li tento blok upravit, potřebujete oprávnění k nahrávání mediálních souborů."],"(selected block)":["(vybraný blok)"],"Block tools":["Nástroje bloku"],"Permalink":["Trvalý odkaz"],"This image has an empty alt attribute":["Tento obrázek nemá vyplněný atribut alt."],"This image has an empty alt attribute; its file name is %s":["Tento obrázek nemá vyplněný atribut alt; název souboru je %s."],"Block area reverted to draft.":["Blok byl převeden zpět na koncept."],"Block area published privately.":["Blok byl publikován soukromě."],"No block areas found in Trash.":["V koši nebyly nalezeny žádné bloky."],"Block\u0004Add New":["Přidat nový"],"add new on admin bar\u0004Block Area":["Oblast bloků"],"Link inserted.":["Odkaz byl vložen."],"Warning: the link has been inserted but may have errors. Please test it.":["Upozornění: Právě vložený odkaz může obsahovat chyby, raději ho prosím vyzkoušejte."],"%s block selected.":["Je vybrán %s blok.","Jsou vybrány %s bloky.","Je vybráno %s bloků."],"Thumbnail":["Náhled"],"Full Size":["Původní velikost"],"Link selected.":["Odkaz byl vybrán."],"Start writing with text or HTML":["Začněte psát text nebo kód HTML"],"Type text or HTML":["Zadejte text nebo HTML"],"Block icon":["Ikona bloku"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Začněte psát nebo napište / pro zvolení bloku"],"Empty block; start writing or type forward slash to choose a block":["Prázdný blok; začněte psát nebo zadejte lomítko pro zvolení bloku"],"Paragraph block":["Blok odstavce"],"Page Break":["Rozdělení stránky"],"Stack on mobile":["Seskupit na mobilu"],"Annotation":["Anotace"],"Drag images, upload new ones or select files from your library.":["Přetáhněte obrázky, nahrajte nové nebo vyberte soubory z knihovny."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Opravit"],"font size name\u0004Huge":["Obrovské"],"font size name\u0004Large":["Velké"],"font size name\u0004Medium":["Střední"],"font size name\u0004Small":["Malé"],"font size name\u0004Normal":["Normální"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importovat"],"button label\u0004Download":["Stáhnout"],"button label\u0004Embed":["Vložit"],"block title\u0004Embed":["Vložení"],"block title\u0004Classic":["Klasický editor"],"block style\u0004Large":["Velké"],"block style\u0004Rounded":["Zaoblené"],"%s (opens in a new tab)":["%s (otevře se na nové záložce)"],"Link edited.":["Odkaz byl upraven."],"Link removed.":["Odkaz byl odebrán."],"media":["mediální soubor"],"Double-check your settings before publishing.":["Před publikováním si zkontrolujte nastavení."],"Generating preview…":["Generování náhledu…"],"Edit or update the image":["Upravte nebo aktualizujte obrázek"],"Media":["Média"],"Navigate to the nearest toolbar.":["Přejít na nejbližší panel nástrojů."],"Document tools":["Nástroje dokumentu"],"Document and block tools":["Nástroje pro dokument a bloky"],"Embed a video from your media library or upload a new one.":["Vložte video z knihovny médií, nebo nahrajte nové."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Napište báseň, nebo citujte text písně. Používejte speciální formát mezer."],"Add white space between blocks and customize its height.":["Přidejte mezeru mezi bloky a upravte její výšku."],"Insert additional custom elements with a WordPress shortcode.":["Vložte další vlastní prvky pomoci zkráceného zápisu (shortcode)."],"Create a break between ideas or sections with a horizontal separator.":["Oddělte jednotlivé nápady nebo oddíly vodorovnou čarou."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Zvýrazněte citovaný text. „Při citování ostatních, citujeme sami sebe.“ — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Zvýrazněte vlastní citovaný text."],"Start with the building block of all narrative.":["Začněte základem všech vyprávění."],"Separate your content into a multi-page experience.":["Rozdělte obsah na více stránek."],"Set media and words side-by-side for a richer layout.":["Umístěte vedle sebe text a mediální soubor, pro zajímavější rozložení."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Vytvořte odrážkový nebo číslovaný seznam."],"Display a list of your most recent comments.":["Zobrazte seznam nejnovějších komentářů."],"Insert an image to make a visual statement.":["Vložte obrázek pro vytvoření vizuálního prvku."],"Add custom HTML code and preview it as you edit.":["Přidejte vlastní kód HTML a zobrazte jeho náhled při úpravách."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Uveďte nové oddíly a uspořádejte návštěvníkům (a vyhledávačům) obsah tak, aby pochopili strukturu textu."],"Display multiple images in a rich gallery.":["Zobrazte více obrázků v galerii."],"Add a link to a downloadable file.":["Přidejte odkaz na soubor ke stažení."],"Embed videos, images, tweets, audio, and other content from external sources.":["Vkládejte videa, obrázky, tweety, audio a další obsah z externích zdrojů."],"Resize for smaller devices":["Přizpůsobit velikost pro menší zařízení"],"This embed may not preserve its aspect ratio when the browser is resized.":["Tento embed nemusí zachovat svůj poměr stran při změně velikosti okna."],"This embed will preserve its aspect ratio when the browser is resized.":["Tento embed zachová svůj poměr stran i při změně velikosti okna."],"Embed an Animoto video.":["Vložte video z Animoto."],"Embed a Vimeo video.":["Vložte video z Vimea."],"Embed Flickr content.":["Vložte obsah z Flickru."],"Embed Spotify content.":["Vložte obsah ze Spotify."],"Embed SoundCloud content.":["Vložte obsah ze SoundCloudu."],"Embed a WordPress post.":["Vložte příspěvek z WordPressu."],"Embed an Instagram post.":["Vložte příspěvek z Instagramu."],"Embed a Facebook post.":["Vložte příspěvek z Facebooku."],"Embed a WordPress.tv video.":["Vložte video z WordPress.tv."],"Embed a VideoPress video.":["Vložte video z VideoPressu."],"Embed a Tumblr post.":["Vložte příspěvek z Tumblr."],"Embed a TED video.":["Vložte video z TEDu."],"Embed Speaker Deck content.":["Vložte obsah ze Speaker Deck."],"Embed a YouTube video.":["Vložte video z YouTube."],"Embed SmugMug content.":["Vložte obsah ze SmugMug."],"Embed Slideshare content.":["Vložte obsah ze SlideShare."],"Embed Scribd content.":["Vložte obsah ze Scribd."],"Embed Screencast content.":["Vložte obsah ze Screencastu."],"Embed ReverbNation content.":["Vložte obsah z ReverbNation."],"Embed a Reddit thread.":["Vložte vlákno z Redditu."],"Embed Polldaddy content.":["Vložte obsah z PollDaddy."],"Embed Mixcloud content.":["Vložte obsah z Mixcloudu."],"Embed a tweet.":["Vložte tweet."],"Embed Meetup.com content.":["Vložte obsah z Meetup.com."],"Embed Kickstarter content.":["Vložte obsah z Kickstarteru."],"Embed Issuu content.":["Vložte obsah z Issuu."],"Embed Imgur content.":["Vložte obsah z Imgur."],"Embed Hulu content.":["Vložte obsah z Hulu."],"Embed a Dailymotion video.":["Vložte video z Dailymotion."],"Embed CollegeHumor content.":["Vložte obsah z CollegeHumor."],"Embed Cloudup content.":["Vložte obsah z Cloudupu."],"Add an image or video with a text overlay — great for headers.":["Přidejte obrázek nebo video překryté textem – skvělé pro záhlaví."],"Display code snippets that respect your spacing and tabs.":["Zobrazte kód, který respektuje vaši strukturu."],"Use the classic WordPress editor.":["Použijte klasický WordPress Editor."],"Display a list of all categories.":["Zobrazte seznam všech rubrik."],"Embed a simple audio player.":["Vložte jednoduchý audio přehrávač."],"noun\u0004View":["Zobrazení"],"editor button\u0004Left to right":["Zleva doprava"],"Save as Pending":["Uložit do fronty na schválení"],"%s address":["%s URL"],"Paste or type URL":["Vložte nebo napište adresu URL"],"Insert from URL":["Vložit z URL adresy"],"Block Navigator":["Navigace mezi bloky"],"Styles":["Styly"],"Advanced panels":[],"Document panels":[],"General":["Obecné"],"Open the block navigation menu.":["Otevřít navigační menu bloku."],"Work without distraction":["Nenechte se při psaní rušit"],"Focus on one block at a time":["Zaměřte se vždy jen na jeden blok"],"Access all block and document tools in a single place":["Mějte veškeré nástroje dokumentu a aktivního bloku na jednom místě"],"Options":["Možnosti"],"(opens in a new tab)":["(otevře se na nové záložce)"],"Minutes":["Minuty"],"Hours":["Hodiny"],"Time":["Čas"],"Year":["Rok"],"Day":["Den"],"December":["Prosinec"],"November":["Listopad"],"October":["Říjen"],"September":["Září"],"August":["Srpen"],"July":["Červenec"],"June":["Červen"],"May":["Květen"],"April":["Duben"],"March":["Březen"],"February":["Únor"],"January":["Leden"],"Month":["Měsíc"],"Date":["Datum"],"Go to the first (home) or last (end) day of a week.":["Přejít na první (Home) nebo poslední (End) den v týdnu."],"Home/End":["Home/End"],"Home and End":["Home a end"],"Move backward (PgUp) or forward (PgDn) by one month.":["Posunout o jeden měsíc zpět (PgUp) nebo vpřed (PgDn)."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up a Page Down"],"Move backward (up) or forward (down) by one week.":["Posunout o jeden týden nazpět (nahoru) nebo vpřed (dolů)."],"Up and Down Arrows":["Šipky nahoru a dolů"],"Move backward (left) or forward (right) by one day.":["Posunout o jeden den zpět (vlevo) nebo vpřed (vpravo)."],"Left and Right Arrows":["Šipky vlevo a vpravo"],"Select the date in focus.":["Zvolit datum, které je označeno."],"Navigating with a keyboard":["Navigace pomocí klávesnice"],"Click the desired day to select it.":["Klikněte na požadovaný den pro jeho výběr."],"Click the right or left arrows to select other months in the past or the future.":["Kliknutím na šipku vlevo nebo vpravo vyberete předchozí nebo následujíc měsíc."],"Click to Select":["Kliknutí pro výběr"],"Calendar Help":["Nápověda kalendáře"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Pomocí kláves šipek změňte základní barvu. Šipkou nahoru barvu zesvětlíte, šipkou dolů ztmavíte, šipkou vlevo snížíte sytost, a šipkou vpravo sytost zvýšíte."],"Choose a shade":["Vyberte odstín"],"Change color format":["Změnit formát barvy"],"Color value in HSL":["Hodnota barvy v HSL"],"Color value in RGB":["Hodnota barvy v RGB"],"Color value in hexadecimal":["Hodnota barvy v šestnáctkové soustavě"],"RGB mode active":["RGB režim je aktivní"],"Hex color mode active":["Šestnáctkový barevný režim je aktivní"],"Hue/saturation/lightness mode active":["Režim odstín/sytost/světlost je aktivní"],"Move the arrow left or right to change hue.":["Pro změnu odstínu, použijte šipky doleva nebo doprava."],"Hue value in degrees, from 0 to 359.":["Hodnota odstínu ve stupních, od 0 do 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Hodnota alfa od 0 (průhledná) do 1 (zcela neprůhledné)."],"Stripes":["Pruhy"],"Your site doesn’t include support for this block.":["Tento web neobsahuje podporu pro tento blok."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Váš web neobsahuje podporu pro blok „%s“. Tento blok můžete ponechat nedotčený, nebo jej zcela odstranit."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Váš web neobsahuje podporu pro blok „%s“. Tento blok můžete ponechat beze změny, převést jeho obsah na vlastní HTML blok nebo jej zcela odebrat."],"Media area":["Oblast média"],"Media & Text":["Média a text"],"Show media on right":["Zobrazit média vpravo"],"Show media on left":["Zobrazit média vlevo"],"Open in New Tab":["Otevírat v nové záložce"],"Cover":["Úvodní obrázek"],"Border settings":[],"Medium":["Střední"],"Paste URL or type to search":["Vložte URL adresu, nebo zadejte hledaný výraz"],"Terms":["Položky"],"Your work will be published at the specified date and time.":["Vaše práce bude zveřejněna v zadaném datu a čase."],"Are you ready to schedule?":["Jste připraveni k naplánování?"],"Always show pre-publish checks.":["Vždy zobrazit kontrolu před publikováním."],"Take Over":["Převzít kontrolu"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Jiný uživatel momentálně upravuje tento příspěvek. Dokud nad příspěvkem nepřevezmete kontrolu, nemůžete v něm provádět změny."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["Uživatel %s momentálně upravuje tento příspěvek. Dokud nad příspěvkem nepřevezmete kontrolu, nemůžete v něm provádět změny."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Jiný uživatel nyní provádí úpravy tohoto příspěvku. Vaše doteď provedené změny byly uloženy."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Uživatel %s nyní provádí úpravy tohoto příspěvku. Vaše doteď provedené změny byly uloženy."],"Avatar":["Avatar"],"This post is already being edited.":["Tento příspěvek právě upravuje někdo jiný."],"Someone else has taken over this post.":["Někdo jiný převzal tento příspěvek."],"This block contains unexpected or invalid content.":["Tento blok obsahuje neočekávaný nebo neplatný obsah."],"Resolve Block":["Převod bloku"],"Convert to HTML":["Převést na HTML"],"This block can only be used once.":["Tento blok lze použít jen jednou."],"Exit Code Editor":["Ukončit HTML editor"],"Editing Code":["Upravujete kód"],"Solid Color":["Plná barva"],"Main Color":["Hlavní barva"],"HTML":["HTML"],"Write HTML…":["Začněte psát HTML…"],"Media settings":[],"Overlay":["Překrytí"],"Insert Media":["Vložte mediální soubor"],"Reusable block imported successfully!":["Opakovatelný blok byl úspěšně importován!"],"Invalid Reusable Block JSON file":["Neplatný soubor JSON opakovatelného bloku"],"Invalid JSON file":["Neplatný soubor JSON"],"Import from JSON":["Importovat z JSON"],"Backtick":["Zpětný apostrof"],"Period":["Tečka"],"Comma":["Čárka"],"Change type of %d block":["Změnit typ %d bloku","Změnit typ %d bloků","Změnit typ %d bloků"],"Current":["Aktuálně"],"After Conversion":["Po převodu"],"Change alignment":["Změnit zarovnání"],"Change text alignment":["Změnit zarovnání textu"],"%d block":["%d blok","%d bloky","%d bloků"],"Forward-slash":["/"],"No archives to show.":["Žádné archivy k zobrazení. "],"This file is empty.":["Soubor je prázdny."],"Sorry, this file type is not supported here.":["Tento typ souboru zde není podporován."],"Manage all reusable blocks":[],"Title":["Název"],"Fullscreen mode":[],"Beautiful landscape":["Nádherné hory"],"Close panel":["Zavřít panel"],"Convert to Classic Block":["Převést na klasický blok"],"Remove Poster Image":["Odstranit náhledový obrázek"],"Select Poster Image":["Zvolit náhledový obrázek"],"Poster Image":["Náhledový obrázek"],"This block is deprecated. Please use the Columns block instead.":["Tento blok je zastaralý. Použijte místo něj blok sloupců."],"Text Columns (deprecated)":["Textové sloupce (zastaralé)"],"Create":["Vytvořit"],"Row Count":["Počet řádků"],"Column Count":["Počet sloupců"],"This block is deprecated. Please use the Paragraph block instead.":["Tento blok je zastaralý. Místo něj použijte blok odstavce."],"Subheading (deprecated)":["Podnadpis (zastaralé)"],"blockquote":["citace"],"Change the block type after adding a new paragraph.":["Změnit typ bloku po přidání nového odstavce."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Štítky pomáhají uživatelům a vyhledávačům v orientaci na webu. Přidejte několik klíčových slov, která vystihují tento příspěvek."],"Add tags":["Přidat štítky"],"Apply the \"%1$s\" format.":["Použít formát „%1$s“."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tato šablona používá formáty příspěvku ke zvýraznění různých druhů obsahu, jako jsou obrázky nebo videa. Pro zobrazení tohoto speciálního stylu, vyberte konkrétní formát příspěvku."],"Use a post format":["Použijte formát příspěvku"],"Insert After":["Vložit pod"],"Insert Before":["Vložit nad"],"Move %1$d block from position %2$d down by one place":["Přesunout %1$d blok z %2$d. pozice o jednu pozici níže","Přesunout %1$d bloky z %2$d. pozice o jednu pozici níže","Přesunout %1$d bloků z %2$d. pozice o jednu pozici níže"],"Move %1$d block from position %2$d up by one place":["Přesunout %1$d blok z %2$d. pozice o jednu pozici výše","Přesunout %1$d bloky z %2$d. pozice o jednu pozici výše","Přesunout %1$d bloků z %2$d. pozice o jednu pozici výše"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Vložit nový blok před vybrané bloky."],"Remove the selected block(s).":["Odstranit vybrané bloky."],"Duplicate the selected block(s).":["Duplikovat vybrané bloky."],"Block shortcuts":["Práce s bloky"],"Clear selection.":["Zrušit výběr."],"Select all text when typing. Press again to select all blocks.":["Při psaní označí veškerý text. Další stisknutí označí všechny bloky."],"Selection shortcuts":["Zkratky výběru textu"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Přejít na předchozí část editoru."],"Navigate to the next part of the editor.":["Přejít na další část editoru."],"Show or hide the settings sidebar.":["Zobrazit nebo skrýt postranní panel nastavení."],"Redo your last undo.":["Provést znovu změny."],"Undo your last changes.":["Vrátit poslední změny."],"Save your changes.":["Uložit změny."],"Global shortcuts":["Obecné zkratky"],"Remove a link.":["Odstranit odkaz."],"Convert the selected text into a link.":["Převede označený text na odkaz."],"Underline the selected text.":["Podtržení"],"Make the selected text italic.":["Kurzíva"],"Make the selected text bold.":["Tučně"],"Text formatting":["Formátování textu"],"Insert a new block after the selected block(s).":["Vložit nový blok za vybrané bloky."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Děkujeme za testování Gutenbergu!"],"Help build Gutenberg":["Pomozte vyvíjet plugin Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Pokud se chcete dozvědět více o tom, jak vytvořit další bloky nebo máte-li zájem o pomoc s tímto projektem, přejděte do GitHub úložiště."],"The WordPress community":["Komunita WordPressu"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Můžete vytvořit jakýkoliv blok vás jen napadne - statický, nebo dynamický; formátovaný, nebo neformátovaný. Zde je blok stručného výpisu:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Jakýkoliv blok můžete takto zarovnat. Vložený blok je také zarovnaný, a je ihned responzivní:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Výše je galerie jen se dvěma obrázky. Je to jednoduchý způsob, jak vytvořit vizuálně příjemné rozvržení, aniž byste museli řešit obtékání textu. Galerii můžete také snadno převést zpět na jednotlivé obrázky pomocí přepínače bloků."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Jistě, obrázek na celou šířku může být někdy hodně veliký. Ale občas to za to stojí."],"Accessibility is important — don’t forget image alt attribute":["Dostupnost je důležitá — nezapomeň na atribut alt u obrázků"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Pokud kombinujete nové uspořádání (velmi široké a na plnou šířku) s galeriemi, můžete velmi rychle vytvořit formátovaný vzhled:"],"Media Rich":["Bohaté na média"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Množství sloupců v galeriích můžete změnit přetažením posuvníku v nastavení bloku, v postranním panelu."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bloky mohou být vše, co potřebujete. Například můžete chtít přidat decentní citaci jako součást kompozice textu. Nebo byste radši zobrazovali obří stylizovanou citaci? Všechny tyto možnosti teď jsou k dispozici."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informace příslušné ke zdroji citace jsou v odděleném textovém poli, podobně jako jsou odděleny popisky obrázků. Struktura citace je tak chráněna i když vyberete, upravíte nebo odstraníte zdroj. Je vždy jednoduché jej přidat zpět."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Editor se pokusí vytvářet lepší zkušenosti při tvorbě nových stránek a příspěvků, což zjednoduší psaní formátovaného textu. Bude používat „bloky“, aby šlo jednodušeji používat zkrácený zápis, vlastní HTML nebo vkládat „mystery meat“."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Obrovská výhoda bloků spočívá v tom, že je můžete upravit na místě a manipulovat s obsahem přímo. Namísto toho abyste měli pole na úpravu věcí jako je zdroj citace nebo text tlačítka, můžete přímo změnit obsah. Zkuste upravit následující citaci:"],"Visual Editing":["Vizuální úpravy"],"And Lists like this one of course :)":["A jistě seznamy jako je tenhle :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloky zobrazení jako jsou tlačítka, hlavní obrázky, oddělovače, atd."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Vložené prvky, jako YouTube, Tweety, nebo jiné WordPress příspěvky."],"Galleries":["Galerie"],"Images & Videos":["Obrázky a Videa"],"Text & Headings":["Text a nadpisy"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Vyzkoušejte to, můžete objevit funkce, které WordPress může již dlouho přidávat do vašich příspěvků. Tady je krátký seznam toho, co můžete najít:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Představte si, že vše, co WordPress dokáže, je k dispozici jednoduše a stále na stejném místě. Není třeba zjišťovat HTML značky, třídy nebo si pamatovat komplikovanou syntaxi zkráceného zápisu. To je cílem přidávání bloků - tlačítko (+)
, které uvidíte v editoru - umožní vám procházet všechny dostupné bloky obsahu a přidat je do příspěvku. Pluginy a šablony mohou zaregistrovat své vlastní, čímž se otevírají veškeré možnosti pro formátovanou úpravu a publikování."],"The Inserter Tool":["Nástroj pro přidávání bloků"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Zkuste vybrat a odstranit, nebo upravit titulek, nyní se nebudete muset bát, že omylem vyberete obrázek, nebo jiný text a zkazíte si tak celou prezentaci."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Pokud vaše šablona podporuje nové rozložení, v nástrojové liště obrázku uvidíte tlačítko „Velká šířka“. Vyzkoušejte ho."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Velmi pečlivé zacházení s obrázky a médii je primárním cílem nového editoru. Doufáme, že některé aspekty přidání titulků nebo plné šířky obrázků budou mnohem lepší a jednodušší než dříve."],"A Picture is Worth a Thousand Words":["Obrázek je lepší než tisíc slov"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Nadpisy jsou také samostatné bloky, které zlepšují přehlednost a uspořádání vašeho obsahu."],"... like this one, which is right aligned.":["... jako tento, který je zarovnaný vpravo."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Nyní čtete odstavec, nejzákladnější blok ze všech. Odstavec má vlastní ovládací prvky, které umožňují volné umístění kdekoliv v příspěvku..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Cílem tohoto nového editoru je přidat do WordPressu formátovaný obsah jednoduše a příjemně. Celý tento příspěvek se skládá z částí obsahu (jako LEGO z kostiček), které můžete přesouvat a ovlivňovat je. Pohybujte kurzorem a zjistěte, jak se různé bloky zvýrazní pomocí obrysů a šipek. Stiskněte šipky pro rychlé přesunutí bloků, aniž byste se museli bát, že něco ztratíte při kopírování a vkládání."],"Of Mountains & Printing Presses":["Z hor a knihtisku"],"Welcome to the Gutenberg Editor":["Vítejte v editoru Gutenberg"],"block name\u0004More":["Pokračování textu"],"button to expand options\u0004More":["Více"],"Are you sure you want to unschedule this post?":["Opravdu chcete zrušit naplánování tohoto příspěvku?"],"Alt Text (Alternative Text)":["Alt text (alternativní text)"],"Reusable Block":["Opakovatelný blok"],"Unique identifier for the object.":["Jedinečný identifikátor objektu."],"Untitled Reusable Block":["Opakovatelný blok bez názvu"],"Small":["Malý"],"Reusable":["Opakovatelné"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Zachovat ve formátu HTML"],"Edit URL":["Upravit URL"],"Color settings":[],"The response is not a valid JSON response.":["Odpověď není platná odpověď ve formátu JSON."],"Editor publish":["Editor publikování"],"Muted":["Ztišeno"],"Video settings":[],"recent comments":["nejnovější komentáře"],"Latest Comments":["Nejnovější komentáře"],"Display Excerpt":["Zobrazit úryvek"],"Display Date":["Zobrazit datum"],"Display Avatar":["Zobrazit avatar"],"Latest comments settings":[],"Number of Comments":["Počet komentářů"],"Background Opacity":["Míra krytí"],"Auto":["Automaticky"],"Preload":["Předběžně načítat"],"Audio settings":[],"Display a monthly archive of your posts.":["Zobrazte měsíční archiv příspěvků."],"Display as Dropdown":["Zobrazit jako rozbalovací seznam"],"Show Post Counts":["Zobrazit počet příspěvků"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Fórum podpory"],"No comments to show.":["Žádné komentáře."],"%1$s on %2$s":["%1$s: %2$s"],"Select Post":["Vybrat příspěvek"],"Select Week":["Vybrat týden"],"Select Day":["Vybrat den"],"Select Month":["Vybrat měsíc"],"Select Year":["Vybrat rok"],"Archives":["Archivy"],"Very dark gray":["Tmavě šedá"],"Cyan bluish gray":["Modrošedá"],"Very light gray":["Světle šedá"],"Vivid cyan blue":["Sytě modrá"],"Pale cyan blue":["Bleděmodrá"],"Vivid green cyan":["Sytě tyrkysová zelená"],"Light green cyan":["Světle zelená"],"Luminous vivid amber":["Světle žlutá"],"Luminous vivid orange":["Světle oranžová"],"Vivid red":["Sytě červená"],"Pale pink":["Bledě růžová"],"Inline image":["Vložený obrázek"],"Available block types":["Dostupné typy bloků"],"Transform To:":["Změnit na:"],"Remove Block":["Odstranit blok"],"Open publish panel":["Otevřít panel publikování"],"Dots":["Tečky"],"Wide Line":["Dlouhá čára"],"Large":["Velká"],"Show download button":["Zobrazit tlačítko pro stažení"],"Download button settings":["Nastavení tlačítka pro stažení"],"Link To":["Odkazovat na"],"Text link settings":["Nastavení textového odkazu"],"download":[],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopírovat URL"],"Write file name…":["Zadejte název souboru"],"File":["Soubor"],"A single column within a columns block.":["Jeden sloupec v rámci bloku sloupce."],"Column":["Sloupec"],"Outline":["S obrysem"],"Loop":["Opakovat"],"Autoplay":["Přehrát automaticky"],"Playback Controls":["Ovládání přehrávání"],"Close dialog":["Zavřít dialogové okno"],"Sorry, this file type is not permitted for security reasons.":["Tento typ souboru není z bezpečnostních důvodů povolen."],"Disable tips":["Zakázat tipy"],"Got it":["Zavřít"],"See next tip":["Zobrazit další tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Až budete připraveni, odešlete svou práci ke kontrole a šéfredaktor ji pak bude moci schválit."],"Are you ready to submit for review?":["Jste připraveni odeslat příspěvek ke schválení?"],"Replace image":["Nahradit obrázek"],"Remove image":["Odstranit obrázek"],"Error while uploading file %s to the media library.":["Při nahrávání souboru %s do knihovny médií došlo k chybě."],"This file exceeds the maximum upload size for this site.":["Soubor překračuje maximální velikost nahrávání pro tento web."],"View the autosave":["Zobrazit automaticky uloženou verzi"],"There is an autosave of this post that is more recent than the version below.":["Automaticky uložená verze tohoto příspěvku je novější, než aktuálně zobrazená verze."],"Autosaving":["Probíhá automatické ukládání"],"Enter URL here…":["Vložit URL…"],"Pin to toolbar":["Připnout na panel nástrojů"],"Unpin from toolbar":["Odepnout z panelu nástrojů"],"Insert a table — perfect for sharing charts and data.":["Vytvořte tabulku – ideální pro sdílení grafů a dat."],"Fixed width table cells":["Nastavit pevnou šířku buněk tabulky"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Přidejte text, který respektuje vaše odsazení, tabulátory, a také umožňuje stylování."],"Display a list of your most recent posts.":["Zobrazte seznam nejnovějších příspěvků."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Přidejte blok zobrazující obsah získaný z jiných webů, například z Twitteru, Instagramu nebo z YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Přidejte blok zobrazující obsah ve více sloupcích, a pak do jednotlivých sloupců přidejte jakékoliv bloky."],"Error loading block: %s":["Chyba při načítání bloku: %s"],"Unknown error":["Neznámá chyba"],"Embed Handler":["Obslužná rutina kódu pro vložení"],"term\u0004Remove %s":["Odstranit %s"],"Copy the permalink":["Kopírovat trvalý odkaz"],"Permalink copied":["Trvalý odkaz byl zkopírován"],"Height in pixels":["Výška v pixelech"],"Spacer settings":[],"Spacer":["Mezera"],"Toggle to show a large initial letter.":["Přepněte pro zobrazení velkého počátečního písmene."],"Showing large initial letter.":["Zobrazuje se velké počáteční písmeno."],"Name:":["Název:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s z %3$s)"],"Remove item":["Odstranit položku"],"Color code: %s":["Kód barvy: %s"],"Skip to the selected block":["Přeskočit na vybraný blok"],"Publish…":["Publikovat"],"Schedule…":["Naplánovat…"],"Edit post permalink":["Upravit trvalý odkaz příspěvku"],"Show Block Settings":["Zobrazit nastavení bloků"],"Hide Block Settings":["Skrýt nastavení bloku"],"Block settings closed":["Nastavení bloku je uzavřeno"],"Close plugin":["Zavřít plugin"],"Editor settings":["Nastavení editoru"],"Link settings":["Nastavení odkazu"],"Unlink":["Odebrat odkaz"],"Page break":["Rozdělení stránky"],"pagination":["stránkování"],"next page":["následující stránka"],"Image Size":["Velikost obrázku"],"Height":["Výška"],"Width":["Šířka"],"Image Dimensions":["Rozměry obrázku"],"Thumbnails are not cropped.":["Náhledové obrázky nejsou oříznuty."],"Thumbnails are cropped to align.":["Náhledové obrázky jsou oříznuty, pro zarovnání."],"Media Library":["Vybrat z knihovny médií"],"Advanced":["Pokročilé"],"Add item":["Přidat položku"],"Reset the template":["Obnovit šablonu"],"Keep it as is":["Neprovádět změny"],"The content of your post doesn’t match the template assigned to your post type.":["Obsah příspěvku neodpovídá šabloně přiřazené vašemu typu obsahu."],"Resetting the template may result in loss of content, do you want to continue?":["Obnovení šablony může způsobit ztrátu obsahu, opravdu chcete pokračovat?"],"Document Statistics":["Statistiky dokumentu"],"is now scheduled. It will go live on":["- úspěšně naplánováno. Bude publikováno"],"Scheduled":["Naplánováno"],"Scheduling…":["Plánování…"],"Code editor selected":["Je vybrán HTML editor"],"Visual editor selected":["Je vybrán vizuální editor"],"Plugins":["Pluginy"],"Custom Size":["Vlastní velikost"],"Layout elements":[],"term\u0004%s removed":["Odstraněno: %s"],"term\u0004%s added":["Přidáno: %s"],"imperative verb\u0004Preview":["Zobrazit náhled"],"Block deleted.":["Blok byl odstraněn."],"Block updated.":["Blok byl aktualizován."],"Block created.":["Blok byl úspěšně vytvořen."],"Trashing failed":["Odstranění se nezdařilo"],"Updating failed.":["Aktualizace selhala."],"Scheduling failed.":["Naplánování se nezdařilo."],"Publishing failed.":["Publikování se nezdařilo."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Neuložili jste provedené změny. Pokud budete pokračovat, změny budou ztraceny."],"Document Outline":["Osnova dokumentu"],"Paragraphs":["Odstavců"],"Headings":["Nadpisů"],"Words":["Slov"],"Content structure":["Struktura obsahu"],"Public":["Veřejná"],"Protected with a password you choose. Only those with the password can view this post.":["Chráněno heslem, které si zvolíte. Tento příspěvek mohou zobrazit všichni, kteří mají heslo."],"Password Protected":["Chráněno heslem"],"Only visible to site admins and editors.":["Viditelné pouze administrátorům a šéfredaktorům."],"Private":["Soukromá"],"Visible to everyone.":["Viditelné pro všechny."],"Post Visibility":["Viditelnost příspěvku"],"Would you like to privately publish this post now?":["Chcete tento příspěvek publikovat jako soukromý?"],"Use a secure password":["Použijte silné heslo"],"Create password":["Vytvořte heslo"],"Move to Trash":["Odstranit"],"Parent Term":["Nadřazená položka"],"Parent Category":["Nadřazená rubrika"],"Add new term":["Přidat novou položku"],"Add new category":["Vytvořit novou rubriku"],"Term":["Položka"],"Tag":["Štítek"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Opravdu chcete zrušit publikování tohoto příspěvku?"],"Immediately":["Okamžitě"],"Save Draft":["Uložit koncept"],"Saving":["Ukládání"],"Publish:":["Publikování:"],"Visibility:":["Viditelnost:"],"Are you ready to publish?":["Jste připraveni k publikování?"],"Copy Link":["Kopírovat odkaz"],"What’s next?":["Další možnosti"],"is now live.":["- úspěšně publikováno."],"Published":["Publikováno"],"Schedule":["Naplánovat"],"Update":["Aktualizovat"],"Submit for Review":["Odeslat ke schválení"],"Updating…":["Aktualizace…"],"Publishing…":["Publikování…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Trvalý odkaz:"],"Pending review":[],"%d Revision":["%d verze","%d verze","%d verzí"],"Suggestion:":["Doporučení:"],"Post Format":["Formát příspěvku"],"Chat":["Rozhovor"],"Status":["Stav"],"Standard":["Základní"],"Aside":["Poznámka"],"Featured image":["Náhledový obrázek"],"Set featured image":[],"Learn more about manual excerpts":["Více informací o ručních stručných výpisech (anglicky)"],"Write an excerpt (optional)":["Napište stručný výpis (nepovinné)"],"Allow comments":[],"Template:":["Šablona:"],"no parent":["nemá nadřazenou položku"],"no title":["bez názvu"],"Order":["Řazení"],"No blocks found.":["Nebyly nalezeny žádné bloky."],"%d result found.":["Nalezeno výsledků: %d.","Nalezeno výsledků: %d.","Nalezeno výsledků: %d."],"Saved":["Uloženo"],"Embeds":["Externí obsah"],"Blocks":["Bloků"],"Search for a block":["Hledejte blok"],"Add block":["Přidat blok"],"Copy Error":["Chyba při kopírování"],"Copy Post Text":["Kopírovat text příspěvku"],"Attempt Recovery":["Pokusit se o obnovení"],"The editor has encountered an unexpected error.":["V editoru došlo k neočekávané chybě."],"Undo":["Zpět"],"Redo":["Znovu"],"(Multiple H1 headings are not recommended)":["(Nedoporučuje se více nadpisů H1)"],"(Your theme may already use a H1 for the post title)":["(Vaše šablona již může používat nadpis H1 pro název příspěvku)"],"(Incorrect heading level)":["(Nesprávná úroveň nadpisu)"],"(Empty heading)":["(Chybí nadpis)"],"Block Styles":["Styly bloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Opravdu chcete odstranit tento opakovaně použitelný blok?\n\nBlok bude trvale odebrána ze všech příspěvků a stránek, které jej používají."],"Convert to Regular Block":["Převést na výchozí blok"],"More options":["Více možností"],"Edit visually":["Upravit vizuálně"],"Duplicate":["Duplikovat"],"Blocks cannot be moved down as they are already at the bottom":["Bloky nelze posunout dolů, protože již dole jsou"],"Blocks cannot be moved up as they are already at the top":["Bloky nelze přesunout nahoru, protože již nahoře jsou"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Blok „%s“ je jediný blok a nelze jej přesunout"],"Edit as HTML":["Upravit jako HTML"],"Convert to Blocks":["Převést na bloky"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["U tohoto bloku došlo k chybě a nelze zobrazit náhled."],"No block selected.":["Není vybrán žádný blok."],"Transform into:":["Změnit na:"],"Remove":["Odstranit"],"Find original":["Najít původní"],"Copy all content":[],"Copied!":["Zkopírováno!"],"Additional settings are now available in the Editor block settings sidebar":["Další nastavení je nyní k dispozici v postranním panelu nastavení editoru bloku"],"Visibility":["Viditelnost"],"Status & visibility":[],"Page attributes":[],"Block":["Blok"],"Document":["Dokument"],"Close settings":["Zavřít nastavení"],"Editor content":["Editor obsahu"],"Tools":["Nástroje"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Horní lišta editoru"],"Settings":["Nastavení"],"Reset":["Obnovit"],"Dismiss this notice":["Zavřít toto oznámení"],"Item removed.":["Položka byla odstraněna."],"Item added.":["Položka byla přidána."],"Drop files to upload":["Přesuňte zde soubory z počítače"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Vyskytla se neznámá chyba."],"No results.":["Žádné výsledky."],"%d result found, use up and down arrow keys to navigate.":["Počet nalezených výsledků: %d. Pro výběr konkrétní položky můžete použít šipky na klávesnici.","Počet nalezených výsledků: %d. Pro výběr konkrétní položky můžete použít šipky na klávesnici.","Počet nalezených výsledků: %d. Pro výběr konkrétní položky můžete použít šipky na klávesnici."],"(no title)":["(bez názvu)"],"URL":["URL"],"Submit":["Odeslat"],"Close":["Zavřít"],"Insert link":["Vložit odkaz"],"Edit link":["Upravit odkaz"],"Link":["Odkaz"],"Strikethrough":["Přeškrtnuté"],"Italic":["Kurzíva"],"Bold":["Tučné"],"Remove link":["Odstranit odkaz"],"Number of items":["Počet položek"],"All":["Vše"],"Category":["Rubrika"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Od nejstarších po nejnovější"],"Newest to Oldest":["Od nejnovějších po nejstarší"],"Order by":["Řazení"],"Select":["Vybrat"],"Select or Upload Media":["Vyberte nebo nahrajte mediální soubor"],"Video":["Video"],"Write…":["Začněte psát"],"poetry":["poezie"],"Verse":["Poezie"],"New Column":["Nový sloupec"],"Delete Column":["Odstranit sloupec"],"Add Column After":["Přidat sloupec napravo"],"Add Column Before":["Přidat sloupec nalevo"],"Delete Row":["Odstranit řádek"],"Add Row After":["Přidat řádek pod"],"Add Row Before":["Přidat řádek nad"],"Edit table":["Upravit tabulku"],"Table":["Tabulka"],"Write subheading…":["Napište podnadpis"],"Write shortcode here…":["Zadejte název zkráceného zápisu"],"Shortcode":["Zkrácený zápis"],"divider":["vodorovná čára"],"horizontal-line":["vodorovná čára"],"Separator":["Vodorovná čára"],"Quote":["Citace"],"Write citation…":["Napište citaci…"],"Write quote…":["Napište citaci…"],"Pullquote":["Stručný výpis"],"Write preformatted text…":["Napište formátovaný text…"],"Preformatted":["Vlastní formátování"],"text":["text"],"Paragraph":["Odstavec"],"Font Size":["Velikost písma"],"Drop Cap":["Iniciála"],"Text settings":[],"Read more":["Pokračovat ve čtení"],"Write list…":["Napište seznam…"],"numbered list":["číslovaný seznam"],"ordered list":["číslovaný seznam"],"bullet list":["seznam s odrážkami"],"Indent list item":["Zvětšit odsazení"],"Outdent list item":["Zmenšit odsazení"],"Convert to ordered list":["Číslovaný seznam"],"Convert to unordered list":["Seznam s odrážkami"],"List":["Seznam"],"recent posts":["nejnovější příspěvky"],"No posts found.":["Nebyly nalezeny žádné příspěvky."],"Latest Posts":["Nejnovější příspěvky"],"Display post date":["Zobrazit datum publikování"],"Grid view":["Mřížka"],"List view":["Seznam"],"photo":["fotografie"],"Image settings":[],"Image":["Obrázek"],"Preview":["Náhled"],"embed":["embed"],"Custom HTML":["Vlastní HTML"],"subtitle":["podnadpis"],"title":["název"],"Heading":["Nadpis"],"Write heading…":["Napište nadpis"],"Heading %d":["Nadpis %d"],"Level":["Úroveň nadpisu"],"Heading settings":[],"photos":["fotky"],"images":["obrázky"],"None":["Nic"],"Media File":["Mediální soubor"],"Attachment Page":["Stránku se zobrazením souboru"],"Link to ":[],"Crop Images":["Oříznout obrázky"],"Gallery settings":[],"Gallery":["Galerie"],"Classic":["Klasický editor"],"video":["video"],"audio":["audio"],"music":["hudba"],"image":["obrázek"],"blog":["blog"],"post":["příspěvek"],"Embedded content from %s":["Vložený obsah z %s"],"Enter URL to embed here…":["Zadejte URL adresu pro vložení..."],"%s URL":["%s URL"],"Embedding…":["Vkládání…"],"Write title…":["Zadejte název…"],"Fixed Background":["Statické pozadí"],"Edit image":["Upravit obrázek"],"Columns":["Sloupce"],"Experiments":["Experimenty"],"Code":["Kód"],"Write code…":["Napište kód"],"Categories":["Rubriky"],"Show Hierarchy":["Zobrazit strukturu"],"Show post counts":["Zobrazit počet příspěvků"],"Categories settings":[],"Add text…":["Zadejte text"],"Button":["Tlačítko"],"Apply":["Použít"],"Text Color":["Barva textu"],"Background Color":["Barva pozadí"],"Block has been deleted or is unavailable.":["Blok byl odstraněn nebo není k dispozici."],"Reusable blocks":[],"Cancel":["Zrušit"],"Edit":["Upravit"],"Write caption…":["Zadejte titulek…"],"Use URL":["Použít URL"],"Audio":["Audio"],"Upload":["Nahrát"],"Additional CSS Class(es)":["Další třída CSS"],"HTML Anchor":["HTML záložka"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Tato barevná kombinace může být špatně čitelná. Zkuste použít jasnější barvu pozadí a/nebo tmavší barvu textu."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Tato barevná kombinace může být obtížně čitelná. Zkuste použít tmavší barvu pozadí a/nebo světlejší barvu textu."],"Clear":["Vymazat"],"Custom color picker":["Vlastní barva"],"Color: %s":["Barva: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgety"],"Formatting":["Formátování"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Tisk od roku 1440. Jedná se o vývojový plugin pro nový editor bloků v jádře."],"Add title":["Zadejte název"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg režim pro vývojáře vyžaduje sestavení souborů. Spusťte příkaz npm install
pro instalaci závislostí, npm run build
pro sestavení souborů, nebo npm run dev
pro sestavení souborů a pro sledování změn. Více informací naleznete v dokumentu pro přispívání (anglicky)."],"Author":["Autor"],"Slug":["Název v URL"],"Discussion":["Nastavení komentářů"],"Custom fields":[],"Excerpt":["Stručný výpis příspěvku"],"Publish":["Publikovat"],"Metadata":["Strukturované informace"],"Save":["Uložit"],"Documentation":["Manuál (anglicky)"],"Select Category":["Vybrat rubriku"],"(Untitled)":["(Bez názvu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Pro správnou funkčnost Gutenbergu potřebujete alespoň WordPress %s. Před aktivací Gutenbergu proveďte aktualizaci WordPressu."],"Gutenberg Team":["Tým Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["před %s"],"Block style name must be a string.":["Názvy typů bloků musí být textové řetězce."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_cy.json b/bundle/android/raw/i18ncache_data_cy.json
new file mode 100644
index 0000000000..2152378f96
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_cy.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Dangos eicon is-ddewislen ar gyfer eitemau lefel uchaf"],"Display settings":["Gosodiadau'r dangosydd"],"Choose variation":["Dewis amrywiad"],"Angle":["Ongl"],"%s Block":["%s Bloc"],"%1$s Block. %2$s":["%1$s Bloc. %2$s"],"%s Block. Column %d":["%s Bloc. Colofn %d"],"%1$s Block. Column %2$d. %3$s":["%1$s Bloc. Colofn %2$d. %3$s"],"%s Block. Row %d":["%s Bloc. Rhes %d"],"%1$s Block. Row %2$d. %3$s":["%1$s Bloc. Rhes %2$d. %3$s"],"Post Excerpt":["Cyfran Cofnod"],"Post Date":["Dyddiad Cofnod"],"No Date":["Dim Dyddiad"],"Post Author":["Awdur Cofnod"],"Choose":["Dewis"],"twentytwenty":["twentytwenty"],"Theme":["Thema"],"Choose a template part by slug and theme, or create a new one.":["Dewiswch rhan o dempled rhan yn ôl bonyn a thema, neu greu un newydd."],"Error adding template.":["Gwall wrth ychwanegu templed."],"Footer label":["Label troedyn"],"Header label":["Label pennawd"],"Unsupported":["Ddim yn cael eu cynnal"],"The description will be displayed in the menu if the current theme supports it.":["Bydd y disgrifiad yn cael ei ddangos yn y ddewislen os yw'r thema gyfredol yn ei gefnogi."],"Level %1$s. %2$s":["Lefel %1$s. %2$s"],"Level %s. Empty.":["Lefel %s. Gwag."],"Empty":["Gwag"],"Search results for %s":["Canlyniadau chwilio '%s'"],"Recently updated":["Diweddarwyd yn ddiweddar"],"Multiple selected blocks":["Blociau dewiswyd lluosog"],"By %s":["Gan %s"],"Inspector":["Arolygydd"],"Site editor advanced settings.":["Gosodiadau uwch y golygydd gwefan."],"(beta)":["(beta)"],"Site Editor":["Golygydd Gwefan"],"Site editor top bar.":["Bar uchaf golygydd gwefan."],"Briefly describe the link to help screen reader users.":["Disgrifiwch y ddolen yn fyr i helpu defnyddwyr darllenwyr sgrin."],"Link Label":["Label Dolen"],"%s label":["Label %s"],"poem":["cerdd"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;"],"Full Post":["Cofnod Llawn"],"Show:":["Dangos:"],"Create from all top-level pages":["Creu o'r holl dudalennau lefel uchaf"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Anogwch ymwelwyr i weithredu gyda grŵp o ddolenni ar ffurf botwm."],"Buttons":["Botymau"],"Background":["Cefndir"],"Background & Text Color":["Lliw Cefndir a Thestun"],"Images Size":["Maint Delweddau"],"Remove multiple selected blocks.":["Tynnwch nifer o flociau dethol."],"(%s: gradient %s)":["(%s: graddiant %s)"],"(%s: color %s)":["(%s: lliw %s)"],"(Gradient: %s)":["(Graddiant: %s)"],"(Color: %s)":["(Lliw: %s)"],"Here's a detailed guide.":["Dyma ganllaw manwl."],"New to the Block Editor? Want to learn more about using it? ":["Newydd i'r Golygydd Bloc? Am ddysgu mwy am ei ddefnyddio? "],"Learn how to use the Block Editor":["Dysgwch sut i ddefnyddio'r Golygydd Bloc"],"Help":["Cymorth"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["eicon bloc %s"],"Submit for Review…":["Cyflwyno ar gyfer Adolygiad…"],"Update…":["Diweddaru…"],"Select items to save.":["Dewis eitemau i'w cadw."],"What do you want to save?":["Beth ydych chi am ei gadw?"],"Untitled":["Dideitl"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["Mae'r golygydd bloc yn cynnwys nodweddion arbrofol y mae modd eu defnyddio wrth iddyn nhw gael eu datblygu. Dewiswch y rhai yr hoffech eu galluogi. Mae'r nodweddion hyn yn debygol o newid, felly ceisiwch osgoi eu defnyddio wrth gynhyrchu."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Galluogwch Golygu Gwefan Lawn (Rhybudd: bydd hyn yn disodli'ch thema ac yn achosi newidiadau a allai fod yn anghildroadwy i'ch gwefan. Rydym yn argymell defnyddio hwn mewn amgylchedd datblygu yn unig.)"],"Site Editor (beta)":["Golygydd Gwefan (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// \"bloc\" yw'r term haniaethol sy'n cael ei ddefnyddio\n// i ddisgrifio'r unedau marcio hynny\n// wrth gyfansoddi gyda'i gilydd, sy'n ffurfio'r\n// cynnwys neu gynllun tudalen.\nregisterBlockType (enw, gosodiadau);"],"You are probably offline.":["Mae'n debyg eich bod all-lein."],"Justify items right":["Unioni eitemau i'r dde"],"Justify items center":["Unioni eitemau i'r canol"],"Justify items left":["Unioni eitemau i'r chwith"],"Change items justification":["Newid unioni eitemau"],"The media file has been replaced":["Mae'r ffeil cyfryngau wedi'i amnewid"],"Replace":["Amnewid"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Ar hyn o bryd, rydych yn y modd golygu. I ddychwelyd i'r modd llywio, pwyswch Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Ar hyn o bryd,l rydych yn y modd llywio. Llywiwch flociau gan ddefnyddio'r fysell Tab. I adael y modd llywio a golygu'r bloc a ddewiswyd, pwyswch Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Defnyddiwch eich bysellau saeth chwith neu dde neu llusgo a gollwng gyda'r llygoden i newid safle'r graddiant. Pwyswch y botwm i newid y lliw neu dynnu'r pwynt rheoli."],"Gradient control point at position %1$s with color code %2$s.":["Pwynt rheoli graddiant yn safle %1$s gyda chod lliw %2$s."],"Preset Size":["Rhagosod Maint"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Mae Offer yn cynnig rhyngweithiadau gwahanol ar gyfer dewis a golygu bloc. I ddewis, pwyswch Escape, i fynd yn ôl i olygu, pwyswch Enter."],"Open Media Library":["Agor Llyfrgell Cyfrwng"],"Next":["Nesaf"],"Previous":["Blaenorol"],"Finish":["Gorffen"],"Page %1$d of %2$d":["Tudalen %1$d o %2$d"],"Guide controls":["Rheolaethau canllaw"],"Remove Control Point":["Tynnu'r Pwynt Rheoli"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Mae gan bob bloc ei set ei hun o reolaethau ar gyfer newid pethau fel lliw, lled ac aliniad. Bydd y rhain yn ymddangos ac yn cuddio yn awtomatig pan fydd bloc wedi'i ddewis gennych."],"Make each block your own":["Gwnewch bob bloc eich un chi"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["Yn y golygydd WordPress, mae pob paragraff, delwedd, neu fideo yn cael ei gyflwyno fel “bloc” penodol o gynnwys."],"ADD MEDIA":["YCHWANEGU CYFRWNG"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Mae'r holl flociau sydd ar gael i chi yn byw yn y Llyfrgell Bloc. Fe ddewch o hyd iddo ble bynnag y gwelwch yr eicon."],"Get to know the Block Library":["Dod i adnabod y Llyfrgell Bloc"],"Welcome Guide":["Canllaw Croeso"],"Enable page templates":["Galluogi templedi tudalennau"],"Page Templates":["Templedi Tudalen"],"Enable Full Site Editing demo templates":["Galluogi templedi arddangos Golygu Gwefan Lawn"],"Full Site Editing Demo Templates":["Templedi Demo Golygu Gwefan Lawn"],"Welcome to the Block Editor":["Croeso i'r Golygydd Bloc"],"Get started":["Cychwyn arni"],"inserter":["mewnosodwr"],"Post Title":["Teitlau Cofnod"],"Add nofollow to link":["Ychwanegu nofollow i'r ddolen"],"Add submenu":["Ychwanegu is ddewislen"],"Add link…":["Ychwanegu dolen…"],"Dark":["Tywyll"],"Light":["Golau"],"recording":["recordio"],"podcast":["podlediad"],"sound":["sain"],"Array of instance changes":["Amrywiaeth o newidiadau enghraifft"],"Current widget instance":["Enghraifft teclyn cyfredol"],"Template parts to include in your templates.":["Darmau o dempledi i'w cynnwys yn eich templedi."],"Template parts list":["Rhestr darnau templed"],"Template parts list navigation":["Llywio rhestr darnau templedi"],"Filter template parts list":["Hidlo rhestr darnau templed"],"Uploaded to this template part":["Llwythwyd i fyny i'r darn templed"],"Insert into template part":["Mewnosod i ddarn o dempled"],"Template part archives":["Archif darnau templed"],"No template parts found in Trash.":["Heb ddarganfod unrhyw ddarnau templed yn y Sbwriel."],"No template parts found.":["Heb ddarngandfod darnau o dempledi."],"Parent Template Part:":["Darn o Dempled Rhiant:"],"Search Template Parts":["Chwilio am Ddarnau Templedi"],"All Template Parts":["Pob Ddarn Templed"],"View Template Part":["Gweld Darnau Templed"],"Edit Template Part":["Golygu Darn Templed"],"New Template Part":["Darn Templed Newydd"],"Add New Template Part":["Ychwanegu Darn Templed Newydd"],"Template Part\u0004Add New":["Ychwanegu"],"Admin Menu text\u0004Template Parts":["Darnau Templed"],"Template Part":["Darn Templed"],"Template Parts":["Darnau Templed"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],"Navigation":["Llywio"],"Loading Navigation…":["Llwytho Llywio…"],"Navigation Structure":["Strwythur Llywio"],"Create empty":["Creu gwag"],"Create a Navigation from all existing pages, or create an empty one.":["Creu Llywio o'r holl dudalennau sy'n bodoli, neu greu un wag."],"Navigation Link":["Dolen Llywio"],"(Note: many devices and browsers do not display this text.)":["(Sylwch: nid yw llawer o ddyfeisiau a phorwyr yn dangos y testun hwn.)"],"Describe the role of this image on the page.":["Disgrifiwch rôl y ddelwedd hon ar y dudalen."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toglo rhwng defnyddio'r un gwerth ar gyfer pob maint sgrin neu ddefnyddio gwerth unigryw fesul maint sgrin."],"Use the same %s on all screensizes.":["Defnyddiwch yr un %s ar bob maint sgrin."],"Large screens":["Sgriniau mawr"],"Medium screens":["Sgriniau canolig"],"Small screens":["Sgriniau bach"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Mae'n rheoli priodwedd %1$s ar gyfer pyrth gwylio %2$s."],"Currently selected":["Wedi'i ddewis ar hyn o bryd"],"Search or type url":["Chwilio neu deipio URL"],"Press ENTER to add this link":["Pwyswch ENTER i ychwanegu'r ddolen hon"],"Currently selected link settings":["Gosodiadau cyswllt a ddewiswyd ar hyn o bryd"],"Generic label for block inserter button\u0004Add block":["Ychwanegu bloc"],"directly add the only allowed block\u0004Add %s":["Ychwanegu %s"],"%s block added":["Ychwanegwyd %s bloc"],"Move %s":["Symud %s"],"Extra Large":["Mawr Iawn"],"Block breadcrumb":["Rhwystro briwsion"],"Editor footer":["Troedyn y golygydd"],"Site Title":["Teitl y Wefan"],"Open Colors Selector":["Agor y Dewisydd Lliwiau"],"Templates list":["Rhestr templedi"],"Templates list navigation":["Llywio'r rhestr templedi"],"Filter templates list":["Hidlo rhestr templedi"],"Uploaded to this template":["Llwythwyd i fyny i'r templed hwn"],"Insert into template":["Mewnosod i'r templed"],"Template archives":["Archif templedi"],"No templates found in Trash.":["Heb ganfod templedi yn y Sbwriel."],"No templates found.":["Heb ganfod templedi."],"Parent Template:":["Templed Rhiant:"],"Search Templates":["Chwilio Templedi"],"All Templates":["Pob Templed"],"View Template":["Gweld y Templed"],"Edit Template":["Golygu Templed"],"New Template":["Templed Newydd"],"Add New Template":["Ychwanegu Templed Newydd"],"Template\u0004Add New":["Ychwanegu"],"Admin Menu text\u0004Templates":["Templedi"],"Template":["Templed"],"No matching template found":["Heb ganfod templedi sy'n cydweddu"],"Gradient: %s":["Graddiant: %s"],"Gradient code: %s":["Cod graddiant: %s"],"All content copied.":["Copïwyd yr holl gynnwys."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Methodd llwytho'r cyfryngau. Os mai llun neu ddelwedd fawr yw hon, gwnewch hi'n llai a rhoi cynnig arall arni."],"Gradient":["Graddiant"],"Gradient Presets":["Rhagosodiadau Graddiant"],"No Preview Available.":["Dim Rhagolwg ar Gael."],"Midnight":["Canol Nos"],"Electric grass":["Glaswellt trydanol"],"Pale ocean":["Cefnfor gwelw"],"Luminous dusk":["Cyfnos llewychol"],"Blush bordeaux":["Bordeaux ysgafn"],"Blush light purple":["Porffor golau ysgafn"],"Cool to warm spectrum":["Sbectrwm oer i gynnes"],"Very light gray to cyan bluish gray":["Llwyd ysgafn iawn i lwyd cyan glas"],"Luminous vivid orange to vivid red":["Oren llachar llewychol i goch llachar"],"Luminous vivid amber to luminous vivid orange":["Ambr byw llewychol i oren llachar llewychol"],"Light green cyan to vivid green cyan":["Cyan gwyrdd golau i gyan gwyrdd llachar"],"Vivid cyan blue to vivid purple":["Glas cyan llachar i borffor llachar"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["Rhagfyr 6, 2018"],"February 21, 2019":["Chwefror 21, 2019"],"May 7, 2019":["Mai 7, 2019"],"Release Date":["Dyddiad rhyddhau"],"Jazz Musician":["Cerddor Jazz"],"Version":["Fersiwn"],"Six.":["Chwech."],"Five.":["Pump."],"Four.":["Pedwar."],"Three.":["Tri."],"Two.":["Dau."],"One.":["Un."],"One of the hardest things to do in technology is disrupt yourself.":["Un o'r pethau anoddaf i'w wneud mewn technoleg yw tarfu eich hun."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Mae'r dryw
Yn ennill ei fywoliaeth
Yn dawel."],"Welcome to the wonderful world of blocks…":["Croeso i fyd rhyfeddol y blociau…"],"Snow Patrol":["Patrol Eira"],"Dimensions":["Dimensiynau"],"Minimum height in pixels":["Uchafswm uchder mewn picseli"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Galwad i Weithredu"],"In quoting others, we cite ourselves.":["Wrth ddyfynnu eraill, rydym yn dyfynnu ein hunain."],"cite":["dyfynnu"],"Mont Blanc appears—still, snowy, and serene.":["Mae Mont Blanc yn ymddangos - yn llonydd, yn eiraog ac yn ddistaw."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Ym mhentref La Mancha, nad oes gen i awydd i dwyn ei enw i gof, bu'n byw ddim yn hir yn ôl un o'r boneddigion hynny sy'n cadw gwaywffon yn y rac gwaywffon, hen fwcl, hac heb lawer o fraster, a milgi. ar gyfer cwrsio."],"Block navigation":["Llywio bloc"],"Full Site Editing":["Golygu Gwefan Lawn"],"Templates to include in your theme.":["Templedi i'w cynnwys yn eich thema."],"Templates":["Templedi"],"Inserter help panel":["Panel cymorth mewnosodwr"],"Pre-publish checks":["Gwiriadau cyn-gyhoeddi"],"Please contact your site administrator to install new blocks.":["Cysylltwch â'ch gweinyddwr gwefan i osod blociau newydd."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Heb ganfod blociau yn eich llyfrgell. Cysylltwch â'ch gweinyddwr gwefan i osod blociau newydd."],"No blocks found in your library.":["Heb ganfod blociau yn eich llyfrgell."],"No blocks found in your library. These blocks can be downloaded and installed:":["Heb ganfod blociau yn eich llyfrgell. Mae modd llwytho blociau i lawr a gosod y blociau hyn:"],"No blocks found in your library. We did find %d block available for download.":["Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w lwytho i lawr.","Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w llwytho i lawr.","Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w llwytho i lawr.","Heb ganfod blociau yn eich llyfrgell. Rydym wedi canfod %d bloc ar gael i'w llwytho i lawr."],"Block previews can’t load.":["Nid yw rhagolygon bloc yn gallu llwytho."],"Retry":["Ceisio eto"],"Block previews can't install.":["Nid yw rhagolygon bloc yn gallu gosod."],"Updated %s":["Diweddarwyd %s"],"%d active installation":["%d gosodiad gweithredol","%d gosodiad gweithredol","%d gosodiad gweithredol","%d gosodiad gweithredol"],"This author has %d block, with an average rating of %d.":["Mae gan yr awdur hwn %d bloc, gyda sgôr cyfartalog o %d.","Mae gan yr awdur hwn %d bloc, gyda sgôr cyfartalog o %d.","Mae gan yr awdur hwn %d bloc, gyda sgôr cyfartalog o %d.","Mae gan yr awdur hwn %d bloc, gyda sgôr cyfartalog o %d."],"Authored by %s":["Crëwyd gan %s"],"%d total rating":["%d cyfanswm y graddio","%d cyfanswm y graddio","%d cyfanswm y graddio","%d cyfanswm y graddio"],"%s out of 5 stars":["%s allan o 5 seren"],"Enter Address":["Rhowch y Cyfeiriad"],"Pill Shape":["Siâp Pilsen"],"Logos Only":["Logos yn Unig"],"Create a block of links to your social media or external sites":["Crewch floc o ddolenni i'ch cyfryngau cymdeithasol neu wefannau allanol"],"Social links":["Dolenni cymdeithasol"],"Open block navigator":["Agorwch y llywio blociau"],"Attachment page":["Tudalen atodi"],"Fill":["Llanw"],"Link rel":["Cyswllt rel"],"Border Radius":["Radiws y Border"],"Write gallery caption…":["Ysgrifennu pennawd oriel…"],"Content blocks":["Blociau cynnwys"],"Restore the backup":["Adfer y copi wrth gefn"],"The backup of this post in your browser is different from the version below.":["Mae'r copi wrth gefn o'r cofnod yn eich porwr yn wahanol i'r fersiwn isod."],"Enable block directory search":["Galluogi chwilio'r cyfeiriadur bloc"],"Block Directory":["Cyfeiriadur Bloc"],"Unable to connect to the filesystem. Please confirm your credentials.":["Methu cysylltu á'r system ffeiliau. Cadarnhewch eich manylion."],"Sorry, you are not allowed to install blocks.":["Ymddiheuriadau, nid oes gennych hawl i osod blociau."],"%1$d block is disabled.":["Mae %1$d bloc wedi ei analluogi.","Mae %1$d bloc wedi eu hanalluogi.","Mae %1$d bloc wedi eu hanalluogi.","Mae %1$d bloc wedi eu hanalluogi."],"Reverse List Numbering":["Rhifo Rhestr Gwrthdroi"],"Start Value":["Gwerth Cychwynol"],"Ordered list settings":["Gosodiadau trefnu rhestr"],"Clear Media":["Clirio'r Cyfryngau"],"Default Style":["Arddull Rhagosodedig"],"Not set":["Heb ei osod"],"While writing, you can press / to quickly insert new blocks.":["Wrth ysgrifennu, gallwch bwyso / i fewnosod blociau newydd yn gyflym."],"Browse through the library to learn more about what each block does.":["Porwch trwy'r llyfrgell i ddysgu mwy am yr hyn y mae pob bloc yn ei wneud."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Mae blociau ar gael ar gyfer pob math o gynnwys: mewnosodwch destun, penawdau, delweddau, rhestrau, fideos, tablau, a llawer mwy."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Croeso i fyd rhyfeddol y blociau! Blociau yw sylfaen yr holl gynnwys yn y golygydd."],"Version of the content block format used by the object.":["Fersiwn y fformat bloc cynnwys sy'n cael ei ddefnyddio gan y gwrthrych."],"HTML content for the object, transformed for display.":["Cynnwys HTML ar gyfer y gwrthrych, wedi ei drosi i'w ddangos."],"Content for the object, as it exists in the database.":["Cynnwys ar gyfer y gwrthrych, fel y mae'n bodoli yn y gronfa ddata."],"The content for the object.":["Cynnwys ar gyfer y gwrthrych."],"Change column alignment":["Newid aliniad colofn"],"Align Column Right":["Alinio Colofn i'r Dde"],"Align Column Center":["Alinio Colofn i'r Canol"],"Align Column Left":["Alinio Colofn i'r Chwith"],"Color":["Lliw"],"Vivid purple":["Porffor cryf"],"Disable & Reload":["Analluogi ac Ail-lwytho"],"Enable & Reload":["Galluogi ac Ail-lwytho"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Mae angen ail-lwytho tudalen ar gyfer y newid hwn. Sicrhewch fod eich cynnwys yn cael ei gadw cyn ei ail-lwytho."],"Display these keyboard shortcuts.":["Dangos cymorth llwybrau byr y bysellfwrdd."],"Experiments Settings":["Gosodiadau Arbrofion"],"Enable Widgets screen and Legacy Widgets block":["Galluogi Sgrin Teclynnau a'r Hen Floc Teclyn"],"Experimental settings":["Gosodiadau arbrofol"],"Block name name must be a string.":["Rhaid i enw'r bloc fod yn llinyn."],"Custom":["Cyfaddasu"],"Draft":["Drafft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Nid yw bloc \"%1$s\" yn cynnwys arddull o'r enw \"%2$s.\"."],"Learn more about anchors":["Dysgu rhagor am angorau"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Rhowch air neu ddau - heb ofodau - i wneud cyfeiriad gwe unigryw ar gyfer y pennawd hwn, o'r enw “angor.” Yna, byddwch yn gallu cysylltu'n uniongyrchol â'r rhan hon o'ch tudalen."],"Widget Blocks (Experimental)":["Blociau Teclyn (Arbrofol)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Llwythwch ffeil fideo i fyny, dewiswch un o'ch llyfrgell gyfryngau, neu ychwanegwch un gydag URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Llwythwch ffeil ddelwedd i fyny, dewiswch un o'ch llyfrgell gyfryngau, neu ychwanegwch un gydag URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Llwythwch ffeil sain i fyny, dewiswch un o'ch llyfrgell gyfryngau, neu ychwanegwch un gydag URL."],"Upload a media file or pick one from your media library.":["Llwythwch ffeil cyfryngau i fyny neu dewiswch un o'ch llyfrgell gyfryngau."],"Skip":["Hepgor"],"Select a variation to start with.":["Dewiswch amrywiad i ddechrau."],"Add a page, link, or another item to your navigation.":["Ychwanegwch dudalen, dolen, neu eitem arall at eich llywio."],"What's this?":["Beth yw hwn?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Peidiwch â gadael i beiriannau chwilio ddilyn y ddolen hon."],"Provide more context about where the link goes.":["Rhowch fwy o gyd-destun ynglŷn â ble mae'r ddolen yn mynd."],"Title Attribute":["Priodwedd Teitl"],"SEO settings":["Gosodiadau SEO"],"Description":["Disgrifiad"],"Open in new tab":["Agor mewn tab newydd"],"links":["dolenni"],"navigation":["llywio"],"menu":["dewislen"],"Add a navigation block to your site.":["Ychwanegwch floc llywio i'ch gwefan."],"Upload a file or pick one from your media library.":["Llwythwch ffeil neu dewiswch un o'ch llyfrgell gyfryngau."],"Learn more about embeds":["Dysgu mwy am fewnblannu"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Gludwch ddolen i'r cynnwys rydych chi am ei arddangos ar eich gwefan."],"Upload an image or video file, or pick one from your media library.":["Llwythwch ddelwedd neu ffeil fideo i fyny, neu dewiswch un o'ch llyfrgell gyfryngau."],"Three columns; wide center column":["Tair colofn; colofn ganol llydan"],"Three columns; equal split":["Tair colofn; rhaniad cyfartal"],"Two columns; two-thirds, one-third split":["Dwy golofn; dwy ran o dair, rhaniad un rhan o dair"],"Two columns; one-third, two-thirds split":["Dwy golofn; rhaniad un rhan o dair, dwy ran o dair"],"Two columns; equal split":["Dwy golofn; rhaniad cyfartal"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Nid oes gan eich gwefan unrhyw %s, felly nid oes dim i'w ddangos yma ar hyn o bryd."],"More tools & options":["Mwy o offer a dewisiadau"],"Create Table":["Creu Tabl"],"Insert a table for sharing data.":["Mewnosod tabl ar gyfer rhannu data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Dad-grwpio"],"verb\u0004Group":["Grŵp"],"Separate with commas or the Enter key.":["Gwahanu gyda dyfynodau neu fysell Enter."],"Separate with commas, spaces, or the Enter key.":["Gwahanu gyda dyfynodau, bylchau, neu'r fysell Enter."],"Separate multiple classes with spaces.":["Gwahanu ddosbarthiadau niferus gyda bylchau."],"Move image forward":["Symud delwedd ymlaen"],"Move image backward":["Symud delwedd nôl"],"Sorry, you are not allowed to edit sidebars.":["Ymddiheuriadau, nid oes hawl gennych i olygu barau ochr."],"Sorry, you are not allowed to read sidebars.":["Ymddiheuriadau, nid oes hawl gennych i ddarllen barau ochr."],"The sidebar’s ID.":["ID y bar ochr."],"Displays a set of blocks":["Yn dangos set o flociau"],"Blocks Area":["Ardal Blociau"],"Block rendered as empty.":["Bloc wedi'i lunio'n wag."],"Inline Code":["Cod Mewnlin"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Sylwer: Gall awto chwarae fideos achosi problemau defnyddioldeb i rai ymwelwyr."],"Footer section":["Adran troedyn"],"Header section":["Adran pennyn"],"Sorting and filtering":["Didoli a hidlo"],"Post meta settings":["Gosodiadau meta cofnod"],"Post Content":["Cynnwys Cofnod"],"Post content settings":["Gosodiadau cynnwys cofnod"],"Percentage width":["Lled canran"],"Column settings":["Gosodiadau colofnau"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Sylwer: Gall awto chwarae fideos achosi problemau defnyddioldeb i rai ymwelwyr."],"Block area updated.":["Diweddarwyd yr ardal bloc."],"Block area scheduled.":["Ardal bloc wedi'i amserlennu."],"Block area published.":["Ardal bloc wedi'i chyhoeddi."],"Block areas list":["Rhestr ardaloedd bloc"],"Block areas list navigation":["Llywio rhestr ardaloedd bloc"],"Filter block areas list":["Hidlo rhestr ardaloedd bloc"],"No block area found.":["Heb ddarganfod ardal bloc."],"Search Block Areas":["Chwilio Ardaloedd Bloc"],"All Block Areas":["Pob Ardal Bloc"],"View Block Area":["Gweld Ardal Bloc"],"Edit Block Area":["Golygu Ardal Bloc"],"New Block Area":["Ardal Bloc Newydd"],"Add New Block Area":["Ychwanegu Ardal Bloc Newydd"],"admin menu\u0004Block Areas":["Ardaloedd Bloc"],"post type singular name\u0004Block Area (Experimental)":["Ardal Bloc (Arbrofol)"],"post type general name\u0004Block Area (Experimental)":["Ardal Bloc (Arbrofol)"],"Experimental custom post type that will store block areas referenced by themes.":["Math o gofnod cyfaddas arbrofol a fydd yn storio ardaloedd bloc y cyfeirir atynt yn ôl themâu."],"Widgets screen content":["Cynnwys teclyn sgrin"],"header":["troedyn"],"Widgets advanced settings":["Gosodiadau uwch teclynnau"],"(experimental)":["(arbrofol)"],"Block Areas":["Meysydd Bloc"],"Widgets screen top bar":["Bar uchaf sgrin teclyn"],"This color combination may be hard for people to read.":["Efallai y bydd y cyfuniad lliw hwn yn anodd i bobl ei ddarllen."],"There is no poster image currently selected":["Nid oes delwedd poster wedi'i dewis ar hyn o bryd"],"The current poster image url is %s":["URL y ddelwedd poster cyfredol yw %s"],"section":["adran"],"row":["rhes"],"wrapper":["amlapiwr"],"container":["cynhwysydd"],"A block that groups other blocks.":["Bloc sy'n grwpio blociau eraill."],"Group":["Grŵp"],"Crop image to fill entire column":["Tocio delweddau i lanw'r golofn gyfan"],"Play inline":["Chwarae mewnlin"],"Leave empty if the image is purely decorative.":["Gadael yn wag os yw'r ddelwedd ar gyfer addurno'n unig."],"Describe the purpose of the image":["Disgrifiwch bwrpas y ddelwedd"],"Add a block":["Ychwanegu blog"],"Block vertical alignment setting label\u0004Change vertical alignment":["Newid aliniad fertigol"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Alinio'r Gwaelod yn Fertigol"],"Block vertical alignment setting\u0004Vertically Align Middle":["Alinio'r Canol yn Fertigol"],"Replace Image":["Amnewid Delwedd"],"Block vertical alignment setting\u0004Vertically Align Top":["Alinio'r Brig yn Fertigol"],"Display a legacy widget.":["Dangos hen declynDangos hen declyn."],"Legacy Widget (Experimental)":["Hen Declyn (Arbrofol)"],"Change widget":["Newid teclyn"],"Legacy Widget":["Hen Declyn"],"You don't have permissions to use widgets on this site.":["Nid oes gennych ganiatâd i ddefnyddio teclynnau ar y wefan hon."],"Select a legacy widget to display:":["Dewis hen declyn i'w dangos:"],"There are no widgets available.":["Nid oes teclynnau ar gael."],"Change block type or style":["Newid math neu arddull y bloc"],"keyboard key\u0004Space":["Gofod"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Rhagor o reolaethau testun cyfoethog"],"Search Terms":["Chwilio'r Termau"],"Exit the Editor":["Gadael y Golygydd"],"Block Manager":["Rheolwr Bloc"],"Class name of the widget.":["Enw'r dosbarth y teclyn."],"Sorry, you are not allowed to access widgets on this site.":["Ymddiheuriadau, nid oes gennych hawl i gael mynediad at declynnau ar y wefan hon."],"Widgets (beta)":["Teclynnau (beta)"],"link":["dolen"],"Embedded content from %s can't be previewed in the editor.":["Nid oes modd cael rhagolwg o gynnwys wedi'i fewnblannu gan %s yn y golygydd."],"Custom Color":["Lliw Cyfaddas"],"Prompt visitors to take action with a button-style link.":["Annog ymwelwyr i weithredu gyda dolen fel botwm."],"Stick to the top of the blog":["Glynu i frig y blog"],"Read about permalinks":["Darllen am ddolenni parhaol"],"The last part of the URL.":["Rhan olaf yr URL."],"URL Slug":["Bonyn URL"],"A cloud of your most used tags.":["Cwmwl o'r tagiau amlycaf."],"Tag Cloud":["Cwmwl Tagiau"],"Taxonomy":["Tacsonomi"],"Tag Cloud settings":["Gosodiadau Cwmwl Tagiau"],"- Select -":["- Dewis -"],"Default":["Rhagosodedig"],"find":["canfod"],"Help visitors find your content.":["Helpwch ymwelwyr i ddod o hyd i'ch cynnwys."],"Search":["Chwilio"],"Add button text…":["Ychwanegu testun botwm…"],"Button text":["Testun botwm"],"Optional placeholder…":["Deiliad lle dewisol…"],"Optional placeholder text":["Testun deiliaid lle dewisol"],"Add label…":["Ychwanegu label…"],"Label text":["Testun label"],"image %1$d of %2$d in gallery":["delwedd %1$d o %2$d yn yr oriel"],"archive":["archif"],"posts":["cofnodion"],"A calendar of your site’s posts.":["Calendr o gofnodion eich gwefan."],"Calendar":["Calendr"],"by":["gan"],"An error has occurred, which probably means the feed is down. Try again later.":["Digwyddodd gwall, sydd fel arfer yn golygu nad yw'r llif yn weithredol ar hyn o bryd. Ceisia eto'n hwyrach ymlaen."],"RSS Error:":["Gwall RSS:"],"block style\u0004Default":["Rhagosodiad"],"Fullscreen mode deactivated":["Wedi diffodd y modd sgrin lawn"],"Fullscreen mode activated":["Modd sgrin llawn wedi'i weithredu"],"Spotlight mode deactivated":["Wedi diffodd y modd flacholau"],"Spotlight mode activated":["Y modd Fflacholau wedi ei weithredu"],"Top toolbar deactivated":["Bar offer brig wedi'i ddadweithredu"],"Top toolbar activated":["Bar offer brig wedi'i weithredu"],"Back":["Nôl"],"Feature activated":["Nodwedd wedi'i weithredu"],"Feature deactivated":["Nodwedd wedi'i anweithredu"],"Vertical Pos.":["Safle Fertigol."],"Horizontal Pos.":["Safle Llorweddol."],"feed":["llif"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Dangos gofnodion o unrhyw lif RSS neu Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Uchafswm nifer o eiriau yn y darn"],"Display excerpt":["Dangos darn"],"Display date":["Dangos y dyddiad"],"Display author":["Dangos yr awdur"],"RSS settings":["Gosodiadau RSS"],"Edit RSS URL":["Golygu URL RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Bydd y cynnwys cyn y bloc hwn yn cael ei ddangos yn y darn ar eich tudalen archif."],"Hide the excerpt on the full content page":["Cuddio'r darn ar y dudalen cynnwys llawn"],"The excerpt is visible.":["Mae'r ddarn yn weladwy."],"The excerpt is hidden.":["Mae'r darn yn guddiedig."],"Sorry, this content could not be embedded.":["Ymddiheuriadau, nid oes modd mewnblannu'r cynnwys hwnnw."],"Embed Amazon Kindle content.":["Mewnblannu cynnwys Amazon Kindle."],"ebook":["eLyfr"],"Embed Crowdsignal (formerly Polldaddy) content.":["Mewnblannu cynnwys Crowdsignal (Polldaddy gynt)."],"Focal Point Picker":["Dewisydd Pwynt Ffocal"],"Underline":["Tanlinellu"],"Attempt Block Recovery":["Ceisio Adfer Bloc"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Cynnwys…"],"button label\u0004Convert to link":["Trosi i ddolen"],"button label\u0004Try again":["Ceisio eto"],"Editor tips":["Awgrymiadau'r golygydd"],"Block (selected)":["Bloc (wedi ei ddewis)"],"Document (selected)":["Dogfen (wedi ei dewis)"],"%d word":["%d gair","%d air","%d gair","%d gair"],"Top toolbar":["Bar offer uchaf"],"Link Rel":["Perthynas y Ddolen"],"Link CSS Class":["Dosbarth CSS y Ddolen"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crëwch gynnwys, ei gadw ar eich cyfer chi a chyfrannwr eraill i'w ail ddefnyddio ar eich gwefan. Diweddarwch y bloc, a bydd y newidiadau'n digwydd lle bynnag mae'n cael ei ddefnyddio."],"To edit the featured image, you need permission to upload media.":["I olygu'r ddelwedd nodwedd, mae angen caniatâd arnoch i lwytho'r cyfryngau i fyny."],"To edit this block, you need permission to upload media.":["I olygu'r bloc hwn, mae angen caniatâd arnoch i lwytho cyfrwng i fyny."],"(selected block)":["(bloc dewiswyd)"],"Block tools":["Offer bloc"],"Permalink":["Dolen Barhaol"],"This image has an empty alt attribute":["Mae gan y ddelwedd hon briodwedd alt gwag"],"This image has an empty alt attribute; its file name is %s":["Mae gan y ddelwedd hon briodwedd alt gwag; ei enw ffeil yw %s"],"Block area reverted to draft.":["Ardal bloc wedi ei droi'n ôl i ddrafft."],"Block area published privately.":["Ardal bloc wedi'i chyhoeddi'n breifat."],"No block areas found in Trash.":["Dim ardal bloc yn y Sbwriel."],"Block\u0004Add New":["Ychwanegu"],"add new on admin bar\u0004Block Area":["Ardal Bloc"],"Link inserted.":["Dolen wedi ei mewnosod."],"Warning: the link has been inserted but may have errors. Please test it.":["Rhybudd: mae'r ddolen wedi ei fewnosod ond gall god â gwallau. Rhowch brawf arno."],"%s block selected.":["%s bloc wedi'i ddewis.","%s bloc wedi'u dewis.","%s bloc wedi'u dewis.","%s bloc wedi'u dewis."],"Thumbnail":["Llun bach"],"Full Size":["Maint Llawn"],"Link selected.":["Dolen wedi ei dewis."],"Start writing with text or HTML":["Dechrau ysgrifennu gyda thestun neu HTML"],"Type text or HTML":["Teipio testun neu HTML"],"Block icon":["Eicon bloc"],"Align text right":["Alinio testun i'r dde"],"Align text center":["Alinio testun i'r canol"],"Align text left":["Alinio testun i'r chwith"],"Start writing or type / to choose a block":["Dechrau ysgrifennu neu deipio / i ddewis bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc gwag; dechrau ysgrifennu neu deipio blaen slaes i ddewis bloc"],"Paragraph block":["Bloc paragraff"],"Page Break":["Toriad Tudalen"],"Stack on mobile":["Stacio ar symudol"],"Annotation":["Anodiadau"],"Drag images, upload new ones or select files from your library.":["Llusgwch ddelweddau, llwytho rhai newydd neu ddewis ffeiliau o'ch llyfrgell."],"blocks\u0004Most used":["Defnyddiwyd amlaf"],"imperative verb\u0004Resolve":["Datrys"],"font size name\u0004Huge":["Anferth"],"font size name\u0004Large":["Mawr"],"font size name\u0004Medium":["Canolig"],"font size name\u0004Small":["Bach"],"font size name\u0004Normal":["Arferol"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Mewnforio"],"button label\u0004Download":["Llwytho i lawr"],"button label\u0004Embed":["Mewnblannu"],"block title\u0004Embed":["Mewnblannu"],"block title\u0004Classic":["Clasurol"],"block style\u0004Large":["Mawr"],"block style\u0004Rounded":["Crwn"],"%s (opens in a new tab)":["%s (yn agor mewn tab newydd)"],"Link edited.":["Cyswllt wedi'i olygu."],"Link removed.":["Cyswllt wedii dynnu."],"media":["cyfrwng"],"Double-check your settings before publishing.":["Gwiriwch eich gosodiadau cyn cyhoeddi."],"Generating preview…":["Wrthi'n creu rhagolwg…"],"Edit or update the image":["Golygu neu ddiweddaru'r ddelwedd"],"Media":["Cyfrwng"],"Navigate to the nearest toolbar.":["Ewch i'r bar offer agosaf."],"Document tools":["Offer dogfennau"],"Document and block tools":["Offer dogfennau a blociau"],"Embed a video from your media library or upload a new one.":["Mewnblannu fideo o'ch llyfrgell cyfryngau neu lwytho un newydd."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Mewnosod barddoniaeth. Defnyddiwch fformatau manwl arbennig. Neu dyfynnu geiriau cân."],"Add white space between blocks and customize its height.":["Ychwanegu gofod gwyn rhwng blociau a chyfaddasu ei uchder."],"Insert additional custom elements with a WordPress shortcode.":["Mewnosod elfennau cyfaddas ychwanegol gyda chod byr o WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Creu toriad rhwng syniadau neu adrannau gyda gwahanydd llorweddol."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Rhoi pwyslais gweledol ar destun wedi'i ddyfynnu. "Wrth ddyfynnu eraill, rydym yn dyfynnu ein hunain." - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Rhoi pwyslais gweledol arbennig i ddyfyniad o'ch testun."],"Start with the building block of all narrative.":["Dechrau â'r bloc adeiladu o bob naratif."],"Separate your content into a multi-page experience.":["Rhannu eich cynnwys i brofiad aml-dudalen."],"Set media and words side-by-side for a richer layout.":["Gosod cyfryngau a geiriau ochr yn ochr â'i gilydd am gynllun cyfoethocach."],"Media & Text settings":["Gosodiadau Cyfryngau a Thestun"],"Create a bulleted or numbered list.":["Creu rhestr bwled neu rifo."],"Display a list of your most recent comments.":["Dangos rhestr o'ch sylwadau mwyaf diweddar."],"Insert an image to make a visual statement.":["Mewnosod delwedd i wneud datganiad gweledol."],"Add custom HTML code and preview it as you edit.":["Ychwanegu cod HTML arferol a'i ragweld wrth olygu."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Yn cyflwyno adrannau newydd a threfnu cynnwys i helpu ymwelwyr (a pheiriannau chwilio) i ddeall strwythur eich cynnwys."],"Display multiple images in a rich gallery.":["Dangos delweddau lluosog mewn oriel gyfoethog."],"Add a link to a downloadable file.":["Ychwanegu dolen at ffeil y mae modd ei llwytho i lawr."],"Embed videos, images, tweets, audio, and other content from external sources.":["Mewnblannu fideos, delweddau, trydariadau, sain, a chynnwys arall o ffynonellau allanol."],"Resize for smaller devices":["Newid maint ar gyfer dyfeisiau llai"],"This embed may not preserve its aspect ratio when the browser is resized.":["Efallai na fydd y mewnblannu hwn yn cadw ei gymhareb agwedd pan fydd y porwr wedi'i newid."],"This embed will preserve its aspect ratio when the browser is resized.":["Bydd y mewnblaniad yn cadw ei gymhareb agwedd pan fydd y porwr wedi newid maint."],"Embed an Animoto video.":["Mewnblannu fideo Animoto."],"Embed a Vimeo video.":["Mewnblannu fideo Vimeo."],"Embed Flickr content.":["Mewnblannu cynnwys Flikr."],"Embed Spotify content.":["Mewnblannu cynnwys Spotify."],"Embed SoundCloud content.":["Mewnblannu cynnwys SoundCloud."],"Embed a WordPress post.":["Mewnblannu cofnod WordPress."],"Embed an Instagram post.":["Mewnblannu cofnod Instagram."],"Embed a Facebook post.":["Mewnblannu cofnod Facebook."],"Embed a WordPress.tv video.":["Mewnblannu fideo WordPress.tv."],"Embed a VideoPress video.":["Mewnblannu fideo VideoPress."],"Embed a Tumblr post.":["Mewnblannu cofnod Tumblr."],"Embed a TED video.":["Mewnblannu fideo TED."],"Embed Speaker Deck content.":["Mewnblannu cynnwys Speaker Deck."],"Embed a YouTube video.":["Mewnblannu fideo YouTube."],"Embed SmugMug content.":["Mewnblannu cynnwys SmugMug."],"Embed Slideshare content.":["Mewnblannu cynnwys Slideshare."],"Embed Scribd content.":["Mewnblannu cynnwys Scribd."],"Embed Screencast content.":["Mewnblannu cynnwys Screencast."],"Embed ReverbNation content.":["Mewnblannu cynnwys ReverNation."],"Embed a Reddit thread.":["Mewnblannu trywydd Reddit."],"Embed Polldaddy content.":["Mewnblannu cynnwys Polldaddy."],"Embed Mixcloud content.":["Mewnblannu cynnwys Mixcloud."],"Embed a tweet.":["Mewnblannu trydariad."],"Embed Meetup.com content.":["Mewnblannu cynnwys Meetup.com."],"Embed Kickstarter content.":["Mewnblannu cynnwys Kickstarter."],"Embed Issuu content.":["Mewnblannu cynnwys Issuu."],"Embed Imgur content.":["Mewnblannu cynnwys Imgur."],"Embed Hulu content.":["Mewnblannu cynnwys Hulu."],"Embed a Dailymotion video.":["Mewnblannu fideo Dailymotion."],"Embed CollegeHumor content.":["Mewnblannu cynnwys CollegeHumor."],"Embed Cloudup content.":["Mewnblannu cynnwys Cloudup."],"Add an image or video with a text overlay — great for headers.":["Ychwanegu delwedd neu fideo gyda gorchudd testun - gwych i benawdau."],"Display code snippets that respect your spacing and tabs.":["Dangos darnau cod sy'n parchu'ch bylchu a'ch tabiau."],"Use the classic WordPress editor.":["Defnyddiwch y golygydd WordPress clasurol."],"Display a list of all categories.":["Dangos rhestr o bob categori."],"Embed a simple audio player.":["Mewnblannu chwaraewr sain syml."],"noun\u0004View":["Golwg"],"editor button\u0004Left to right":["Chwith i'r dde"],"Save as Pending":["Cadw fel Dan Ystyriaeth"],"%s address":["%s cyfeiriad"],"Paste or type URL":["Gludo neu deipio URL"],"Insert from URL":["Mewnosod o URL"],"Block Navigator":["Llywiwr Bloc"],"Styles":["Arddulliau"],"Advanced panels":["Paneli uwch"],"Document panels":["Paneli dogfennau"],"General":["Cyffredinol"],"Open the block navigation menu.":["Agorwch y ddewislen llywio blociau ."],"Work without distraction":["Gweithio heb darfu"],"Focus on one block at a time":["Canolbwyntio ar un bloc ar y tro"],"Access all block and document tools in a single place":["Mynediad i bob offer bloc a dogfen mewn un lle"],"Options":["Dewisiadau"],"(opens in a new tab)":["(yn agor mewn tab newydd)"],"Minutes":["Munud"],"Hours":["Awr"],"Time":["Amser"],"Year":["Blwyddyn"],"Day":["Diwrnod"],"December":["Rhagfyr"],"November":["Tachwedd"],"October":["Hydref"],"September":["Medi"],"August":["Awst"],"July":["Gorffennaf"],"June":["Mehefin"],"May":["Mai"],"April":["Ebrill"],"March":["Mawrth"],"February":["Chwefror"],"January":["Ionawr"],"Month":["Mis"],"Date":["Dyddiad"],"Go to the first (home) or last (end) day of a week.":["Ewch i ddiwrnod cyntaf (cartref) neu ddiwethaf (diwedd) yr wythnos."],"Home/End":["Cartref/Diwedd"],"Home and End":["Cartref a Diwedd"],"Move backward (PgUp) or forward (PgDn) by one month.":["Symud nôl (PgUp) neu ymlaen (PgDn) un mis."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up a Page Down"],"Move backward (up) or forward (down) by one week.":["Symud nôl (i fyny) ac ymlaen (i lawr) un wythnos."],"Up and Down Arrows":["Saethau i fyny ac i lawr"],"Move backward (left) or forward (right) by one day.":["Symud nôl (chwith) ac ymlaen (dde) un diwrnod."],"Left and Right Arrows":["Saethau Chwith a De"],"Select the date in focus.":["Dewiswch y dyddiad yn y ffocws."],"Navigating with a keyboard":["Llywio gyda bysellfwrdd"],"Click the desired day to select it.":["Clicio'r diwrnod dewis i'w ddewis."],"Click the right or left arrows to select other months in the past or the future.":["Clicio'r saethau dde a chwith i ddewis misoedd eraill yn y gorffennol neu'r dyfodol."],"Click to Select":["Clicio i Ddewis"],"Calendar Help":["Cymorth Calendr"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Defnyddiwch eich bysellau saeth i newid y lliw sylfaen. Symud i fyny i oleuo'r lliw, i lawr i dywyllu, i'r chwith i gynyddu dirlawnder, ac i'r dde i leihau dirlawnder."],"Choose a shade":["Dewis cysgod"],"Change color format":["Newid fformat lliw"],"Color value in HSL":["Gwerth lliw yw HSL"],"Color value in RGB":["Gwerth lliw yw RGB"],"Color value in hexadecimal":["Gwerth lliw mewn hecsadegol"],"RGB mode active":["Dull RGB yn weithredol"],"Hex color mode active":["Modd lliw hecs yn weithredol"],"Hue/saturation/lightness mode active":["Modd arlliw/dirlawnder/goleuni yn weithredol"],"Move the arrow left or right to change hue.":["Symud y saeth i'r chwith neu'r dde i newid golwg."],"Hue value in degrees, from 0 to 359.":["Gwerth arlliw mewn graddau, o 0 i 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Gwerth Alpha, o 0 (tryloyw) i 1 (yn hollol didraidd)."],"Stripes":["Streipiau"],"Your site doesn’t include support for this block.":["Nid yw eich gwefan yn cynnwys cefnogaeth i'r bloc hwn."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Nid yw eich gwefan yn cynnwys cefnogaeth ar gyfer y bloc \"%s\". Gallwch adael y bloc hwn yn llwyr neu ei dynnu'n llwyr."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Nid yw eich gwefan yn cynnwys cefnogaeth ar gyfer y bloc \"%s\". Gallwch adael y bloc hwn yn gyfan, trosi ei gynnwys i bloc HTML Cyfaddas, neu ei dynnu'n llwyr."],"Media area":["Ardal Cyfryngau"],"Media & Text":["Cyfryngau a Thestun"],"Show media on right":["Dangos y cyfryngau ar y dde"],"Show media on left":["Dangos y cyfryngau ar y chwith"],"Open in New Tab":["Agor mewn Tab Newydd"],"Cover":["Clawr"],"Border settings":["Gosodiadau border"],"Medium":["Canolig"],"Paste URL or type to search":["Gludwch URL neu deipio i chwilio"],"Terms":["Amodau"],"Your work will be published at the specified date and time.":["Bydd eich gwaith yn cael ei gyhoeddi ar y dyddiad a'r amser penodol."],"Are you ready to schedule?":["Ydych chi'n barod i amserlennu?"],"Always show pre-publish checks.":["Dangos gwiriadau cyn cyhoeddi bob tro."],"Take Over":["Cymryd Drosodd"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Mae defnyddiwr arall yn gweithio ar y cofnod hwn ar hyn o bryd, sy'n golygu nad oes modd i chi wneud newidiadau, oni bai eich bod yn cymryd drosodd."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["Mae %s yn gweithio ar y cofnod hwn ar hyn o bryd, sy'n golygu nad oes modd i chi wneud newidiadau, oni bai eich bod yn cymryd drosodd."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Mae gan ddefnyddiwr arall reolaeth olygyddol o'r cofnod hwn. Peidiwch â phoeni, mae eich newidiadau hyd yma wedi eu cadw."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Mae gan %s reolaeth olygyddol o'r cofnod hwn. Peidiwch â phoeni, mae eich newidiadau hyd yma wedi eu cadw."],"Avatar":["Afatar"],"This post is already being edited.":["Mae'r cofnod hwn eisoes wedi ei olygu."],"Someone else has taken over this post.":["Mae rhywun arall wedi cymryd drosodd y cofnod hwn."],"This block contains unexpected or invalid content.":["Mae'r bloc hwn yn cynnwys cynnwys annisgwyl neu annilys."],"Resolve Block":["Datrys Bloc"],"Convert to HTML":["Trosi i HTML"],"This block can only be used once.":["Dim ond unwaith mae modd defnyddio'r bloc hwn."],"Exit Code Editor":["Gadael y Golygydd Cod"],"Editing Code":["Cod Golygu"],"Solid Color":["Lliw Solet"],"Main Color":["Prif Liw"],"HTML":["HTML"],"Write HTML…":["Ysgrifennu HTML…"],"Media settings":["Gosodiadau cyfrwng"],"Overlay":["Troshaen"],"Insert Media":["Mewnosod Cyfrwng"],"Reusable block imported successfully!":["…Y bloc ailddefnyddiadwy wedi ei fewnforio'n llwyddiannus!"],"Invalid Reusable Block JSON file":["FFeil JSON Bloc Ailddefnyddiadwy annilys"],"Invalid JSON file":["Ffeil JSON annilys"],"Import from JSON":["Mewnforio o JSON"],"Backtick":["Ôldic"],"Period":["Atalnod llawn"],"Comma":["Atalnod"],"Change type of %d block":["Newid y math o %d bloc","Newid y math o %d bloc","Newid y math o %d bloc","Newid y math o %d bloc"],"Current":["Cyfredol"],"After Conversion":["Ar ôl Trosi"],"Change alignment":["Newidiwch yr aliniad"],"Change text alignment":["Newidiwch yr aliniad testun"],"%d block":["%d bloc","%d bloc","%d bloc","%d bloc"],"Forward-slash":["Blaen slaes"],"No archives to show.":["Dim archifau i'w dangos."],"This file is empty.":["Mae'r ffeil yn wag."],"Sorry, this file type is not supported here.":["Ymddiheuriadau, nid yw'r math yna o ffeil yn cael ei chynnal yma."],"Manage all reusable blocks":["Rheoli pob bloc ailddefnyddiadwy"],"Title":["Teitl"],"Fullscreen mode":["Modd sgrin llawn"],"Beautiful landscape":["Tirwedd hardd"],"Close panel":["Cau'r panel"],"Convert to Classic Block":["Trosi i Floc Clasurol"],"Remove Poster Image":["Tynnu Delwedd Poster"],"Select Poster Image":["Dewis Delwedd Poster"],"Poster Image":["Delwedd Poster"],"This block is deprecated. Please use the Columns block instead.":["Mae'r bloc hwn yn anghymeradwy. Defnyddiwch y bloc Colofnau yn lle hynny."],"Text Columns (deprecated)":["Colofnau Testun (anghymeradwy)"],"Create":["Creu"],"Row Count":["Cyfrif Rhesi"],"Column Count":["Cyfrif Colofnau"],"This block is deprecated. Please use the Paragraph block instead.":["Mae'r bloc hwn yn anghymeradwy. Defnyddiwch y bloc Paragraff yn lle hynny."],"Subheading (deprecated)":["Is-bennawd (anghymeradwy)"],"blockquote":["dyfyniad bloc"],"Change the block type after adding a new paragraph.":["Newid y math bloc ar ôl ychwanegu paragraff newydd."],"Spotlight mode":["Modd amlygu"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Mae tagiau yn helpu defnyddwyr a pheiriannau chwilio i lywio'ch gwefan a dod o hyd i'ch cynnwys. Ychwanegwch ychydig o eiriau allweddol i ddisgrifio'ch cynnwys."],"Add tags":["Ychwanegu tagiau"],"Apply the \"%1$s\" format.":["Gosod y fformat \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Mae'ch thema yn defnyddio fformat cofnod i dynnu sylw at wahanol fathau o gynnwys, fel delweddau neu fideos. Gosodwch fformat cofnod i weld yr arddull arbennig hwn."],"Use a post format":["Defnyddiwch fformat cofnod"],"Insert After":["Mewnosod Ar Ôl"],"Insert Before":["Mewnosod Cyn"],"Move %1$d block from position %2$d down by one place":["Symud %1$d bloc safle %2$d i lawr fesul un lle","Symud %1$d bloc safle %2$d i lawr fesul un lle","Symud %1$d bloc safle %2$d i lawr fesul un lle","Symud %1$d bloc safle %2$d i lawr fesul un lle"],"Move %1$d block from position %2$d up by one place":["Symud %1$d bloc safle %2$d i fyny fesul un lle","Symud %1$d bloc safle %2$d i fyny fesul un lle","Symud %1$d bloc safle %2$d i fyny fesul un lle","Symud %1$d bloc safle %2$d i fyny fesul un lle"],"Move %1$s block from position %2$d right to position %3$d":["Symudwch floc %1$s o safle %2$d i'r dde i safle %3$d"],"movie":["ffilm"],"Insert a new block before the selected block(s).":["Mewnosod bloc newydd cyn y bloc (au) a ddewiswyd."],"Remove the selected block(s).":["Tynnwch y bloc(iau) a ddewiswyd."],"Duplicate the selected block(s).":["Dyblygu'r bloc(iau) a ddewiswyd."],"Block shortcuts":["Rhwystro llwybrau byr"],"Clear selection.":["Clirio'r dewis."],"Select all text when typing. Press again to select all blocks.":["Dewiswch yr holl destun wrth deipio. Cliciwch eto i ddewis pob bloc."],"Selection shortcuts":["Llwybrau byr dewis"],"Switch between Visual editor and Code editor.":["Newidiwch rhwng y golygydd Gweledol a'r golygydd Cod."],"Navigate to the previous part of the editor.":["Ewch i'r rhan flaenorol o'r olygydd."],"Navigate to the next part of the editor.":["Ewch i'r rhan nesaf y golygydd."],"Show or hide the settings sidebar.":["Dangos neu guddio gosodiadau'r bar ochr."],"Redo your last undo.":["Ail-wneud y dadwneud diwethaf."],"Undo your last changes.":["Dadwneud y newidiadau diwethaf."],"Save your changes.":["Cadw eich newidiadau."],"Global shortcuts":["Llwybrau byr eang"],"Remove a link.":["Tynnwch ddolen."],"Convert the selected text into a link.":["Trosi'r testun a ddewiswyd i mewn i ddolen."],"Underline the selected text.":["Tanlinellwch y testun a ddewiswyd."],"Make the selected text italic.":["Gwnewch y testun a ddewiswyd yn italig."],"Make the selected text bold.":["Gwnewch y testun a ddewiswyd yndrwm."],"Text formatting":["Fformatio testun"],"Insert a new block after the selected block(s).":["Mewnosod bloc newydd ar ôl y bloci(au) a ddewiswyd."],"Keyboard shortcuts":["Llwybrau byr bysellfwrdd"],"Thanks for testing Gutenberg!":["Diolch am brofi Gutenberg!"],"Help build Gutenberg":["Helpwch i adeiladu Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Os ydych chi eisiau dysgu mwy am sut i adeiladu blociau ychwanegol, neu os oes gennych ddiddordeb mewn helpu gyda'r prosiect, ewch i'r storfa GitHub ."],"The WordPress community":["Cymuned WordPress"],"Code is Poetry":["Barddoniaeth yw Cod"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Gallwch adeiladu unrhyw floc fel yr hoffech chi, yn sefydlog neu'n ddeinamig, addurnol neu blaen. Dyma floc dangos dyfyniad:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Gallwch osod unrhyw floc i gyd-fynd â'r aliniadau hyn. Mae'r bloc mewnblannu hefyd yn gallu gwneud hynny ac yn ymatebol hefyd:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Mae'r uchod yn oriel gyda dim ond dwy ddelwedd. Mae'n ffordd haws o greu cynlluniau sy'n apelio'n weledol, heb orfod delio â rhai sy'n arnofio. Gallwch hefyd drawsnewid yr oriel yn ôl i ddelweddau unigol yn hawdd, trwy ddefnyddio'r bloc newid."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Gall y ddelwedd lawn-eang fod yn eithaf mawr. Ond ar adegau mae'r ddelwedd yn drawiadol iawn."],"Accessibility is important — don’t forget image alt attribute":["Mae hygyrchedd yn bwysig - peidiwch ag anghofio priodwedd delwedd"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Os ydych chi'n cyfuno'r aliniadau newydd llydan a llydan llawn ag orielau, gallwch greu cynllun cyfrwng cyfoethog, yn gyflym iawn:"],"Media Rich":["Cyfrwng Cyfoethog"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Gallwch newid y nifer o golofnau yn eich orielau trwy lusgo llithrydd yn yr arolygydd bloc yn y bar ochr."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Gall blociau fod yn unrhyw beth sydd eu hangen arnoch. Er enghraifft, efallai yr hoffech chi ychwanegu dyfyniad tawel fel rhan o gyfansoddiad eich testun, neu efallai y byddai'n well gennych ddangos un arddull fawr. Mae'r holl opsiynau hyn ar gael yn y mewnosodwr."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Mae'r wybodaeth sy'n cyfateb i ffynhonnell y dyfyniad yn faes testun ar wahân, sy'n debyg i benawdau dan ddelweddau, felly mae strwythur y dyfyniad wedi'i ddiogelu hyd yn oed os ydych yn dewis, yn addasu, neu'n tynnu'r ffynhonnell. Mae bob amser yn hawdd ei roi yn ôl."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Bydd y golygydd yn ceisio creu tudalen newydd a phrofiad ôl-adeiladu sy'n gwneud ysgrifennu cofnodion cyfoethog yn hawdd, ac mae ganddo 'flociau' i wneud yn hawdd yr hyn, r hyn o bryd, sy'n cymryd codau byr,, HTML cyfaddas, neu ddarganfod mewnblaniad “mystery meat”."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Mantais mawr blociau yw y gallwch eu golygu yn eu lle a thrin eich cynnwys yn uniongyrchol. Yn lle cael meysydd ar gyfer golygu pethau fel ffynhonnell dyfyniad, neu destun botwm, gallwch newid y cynnwys yn uniongyrchol. Ceisiwch olygu'r dyfyniad canlynol:"],"Visual Editing":["Golygu Gweledol"],"And Lists like this one of course :)":["A Rhestrau fel hyn, wrth gwrs :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blociau cynllun, fel Botymau, Delweddau Trawiadol, Gwahanwyr, ac ati."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Mewnblaniadau, fel YouTube, Trydariadau, neu gofnodion WordPress eraill."],"Galleries":["Orielau"],"Images & Videos":["Delweddau a Fideos"],"Text & Headings":["Penawdau Testun"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Rhowch cynnig arno, fe allwch ddarganfod pethau y gall WordPress eu hychwanegu at eich cofnod nad oeddech chi'n gwybod amdanyn nhw. Dyma restr fer o'r hyn y gallwch chi ei gael yno ar hyn o bryd:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Dychmygwch fod popeth y gall WordPress ei wneud ar gael i chi yn gyflym ac yn yr un lle ar y rhyngwyneb. Nid oes angen gweithio allan tagiau HTML, dosbarthiadau, na chofio cystrawen cymhlethdod codau byr. Dyna'r syniad y tu ôl i'r mewnosodwr — y botwm (+)
byddwch yn ei weld o gwmpas y golygydd—sy'n eich galluogi i bori drwy'r holl flociau cynnwys sydd ar gael a'u hychwanegu i'ch cofnod. Gall ychwanegion a themâu gofrestru eu hunain, gan agor pob math o bosibiliadau ar gyfer golygu a chyhoeddi cyfoethog."],"The Inserter Tool":["Y Teclyn Mewnosod"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Ceisiwch ddewis a dileu neu olygu'r pennawd, nawr does dim angen i chi fod yn ofalus ynglŷn â dewis y ddelwedd neu destun arall trwy gamgymeriad a difetha'r cyflwyniad."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Os yw'ch thema yn ei gefnogi, fe welwch y botwm \"eang\" ar y bar offer delwedd. Rhowch gynnig arni."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Mae delio â delweddau a chyfryngau gyda'r gofal mwyaf yn brif ffocws y golygydd newydd. Gobeithio y byddwch yn cael ychwanegu capsiynau neu fynd yn lled llawn â'ch lluniau yn llawer haws a chadarn nag o'r blaen."],"A Picture is Worth a Thousand Words":["Mae Darlun yn Werth Mil o Eiriau"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Mae penawdau hefyd yn flociau ar wahân, sy'n helpu gydag amlinell a threfniadaeth eich cynnwys."],"... like this one, which is right aligned.":["... fel yr un yma, sydd wedi'i alinio i'r dde."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Mae'r hyn rydych yn ei ddarllen nawr yw floc testun, y bloc mwyaf sylfaenol oll. Mae gan y bloc testun ei reolaethau ei hun i'w symud yn rhydd o gwmpas y cofnod..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Nod y golygydd newydd hwn yw ychwanegu cynnwys cyfoethog i WordPress mewn ffordd syml a hwylus. Mae'r cofnod cyfan hwn yn cynnwys darnau o gynnwys - ychydig yn debyg i frics LOGO - y gallwch eu symud o gwmpas a rhyngweithio â nhw. Symudwch eich cyrchwr o gwmpas a byddwch yn sylwi ar y gwahanol flociau yn goleuo gydag amlinelliadau a saethau. Cliciwch y saethau i ailosod y blociau'n gyflym, heb ofni colli pethau yn y broses o gopïo a gludo."],"Of Mountains & Printing Presses":["Mynyddoedd a Gweisg Argraffu"],"Welcome to the Gutenberg Editor":["Croeso i Olygydd Gutenberg"],"block name\u0004More":["Rhagor"],"button to expand options\u0004More":["Rhagor"],"Are you sure you want to unschedule this post?":["Ydych chi'n siŵr eich bod am ddadamserlennu'r cofnod hwn?"],"Alt Text (Alternative Text)":["Testun Amgen (Testun Amgen)"],"Reusable Block":["Bloc Ailddefnyddiadwy"],"Unique identifier for the object.":["Dynodwr unigryw ar gyfer y gwrthrych."],"Untitled Reusable Block":["Bloc Ail Ddefnyddiadwy Dideitl"],"Small":["Bach"],"Reusable":["Ail Ddefnyddiadwy"],"Remove from Reusable blocks":["Tynnu o'r blociau ailddefnyddiadwy"],"Add to Reusable blocks":["Ychwanegu at y blociau ailddefnyddiadwy"],"Keep as HTML":["Cadw fel HTML"],"Edit URL":["Golygu URL"],"Color settings":["Gosodiadau lliw"],"The response is not a valid JSON response.":["Nid yw'r ymateb yn ymateb dilys JSON."],"Editor publish":["Cyhoeddi golygydd"],"Muted":["Wedi'i Fudo"],"Video settings":["Gosodiadau fideo"],"recent comments":["sylwadau diweddar"],"Latest Comments":["Sylwadau Diweddaraf"],"Display Excerpt":["Dangos Darn"],"Display Date":["Dyddiad Dangos"],"Display Avatar":["Dangos Afatar"],"Latest comments settings":["Gosodiadau sylwadau diweddaraf"],"Number of Comments":["Nifer y Sylwadau"],"Background Opacity":["Didreiddedd Cefndir"],"Auto":["Awto"],"Preload":["Rhaglwytho"],"Audio settings":["Gosodiadau sain"],"Display a monthly archive of your posts.":["Dangos archif misol o'ch cofnodion."],"Display as Dropdown":["Dangos fel cwymplen"],"Show Post Counts":["Dangos Nifer y Cofnodion"],"Archives settings":["Gosodiadau archifau"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Cymorth"],"No comments to show.":["Dim sylwadau i'w dangos."],"%1$s on %2$s":["%1$s ar %2$s"],"Select Post":["Dewis Cofnod"],"Select Week":["Dewis Wythnos"],"Select Day":["Dewis Diwrnod"],"Select Month":["Dewis Mis"],"Select Year":["Dewis Blwyddyn"],"Archives":["Archif"],"Very dark gray":["Llwyd tywyll iawn"],"Cyan bluish gray":["Llwyd las wyrdd"],"Very light gray":["Llwyd golau iawn"],"Vivid cyan blue":["Glas wyrdd cryf"],"Pale cyan blue":["Glas wyrdd gwan"],"Vivid green cyan":["Gwyrdd glaswyrdd cryf"],"Light green cyan":["Gwyrdd glaswyrdd cryf"],"Luminous vivid amber":["Ambr cryf llewyrchol"],"Luminous vivid orange":["Oren cryf llewyrchol"],"Vivid red":["Coch llachar"],"Pale pink":["Pinc gwan"],"Inline image":["Delwedd fewnlin"],"Available block types":["Mathau bloc sydd ar gael"],"Transform To:":["Trawsnewid i:"],"Remove Block":["Dileu Bloc","Dileu Blociau","Dileu Blociau","Dileu Blociau"],"Open publish panel":["Agor panel cyhoeddi"],"Dots":["Dotiau"],"Wide Line":["Llinell Llydan"],"Large":["Mawr"],"Show download button":["Dangos botwm llwytho i lawr"],"Download button settings":["Gosodiadau botwm llwytho i lawr"],"Link To":["Dolen i"],"Text link settings":["Gosodiadau cyswllt testun"],"download":["llwytho i lawr"],"pdf":["pdf"],"document":["dogfen"],"Copy URL":["Copïo URL"],"Write file name…":["Ysgrifennwch enw'r ffeil…"],"File":["Ffeil"],"A single column within a columns block.":["Un golofn o fewn bloc colofnau."],"Column":["Colofn"],"Outline":["Amlinell"],"Loop":["Cylchu"],"Autoplay":["Awtochwarae"],"Playback Controls":["Rheolyddion Chwarae"],"Close dialog":["Cau'r deialog"],"Sorry, this file type is not permitted for security reasons.":["Nid yw'r math hon o ffeil yn cael ei chaniatáu am resymau diogelwch."],"Disable tips":["Analluogi awgrymiadau"],"Got it":["Iawn, rwy'n deall"],"See next tip":["Gweld yr awgrym nesaf"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Pan fyddwch chi'n barod, cyflwynwch eich gwaith i'w hadolygu, a bydd Golygydd yn gallu ei gymeradwyo ar eich rhan."],"Are you ready to submit for review?":["Ydych chi'n barod i'w gyflwyno ar gyfer ei adolygu?"],"Replace image":["Amnewid delwedd"],"Remove image":["Tynnu'r ddelwedd"],"Error while uploading file %s to the media library.":["Gwall wrth lwytho ffeil %s i lyfrgell y cyfryngau."],"This file exceeds the maximum upload size for this site.":["Mae'r ffeil yn rhy fawr ar gyfer y wefan hon."],"View the autosave":["Edrychwch ar yr awtogadw"],"There is an autosave of this post that is more recent than the version below.":["Mae fersiwn awtogadw o'r cofnod hwn sy'n fwy diweddar na'r fersiwn isod."],"Autosaving":["Awtogadw"],"Enter URL here…":["Rhowch URL yma…"],"Pin to toolbar":["Pinio i'r bar offer"],"Unpin from toolbar":["Dadbinio o'r bar offer"],"Insert a table — perfect for sharing charts and data.":["Mewnosod tabl - yn berffaith ar gyfer rhannu siartiau a data."],"Fixed width table cells":["Celloedd tabl lled sefydlog"],"Table settings":["Gosodiadau tablau"],"Add text that respects your spacing and tabs, and also allows styling.":["Ychwanegwch destun sy'n parchu eich gofod a'ch tabiau, a hefyd yn caniatáu ei addurno."],"Display a list of your most recent posts.":["Dangoswch restr o'ch cofnodion diweddaraf."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Ychwanegwch floc sy'n dangos cynnwys sy'n cael ei dynnu o wefannau eraill, fel Twitter, Instagram neu YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Ychwanegwch floc sy'n dangos cynnwys mewn nifer lluosog o golofnau, yna ychwanegwch pa flociau bynnag yr hoffech chi."],"Error loading block: %s":["Gwall wrth lwytho bloc: %s"],"Unknown error":["Gwall anhysbys"],"Embed Handler":["Mewnblannwch Reolwr"],"term\u0004Remove %s":["Tynnu %s"],"Copy the permalink":["Copïo'r ddolen barhaol"],"Permalink copied":["Dolen barhaol wedi ei gopïo"],"Height in pixels":["Uchder mewn picseli"],"Spacer settings":["Gosodiadau bylchwr"],"Spacer":["Bylchwr"],"Toggle to show a large initial letter.":["Toglo i ddangos llythyren cychwynnol mawr."],"Showing large initial letter.":["Yn dangos llythyren cychwynnol mawr."],"Name:":["Enw:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s o%3$s)"],"Remove item":["Tynnu eitem"],"Color code: %s":["Cod lliw: %s"],"Skip to the selected block":["Ewch i'r bloc dewiswyd"],"Publish…":["Cyhoeddi…"],"Schedule…":["Amserlenwyd…"],"Edit post permalink":["Golygu dolen barhaol cofnod"],"Show Block Settings":["Dangos Gosodiadau Bloc"],"Hide Block Settings":["Cuddio Gosodiadau Bloc"],"Block settings closed":["Lleoliadau bloc wedi cau"],"Close plugin":["Ychwanegwch ategyn"],"Editor settings":["Gosodiadau golygydd"],"Link settings":["Gosodiadau dolen"],"Unlink":["Datgysylltu"],"Page break":["Toriad tudalen"],"pagination":["tudaleniad"],"next page":["tudalen nesaf"],"Image Size":["Maint Delwedd"],"Height":["Uchder"],"Width":["Lled"],"Image Dimensions":["Dimensiynau Delwedd"],"Thumbnails are not cropped.":["Nid yw lluniau bach wedi eu tocio."],"Thumbnails are cropped to align.":["Mae lluniau bach wedi eu tocio i'w halinio."],"Media Library":["Llyfrgell Cyfrwng"],"Advanced":["Uwch"],"Add item":["Ychwanegu eitem"],"Reset the template":["Ailosod y templed"],"Keep it as is":["Cadwch fel ag y mae"],"The content of your post doesn’t match the template assigned to your post type.":["Nid yw cynnwys eich cofnod yn cydweddu'r templed a neilltuwyd i'ch math o gofnod."],"Resetting the template may result in loss of content, do you want to continue?":["Gall ailosod y templed arwain at golli cynnwys, ydych chi am barhau?"],"Document Statistics":["Ystadegau Dogfen"],"is now scheduled. It will go live on":["wedi'i amserlennu. Bydd yn mynd yn fyw ar"],"Scheduled":["Amserlenwyd"],"Scheduling…":["Amserlennu…"],"Code editor selected":["Golygydd cod wedi'i ddewis"],"Visual editor selected":["Golygydd gweledol wedi'i ddewis"],"Plugins":["Ategion"],"Custom Size":["Maint Cyfaddas"],"Layout elements":["Elfennau'r cynllun"],"term\u0004%s removed":["%s wedi'i ddileu"],"term\u0004%s added":["%s wedi'i ychwanegu"],"imperative verb\u0004Preview":["Rhagolwg"],"Block deleted.":["Bloc wedi'i ddileu."],"Block updated.":["Bloc wedi'i ddiweddaru."],"Block created.":["Bloc wedi'i greu."],"Trashing failed":["Methodd gosod yn y sbwriel"],"Updating failed.":["Methodd y diweddaru."],"Scheduling failed.":["Methodd yr amserlennu."],"Publishing failed.":["Methodd y cyhoeddi."],"View post":["Darllen y cofnod"],"You have unsaved changes. If you proceed, they will be lost.":["Mae gennych newidiadau heb eu cadw. Os byddwch yn bwrw ymlaen, byddan nhw'n cael eu colli."],"Document Outline":["Amlinelliad o'r Ddogfen"],"Paragraphs":["Paragraffau"],"Headings":["Penawdau"],"Words":["Geiriau"],"Content structure":["Strwythur cynnwys"],"Public":["Cyhoeddus"],"Protected with a password you choose. Only those with the password can view this post.":["Wedi'i warchod gyda chyfrinair rydych chi'n ei ddewis. Dim ond y rhai sydd â'r cyfrinair all weld y cofnod hwn."],"Password Protected":["Diogelu gyda Chyfrinair"],"Only visible to site admins and editors.":["Dim ond gweladwy i weinyddwyr a golygyddion."],"Private":["Preifat"],"Visible to everyone.":["Yn weladwy i bawb."],"Post Visibility":["Gwelededd Cofnod"],"Would you like to privately publish this post now?":["Hoffech chi gyhoeddi'r cofnod yn breifat nawr?"],"Use a secure password":["Defnyddiwch gyfrinair diogel"],"Create password":["Creu cyfrinair"],"Move to Trash":["Symud i'r Sbwriel"],"Parent Term":["Term Rhiant"],"Parent Category":["Categori Rhiant"],"Add new term":["Ychwanegwch derm newydd"],"Add new category":["Ychwanegu categori newydd"],"Term":["Term"],"Tag":["Tag"],"Add new Term":["Ychwanegu term newydd"],"Add new tag":["Ychwanegu tag newydd"],"Switch to draft":["Newid i'r drafft"],"Are you sure you want to unpublish this post?":["Ydych chi'n siŵr eich bod am ddatgyhoeddi'r cofnod hwn?"],"Immediately":["Ar unwaith"],"Save Draft":["Cadw Drafft"],"Saving":["Cadw"],"Publish:":["Cyhoeddi:"],"Visibility:":["Gwelededd:"],"Are you ready to publish?":["Ydych chi'n barod i'w gyhoeddi?"],"Copy Link":["Copïo Dolen"],"What’s next?":["Beth sydd nesaf?"],"is now live.":["nawr yn fyw."],"Published":["Cyhoeddwyd"],"Schedule":["Amserlennu"],"Update":["Diweddaru"],"Submit for Review":["Cyflwyno ar gyfer Adolygiad"],"Updating…":["Diweddaru…"],"Publishing…":["Cyhoeddi…"],"Allow pingbacks & trackbacks":["Caniatáu hysbysiad cydnabod a chyfeirio"],"Permalink:":["Dolen Barhaol:"],"Pending review":["Dan ystyriaeth"],"%d Revision":["%d Adolygiad","%d Adolygiad","%d Adolygiad","%d Adolygiad"],"Suggestion:":["Awgrym:"],"Post Format":["Fformat Cofnod"],"Chat":["Sgwrs"],"Status":["Statws"],"Standard":["Safonol"],"Aside":["Neilleb"],"Featured image":["Delwedd nodwedd"],"Set featured image":["Gosod delwedd nodwedd"],"Learn more about manual excerpts":["Dysgwch fwy am ddyfyniadau llaw"],"Write an excerpt (optional)":["Ysgrifennwch ddyfyniad (dewisol)"],"Allow comments":["Caniatáu sylwadau"],"Template:":["Templed:"],"no parent":["dim rhiant"],"no title":["dim teitl"],"Order":["Trefn"],"No blocks found.":["Heb ganfod blociau."],"%d result found.":["%d canlyniad wedi ei ganfod.","%d canlyniad wedi eu canfod.","%d canlyniad wedi eu canfod.","%d canlyniad wedi eu canfod."],"Saved":["Cadwyd"],"Embeds":["Mewnblannu"],"Blocks":["Blociau"],"Search for a block":["Chwiliwch am floc"],"Add block":["Ychwanegu bloc"],"Copy Error":["Gwall Copïo"],"Copy Post Text":["Copi Testun Cofnod"],"Attempt Recovery":["Ceisiwch Adfer"],"The editor has encountered an unexpected error.":["Mae'r golygydd wedi canfod gwall annisgwyl."],"Undo":["Dadwneud"],"Redo":["Ail-wneud"],"(Multiple H1 headings are not recommended)":["(Nid ydym yn argymell penawdau H1 lluosog)"],"(Your theme may already use a H1 for the post title)":["(Efallai y bydd eich thema eisoes yn defnyddio H1 ar gyfer teitl y cofnod)"],"(Incorrect heading level)":["(Lefel pennawd anghywir)"],"(Empty heading)":["(Pennawd gwag)"],"Block Styles":["Arddulliau Bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Ydych chi'n siŵr eich bod am ddileu'r Bloc Ailddefnyddiadwy?\n\nCaiff ei dynnu'n barhaol o'r holl gofnodion a thudalennau sy'n ei ddefnyddio."],"Convert to Regular Block":["Trosi i Floc Arferol"],"More options":["Rhagor o ddewisiadau"],"Edit visually":["Golygu'n weledol"],"Duplicate":["Dyblygu"],"Blocks cannot be moved down as they are already at the bottom":["Nid oes modd symud blociau i lawr gan eu bod eisoes ar y gwaelod"],"Blocks cannot be moved up as they are already at the top":["Nid oes modd symud blociau i fyny gan eu bod eisoes ar y brig"],"Block %1$s is at the beginning of the content and can’t be moved right":["Mae bloc %1$s ar ddechrau'r cynnwys ac nid oes modd ei symud i'r dde"],"Block %1$s is at the end of the content and can’t be moved right":["Mae bloc %1$s ar ddiwedd y cynnwys ac nid oes modd ei symud i'r dde"],"Block %s is the only block, and cannot be moved":["Bloc %s yw'r unig floc, ac nid oes modd ei symud"],"Edit as HTML":["Golygu fel HTML"],"Convert to Blocks":["Trosi i Flociau"],"Block: %s":["Bloc: %s"],"This block has encountered an error and cannot be previewed.":["Mae'r bloc hwn wedi canfod gwall ac nid oes modd ei ragweld."],"No block selected.":["Heb ddewis bloc."],"Transform into:":["Trawsffurfio i:"],"Remove":["Tynnu"],"Find original":["Canfod y gwreiddiol"],"Copy all content":["Copïo'r holl gynnwys"],"Copied!":["Wedi'i gopïo!"],"Additional settings are now available in the Editor block settings sidebar":["Mae gosodiadau ychwanegol ar gael nawr yn bar ochr gosodiadau bloc y Golygydd"],"Visibility":["Gwelededd"],"Status & visibility":["Statws a gwelededd"],"Page attributes":["Priodoleddau tudalen"],"Block":["Bloc"],"Document":["Dogfen"],"Close settings":["Cau gosodiadau"],"Editor content":["Cynnwys golygydd"],"Tools":["Offer"],"Editor":["Golygydd"],"Code editor":["Golygydd cod"],"Visual editor":["Golygydd gweledol"],"Editor top bar":["Bar uchaf y golygydd"],"Settings":["Gosodiadau"],"Reset":["Ailosod"],"Dismiss this notice":["Diystyru'r rhybudd yma"],"Item removed.":["Eitem wedi ei dynnu."],"Item added.":["Ychwanegu eitem."],"Drop files to upload":["Gollwng ffeiliau i'w llwytho i fyny"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Digwyddodd gwall anhysbys."],"No results.":["Dim canlyniadau."],"%d result found, use up and down arrow keys to navigate.":["Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio.","Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio.","Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio.","Wedi canfod %d canlyniad. Defnyddiwch y bysellau saeth i fyny ac i lawr i lywio."],"(no title)":["(dim teitl)"],"URL":["URL"],"Submit":["Cyflwyno"],"Close":["Cau"],"Insert link":["Mewnosod dolen"],"Edit link":["Golygu dolen"],"Link":["Dolen"],"Strikethrough":["Llinell Drwodd"],"Italic":["Italig"],"Bold":["Trwm"],"Remove link":["Tynnu dolen"],"Number of items":["Nifer yr eitemau"],"All":["Popeth"],"Category":["Categori"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Hynaf i'r Diweddaraf"],"Newest to Oldest":["Diweddaraf i'r Hynaf"],"Order by":["Yn ôl trefn"],"Select":["Dewis"],"Select or Upload Media":["Dewis neu Lwytho Cyfryngau"],"Video":["Fideo"],"Write…":["Ysgrifennu…"],"poetry":["barddoniaeth"],"Verse":["Pennill"],"New Column":["Colofn Newydd"],"Delete Column":["Dileu Colofn"],"Add Column After":["Ychwanegu Colofn Ar Ôl"],"Add Column Before":["Ychwanegu Colofn Cyn"],"Delete Row":["Dileu Rhes"],"Add Row After":["Ychwanegu Rhes Ar Ôl"],"Add Row Before":["Ychwanegu Rhes Ar Cyn"],"Edit table":["Golygu tabl"],"Table":["Tabl"],"Write subheading…":["Ysgrifennu is-bennawd…"],"Write shortcode here…":["Ysgrifennu cod byr yma…"],"Shortcode":["Cod byr"],"divider":["rhannwr"],"horizontal-line":["llinell lorweddol"],"Separator":["Ymwahanydd"],"Quote":["Dyfyniad"],"Write citation…":["Ysgrifennu dyfyniad…"],"Write quote…":["Ysgrifennu dyfyniad…"],"Pullquote":["Dyfyniad"],"Write preformatted text…":["Ysgrifennwch destun wedi'i ragfformatio…"],"Preformatted":["Rhagffomatedig"],"text":["testun"],"Paragraph":["Paragraff"],"Font Size":["Maint Ffont"],"Drop Cap":["Gollwng Prif Lythyren"],"Text settings":["Gosodiadau testun"],"Read more":["Darllen mwy"],"Write list…":["Rhestr ysgrifennu…"],"numbered list":["rhestr rifedig"],"ordered list":["rhestr drefnus"],"bullet list":["rhestr bwled"],"Indent list item":["Eitem rhestr mewnoli"],"Outdent list item":["Eitem rhestr alloli"],"Convert to ordered list":["Trosi i restr wedi ei drefnu"],"Convert to unordered list":["Trosi i restr heb ei drefnu"],"List":["Rhestr"],"recent posts":["cofnodion diweddar"],"No posts found.":["Heb ganfod unrhyw gofnodion."],"Latest Posts":["Cofnodion Diweddaraf"],"Display post date":["Dangos dyddiad cofnod"],"Grid view":["Golwg grid"],"List view":["Golwg rhestr"],"photo":["ffoto"],"Image settings":["Gosodiadau delweddau"],"Image":["Delwedd"],"Preview":["Rhagolwg"],"embed":["mewnblannu"],"Custom HTML":["HTML Cyfaddas"],"subtitle":["isdeitl"],"title":["teitl"],"Heading":["Pennyn"],"Write heading…":["Ysgrifennu pennawd…"],"Heading %d":["Pennawd %d"],"Level":["Lefel"],"Heading settings":["Gosodiadau penawdau"],"photos":["ffotos"],"images":["delweddau"],"None":["Dim"],"Media File":["Ffeil Cyfrwng"],"Attachment Page":["Tudalen Atodi"],"Link to ":["Dolen i "],"Crop Images":["Tocio Delweddau"],"Gallery settings":["Gosodiadau'r Oriel"],"Gallery":["Oriel"],"Classic":["Clasurol"],"video":["fideo"],"audio":["sain"],"music":["cerddoriaeth"],"image":["delwedd"],"blog":["blog"],"post":["cofnod"],"Embedded content from %s":["Cynnwys wedi'i fewnblannu o %s"],"Enter URL to embed here…":["Rhowch URL i'w fewnblannu yma…"],"%s URL":["%s URL"],"Embedding…":["Mewnblannu…"],"Write title…":["Ysgrifennwch deitl…"],"Fixed Background":["Cefndir Sefydlog"],"Edit image":["Golygu delwedd"],"Columns":["Colofnau"],"Experiments":["Arbrofion"],"Code":["Cod"],"Write code…":["Ysgrifennwch god…"],"Categories":["Categorïau"],"Show Hierarchy":["Dangos yr Hierarchiaeth"],"Show post counts":["Dangos nifer y cofnodion"],"Categories settings":["Gosodiadau categorïau"],"Add text…":["Ychwanegu testun…"],"Button":["Botwm"],"Apply":["Gweithredu"],"Text Color":["Lliw'r Testun"],"Background Color":["Lliw'r Cefndir"],"Block has been deleted or is unavailable.":["Mae'r bloc wedi'i ddileu neu nid yw ar gael."],"Reusable blocks":["Blociau ailddefnyddiadwy"],"Cancel":["Diddymu"],"Edit":["Golygu"],"Write caption…":["Ysgrifennwch bennawd…"],"Use URL":["Defnyddio URL"],"Audio":["Sain"],"Upload":["Llwytho i fyny"],"Additional CSS Class(es)":["Dosbarth(iadau) CSS Ychwanegol"],"HTML Anchor":["Angor HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Efallai y bydd y cyfuniad lliw hwn yn anodd i bobl ei ddarllen. Ceisiwch ddefnyddio lliw cefndir mwy disglair a/neu liw testun tywyllach."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Efallai y bydd y cyfuniad lliw hwn yn anodd i bobl ei ddarllen. Ceisiwch ddefnyddio lliw cefndir tywyllach a/neu liw testun mwy disglair."],"Clear":["Clirio"],"Custom color picker":["Dewisydd lliwiau cyfaddas"],"Color: %s":["Lliw: %s"],"Full width":["Lled llawn"],"Wide width":["Lled llydan"],"Widgets":["Teclynnau"],"Formatting":["Fformatio"],"Common blocks":["Blociau cyffredin"],"Align right":["Alinio i'r dde"],"Align center":["Alinio i'r canol"],"Align left":["Alinio i'r chwith"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Argraffu ers 1440. Dyma'r ategyn datblygu ar gyfer y golygydd bloc newydd yn y craidd."],"Add title":["Ychwanegu teitl"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Mae modd datblygu Gutenberg yn ei gwneud yn ofynnol i ffeiliau gael eu hadeiladu. Rhedwch npm install
i osod y dibyniaethau, npm run build
i adeiladu'r ffeiliau neu npm run dev
i adeiladu'r ffeiliau a gwylio am newidiadau. Darllenwch y ffeil cyfrannu i gael mwy o wybodaeth."],"Author":["Awdur"],"Slug":["Bonyn"],"Discussion":["Trafodaeth"],"Custom fields":["Meysydd cyfaddas"],"Excerpt":["Dyfyniad"],"Publish":["Cyhoeddi"],"Metadata":["Metadata"],"Save":["Cadw"],"Documentation":["Dogfennaeth"],"Select Category":["Dewis Categori"],"(Untitled)":["(Dideitl)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Mae Gutenberg yn gofyn am WordPress %s neu'n hwyrach i weithio'n iawn. Diweddarwch WordPress cyn gweithredu Gutenberg."],"Gutenberg Team":["Tîm Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Arddangos"],"%s ago":["%s yn ôl"],"Block style name must be a string.":["Rhaid i enw arddull bloc fod yn llinyn."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_da.json b/bundle/android/raw/i18ncache_data_da.json
new file mode 100644
index 0000000000..95195171d1
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_da.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":["For at redigere det udvalgte billede kræver det at du har tilladelse til at upload medier."],"To edit this block, you need permission to upload media.":[],"(selected block)":["(valgte blok)"],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":["Dette billede har ingen alternativ tekst"],"This image has an empty alt attribute; its file name is %s":["Dette billede har ingen alternativ tekst; filens navn er %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Tilføj ny"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":["%s blokke valgt."],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":["Blok ikon"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":["Fokuser på en blok ad gangen"],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":["Mellem"],"Paste URL or type to search":["Indsæt URL eller skriv for at søge"],"Terms":[],"Your work will be published at the specified date and time.":["Dit indlæg vil blive udgivet på den angivne dato og klokkeslæt."],"Are you ready to schedule?":["Er du klar til at planlægge udgivelse?"],"Always show pre-publish checks.":[],"Take Over":["Overtag"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["En anden bruger arbejder i øjeblikket på dette indlæg, hvilket betyder du ikke kan lave ændringer medmindre du overtager."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbejder i øjeblikket på dette indlæg, hvilket betyder du ikke kan lave ændringer medmindre du overtager."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["En anden bruger har overtaget redigeringen af dette indlæg. Bare rolig, dine ændringer indtil nu er blevet gemt."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s har overtaget redigeringen af dette indlæg. Bare rolig, dine ændringer indtil nu er blevet gemt."],"Avatar":["Profilbillede"],"This post is already being edited.":["Dette indlæg bliver allerede redigeret."],"Someone else has taken over this post.":["En anden har overtaget dette indlæg."],"This block contains unexpected or invalid content.":["Denne blok har uventet eller ugyldigt indhold."],"Resolve Block":[],"Convert to HTML":["Omdan til HTML"],"This block can only be used once.":["Denne blok kan kun bruges en gang."],"Exit Code Editor":["Afslut kode redigering"],"Editing Code":["Redigerer kode"],"Solid Color":["Ensfarvet"],"Main Color":["Primær farve"],"HTML":["HTML"],"Write HTML…":["Skriv HTML..."],"Media settings":[],"Overlay":["Overlejring"],"Insert Media":["Indsæt medie"],"Reusable block imported successfully!":["Genbrugelig blok importeret!"],"Invalid Reusable Block JSON file":["Ugyldig genbrugelig blok jSON fil"],"Invalid JSON file":["Ugyldig jSON fil"],"Import from JSON":["Importer fra jSON"],"Backtick":[],"Period":["Perode"],"Comma":["Komma"],"Change type of %d block":["Ændre type af %d blok","Ændre type af %d blokke"],"Current":["Nuværende"],"After Conversion":["Efter konvertering"],"Change alignment":[],"Change text alignment":[],"%d block":["%d blok","%d blokke"],"Forward-slash":["Skråstreg"],"No archives to show.":["Ingen arkiver at vise"],"This file is empty.":["Denne fil er tom."],"Sorry, this file type is not supported here.":["Beklager, filtypen er ikke understøttet her."],"Manage all reusable blocks":[],"Title":["Titel"],"Fullscreen mode":[],"Beautiful landscape":["Smukt landskab"],"Close panel":["Luk panelet"],"Convert to Classic Block":["Konverter til klassisk blok"],"Remove Poster Image":["Fjern plakat billede"],"Select Poster Image":["Vælg plakat billede"],"Poster Image":["Plakat billede"],"This block is deprecated. Please use the Columns block instead.":["Denne blok er udfaset. Brug venligst kolonnerne i stedet."],"Text Columns (deprecated)":["Tekst kolonner (udfaset)"],"Create":["Opret"],"Row Count":["Antal rækker"],"Column Count":["Antan kolonner"],"This block is deprecated. Please use the Paragraph block instead.":["Denne blok er forældet. Brug venligst afsnit blokken i stedet for."],"Subheading (deprecated)":[],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":["Tilføj nøgleord"],"Apply the \"%1$s\" format.":["Anvend \"%1$s\" formatet."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":["Brug et indlæg format"],"Insert After":["Indsæt efter"],"Insert Before":["Indsæt før"],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Indsæt en ny blok før den valgte blok(ke)"],"Remove the selected block(s).":["Fjerne valgte blok(ke)."],"Duplicate the selected block(s).":["Duplikér valgte blok(ke)."],"Block shortcuts":["Blok genveje"],"Clear selection.":["Ryd valg."],"Select all text when typing. Press again to select all blocks.":["Vælg al tekst mens du skriver. Tryk igen for at vælge alle blokke."],"Selection shortcuts":["Udvalg af genveje"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":["Vis eller skjul indstillinger i sidebaren."],"Redo your last undo.":[],"Undo your last changes.":["Fortryd din sidste ændring."],"Save your changes.":["Gem dine ændringer"],"Global shortcuts":["Globale genveje"],"Remove a link.":["Fjern et link."],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Tak for, at du vil teste Gutenberg!"],"Help build Gutenberg":["Hjælp med at bygge Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["Wordpress-fællesskabet"],"Code is Poetry":["Kode er poeci"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["Visuel redigering"],"And Lists like this one of course :)":["Og lister som denne her selvfølgelig :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":["Gallerier"],"Images & Videos":["Billeder & videoer"],"Text & Headings":["Tekst & overskrifter"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":["Indsætningsværktøjet"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["Et billede siger mere end tusind ord"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Velkommen til Gutenberg-editoren"],"block name\u0004More":["Flere"],"button to expand options\u0004More":["Flere"],"Are you sure you want to unschedule this post?":["Er du sikker på du vil fjerne planen for dette indlæg?"],"Alt Text (Alternative Text)":["Alt tekst (Alternativ tekst)"],"Reusable Block":["Genbrugelig blok"],"Unique identifier for the object.":["Unik identifikator til objektet."],"Untitled Reusable Block":[],"Small":["lille"],"Reusable":["Genbrugelig"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Behold som HTML"],"Edit URL":["Rediger URL"],"Color settings":[],"The response is not a valid JSON response.":[],"Editor publish":["Editor udgivelse"],"Muted":[],"Video settings":[],"recent comments":["seneste kommentarer"],"Latest Comments":["Seneste kommentarer"],"Display Excerpt":["Vis uddrag"],"Display Date":["Vis dato"],"Display Avatar":["Vis avatar"],"Latest comments settings":[],"Number of Comments":["Antal kommentarer"],"Background Opacity":["Baggrunds-gennemsigtighed"],"Auto":["Auto"],"Preload":["Forudindlæs"],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":["Vis som rullemenu"],"Show Post Counts":[],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Support"],"No comments to show.":["Der er ingen kommentarer at vise."],"%1$s on %2$s":["%1$s på %2$s"],"Select Post":["Vælg indlæg"],"Select Week":["Vælg uge"],"Select Day":["Vælg dag"],"Select Month":["Vælg måned"],"Select Year":["Vælg år"],"Archives":["arkiv"],"Very dark gray":["meget mørk grå"],"Cyan bluish gray":[],"Very light gray":["meget lys grå"],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["Tilgængelige bloktyper"],"Transform To:":["Transformer til:"],"Remove Block":["Fjern blok"],"Open publish panel":["Åben udgivelsespanel"],"Dots":["Prikker"],"Wide Line":["Bred linje"],"Large":["Stor"],"Show download button":[],"Download button settings":[],"Link To":["Link til"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopier link"],"Write file name…":["Skriv filnavn..."],"File":["FIl"],"A single column within a columns block.":["En enkelt kolonne i en kolonne blok."],"Column":["Kolonne"],"Outline":[],"Loop":[],"Autoplay":[],"Playback Controls":[],"Close dialog":["Luk dialog"],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":["Deaktiver tips"],"Got it":["Forstået"],"See next tip":["Se næste tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":["Er du klar til at indsende til gennemsyn?"],"Replace image":["Erstat billede"],"Remove image":["Fjern billede"],"Error while uploading file %s to the media library.":["Fejl under overførelse af filen %s til mediebiblioteket."],"This file exceeds the maximum upload size for this site.":["Denne fil overskrider sidens maks. overførelsesstørrelsen."],"View the autosave":["Vis det autogemte"],"There is an autosave of this post that is more recent than the version below.":["Der er en autogem af dette indlæg som er nyere end versionen nedenfor."],"Autosaving":["Gemmer automatisk"],"Enter URL here…":[],"Pin to toolbar":["Fastgør til værktøjslinje"],"Unpin from toolbar":["Frigør fra værktøjslinje"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":["Tabel-celler med fast bredde"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":["Vis en liste over dine seneste indlæg"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":["Fejl ved indlæsning af blok: %s"],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":["Navn:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s af %3$s)"],"Remove item":["Fjern objekt"],"Color code: %s":["Farvekode: %s"],"Skip to the selected block":["Spring til den valgte blok"],"Publish…":["Udgiv..."],"Schedule…":["Planlæg..."],"Edit post permalink":[],"Show Block Settings":["Vis blokindstillinger"],"Hide Block Settings":["Skjul blokindstillinger"],"Block settings closed":["Blokindstillinger lukket"],"Close plugin":["Luk plugin"],"Editor settings":["Editor-indstillinger"],"Link settings":[],"Unlink":["Fjern link"],"Page break":["Sideskifte"],"pagination":["Sideinddeling"],"next page":["næste side"],"Image Size":["Billede størrelse"],"Height":["Højde"],"Width":["Bredde"],"Image Dimensions":["Billede-dimensioner"],"Thumbnails are not cropped.":["Miniaturer er ikke beskåret."],"Thumbnails are cropped to align.":["Miniaturer er beskåret så de passer ind."],"Media Library":["Mediabibliotek"],"Advanced":["Avanceret"],"Add item":["Tilføj element."],"Reset the template":["Nulstil skabelonen"],"Keep it as is":["Behold som det er"],"The content of your post doesn’t match the template assigned to your post type.":["Indholdet af dit indlæg svarer ikke til den skabelon, der er tildelt indlægstypen."],"Resetting the template may result in loss of content, do you want to continue?":["Nulstilling af skabelonen kan resultere i tab af indhold, vil du fortsætte?"],"Document Statistics":["Dokument-statistikker"],"is now scheduled. It will go live on":["er nu planlangt. Det vil offentliggøres den"],"Scheduled":["Planlagt"],"Scheduling…":["Planlægger..."],"Code editor selected":["Kode-editor valgt"],"Visual editor selected":["Visuel editor valgt"],"Plugins":["Plugins"],"Custom Size":["Brugertilpasset størrelse"],"Layout elements":[],"term\u0004%s removed":["%s fjernet"],"term\u0004%s added":["%s tilføjet"],"imperative verb\u0004Preview":["Forhåndsvis"],"Block deleted.":["Blok slettet."],"Block updated.":["Blok opdateret."],"Block created.":["Blok oprettet."],"Trashing failed":["Sletning mislykkedes"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Du har ændringer, der ikke er gemt. Hvis du fortsætter, vil de gå tabt."],"Document Outline":["Dokumentoversigt"],"Paragraphs":["Afsnit"],"Headings":["Overskrifter"],"Words":["Ord"],"Content structure":["Indholdsstruktur"],"Public":["Offentlig"],"Protected with a password you choose. Only those with the password can view this post.":["Beskyttet med adgangskode, du selv vælger. Kun dem med adgangskoden kan se dette indlæg."],"Password Protected":["Beskyttet med adgangskode"],"Only visible to site admins and editors.":["Kun synlig for webstedsadmin og redaktører."],"Private":["Privat"],"Visible to everyone.":["Synlig for alle."],"Post Visibility":["Indlægssynlighed"],"Would you like to privately publish this post now?":["Ønsker du at udgive dette indlæg som privat nu?"],"Use a secure password":["Brug en sikker adgangskode"],"Create password":["Opret adgangskode"],"Move to Trash":[],"Parent Term":["Overordnet term"],"Parent Category":["Overordnet kategori"],"Add new term":["Tilføj ny term"],"Add new category":["Tilføj ny kategori"],"Term":["Term"],"Tag":["Nøgleord"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Er du sikker på, at du vil annullere udgivelsen af dette indlæg?"],"Immediately":["Øjeblikkeligt"],"Save Draft":["Gem udkast"],"Saving":["Gemmer"],"Publish:":["Udgiv:"],"Visibility:":["Synlighed:"],"Are you ready to publish?":["Er du klar til at udgive?"],"Copy Link":["Kopier link"],"What’s next?":["Hvad så nu?"],"is now live.":["er nu live."],"Published":["Udgivet"],"Schedule":["Planlæg"],"Update":["Opdater"],"Submit for Review":["Indsend til gennemsyn"],"Updating…":["Opdaterer..."],"Publishing…":["Udgiver..."],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalink:"],"Pending review":[],"%d Revision":["%d version","%d versioner"],"Suggestion:":["Anbefaling:"],"Post Format":["Indlægsformat"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Relateret"],"Featured image":["Udvalgt billede"],"Set featured image":[],"Learn more about manual excerpts":["Lær mere om manuelle uddrag"],"Write an excerpt (optional)":["Skriv et uddrag (valgfri)"],"Allow comments":[],"Template:":["Skabelon:"],"no parent":["ingen overordnet"],"no title":["ingen titel"],"Order":["Rækkefølge"],"No blocks found.":["Ingen blokke fundet."],"%d result found.":["%d resultat fundet","%d resultater fundet"],"Saved":["Gemt"],"Embeds":["Indlejringer"],"Blocks":["Blokke"],"Search for a block":["Søg efter en blok"],"Add block":["Tilføj blok"],"Copy Error":["Kopieringsfejl"],"Copy Post Text":["Kopier indlægstekst"],"Attempt Recovery":["Forsøg gendannelse"],"The editor has encountered an unexpected error.":["Editoren er stødt på en uventet fejl."],"Undo":["Fortryd"],"Redo":["Gentag"],"(Multiple H1 headings are not recommended)":["(Flere H1-overskrifter frarådes)"],"(Your theme may already use a H1 for the post title)":["(Dit tema bruger muligvis allerede en H1-overskrift til indlæggets titel)"],"(Incorrect heading level)":["(Forkert overskriftsniveau)"],"(Empty heading)":["(Tom overskrift)"],"Block Styles":["Bloktyper"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Er du sikker på du vil slette denne delte blok?\n\nDen bliver fjernet permanent fra alle indlæg og sider, der bruger den."],"Convert to Regular Block":["Konverter til normal blok"],"More options":["Flere muligheder"],"Edit visually":["Rediger visuelt"],"Duplicate":["Duplikér"],"Blocks cannot be moved down as they are already at the bottom":["Blokkene kan ikke flyttes ned, da de allerede er nederst"],"Blocks cannot be moved up as they are already at the top":["Blokkene kan ikke flyttes op, da de allerede er øverst"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Blokken \"%s\" er den eneste blok, og den kan derfor ikke flyttes"],"Edit as HTML":["Rediger som HTML"],"Convert to Blocks":["Konverter til blokke"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Denne blok er stødt på en fejl og kan ikke forhåndsvises."],"No block selected.":["Ingen blok valgt."],"Transform into:":["Transformer til:"],"Remove":["Fjern"],"Find original":["Find original"],"Copy all content":[],"Copied!":["Kopieret!"],"Additional settings are now available in the Editor block settings sidebar":["Flere indstillinger er nu tilgængelige i editorens sidebar, avancerede indstillinger"],"Visibility":["Synlighed"],"Status & visibility":[],"Page attributes":[],"Block":["Blok","%d blokke"],"Document":["Dokument"],"Close settings":["Luk indstillinger"],"Editor content":["Editor-indhold"],"Tools":["Værktøjer"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor-værktøjslinje"],"Settings":["Indstillinger"],"Reset":["Nulstil"],"Dismiss this notice":["Afvis denne meddelelse"],"Item removed.":["Element fjernet."],"Item added.":["Element tilføjet."],"Drop files to upload":["Træk filer hertil for at uploade"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Der opstod en ukendt fejl."],"No results.":["Ingen resultater."],"%d result found, use up and down arrow keys to navigate.":["%d resultat fundet, brug piletasterne op og ned for at navigere.","%d resultater fundet, brug piletasterne op og ned for at navigere."],"(no title)":["(ingen titel)"],"URL":["Webadresse"],"Submit":["Indsend"],"Close":["Luk"],"Insert link":[],"Edit link":[],"Link":["Link"],"Strikethrough":["Gennemstreg"],"Italic":["Kursiv"],"Bold":["Fed"],"Remove link":[],"Number of items":["Antal elementer"],"All":["Alle"],"Category":["Kategori"],"Z → A":["Å \t A"],"A → Z":["A \t Å"],"Oldest to Newest":["Ældste til nyeste"],"Newest to Oldest":["Nyeste til ældste"],"Order by":["Sorter efter"],"Select":["Vælg"],"Select or Upload Media":["Vælg eller upload medier"],"Video":["Video"],"Write…":["Skriv..."],"poetry":["poesi"],"Verse":["Vers"],"New Column":["Ny kolonne"],"Delete Column":["Slet kolonne"],"Add Column After":["Tilføj kolonne efter"],"Add Column Before":["Tilføj kolonne før"],"Delete Row":["Slet række"],"Add Row After":["Tilføj række efter"],"Add Row Before":["Tilføj række før"],"Edit table":[],"Table":["Tabel"],"Write subheading…":["Skriv sammendrag..."],"Write shortcode here…":["Skriv kortkode her..."],"Shortcode":["Kortkode"],"divider":["splitter"],"horizontal-line":["vandret linje"],"Separator":["Separator"],"Quote":["Citat"],"Write citation…":["Skriv citat..."],"Write quote…":["Skriv citat..."],"Pullquote":["Fremhævet citat"],"Write preformatted text…":["Skriv forudformateret tekst..."],"Preformatted":["Forudformateret"],"text":["tekst"],"Paragraph":["Afsnit"],"Font Size":["Skriftstørrelse"],"Drop Cap":["Stort begyndelsesbogstav"],"Text settings":[],"Read more":["Læs mere"],"Write list…":["Skriv liste..."],"numbered list":["nummeret liste"],"ordered list":["ordnet liste"],"bullet list":["punktliste"],"Indent list item":["Indryk liste-element"],"Outdent list item":["Udryk liste-element"],"Convert to ordered list":["Konverter til ordnet liste"],"Convert to unordered list":["Konverter til uordnet liste"],"List":["Liste"],"recent posts":["seneste indlæg"],"No posts found.":["Ingen indlæg fundet."],"Latest Posts":["Seneste indlæg"],"Display post date":["Vis indlægsdato"],"Grid view":[],"List view":[],"photo":["foto"],"Image settings":[],"Image":["Billede"],"Preview":["Forhåndsvis"],"embed":["indlejre"],"Custom HTML":["Tilpasset HTML"],"subtitle":["undertitel"],"title":["titel"],"Heading":["Overskrift"],"Write heading…":["Skriv overskrift..."],"Heading %d":["Overskrift %s"],"Level":["Niveau"],"Heading settings":[],"photos":["fotos"],"images":["billeder"],"None":["Ingen"],"Media File":["Mediafil"],"Attachment Page":["Vedhæftnings side"],"Link to ":[],"Crop Images":["Klip billeder"],"Gallery settings":[],"Gallery":["Galleri"],"Classic":["Klassisk"],"video":["video"],"audio":["lyd"],"music":["musik"],"image":["billede"],"blog":["blog"],"post":["indlæg"],"Embedded content from %s":["Indlejret indhold fra %s"],"Enter URL to embed here…":["Indtast webadresse der skal indlejres her..."],"%s URL":["%s URL"],"Embedding…":["Indlejrer..."],"Write title…":["Skriv titel..."],"Fixed Background":["Fastgjort baggrund"],"Edit image":["Rediger billede"],"Columns":["Kolonner"],"Experiments":[],"Code":["Kode"],"Write code…":["Skriv kode..."],"Categories":["Kategorier"],"Show Hierarchy":["Vis hieraki"],"Show post counts":["Vis antal indlæg"],"Categories settings":[],"Add text…":["Tilføj tekst..."],"Button":["Knap"],"Apply":["Anvend"],"Text Color":["Tekstfarve"],"Background Color":["Baggrundsfarve"],"Block has been deleted or is unavailable.":["Blokken er slettet eller ikke tilgængelig."],"Reusable blocks":[],"Cancel":["Annuller"],"Edit":["Rediger"],"Write caption…":["Skriv billedtekst..."],"Use URL":["Brug webadresse"],"Audio":["Lyd"],"Upload":["Upload"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML-anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Denne farvekombination kan være besværlig for folk at læse. Prøv at bruge en lysere baggrundsfarve og/eller en mørkere tekstfarve."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Denne farvekombination kan være besværlig for folk at læse. Prøv at bruge en mørkere baggrundsfarve og/eller en lysere tekstfarve."],"Clear":["Ryd"],"Custom color picker":["Tilpasset farvevælger"],"Color: %s":["Farve: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formattering"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Bogtrykkeri siden 1440. Dette er udviklerplugin'et for den nye indbyggede blok-editor i kernen."],"Add title":["Tilføj overskrift"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Forfatter"],"Slug":["Slug"],"Discussion":["Diskussion"],"Custom fields":[],"Excerpt":["Uddrag"],"Publish":["Udgiv"],"Metadata":["Metadata"],"Save":["Gem"],"Documentation":["Dokumentation"],"Select Category":["Vælg kategori"],"(Untitled)":["(Uden titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s siden"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_de.json b/bundle/android/raw/i18ncache_data_de.json
new file mode 100644
index 0000000000..a4bd637b04
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_de.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Untermenü-Symbol für Elemente der obersten Ebene anzeigen"],"Display settings":["Anzeigeeinstellungen"],"Choose variation":["Variante wählen"],"Angle":["Winkel"],"%s Block":["%s Block"],"%1$s Block. %2$s":["%1$s Block. %2$s"],"%s Block. Column %d":["%s Block. Spalte %d"],"%1$s Block. Column %2$d. %3$s":["%1$s Block. Spalte %2$d. %3$s"],"%s Block. Row %d":["%s Block. Reihe %d"],"%1$s Block. Row %2$d. %3$s":["%1$s Block. Reihe %2$d. %3$s"],"Post Excerpt":["Beitragsauszug"],"Post Date":["Beitragsdatum"],"No Date":["Kein Datum"],"Post Author":["Autor"],"Choose":["Wähle"],"twentytwenty":["twentytwenty"],"Theme":["Theme"],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":["Fehler beim Hinzufügen des Templates."],"Footer label":["Fußzeile"],"Header label":["Kopfzeile"],"Unsupported":["Nicht unterstützt"],"The description will be displayed in the menu if the current theme supports it.":["Die Beschreibung wird im Menü angezeigt, sofern das benutzte Theme das unterstützt."],"Level %1$s. %2$s":["Ebene %1$s. %2$s"],"Level %s. Empty.":["Ebene %s. Leer."],"Empty":["Leer"],"Search results for %s":["Suchergebnisse für %s"],"Recently updated":["Kürzlich aktualisiert"],"Multiple selected blocks":["Mehrere ausgewählte Blöcke"],"By %s":["Von %s"],"Inspector":["Inspektor"],"Site editor advanced settings.":["Website-Editor erweiterte Einstellungen."],"(beta)":["(Beta)"],"Site Editor":["Website-Editor"],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":["Beschreibe kurz den Link um Screenreader-Benutzern zu helfen."],"Link Label":["Link-Label"],"%s label":["%s Label"],"poem":["Gedicht"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":["Vollständiger Beitrag"],"Show:":["Anzeigen:"],"Create from all top-level pages":["Aus allen übergeordneten Seiten erstellen"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Besucher mit einer Gruppe von Button-Links zum handeln auffordern."],"Buttons":["Buttons"],"Background":["Hintergrund"],"Background & Text Color":["Hintergrund & Textfarbe"],"Images Size":["Bildergröße"],"Remove multiple selected blocks.":["Mehrere ausgewählte Blöcke entfernen."],"(%s: gradient %s)":["(%s: Verlauf %s)"],"(%s: color %s)":["(%s: Farbe %s)"],"(Gradient: %s)":["(Verlauf: %s)"],"(Color: %s)":["(Farbe: %s)"],"Here's a detailed guide.":["Hier ist eine detaillierte Anleitung."],"New to the Block Editor? Want to learn more about using it? ":["Neu im Block-Editor? Willst du mehr über die Bedienung erfahren? "],"Learn how to use the Block Editor":["Lerne, wie du den Block-Editor benutzen kannst"],"Help":["Hilfe"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s Block-Icon"],"Submit for Review…":["Zur Überprüfung einreichen..."],"Update…":["Aktualisieren…"],"Select items to save.":["Elemente zum Speichern auswählen."],"What do you want to save?":["Was möchtest du speichern?"],"Untitled":["Ohne Titel"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["Der Block-Editor enthält experimentelle Funktionen, die bereits während der Entwicklung nutzbar sind. Wähle die Funktionen aus, die du aktivieren möchtest. Diese Funktionen werden sich wahrscheinlich ändern, verwende sie daher nicht auf produktiven Seiten."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Vollständige Bearbeitung der Website aktivieren (Warnung: dies wird dein Theme ersetzen und möglicherweise irreversible Änderungen an deiner Website verursachen. Wir empfehlen, dies nur in einer Entwicklungsumgebung zu verwenden)."],"Site Editor (beta)":["Website-Editor (Beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["Du bist wahrscheinlich offline."],"Justify items right":["Elemente rechts ausrichten"],"Justify items center":["Elemente zentriert ausrichten"],"Justify items left":["Elemente links ausrichten"],"Change items justification":["Ausrichtung der Elemente ändern"],"The media file has been replaced":["Die Mediendatei wurde ersetzt."],"Replace":["Ersetzen"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Du befindest dich im Bearbeitungsmodus. Um zum Navigationsmodus zurückzukehren, drück Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Du befindest dich derzeit im Navigationsmodus. Navigiere zwischen Blöcke mit der Tabulatortaste. Um den Navigationsmodus zu verlassen und den ausgewählten Block zu bearbeiten, drücke die Eingabetaste."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Benutze deine linke oder rechte Pfeiltaste oder Drag-and-drop mit der Maus, um die Verlaufsposition zu ändern. Drücke den Button, um die Farbe zu ändern oder den Kontrollpunkt zu entfernen."],"Gradient control point at position %1$s with color code %2$s.":["Verlaufskontrollpunkt an Position %1$s mit Farbcode %2$s."],"Preset Size":["Voreingestellte Größe"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Werkzeuge bieten verschiedene Interaktionen für die Blockauswahl und -bearbeitung. Um auszuwählen, drücke Escape, um zur Bearbeitung zurückzukehren, drücke Enter."],"Open Media Library":["Mediathek öffnen"],"Next":["Weiter"],"Previous":["Zurück"],"Finish":["Fertig"],"Page %1$d of %2$d":["Seite %1$d von %2$d"],"Guide controls":["Guide-Bedienelemente"],"Remove Control Point":["Kontrollpunkt entfernen"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Jeder Block wird mit einem eigenen Set von Bedienelementen geliefert, um Dinge wie Farbe, Breite und Ausrichtung zu ändern. Diese werden automatisch ein- und ausgeblendet, wenn du einen Block ausgewählt hast."],"Make each block your own":["Mache jeden Block zu deinem eigenen."],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["Im WordPress-Editor wird jeder Absatz, jedes Bild oder Video als eigener \"Block\" des Inhalts dargestellt."],"ADD MEDIA":["MEDIEN HINZUFÜGEN"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Alle dir zur Verfügung stehenden Blöcke befinden sich in der Blockbibliothek. Du findest sie überall dort, wo du das Symbol siehst."],"Get to know the Block Library":["Lerne die Blockbibliothek kennen"],"Welcome Guide":["Willkommens-Guide"],"Enable page templates":["Seiten-Templates aktivieren"],"Page Templates":["Seiten-Templates"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":["Willkommen im Block-Editor"],"Get started":["Jetzt starten"],"inserter":["inserter"],"Post Title":["Beitragstitel"],"Add nofollow to link":["Nofollow zum Link hinzufügen"],"Add submenu":[],"Add link…":["Link hinzufügen..."],"Dark":["Dunkel"],"Light":["Hell"],"recording":["Aufnehmen"],"podcast":["Podcast"],"sound":["Sound"],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Das GEDICHT - nicht\n\tjeder beherrscht die Dichterkunst,\nauch wenn er meint er wär' gescheit.\nDie Muse wählt sich selbst die Gunst,\nzu der sie kommt - hereingeschneit.\n WordPress? Bist du so weit ..."],"Navigation":["Navigation"],"Loading Navigation…":["Lade Navigation..."],"Navigation Structure":["Navigations-Struktur"],"Create empty":["Leer erstellen"],"Create a Navigation from all existing pages, or create an empty one.":["Erstelle eine Navigation aus allen vorhandenen Seiten oder erstelle eine leere."],"Navigation Link":["Navigations-Link"],"(Note: many devices and browsers do not display this text.)":["(Hinweis: Viele Geräte und Browser zeigen diesen Text nicht an.)"],"Describe the role of this image on the page.":["Beschreibe die Bedeutung dieses Bildes auf der Seite."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Wechsel zwischen der Verwendung desselben Werts für alle Bildschirmgrößen oder der Verwendung eines einheitlichen Werts pro Bildschirmgröße."],"Use the same %s on all screensizes.":["Verwende für alle Bildschirmgrößen die gleichen %s."],"Large screens":["Große Bildschirme"],"Medium screens":["Mittlere Bildschirme"],"Small screens":["Kleine Bildschirme"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Steuert die %1$s Eigenschaft für %2$s Ansichten."],"Currently selected":["Aktuell ausgewählt"],"Search or type url":["Suchen oder URL eingeben"],"Press ENTER to add this link":["Drücke ENTER, um diesen Link hinzuzufügen"],"Currently selected link settings":["Aktuell ausgewählte Link-Einstellungen"],"Generic label for block inserter button\u0004Add block":["Block hinzufügen"],"directly add the only allowed block\u0004Add %s":["%s hinzufügen"],"%s block added":["%s Block hinzugefügt"],"Move %s":["Verschiebe %s"],"Extra Large":["Extra groß "],"Block breadcrumb":["Block-Breadcrumb"],"Editor footer":["Footer-Editor"],"Site Title":["Website-Titel"],"Open Colors Selector":["Farbauswahl öffnen"],"Templates list":["Templates-Liste"],"Templates list navigation":["Templates-Liste Navigation"],"Filter templates list":["Template-Liste filtern"],"Uploaded to this template":["Zu diesem Template hochgeladen"],"Insert into template":["In das Template einfügen"],"Template archives":["Template-Archiv"],"No templates found in Trash.":["Kein Template im Papierkorb gefunden."],"No templates found.":["Kein Template gefunden."],"Parent Template:":["Eltern Template:"],"Search Templates":["Template suchen"],"All Templates":["Alle Templates"],"View Template":["Template anzeigen"],"Edit Template":["Template bearbeiten"],"New Template":["Neues Template"],"Add New Template":["Neues Template hinzufügen"],"Template\u0004Add New":["Hinzufügen"],"Admin Menu text\u0004Templates":["Templates"],"Template":["Template"],"No matching template found":["Kein passendes Template gefunden"],"Gradient: %s":["Farbverlauf: %s"],"Gradient code: %s":["Farbverlaufs-Code: %s"],"All content copied.":["Alle Inhalte wurden kopiert."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Das Hochladen von Medien ist fehlgeschlagen. Wenn es sich um ein Foto oder ein großes Bild handelt, verkleinere es bitte und versuche es erneut."],"Gradient":["Farbverlauf"],"Gradient Presets":["Farbverlaufs-Vorgaben"],"No Preview Available.":["Vorschau ist nicht verfügbar."],"Midnight":["Mitternacht"],"Electric grass":["Elektrisches Gras"],"Pale ocean":["Blasser Ozean"],"Luminous dusk":["Leuchtende Abenddämmerung"],"Blush bordeaux":["Bordeauxrot"],"Blush light purple":[],"Cool to warm spectrum":["Kühles bis warmes Spektrum"],"Very light gray to cyan bluish gray":["Sehr hellgrau bis blaugrau"],"Luminous vivid orange to vivid red":["Leuchtend lebhaftes Orange bis lebhaftes Rot"],"Luminous vivid amber to luminous vivid orange":["Leuchtend lebhafter Bernstein bis leuchtend lebhaftes Orange"],"Light green cyan to vivid green cyan":["Hellgrünes Cyan bis leuchtend grünes Cyan"],"Vivid cyan blue to vivid purple":["Kräftiges Cyanblau bis kräftiges Lila"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6. Dezember 2018"],"February 21, 2019":["21. Februar 2019"],"May 7, 2019":["7. Mai 2019"],"Release Date":["Veröffentlichungsdatum"],"Jazz Musician":["Jazzmusiker"],"Version":["Version"],"Six.":["Sechs."],"Five.":["Fünf."],"Four.":["Vier."],"Three.":["Drei."],"Two.":["Zwei."],"One.":["Eins."],"One of the hardest things to do in technology is disrupt yourself.":["Eines der schlimmsten Dinge, die man in der Technik tun kann, ist, sich selbst zu stören."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Der Zaunkönig
lernt sein Leben
ohne Gnade."],"Welcome to the wonderful world of blocks…":["Willkommen in der wunderbaren Welt der Blöcke…"],"Snow Patrol":["Schneepatrouille"],"Dimensions":["Größe"],"Minimum height in pixels":["Minimale Höhe in Pixeln"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to Action"],"In quoting others, we cite ourselves.":["Indem wir andere zitieren, zitieren wir uns selbst."],"cite":["Zitat"],"Mont Blanc appears—still, snowy, and serene.":["Der Mont Blanc erscheint - still, schneereich und ruhig."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["An einem Orte der Mancha, an dessen Namen ich mich nicht erinnern will, lebte vor nicht langer Zeit ein Hidalgo, einer von jenen, die einen Speer im Lanzengestell, eine alte Tartsche [ein alter Schild], einen hageren Gaul und einen Windhund zum Jagen haben."],"Block navigation":["Block-Navigation"],"Full Site Editing":["Full Site Editing"],"Templates to include in your theme.":[],"Templates":["Templates"],"Inserter help panel":["Inserter-Hilfe-Bereich"],"Pre-publish checks":["Prüfungen vor der Veröffentlichung"],"Please contact your site administrator to install new blocks.":["Bitte wende dich an deinen Website-Administrator, damit neue Blöcke installiert werden können."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Keine Blöcke in deiner Bibliothek gefunden. Bitte wende dich an deinen Website-Administrator, um neue Blöcke zu installieren."],"No blocks found in your library.":["Keine Blöcke in deiner Bibliothek gefunden."],"No blocks found in your library. These blocks can be downloaded and installed:":["Keine Blöcke in deiner Bibliothek gefunden. Diese Blöcke können heruntergeladen und installiert werden:"],"No blocks found in your library. We did find %d block available for download.":["Keine Blöcke in deiner Bibliothek gefunden. Wir haben %d Block gefunden, der zum Download zur Verfügung steht.","Keine Blöcke in deiner Bibliothek gefunden. Wir haben %d Blöcke gefunden, die zum Download zur Verfügung stehen."],"Block previews can’t load.":["Blockvorschauen können nicht geladen werden."],"Retry":["Erneut versuchen"],"Block previews can't install.":["Blockvorschauen können nicht installiert werden."],"Updated %s":["Aktualisiert am %s"],"%d active installation":["%d aktive Installation","%d aktive Installationen"],"This author has %d block, with an average rating of %d.":["Dieser Autor hat %d Block, mit einer durchschnittlichen Bewertung von %d.","Dieser Autor hat %d Blöcke, mit einer durchschnittlichen Bewertung von %d."],"Authored by %s":["Erstellt von %s"],"%d total rating":["%d Gesamtbewertung","%d Gesamtbewertungen"],"%s out of 5 stars":["%s von 5 Sternen"],"Enter Address":["Adresse eingeben"],"Pill Shape":["Pillenform"],"Logos Only":["Nur Logos"],"Create a block of links to your social media or external sites":["Erstelle einen Block mit Links zu deinen Social Media oder externen Websites."],"Social links":["Social-Links"],"Open block navigator":["Blocknavigator öffnen"],"Attachment page":["Anhang-Seite"],"Fill":["Füllen"],"Link rel":["Link rel"],"Border Radius":["Rahmen-Radius"],"Write gallery caption…":["Schreibe Galerie Untertitel..."],"Content blocks":["Inhalts-Blöcke"],"Restore the backup":["Backup wiederherstellen"],"The backup of this post in your browser is different from the version below.":["Das Backup dieses Beitrags in deinem Browser unterscheidet sich von der untenstehenden Version."],"Enable block directory search":["Block-Verzeichnis Suche aktivieren"],"Block Directory":["Block-Verzeichnis"],"Unable to connect to the filesystem. Please confirm your credentials.":["Es ist nicht möglich, eine Verbindung mit dem Dateisystem herzustellen. Bitte überprüfe deine Zugangsdaten."],"Sorry, you are not allowed to install blocks.":["Du bist leider nicht berechtigt, Blocks zu installieren."],"%1$d block is disabled.":["%1$d Block ist deaktiviert.","%1$d Blöcke sind deaktiviert."],"Reverse List Numbering":["Nummerierung der Liste umkehren"],"Start Value":["Startwert"],"Ordered list settings":["Einstellungen für geordnete Listen"],"Clear Media":["Medien entfernen"],"Default Style":["Standard-Stil"],"Not set":["Nicht festgelegt"],"While writing, you can press / to quickly insert new blocks.":["Während des Schreibens kannst du / drücken, um schnell neue Blöcke einzufügen."],"Browse through the library to learn more about what each block does.":["Durchsuche die Bibliothek, um mehr darüber zu erfahren, was die einzelnen Blöcke können."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Für alle Arten von Inhalten stehen Blöcke zur Verfügung: Text einfügen, Überschriften, Bilder, Listen, Videos, Tabellen und vieles mehr."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Willkommen in der wunderbaren Welt der Blöcke! Blöcke sind die Grundlage für alle Inhalte innerhalb des Editors."],"Version of the content block format used by the object.":["Version des Inhalt-Block-Formates, das von dem Objekt genutzt wird."],"HTML content for the object, transformed for display.":["HTML-Inhalt für das Objekt, transformiert für die Anzeige."],"Content for the object, as it exists in the database.":["Inhalt für das Objekt, wie er in der Datenbank vorliegt."],"The content for the object.":["Der Inhalt des Objekts."],"Change column alignment":["Spaltenausrichtung ändern"],"Align Column Right":["Spalte rechts ausrichten"],"Align Column Center":["Spalte mittig ausrichten"],"Align Column Left":["Spalte links ausrichten"],"Color":["Farbe"],"Vivid purple":["Kräftiges Violett"],"Disable & Reload":["Deaktivieren & neu laden"],"Enable & Reload":["Aktivieren & neu laden"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Für diese Änderung ist ein Neuladen der Seite erforderlich. Vergewissere dich, dass dein Inhalt gespeichert ist, bevor du ihn neu lädst."],"Display these keyboard shortcuts.":["Zeige diese Tastenkombinationen."],"Experiments Settings":["Einstellungen für Experimente"],"Enable Widgets screen and Legacy Widgets block":["Widgets-Bildschirm und Legacy Widget-Block aktivieren"],"Experimental settings":["Experimentelle Einstellungen"],"Block name name must be a string.":["Der Name des Blocknamens muss eine Zeichenfolge sein."],"Custom":["Individuell"],"Draft":["Entwurf"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Der Block \"%1$s\" enthält keinen Style mit dem Namen \"%2$s.\"."],"Learn more about anchors":["Mehr über Anker erfahren"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Gib ein oder zwei Wörter - ohne Leerzeichen - ein, um eine eindeutige Webadresse nur für diese Überschrift zu erstellen, die als \"Anker\" bezeichnet wird. Dann kannst du direkt zu diesem Abschnitt deiner Seite verlinken."],"Widget Blocks (Experimental)":["Widget Blöcke (Experimentell)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Lade eine Videodatei hoch, wähle eine aus deiner Mediathek oder füge eine mit einer URL hinzu."],"Upload an image file, pick one from your media library, or add one with a URL.":["Lade eine Bilddatei hoch, wähle eine aus deiner Mediathek oder füge eine mit einer URL hinzu."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Lade eine Audiodatei hoch, wähle eine aus deiner Mediathek oder füge eine mit einer URL hinzu."],"Upload a media file or pick one from your media library.":["Lade eine Mediendatei hoch, wähle eine aus deiner Mediathek oder füge eine mit einer URL hinzu."],"Skip":["Überspringen"],"Select a variation to start with.":["Wähle eine Variante, mit der du beginnen möchtest."],"Add a page, link, or another item to your navigation.":["Eine Seite, Link oder ein anderes Element zu deinem Navigation hinzufügen."],"What's this?":["Was ist das?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Suchmaschinen davon abhalten, diesem Link zu folgen."],"Provide more context about where the link goes.":["Mehr Hintergrundinformationen darüber, wohin der Link führt."],"Title Attribute":["HTML-Attribut title"],"SEO settings":["SEO-Einstellungen"],"Description":["Beschreibung"],"Open in new tab":["In neuem Tab öffnen"],"links":["Links"],"navigation":["Navigation"],"menu":["Menü"],"Add a navigation block to your site.":["Eine Navigation zu deiner Website hinzufügen."],"Upload a file or pick one from your media library.":["Lade eine Datei hoch oder wähle eine aus deiner Mediathek."],"Learn more about embeds":["Mehr über Embeds erfahren"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Füge einen Link zu dem Inhalt ein, den du auf deiner Website anzeigen möchtest."],"Upload an image or video file, or pick one from your media library.":["Lade eine Bild- oder Videodatei hoch oder wähle eine aus deiner Mediathek."],"Three columns; wide center column":["Drei Spalten; breite Mittelspalte"],"Three columns; equal split":["Drei Spalten; gleiche Breite"],"Two columns; two-thirds, one-third split":["Zwei Spalten; zwei Drittel, ein Drittel geteilt"],"Two columns; one-third, two-thirds split":["Zwei Spalten; ein Drittel, zwei Drittel geteilt"],"Two columns; equal split":["Zwei Spalten; gleiche Breite"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Deine Website hat keine %s, also gibt es hier im Moment nichts zu sehen."],"More tools & options":["Mehr Werkzeuge und Optionen"],"Create Table":["Tabelle erstellen"],"Insert a table for sharing data.":["Füge eine Tabelle ein, um Daten zu teilen."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Gruppierung aufheben"],"verb\u0004Group":["Gruppieren"],"Separate with commas or the Enter key.":["Trenne sie durch Kommas oder die Eingabetaste."],"Separate with commas, spaces, or the Enter key.":["Trenne sie durch Kommas, Leerzeichen oder die Eingabetaste."],"Separate multiple classes with spaces.":["Trenne mehrere Klassen durch Leerzeichen."],"Move image forward":["Bild weiter verschieben"],"Move image backward":["Bild zurück verschieben"],"Sorry, you are not allowed to edit sidebars.":["Du bist leider nicht berechtigt, Seitenleisten zu bearbeiten."],"Sorry, you are not allowed to read sidebars.":["Du bist leider nicht berechtigt, Seitenleisten zu sehen."],"The sidebar’s ID.":["Die ID der Seitenleiste."],"Displays a set of blocks":["Zeigt eine Gruppe von Blöcken an"],"Blocks Area":["Blöcke-Bereich "],"Block rendered as empty.":["Block wird als leer dargestellt."],"Inline Code":["Inline-Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Hinweis: Das automatische Wiedergeben von Videos kann bei einigen Besuchern zu Problemen bei der Benutzerfreundlichkeit führen."],"Footer section":["Fußzeile"],"Header section":["Kopfzeile"],"Sorting and filtering":["Sortieren und Filtern"],"Post meta settings":["Beitrags-Meta Einstellungen"],"Post Content":["Beitragsinhalt\n"],"Post content settings":["Einstellungen für Beitragsinhalte"],"Percentage width":["Prozentuale Breite"],"Column settings":["Spalten-Einstellungen"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Hinweis: Die automatische Wiedergabe von Audio kann bei einigen Besuchern zu Problemen bei der Benutzerfreundlichkeit führen."],"Block area updated.":["Block-Bereich aktualisiert."],"Block area scheduled.":["Block-Bereich geplant."],"Block area published.":["Block-Bereich wurde veröffentlicht."],"Block areas list":["Block-Bereich Liste"],"Block areas list navigation":["Block-Bereich Listen-Navigation"],"Filter block areas list":["Block-Bereich Liste filtern"],"No block area found.":["Keinen Block-Bereich gefunden."],"Search Block Areas":["Block-Bereiche suchen"],"All Block Areas":["All Block-Bereiche"],"View Block Area":["Block-Bereiche anzeigen"],"Edit Block Area":["Block-Bereich bearbeiten"],"New Block Area":["Block-Bereich erstellen"],"Add New Block Area":["Neuen Block-Bereich hinzufügen"],"admin menu\u0004Block Areas":["Block-Bereiche"],"post type singular name\u0004Block Area (Experimental)":["Block-Bereich (Experimentell)"],"post type general name\u0004Block Area (Experimental)":["Block-Bereich (Experimentell)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimenteller individueller Inhaltstyp, der Block-Bereiche speichert, auf die von Themes zurückgegriffen werden kann."],"Widgets screen content":["Widgets-Bildschirminhalt"],"header":["Header"],"Widgets advanced settings":["Erweiterte Widgets-Einstellungen"],"(experimental)":["(experimentell)"],"Block Areas":["Block-Bereiche"],"Widgets screen top bar":["Obere Leiste des Widgets-Bildschirms"],"This color combination may be hard for people to read.":["Diese Farbkombination kann für Menschen schwer zu lesen sein."],"There is no poster image currently selected":["Es ist derzeit kein Vorschaubild ausgewählt."],"The current poster image url is %s":["Die aktuelle Vorschaubild URL lautet %s."],"section":["Abschnitt"],"row":["Reihe"],"wrapper":["wrapper"],"container":["Container"],"A block that groups other blocks.":["Ein Block, der andere Blöcke gruppiert."],"Group":["Gruppe"],"Crop image to fill entire column":["Bild zuschneiden, um die gesamte Spalte zu füllen."],"Play inline":["Inline abspielen"],"Leave empty if the image is purely decorative.":["Lasse das Feld leer, wenn das Bild nur dekorativ ist."],"Describe the purpose of the image":["Beschreibe den Zweck des Bildes"],"Add a block":["Block hinzufügen"],"Block vertical alignment setting label\u0004Change vertical alignment":["Vertikale Ausrichtung ändern"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertikal Unten ausrichten"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertikal mittig ausrichten"],"Replace Image":["Bild ersetzen"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertikal Oben ausrichten"],"Display a legacy widget.":["Zeigt ein Legacy-Widget an."],"Legacy Widget (Experimental)":["Legacy-Widget (Experimentell)"],"Change widget":["Widget wechseln"],"Legacy Widget":["Legacy-Widget"],"You don't have permissions to use widgets on this site.":["Du hast keine Berechtigung, Widgets auf dieser Webseite zu benutzen."],"Select a legacy widget to display:":["Wähle ein Legacy-Widget aus, das angezeigt werden soll:"],"There are no widgets available.":["Es sind keine Widgets verfügbar."],"Change block type or style":["Block-Typ oder -Stil ändern"],"keyboard key\u0004Space":["Leertaste"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Mehr Formatierungen"],"Search Terms":["Begriffe suchen"],"Exit the Editor":["Editor verlassen"],"Block Manager":["Block-Manager"],"Class name of the widget.":["Klassen-Name des Widgets."],"Sorry, you are not allowed to access widgets on this site.":["Du bist leider nicht berechtigt, auf Widgets dieser Website zuzugreifen."],"Widgets (beta)":["Widgets (Beta)"],"link":["Link"],"Embedded content from %s can't be previewed in the editor.":["Eingebettete Inhalte von %s können im Editor nicht in der Vorschau angezeigt werden."],"Custom Color":["Individuelle Farbe"],"Prompt visitors to take action with a button-style link.":["Fordere Besucher mit einem Link im Stil eines Buttons auf, aktiv zu werden."],"Stick to the top of the blog":["Oben im Blog halten"],"Read about permalinks":["Mehr über Permalinks lesen"],"The last part of the URL.":["Der letzte Teil der URL. "],"URL Slug":["URL Titelform"],"A cloud of your most used tags.":["Eine Wolke deiner am häufigsten verwendeten Schlagwörter."],"Tag Cloud":["Schlagwörter-Wolke"],"Taxonomy":["Taxonomie"],"Tag Cloud settings":["Tag-Cloud Einstellungen"],"- Select -":["- Auswählen -"],"Default":["Standard"],"find":["finden"],"Help visitors find your content.":["Hilf Besuchern, deine Inhalte zu finden."],"Search":["Suchen"],"Add button text…":["Button-Text hinzufügen..."],"Button text":["Button-Text"],"Optional placeholder…":["Optionaler Platzhalter..."],"Optional placeholder text":["Optionaler Platzhaltertext"],"Add label…":["Label hinzufügen..."],"Label text":["Label-Text"],"image %1$d of %2$d in gallery":["Bild %1$d von %2$d in der Galerie"],"archive":["Archiv"],"posts":["Beiträge"],"A calendar of your site’s posts.":["Ein Kalender der Beiträge deiner Website."],"Calendar":["Kalender"],"by":["von"],"An error has occurred, which probably means the feed is down. Try again later.":["Ein Fehler ist aufgetreten – der Feed funktioniert zur Zeit nicht. Versuche es später noch einmal."],"RSS Error:":["RSS Fehler:"],"block style\u0004Default":["Standard"],"Fullscreen mode deactivated":["Vollbildmodus deaktiviert"],"Fullscreen mode activated":["Vollbildmodus aktiviert"],"Spotlight mode deactivated":["Spotlight-Modus deaktiviert"],"Spotlight mode activated":["Spotlight-Modus aktiviert"],"Top toolbar deactivated":["Obere Werkzeugleiste aktiviert"],"Top toolbar activated":["Obere Werkzeugleiste deaktiviert"],"Back":["Zurück"],"Feature activated":["Funktion aktiviert"],"Feature deactivated":["Funktion deaktiviert"],"Vertical Pos.":["Vertikale Pos."],"Horizontal Pos.":["Horizontale Pos."],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Zeige Einträge von jedem RSS- oder Atom-Feed an."],"RSS":["RSS"],"Max number of words in excerpt":["Maximale Anzahl von Wörtern im Textauszug"],"Display excerpt":["Textauszug anzeigen"],"Display date":["Datum anzeigen"],"Display author":["Autor anzeigen"],"RSS settings":["RSS Einstellungen"],"Edit RSS URL":["RSS URL bearbeiten"],"Content before this block will be shown in the excerpt on your archives page.":["Inhalte vor diesem Block werden im Textauszug auf deiner Archivseite angezeigt."],"Hide the excerpt on the full content page":["Textauszug auf der gesamten Inhaltsseite ausblenden"],"The excerpt is visible.":["Der Textauszug ist sichtbar."],"The excerpt is hidden.":["Der Textauszug ist ausgeblendet."],"Sorry, this content could not be embedded.":["Leider konnte dieser Inhalt nicht eingebettet werden."],"Embed Amazon Kindle content.":["Amazon Kindle-Inhalt einbetten."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (früher Polldaddy) Inhalt einbetten."],"Focal Point Picker":["Fokuspunkt Auswahl"],"Underline":["Unterstreichen"],"Attempt Block Recovery":["Versuch der Blockwiederherstellung"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Inhalt..."],"button label\u0004Convert to link":["In Link umwandeln"],"button label\u0004Try again":["Nochmal versuchen"],"Editor tips":["Editor-Tipps"],"Block (selected)":["Block (ausgewählt)"],"Document (selected)":["Dokument (ausgewählt)"],"%d word":["%d Wort","%d Wörter"],"Top toolbar":["Obere Werkzeugleiste"],"Link Rel":["Link-Beziehung"],"Link CSS Class":["CSS-Klasse des Links"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Erstelle Inhalte und speichere sie für dich und andere Mitwirkende für die Wiederbenutzung auf deiner gesamten Website. Aktualisiere den Block und Änderungen werden überall angewendet, wo er benutzt wird."],"To edit the featured image, you need permission to upload media.":["Um das Beitragsbild zu bearbeiten, benötigst du die Berechtigung zum Hochladen von Medien."],"To edit this block, you need permission to upload media.":["Um diesen Block zu bearbeiten, benötigst du die Berechtigung zum Hochladen von Medien."],"(selected block)":["(ausgewählter Block)"],"Block tools":["Block-Werkzeuge"],"Permalink":["Permalink"],"This image has an empty alt attribute":["Dieses Bild hat ein leeres alt-Attribut."],"This image has an empty alt attribute; its file name is %s":["Dieses Bild hat ein leeres alt-Attribut; sein Dateiname ist %s."],"Block area reverted to draft.":["Block-Bereich auf Entwurf zurückgesetzt."],"Block area published privately.":["Block-Bereich privat veröffentlicht."],"No block areas found in Trash.":["Keinen Block-Bereich im Papierkorb gefunden."],"Block\u0004Add New":["Block hinzufügen"],"add new on admin bar\u0004Block Area":["Block-Bereich"],"Link inserted.":["Link eingefügt."],"Warning: the link has been inserted but may have errors. Please test it.":["Warnung: Der Link wurde eingefügt, könnte aber fehlerhaft sein. Bitte teste ihn."],"%s block selected.":["%s Block ausgewählt.","%s Blöcke ausgewählt."],"Thumbnail":["Vorschaubild"],"Full Size":["Vollständige Größe"],"Link selected.":["Link ausgewählt."],"Start writing with text or HTML":["Beginne mit dem Schreiben von Text oder HTML"],"Type text or HTML":["Schreib Text oder HTML"],"Block icon":["Block-Icon"],"Align text right":["Text rechts ausrichten"],"Align text center":["Text zentriert ausrichten"],"Align text left":["Text links ausrichten"],"Start writing or type / to choose a block":["Schreib etwas oder tippe / zur Blockauswahl"],"Empty block; start writing or type forward slash to choose a block":["Leerer Block; schreib los oder gib einen Schrägstrich ein, um einen Block auszuwählen"],"Paragraph block":["Absatz-Block"],"Page Break":["Seitenumbruch"],"Stack on mobile":["Auf Mobilgeräten stapeln"],"Annotation":["Anmerkung"],"Drag images, upload new ones or select files from your library.":["Ziehe Bilder hierher, lade neue hoch oder wähle Dateien aus deiner Mediathek aus."],"blocks\u0004Most used":["Meistgenutzt"],"imperative verb\u0004Resolve":["Lösen"],"font size name\u0004Huge":["Riesig"],"font size name\u0004Large":["Groß"],"font size name\u0004Medium":["Mittel"],"font size name\u0004Small":["Klein"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Eingabetaste"],"button label\u0004Import":["Importieren"],"button label\u0004Download":["Herunterladen"],"button label\u0004Embed":["Einbetten"],"block title\u0004Embed":["Einbetten"],"block title\u0004Classic":["Classic"],"block style\u0004Large":["Groß"],"block style\u0004Rounded":["Abgerundet"],"%s (opens in a new tab)":["%s (öffnet in neuem Tab)"],"Link edited.":["Link bearbeitet."],"Link removed.":["Link entfernt."],"media":["Medien"],"Double-check your settings before publishing.":["Prüfe deine Einstellungen sorgfältig vor dem Veröffentlichen."],"Generating preview…":["Vorschau wird erstellt …"],"Edit or update the image":["Das Bild bearbeiten oder aktualisieren"],"Media":["Medien"],"Navigate to the nearest toolbar.":["Zur nächsten Werkzeugleiste navigieren."],"Document tools":["Dokument-Werkzeuge"],"Document and block tools":["Dokument- und Block-Werkzeuge"],"Embed a video from your media library or upload a new one.":["Ein Video aus deiner Mediathek einbetten oder ein neues hochladen."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Füge Poesie ein. Benutze spezielle Abstandsformate. Oder zitiere Liedtexte."],"Add white space between blocks and customize its height.":["Weißraum zwischen den Blöcken hinzufügen und dessen Höhe anpassen."],"Insert additional custom elements with a WordPress shortcode.":["Zusätzliche individuelle Elemente über einen WordPress-Shortcode einfügen."],"Create a break between ideas or sections with a horizontal separator.":["Trenne deine Ideen oder Abschnitte mit einem horizontalen Trennelement."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Hebe Zitate visuell hervor. „Indem wir andere zitieren, zitieren wir uns selbst.“ — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Hebe ein Zitat deines Textes durch visuelle Elemente hervor."],"Start with the building block of all narrative.":["Starte mit dem Grundbaustein aller Erzählungen."],"Separate your content into a multi-page experience.":["Trenne deinen Inhalt und präsentiere ihn auf mehreren Seiten."],"Set media and words side-by-side for a richer layout.":["Setze Medien und Wörter nebeneinander für ein ansprechenderes Layout."],"Media & Text settings":["Medien- und Text-Einstellungen"],"Create a bulleted or numbered list.":["Eine gepunktete oder nummerierte Liste erstellen."],"Display a list of your most recent comments.":["Eine Liste deiner letzten Kommentare anzeigen."],"Insert an image to make a visual statement.":["Ein Bild einfügen, um einen visuellen Akzent zu setzen."],"Add custom HTML code and preview it as you edit.":["Individuellen HTML-Code hinzufügen, mit Voransicht während des Bearbeitens."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Führe neue Abschnitte ein und organisiere Inhalte, damit Besucher (und Suchmaschinen) die Struktur deiner Inhalte besser verstehen können."],"Display multiple images in a rich gallery.":["Zeige mehrere Bilder in einer ansprechenden Galerie an."],"Add a link to a downloadable file.":["Einen Link zu einer Datei zum Herunterladen hinzufügen."],"Embed videos, images, tweets, audio, and other content from external sources.":["Videos, Bilder, Tweets, Audios und andere Inhalte von externen Speicherorten einbetten."],"Resize for smaller devices":["Für kleinere Geräte skalieren"],"This embed may not preserve its aspect ratio when the browser is resized.":["Das Seitenverhältnis dieser Einbettung könnte verloren gehen, wenn die Anzeigegröße des Browsers verändert wird."],"This embed will preserve its aspect ratio when the browser is resized.":["Das Seitenverhältnis dieser Einbettung wird beibehalten, wenn die Anzeigegröße des Browsers verändert wird."],"Embed an Animoto video.":["Ein Animoto-Video einbetten."],"Embed a Vimeo video.":["Ein Vimeo-Video einbetten."],"Embed Flickr content.":["Flickr-Inhalt einbetten."],"Embed Spotify content.":["Spotify-Inhalt einbetten."],"Embed SoundCloud content.":["SoundCloud-Inhalt einbetten."],"Embed a WordPress post.":["Einen WordPress-Beitrag einbetten."],"Embed an Instagram post.":["Einen Instagram-Beitrag einbetten."],"Embed a Facebook post.":["Einen Facebook-Beitrag einbetten."],"Embed a WordPress.tv video.":["Ein WordPress.tv-Video einbetten."],"Embed a VideoPress video.":["Ein VideoPress-Video einbetten."],"Embed a Tumblr post.":["Einen Tumblr-Beitrag einbetten."],"Embed a TED video.":["Ein TED-Video einbetten."],"Embed Speaker Deck content.":["Speaker-Deck-Inhalt einbetten."],"Embed a YouTube video.":["Ein YouTube-Video einbetten."],"Embed SmugMug content.":["SmugMug-Inhalt einbetten."],"Embed Slideshare content.":["Slideshare-Inhalt einbetten."],"Embed Scribd content.":["Scribd-Inhalt einbetten."],"Embed Screencast content.":["Screencast-Inhalt einbetten."],"Embed ReverbNation content.":["ReverbNation-Inhalt einbetten."],"Embed a Reddit thread.":["Einen Reddit-Thread einbetten."],"Embed Polldaddy content.":["Polldaddy-Inhalt einbetten."],"Embed Mixcloud content.":["Mixcloud-Inhalt einbetten."],"Embed a tweet.":["Einen Tweet einbetten."],"Embed Meetup.com content.":["Meetup.com-Inhalt einbetten."],"Embed Kickstarter content.":["Kickstarter-Inhalt einbetten."],"Embed Issuu content.":["Issuu-Inhalt einbetten."],"Embed Imgur content.":["Imgur-Inhalt einbetten."],"Embed Hulu content.":["Hulu-Inhalt einbetten."],"Embed a Dailymotion video.":["Ein Dailymotion-Video einbetten."],"Embed CollegeHumor content.":["CollegeHumor-Inhalt einbetten."],"Embed Cloudup content.":["Cloudup-Inhalt einbetten."],"Add an image or video with a text overlay — great for headers.":["Ein Bild oder Video mit einem Text-Overlay einfügen - ideal für Header."],"Display code snippets that respect your spacing and tabs.":["Code-Schnipsel anzeigen, die deine Abstände und Tabulatoren beibehalten."],"Use the classic WordPress editor.":["Den klassischen WordPress-Editor verwenden."],"Display a list of all categories.":["Eine Liste aller Kategorien anzeigen."],"Embed a simple audio player.":["Einen einfachen Audio-Player einbetten."],"noun\u0004View":["Ansicht"],"editor button\u0004Left to right":["Links nach rechts"],"Save as Pending":["Als bevorstehend speichern"],"%s address":["%s-Adresse"],"Paste or type URL":["URL einfügen oder eingeben"],"Insert from URL":["Von URL einfügen"],"Block Navigator":["Block-Navigation"],"Styles":["Styles"],"Advanced panels":["Weitere Bedienfelder"],"Document panels":["Dokument-Bedienfelder"],"General":["Allgemein"],"Open the block navigation menu.":["Das Block-Navigationsmenü öffnen."],"Work without distraction":["Arbeiten ohne Ablenkung"],"Focus on one block at a time":["Fokussierung auf einen Block nach dem anderen."],"Access all block and document tools in a single place":["Zugang zu allen Blöcken und Dokument-Werkzeugen von einem Platz aus"],"Options":["Ansicht anpassen"],"(opens in a new tab)":["(öffnet in neuem Tab)"],"Minutes":["Minuten"],"Hours":["Öffnungszeiten"],"Time":["Zeit"],"Year":["Jahr"],"Day":["Tag"],"December":["Dezember"],"November":["November"],"October":["Oktober"],"September":["September"],"August":["August"],"July":["Juli"],"June":["Juni"],"May":["Mai"],"April":["April"],"March":["März"],"February":["Februar"],"January":["Januar"],"Month":["Monat"],"Date":["Datum"],"Go to the first (home) or last (end) day of a week.":["Gehe zum ersten (Start) oder letzten (Ende) Tag der Woche."],"Home/End":["Start/Ende"],"Home and End":["Start und Ende"],"Move backward (PgUp) or forward (PgDn) by one month.":["Zurück (Bild-auf) oder vorwärts (Bild-ab) bewegen um einen Monat."],"PgUp/PgDn":["Bild-auf/Bild-ab"],"Page Up and Page Down":["Bild-auf und Bild-ab"],"Move backward (up) or forward (down) by one week.":["Zurück (hoch) oder vorwärts (runter) bewegen um eine Woche."],"Up and Down Arrows":["Pfeile hoch und runter"],"Move backward (left) or forward (right) by one day.":["Zurück (links) oder vorwärts (rechts) bewegen um einen Tag."],"Left and Right Arrows":["Pfeile links und rechts"],"Select the date in focus.":["Datum im Fokus auswählen."],"Navigating with a keyboard":["Navigation mit einer Tastatur"],"Click the desired day to select it.":["Klicke den gewünschten Tag an, um ihn auszuwählen."],"Click the right or left arrows to select other months in the past or the future.":["Klicke die Pfeile nach rechts oder links an, um Monate in der Vergangenheit oder der Zukunft auszuwählen."],"Click to Select":["Klicken zum Auswählen"],"Calendar Help":["Kalender-Hilfe"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Benutze deine Pfeiltasten, um die Basisfarbe zu ändern. Hoch, um die Farbe aufzuhellen, runter zum Verdunkeln, links um die Sättigung zu verringern, rechts um sie zu erhöhen."],"Choose a shade":["Farbton auswählen"],"Change color format":["Farbformat wechseln"],"Color value in HSL":["HSL-Farbwert"],"Color value in RGB":["RGB-Farbwert"],"Color value in hexadecimal":["Hexadezimaler Farbwert"],"RGB mode active":["RGB-Modus aktiv"],"Hex color mode active":["Hex-Farbmodus aktiv"],"Hue/saturation/lightness mode active":["Farbton/Sättigung/Helligkeit-Modus aktiv"],"Move the arrow left or right to change hue.":["Bewege den Pfeil nach rechts oder links zum Ändern des Farbtons."],"Hue value in degrees, from 0 to 359.":["Farbtonwert in Grad, von 0 bis 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alphawert von 0 (transparent) bis 1 (volle Deckkraft)."],"Stripes":["Streifen"],"Your site doesn’t include support for this block.":["Deine Website unterstützt diesen Block nicht."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Deine Website unterstützt den „%s“-Block nicht. Du kannst diesen Block unberührt lassen oder ihn ganz entfernen."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Deine Website unterstützt den „%s“-Block nicht. Du kannst diesen Block unberührt lassen, seinen Inhalt in einen individuellen HTML-Block wandeln oder ihn ganz entfernen."],"Media area":["Medienbereich"],"Media & Text":["Medien und Text"],"Show media on right":["Medien rechts anzeigen"],"Show media on left":["Medien links anzeigen"],"Open in New Tab":["In neuem Tab öffnen"],"Cover":["Cover"],"Border settings":["Rand-Einstellungen"],"Medium":["Mittel"],"Paste URL or type to search":["URL einfügen oder zum Suchen tippen"],"Terms":["Begriffe"],"Your work will be published at the specified date and time.":["Deine Arbeit wird zu dem bestimmten Datum und Zeit veröffentlicht werden."],"Are you ready to schedule?":["Bist du bereit für die Veröffentlichung?"],"Always show pre-publish checks.":["Prüfungen vor der Veröffentlichung immer anzeigen."],"Take Over":["Übernehmen"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Ein anderer Benutzer arbeitet momentan an diesem Beitrag. Du kannst daher keine Änderungen vornehmen, außer du übernimmst."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbeitet momentan an diesem Beitrag. Du kannst daher keine Änderungen vornehmen, außer du übernimmst."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Ein anderer Benutzer hat nun die Kontrolle zur Bearbeitung dieses Beitrags. Keine Sorge, deine Änderungen bis zu diesem Moment wurden gespeichert."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s hat nun die Kontrolle zur Bearbeitung dieses Beitrags. Keine Sorge, deine Änderungen bis zu diesem Moment wurden gespeichert."],"Avatar":["Avatar"],"This post is already being edited.":["Dieser Beitrag wird schon bearbeitet."],"Someone else has taken over this post.":["Jemand anderes hat diesen Beitrag übernommen."],"This block contains unexpected or invalid content.":["Dieser Block enthält unerwarteten oder ungültigen Inhalt."],"Resolve Block":["Block lösen"],"Convert to HTML":["Zu HTML umwandeln"],"This block can only be used once.":["Dieser Block kann nur einmal verwendet werden."],"Exit Code Editor":["Code-Editor verlassen"],"Editing Code":["Code bearbeiten"],"Solid Color":["Einheitliche Farbe"],"Main Color":["Hauptfarbe"],"HTML":["HTML"],"Write HTML…":["Schreibe HTML…"],"Media settings":["Medien-Einstellungen"],"Overlay":["Overlay"],"Insert Media":["Medien hinzufügen"],"Reusable block imported successfully!":["Wiederverwendbarer Block erfolgreich importiert!"],"Invalid Reusable Block JSON file":["Ungültige JSON-Datei für wiederverwendbaren Block"],"Invalid JSON file":["Ungültige JSON-Datei"],"Import from JSON":["Import von JSON"],"Backtick":["Backtick"],"Period":["Punkt"],"Comma":["Komma"],"Change type of %d block":["Typ des %d Blocks ändern","Typ der %d Blöcke ändern"],"Current":["Aktuell"],"After Conversion":["Nach Umwandlung"],"Change alignment":["Ausrichtung ändern"],"Change text alignment":["Textausrichtung ändern"],"%d block":["%d Block","%d Blöcke"],"Forward-slash":["Schrägstrich"],"No archives to show.":["Keine Archive zum Anzeigen."],"This file is empty.":["Diese Datei ist leer."],"Sorry, this file type is not supported here.":["Dieser Dateityp wird hier leider nicht unterstützt."],"Manage all reusable blocks":["Alle wiederverwendbaren Blöcke verwalten"],"Title":["Titel"],"Fullscreen mode":["Vollbildmodus"],"Beautiful landscape":["Schöne Landschaft"],"Close panel":["Panel schließen"],"Convert to Classic Block":["In Block konvertieren"],"Remove Poster Image":["Vorschaubild entfernen"],"Select Poster Image":["Vorschaubild auswählen"],"Poster Image":["Vorschaubild"],"This block is deprecated. Please use the Columns block instead.":["Dieser Block ist veraltet. Bitte verwende stattdessen den Spalten-Block."],"Text Columns (deprecated)":["Textspalten (veraltet)"],"Create":["Erstellen"],"Row Count":["Anzahl der Zeilen"],"Column Count":["Anzahl der Spalten"],"This block is deprecated. Please use the Paragraph block instead.":["Dieser Block ist veraltet. Bitte benutze stattdessen den Absatz-Block."],"Subheading (deprecated)":["Zwischenüberschrift (veraltet)"],"blockquote":["Zitat"],"Change the block type after adding a new paragraph.":["Den Blocktyp nach Hinzufügen eines neuen Absatzes ändern."],"Spotlight mode":["Spotlight-Modus"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Mithilfe von Schlagwörtern können Benutzer und Suchmaschinen auf deiner Website navigieren und deine Inhalte finden. Füge einige Schlagwörter hinzu, um deinen Beitrag zu beschreiben."],"Add tags":["Schlagwörter hinzufügen"],"Apply the \"%1$s\" format.":["Das „%1$s“-Format verwenden."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Dein Theme verwendet Beitragsformate, um verschiedene Arten von Inhalten wie Bilder oder Videos hervorzuheben. Wähle ein Beitragsformat aus, um dieses spezielle Styling zu sehen."],"Use a post format":["Verwende ein Beitragsformat"],"Insert After":["Danach einfügen"],"Insert Before":["Davor einfügen"],"Move %1$d block from position %2$d down by one place":["Bewege %1$d Block von Position %2$d um einen Platz nach unten","Bewege %1$d Blöcke von Position %2$d um einen Platz nach unten"],"Move %1$d block from position %2$d up by one place":["Bewege %1$d Block von Position %2$d um einen Platz nach oben","Bewege %1$d Blöcke von Position %2$d um einen Platz nach oben"],"Move %1$s block from position %2$d right to position %3$d":["Bewege %1$s Block von Position %2$d zur Position %3$d"],"movie":["Film"],"Insert a new block before the selected block(s).":["Neuen Block vor dem/den ausgewählten Block/Blöcken einfügen."],"Remove the selected block(s).":["Ausgewählte(n) Block/Blöcke entfernen."],"Duplicate the selected block(s).":["Ausgewählte(n) Block/Blöcke duplizieren."],"Block shortcuts":["Block-Tastaturkürzel"],"Clear selection.":["Auswahl löschen."],"Select all text when typing. Press again to select all blocks.":["Wähle bei der Eingabe den gesamten Text aus. Drücke erneut, um alle Blöcke auszuwählen."],"Selection shortcuts":["Auswahl-Tastaturkürzel"],"Switch between Visual editor and Code editor.":["Zwischen Visuellem Editor und Code-Editor umschalten."],"Navigate to the previous part of the editor.":["Zum vorherigen Teil des Editors navigieren."],"Navigate to the next part of the editor.":["Zum nächsten Teil des Editors navigieren."],"Show or hide the settings sidebar.":["Die Einstellungen-Seitenleiste anzeigen oder verbergen."],"Redo your last undo.":["Wiederhole dein letztes Rückgängigmachen."],"Undo your last changes.":["Deine letzten Änderungen rückgängig machen."],"Save your changes.":["Deine Änderungen speichern."],"Global shortcuts":["Globale Tastaturkürzel"],"Remove a link.":["Einen Link entfernen."],"Convert the selected text into a link.":["Ausgewählten Text in einen Link umwandeln."],"Underline the selected text.":["Den ausgewählten Text unterstreichen."],"Make the selected text italic.":["Macht den ausgewählten Text kursiv."],"Make the selected text bold.":["Macht den ausgewählten Text fett."],"Text formatting":["Textformatierung"],"Insert a new block after the selected block(s).":["Neuen Block nach dem/den ausgewählten Block/Blöcken einfügen."],"Keyboard shortcuts":["Tastaturkürzel"],"Thanks for testing Gutenberg!":["Danke für das Testen von Gutenberg!"],"Help build Gutenberg":["Hilf, Gutenberg zu gestalten"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Falls du mehr darüber erfahren willst, wie zusätzliche Blöcke erstellt werden oder falls du bei dem Projekt mithelfen möchtest, komm rüber zum GitHub repository."],"The WordPress community":["Die WordPress-Community"],"Code is Poetry":["Code ist Poesie"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Du kannst jede Art von Block erstellen, die du magst, statisch oder dynamisch, dekorativ oder schlicht. Hier ist ein Block mit einem hervorgehobenen Zitat:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Jeder Block kann sich an diese Ausrichtungen anpassen. Der Einbetten-Block hat sie auch und ist standardmäßig responsiv:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Hier oben ist eine Galerie mit nur zwei Bildern. Das ist ein einfache Möglichkeit, optisch ansprechende Layouts zu erstellen, ohne dafür floats zu verwenden. Du kannst die Galerie mithilfe des Block-Umschalters auch wieder zurück in einzelne Bilder konvertieren."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Klar, ein Bild in ganzer Breite kann ganz schön groß sein. Aber manchmal ist das Bild es wert."],"Accessibility is important — don’t forget image alt attribute":["Barrierefreiheit ist wichtig – vergiss das alt-Attribut des Bildes nicht."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Wenn du die neuen Weite-Breite und Volle-Breite-Ausrichtungen mit Galerien kombinierst, kannst du sehr schnell ein umfangreiches, multimediales Layout erstellen:"],"Media Rich":["Multimedial"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Du kannst die Anzahl der Spalten in deinen Galerien ändern, indem du einen Schieberegler im Block-Inspektor in der Seitenleiste bewegst."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blöcke können alles sein, was du brauchst. Zum Beispiel willst du vielleicht ein dezentes Zitat als Teil deiner Textkomposition hinzufügen oder du bevorzugst einen gigantischen Stil. All diese Optionen sind im Inserter verfügbar."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Die Quellenangabe des Zitats ist ein separates Textfeld, ähnlich wie bei den Bildunterschriften. Somit bleibt die Struktur des Zitats geschützt, auch wenn du die Quelle auswählst, veränderst oder entfernst. Sie kann jederzeit wieder hinzugefügt werden."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Der Editor bietet ein neue Erfahrung beim Erstellen von Seiten und Beiträgen, die das mühelose Schreiben umfangreicher Inhalte ermöglicht. Er hat „Blöcke“, um das Einbetten von Inhalten, die bisher über Shortcodes, individuelles HTML oder „mysteriöse Praktiken“ eingebettet wurden, zu vereinfachen."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Ein großer Vorteil von Blöcken ist es, dass du sie direkt vor Ort bearbeiten und deinen Inhalt verändern kannst. Anstelle von Feldern, um beispielsweise die Quelle eines Zitats oder den Text eines Buttons zu bearbeiten, kannst du den Inhalt direkt ändern. Versuche, das folgende Zitat zu bearbeiten:"],"Visual Editing":["Visuelle Bearbeitung"],"And Lists like this one of course :)":["Und natürlich Listen wie diese :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout-Blöcke, wie Buttons, Hero-Bilder, Separatoren, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Einbettungen, wie YouTube, Tweets, oder andere WordPress-Beiträge."],"Galleries":["Galerien"],"Images & Videos":["Bilder und Videos"],"Text & Headings":["Text und Überschriften"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Versuch es, du entdeckst womöglich Dinge, die WordPress bereits in deine Beiträge einfügen kann, von denen du nichts wusstest. Hier ist eine kurze Liste, was du aktuell dort findest:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Stell dir vor, alles, was WordPress kann, steht dir direkt auf der Oberfläche zur Verfügung. Keine Notwendigkeit mehr, sich an HTML-Tags, Klassen oder komplizierte Shortcode-Syntax zu erinnern. Das ist der Grundgedanke hinter dem Inserter – der (+)
-Button, den du um den Editor herum siehst – mit dem du alle verfügbaren Inhalts-Blöcke suchen und in deinen Beitrag einfügen kannst. Plugins und Themes sind in der Lage, ihre eigenen Blöcke zu registrieren, was alle Arten von Möglichkeiten für eine umfangreiche Bearbeitung und Veröffentlichung eröffnet."],"The Inserter Tool":["Das Inserter-Werkzeug"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Versuche, die Bildunterschrift auszuwählen, zu bewegen oder zu bearbeiten. Jetzt musst du nicht mehr aufpassen, versehentlich ein Bild oder anderen Text auszuwählen und so die Präsentation zu ruinieren."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Falls dein Theme es unterstützt, siehst du das „Weite-Breite“-Icon in der Bild-Werkzeugleiste. Probiere es aus."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Der Umgang mit Bildern und Medien mit der größten Sorgfalt ist ein primärer Schwerpunkt des neuen Editors. Hoffentlich empfindest du das Hinzufügen von Bildunterschriften oder das Anzeigen deiner Bilder in voller Breite viel einfacher und solider als bisher."],"A Picture is Worth a Thousand Words":["Ein Bild sagt mehr als tausend Worte"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Überschriften sind selbst separate Blöcke, was bei der Gliederung und Organisation deiner Inhalte hilft."],"... like this one, which is right aligned.":["... wie dieser, der rechtsbündig ist."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Was du gerade liest befindet sich in einem Text-Block, der einfachste Block von allen. Der Text-Block kann frei im Beitrag positioniert werden …"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Das Ziel des neuen Editors ist es, das Hinzufügen von umfangreichen Inhalten in WordPress einfach und angenehm zu gestalten. Dieser ganze Beitrag besteht aus einzelnen Inhalts-Elementen, die LEGO-Steinen ähneln, die man bewegen und mit denen man interagieren kann. Lass den Mauszeiger kreisen und du wirst feststellen, dass um die verschiedenen Blöcke herum Umrisse und Pfeile aufleuchten. Drücke die Pfeile, um Blöcke schnell neu zu positionieren, ohne befürchten zu müssen, beim Kopieren und Einfügen etwas zu verlieren."],"Of Mountains & Printing Presses":["Von Bergen und Druckmaschinen"],"Welcome to the Gutenberg Editor":["Willkommen beim Gutenberg-Editor"],"block name\u0004More":["Mehr"],"button to expand options\u0004More":["Mehr"],"Are you sure you want to unschedule this post?":["Bist du sicher, dass du diesen Beitrag aus dem Zeitplan nehmen willst?"],"Alt Text (Alternative Text)":["Alt-Text (Alternativer Text)"],"Reusable Block":["Wiederverwendbarer Block"],"Unique identifier for the object.":["Eindeutige Kennung für das Objekt."],"Untitled Reusable Block":["Unbenannter wiederverwendbarer Block"],"Small":["Klein"],"Reusable":["Wiederverwendbar"],"Remove from Reusable blocks":["Von wiederverwendbaren Blöcken entfernen"],"Add to Reusable blocks":["Zu wiederverwendbaren Blöcken hinzufügen"],"Keep as HTML":["Als HTML behalten"],"Edit URL":["URL bearbeiten"],"Color settings":["Farb-Einstellungen"],"The response is not a valid JSON response.":["Die Antwort ist keine gültige JSON-Antwort."],"Editor publish":["Editor: Veröffentlichen"],"Muted":["Stumm"],"Video settings":["Video-Einstellungen"],"recent comments":["Neueste Kommentare"],"Latest Comments":["Neueste Kommentare"],"Display Excerpt":["Textauszug anzeigen"],"Display Date":["Datum anzeigen"],"Display Avatar":["Avatar anzeigen"],"Latest comments settings":["Einstellungen - Neueste Kommentare"],"Number of Comments":["Anzahl der Kommentare"],"Background Opacity":["Hintergrund-Deckkraft"],"Auto":["Auto"],"Preload":["Vorladen"],"Audio settings":["Audio-Einstellungen"],"Display a monthly archive of your posts.":["Ein monatliches Archiv deiner Beiträge anzeigen."],"Display as Dropdown":["Als Drop-down-Liste anzeigen"],"Show Post Counts":["Anzahl der Beiträge anzeigen"],"Archives settings":["Archiv-Einstellungen"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Support"],"No comments to show.":["Keine Kommentare vorhanden."],"%1$s on %2$s":["%1$s zu %2$s"],"Select Post":["Beitrag auswählen"],"Select Week":["Woche auswählen"],"Select Day":["Tag auswählen"],"Select Month":["Monat auswählen"],"Select Year":["Jahr auswählen"],"Archives":["Archive"],"Very dark gray":["Sehr dunkles Grau"],"Cyan bluish gray":["Cyan-bläuliches Grau"],"Very light gray":["Sehr helles Grau"],"Vivid cyan blue":["Kräftiges Cyanblau"],"Pale cyan blue":["Helles Blau"],"Vivid green cyan":["Kräftiges Cyangrün"],"Light green cyan":["Helles Grün"],"Luminous vivid amber":["Leuchtendes Bernstein"],"Luminous vivid orange":["Leuchtendes Orange"],"Vivid red":["Kräftiges Rot"],"Pale pink":["Helles Rosa"],"Inline image":["Inline-Bild"],"Available block types":["Verfügbare Block-Typen"],"Transform To:":["Umwandeln in:"],"Remove Block":["Block entfernen"],"Open publish panel":["Veröffentlichungs-Eingabefeld öffnen"],"Dots":["Punkte"],"Wide Line":["Breite Linie"],"Large":["Groß"],"Show download button":["Download-Button anzeigen"],"Download button settings":["Download-Button Einstellungen"],"Link To":["Link zur"],"Text link settings":["Text-Link Einstellungen"],"download":["Download"],"pdf":["pdf"],"document":["Dokument"],"Copy URL":["URL kopieren"],"Write file name…":["Schreibe einen Dateinamen…"],"File":["Datei"],"A single column within a columns block.":["Eine einzelne Spalte innerhalb eines Spaltenblocks."],"Column":["Spalte"],"Outline":["Kontur"],"Loop":["Schleife"],"Autoplay":["Autoplay"],"Playback Controls":["Wiedergabe-Steuerung"],"Close dialog":["Dialog schließen"],"Sorry, this file type is not permitted for security reasons.":["Dieser Dateityp ist aus Sicherheitsgründen leider nicht erlaubt."],"Disable tips":["Tipps deaktivieren"],"Got it":["Verstanden"],"See next tip":["Nächsten Tipp ansehen"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Wenn du fertig bist, reiche deine Arbeit zur Überprüfung ein, und ein Editor kann sie für dich genehmigen."],"Are you ready to submit for review?":["Bist du bereit, eine Überprüfung einzureichen?"],"Replace image":["Bild ersetzen"],"Remove image":["Kein Bild verwenden"],"Error while uploading file %s to the media library.":["Fehler beim Hochladen der Datei %s in die Mediathek."],"This file exceeds the maximum upload size for this site.":["Diese Datei überschreitet die maximale Upload-Größe für diese Website."],"View the autosave":["Die automatische Speicherung ansehen"],"There is an autosave of this post that is more recent than the version below.":["Es gibt eine automatische Speicherung dieses Beitrags, die aktueller ist, als die unten stehende Version."],"Autosaving":["Automatische Speicherung"],"Enter URL here…":["URL hier eingeben…"],"Pin to toolbar":["Zur Werkzeugleiste hinzufügen"],"Unpin from toolbar":["Aus der Werkzeugleiste entfernen"],"Insert a table — perfect for sharing charts and data.":["Füge eine Tabelle ein – ideal um Diagramme und Daten zu teilen."],"Fixed width table cells":["Tabellenzellen mit fester Breite"],"Table settings":["Tabellen-Einstellungen"],"Add text that respects your spacing and tabs, and also allows styling.":["Füge Text hinzu, der deine Abstände und Tabulatoren respektiert und ebenfalls Styling erlaubt."],"Display a list of your most recent posts.":["Zeigt eine Liste der neuesten Beiträge an."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Füge einen Block hinzu, der Inhalte von anderen Websites wie Twitter, Instagram oder YouTube anzeigt."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Erstelle einen Block, der Inhalte in mehreren Spalten anzeigt und füge dann beliebige Inhaltsblöcke hinzu."],"Error loading block: %s":["Fehler beim Laden des Blocks: %s"],"Unknown error":["Unbekannter Fehler"],"Embed Handler":["Handler einbetten"],"term\u0004Remove %s":["%s entfernen"],"Copy the permalink":["Den Permalink kopieren"],"Permalink copied":["Permalink kopiert"],"Height in pixels":["Höhe in Pixel"],"Spacer settings":["Abstandshalter-Einstellungen"],"Spacer":["Abstandshalter"],"Toggle to show a large initial letter.":["Umschalten, um einen großen Anfangsbuchstaben anzuzeigen."],"Showing large initial letter.":["Großen Anfangsbuchstaben darstellen."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Element entfernen"],"Color code: %s":["Farbcode: %s"],"Skip to the selected block":["Zum ausgewählten Block wechseln"],"Publish…":["Veröffentlichen…"],"Schedule…":["Planen…"],"Edit post permalink":["Beitrags-Permalink bearbeiten"],"Show Block Settings":["Block-Einstellungen anzeigen"],"Hide Block Settings":["Block-Einstellungen verbergen"],"Block settings closed":["Block-Einstellungen geschlosssen"],"Close plugin":["Plugin schließen"],"Editor settings":["Editor-Einstellungen"],"Link settings":["Link-Einstellungen"],"Unlink":["Link entfernen"],"Page break":["Seitenumbruch"],"pagination":["Seitennummerierung"],"next page":["nächste Seite"],"Image Size":["Bildgröße"],"Height":["Höhe"],"Width":["Breite"],"Image Dimensions":["Bildabmessungen"],"Thumbnails are not cropped.":["Vorschaubilder werden nicht abgeschnitten."],"Thumbnails are cropped to align.":["Vorschaubilder werden beschnitten, um sie auszurichten."],"Media Library":["Mediathek"],"Advanced":["Erweitert"],"Add item":["Element hinzufügen"],"Reset the template":["Template zurücksetzen"],"Keep it as is":["So behalten, wie es ist"],"The content of your post doesn’t match the template assigned to your post type.":["Der Inhalt deines Beitrags passt nicht zu dem Template, das deinem Inhaltstyp zugeordnet ist."],"Resetting the template may result in loss of content, do you want to continue?":["Das Zurücksetzen des Templates kann zum Verlust von Inhalten führen, möchtest du fortfahren?"],"Document Statistics":["Dokument-Statistiken"],"is now scheduled. It will go live on":["ist jetzt geplant für die Veröffentlichung am"],"Scheduled":["Geplant"],"Scheduling…":["Wird geplant…"],"Code editor selected":["Code-Editor ausgewählt"],"Visual editor selected":["Visueller Editor ausgewählt"],"Plugins":["Plugins"],"Custom Size":["Individuelle Größe"],"Layout elements":["Layout-Elemente"],"term\u0004%s removed":["%s entfernt"],"term\u0004%s added":["%s hinzugefügt"],"imperative verb\u0004Preview":["Vorschau"],"Block deleted.":["Block gelöscht."],"Block updated.":["Block aktualisiert."],"Block created.":["Block erstellt."],"Trashing failed":["Das Verschieben in den Papierkorb ist gescheitert"],"Updating failed.":["Aktualisieren gescheitert."],"Scheduling failed.":["Planen gescheitert."],"Publishing failed.":["Veröffentlichen gescheitert."],"View post":["Beitrag anzeigen"],"You have unsaved changes. If you proceed, they will be lost.":["Du hast ungespeicherte Änderungen. Falls du fortfährst, gehen diese verloren."],"Document Outline":["Gliederung des Dokuments"],"Paragraphs":["Absätze"],"Headings":["Überschriften"],"Words":["Wörter"],"Content structure":["Inhaltliche Struktur"],"Public":["Öffentlich"],"Protected with a password you choose. Only those with the password can view this post.":["Geschützt mit einem von dir gewählten Passwort. Nur wer das Passwort hat, kann diesen Beitrag sehen."],"Password Protected":["Passwortgeschützt"],"Only visible to site admins and editors.":["Nur für Website-Administratoren und Redakteure sichtbar."],"Private":["Privat"],"Visible to everyone.":["Sichtbar für jeden."],"Post Visibility":["Sichtbarkeit des Beitrags"],"Would you like to privately publish this post now?":["Möchtest du diesen Beitrag jetzt als privat veröffentlichen?"],"Use a secure password":["Wähle ein sicheres Passwort"],"Create password":["Passwort erstellen"],"Move to Trash":["In den Papierkorb verschieben"],"Parent Term":["Übergeordneter Begriff"],"Parent Category":["Übergeordnete Kategorie"],"Add new term":["Neuen Begriff hinzufügen"],"Add new category":["Neue Kategorie hinzufügen"],"Term":["Begriff"],"Tag":["Schlagwort"],"Add new Term":["Neuen Begriff hinzufügen"],"Add new tag":["Neues Schlagwort erstellen"],"Switch to draft":["Auf Entwurf umstellen"],"Are you sure you want to unpublish this post?":["Bist du sicher, dass dieser Beitrag nicht mehr veröffentlicht sein soll?"],"Immediately":["Sofort"],"Save Draft":["Speichern"],"Saving":["Speichert"],"Publish:":["Veröffentlichung: "],"Visibility:":["Sichtbarkeit: "],"Are you ready to publish?":["Bereit zur Veröffentlichung?"],"Copy Link":["Link kopieren"],"What’s next?":["Was kommt als Nächstes?"],"is now live.":["ist jetzt live."],"Published":["Veröffentlicht"],"Schedule":["Planen"],"Update":["Aktualisieren"],"Submit for Review":["Zur Überprüfung einreichen"],"Updating…":["Aktualisieren…"],"Publishing…":["Veröffentlichen…"],"Allow pingbacks & trackbacks":["Pingbacks und Trackbacks erlauben"],"Permalink:":["Permalink:"],"Pending review":["Ausstehender Review"],"%d Revision":["%d Revision","%d Revisionen"],"Suggestion:":["Vorschlag:"],"Post Format":["Beitragsformat"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Kurzmitteilung"],"Featured image":["Beitragsbild"],"Set featured image":["Beitragsbild festlegen"],"Learn more about manual excerpts":["Erfahre mehr über manuelle Textauszüge"],"Write an excerpt (optional)":["Schreibe einen Textauszug (optional)"],"Allow comments":["Kommentare erlauben"],"Template:":["Template:"],"no parent":["kein Elternelement"],"no title":["kein Titel"],"Order":["Reihenfolge"],"No blocks found.":["Keine Blöcke gefunden."],"%d result found.":["%d Ergebnis gefunden.","%d Ergebnisse gefunden."],"Saved":["Gespeichert"],"Embeds":["Einbettungen"],"Blocks":["Blöcke"],"Search for a block":["Suche nach einem Block"],"Add block":["Block hinzufügen"],"Copy Error":["Fehlermeldung kopieren"],"Copy Post Text":["Beitragstext kopieren"],"Attempt Recovery":["Wiederherstellung versuchen"],"The editor has encountered an unexpected error.":["Im Editor ist ein unerwarteter Fehler aufgetreten."],"Undo":["Rückgängig"],"Redo":["Wiederholen"],"(Multiple H1 headings are not recommended)":["(Mehrere H1-Überschriften werden nicht empfohlen)"],"(Your theme may already use a H1 for the post title)":["(Dein Theme könnte bereits eine H1-Überschrift für den Beitragstitel benutzen)"],"(Incorrect heading level)":["(Falsche Überschriftsebene)"],"(Empty heading)":["(Leere Überschrift)"],"Block Styles":["Block-Stile"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Bist du sicher, dass du diesen wiederverwendbaren Block löschen willst?\n\nEr wird dauerhaft von allen Beiträgen und Seiten gelöscht, die ihn beinhalten."],"Convert to Regular Block":["In normalen Block umwandeln"],"More options":["Mehr Optionen"],"Edit visually":["Visuell bearbeiten"],"Duplicate":["Duplizieren"],"Blocks cannot be moved down as they are already at the bottom":["Blöcke können nicht nach unten verschoben werden, da sie sich bereits unten befinden."],"Blocks cannot be moved up as they are already at the top":["Blöcke können nicht nach oben verschoben werden, da sie sich bereits oben befinden."],"Block %1$s is at the beginning of the content and can’t be moved right":["Block %1$s steht am Anfang des Inhalts und kann nicht nach rechts verschoben werden"],"Block %1$s is at the end of the content and can’t be moved right":["%1$s-Block befindet sich am Ende des Inhalts und kann nicht nach rechts verschoben werden"],"Block %s is the only block, and cannot be moved":["Block %s ist der einzige Block und kann nicht verschoben werden"],"Edit as HTML":["Als HTML bearbeiten"],"Convert to Blocks":["In Blöcke umwandeln"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["In diesem Block ist ein Fehler aufgetreten und eine Vorschau ist nicht möglich."],"No block selected.":["Kein Block ausgewählt."],"Transform into:":["Umwandeln in:"],"Remove":["Entfernen"],"Find original":["Original suchen"],"Copy all content":["Kompletten Inhalt kopieren"],"Copied!":["Kopiert!"],"Additional settings are now available in the Editor block settings sidebar":["Zusätzliche Einstellungen sind jetzt in der Seitenleiste des Editors unter „Erweiterte Einstellungen“ verfügbar"],"Visibility":["Sichtbarkeit"],"Status & visibility":["Status und Sichtbarkeit"],"Page attributes":["Seiten-Attribute"],"Block":["Block"],"Document":["Dokument"],"Close settings":["Einstellungen schließen"],"Editor content":["Editor-Inhalt"],"Tools":["Werkzeuge"],"Editor":["Editor"],"Code editor":["Code-Editor"],"Visual editor":["Visueller Editor"],"Editor top bar":["Obere Editor-Leiste"],"Settings":["Einstellungen"],"Reset":["Zurücksetzen"],"Dismiss this notice":["Diesen Hinweis verwerfen"],"Item removed.":["Element entfernt."],"Item added.":["Element hinzugefügt."],"Drop files to upload":["Dateien für den Upload bereitstellen"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ein unbekannter Fehler ist aufgetreten."],"No results.":["Keine Ergebnisse."],"%d result found, use up and down arrow keys to navigate.":["%d Ergebnis gefunden, benutze die Pfeile nach oben oder unten zum Navigieren.","%d Ergebnisse gefunden, benutze die Pfeile nach oben oder unten zum Navigieren."],"(no title)":["(kein Titel)"],"URL":["URL"],"Submit":["Senden"],"Close":["Schließen"],"Insert link":["Link einfügen"],"Edit link":["Link bearbeiten"],"Link":["Link"],"Strikethrough":["Durchgestrichen"],"Italic":["Kursiv"],"Bold":["Fett"],"Remove link":["Link entfernen"],"Number of items":["Anzahl Elemente"],"All":["Alle"],"Category":["Kategorie"],"Z → A":["Z → A"],"A → Z":["A → Z"],"Oldest to Newest":["Alt nach Neu"],"Newest to Oldest":["Neu nach Alt"],"Order by":["Reihenfolge von"],"Select":["Auswählen"],"Select or Upload Media":["Medium wählen oder hochladen"],"Video":["Video"],"Write…":["Schreibe…"],"poetry":["Poesie"],"Verse":["Vers"],"New Column":["Neue Spalte"],"Delete Column":["Spalte löschen"],"Add Column After":["Spalte rechts hinzufügen"],"Add Column Before":["Spalte links hinzufügen"],"Delete Row":["Zeile löschen"],"Add Row After":["Zeile unten hinzufügen"],"Add Row Before":["Zeile oben hinzufügen"],"Edit table":["Tabelle bearbeiten"],"Table":["Tabelle"],"Write subheading…":["Schreibe einen Untertitel…"],"Write shortcode here…":["Schreibe hier den Shortcode…"],"Shortcode":["Shortcode"],"divider":["Trennlinie"],"horizontal-line":["horizontale Linie"],"Separator":["Trennzeichen"],"Quote":["Zitat"],"Write citation…":["Schreibe einen Bezugstext…"],"Write quote…":["Schreibe ein Zitat…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Schreibe vorformatierten Text…"],"Preformatted":["Vorformatiert"],"text":["Text"],"Paragraph":["Absatz"],"Font Size":["Schriftgröße"],"Drop Cap":["Initialbuchstabe"],"Text settings":["Text-Einstellungen"],"Read more":["Weiterlesen"],"Write list…":["Schreibe eine Liste…"],"numbered list":["Nummerierte Liste"],"ordered list":["Geordnete Liste"],"bullet list":["Aufzählungsliste"],"Indent list item":["Listenelement einrücken"],"Outdent list item":["Listenelement ausrücken"],"Convert to ordered list":["Zu geordneter Liste umwandeln"],"Convert to unordered list":["Zu ungeordneter Liste umwandeln"],"List":["Liste"],"recent posts":["Neueste Beiträge"],"No posts found.":["Keine Beiträge gefunden."],"Latest Posts":["Neueste Beiträge"],"Display post date":["Beitragsdatum anzeigen"],"Grid view":["Rasteransicht"],"List view":["Listenansicht"],"photo":["Foto"],"Image settings":["Bild-Einstellungen"],"Image":["Bild"],"Preview":["Vorschau"],"embed":["Embed"],"Custom HTML":["HTML"],"subtitle":["Untertitel"],"title":["Titel"],"Heading":["Überschrift"],"Write heading…":["Schreibe Überschrift…"],"Heading %d":["Überschrift %d"],"Level":["Ebene"],"Heading settings":["Überschrift-Einstellungen"],"photos":["Fotos"],"images":["Bilder"],"None":["Keine"],"Media File":["Medien-Datei"],"Attachment Page":["Anhang-Seite"],"Link to ":["Link zu"],"Crop Images":["Bilder zuschneiden"],"Gallery settings":["Galerie-Einstellungen"],"Gallery":["Galerie"],"Classic":["Classic Editor"],"video":["Video"],"audio":["Audio"],"music":["Musik"],"image":["Bild"],"blog":["Blog"],"post":["Beitrag"],"Embedded content from %s":["Eingebetteter Inhalt von %s"],"Enter URL to embed here…":["URL zum Einbetten hier eingeben…"],"%s URL":["%s URL"],"Embedding…":["Einbetten…"],"Write title…":["Schreibe einen Titel…"],"Fixed Background":["Hintergrund fixiert"],"Edit image":["Bild bearbeiten"],"Columns":["Spalten"],"Experiments":["Experimente"],"Code":["Code"],"Write code…":["Schreibe deinen Code…"],"Categories":["Kategorien"],"Show Hierarchy":["Hierarchie anzeigen"],"Show post counts":["Anzahl der Beiträge anzeigen"],"Categories settings":["Kategorie-Einstellungen"],"Add text…":["Text hinzufügen…"],"Button":["Button"],"Apply":["Übernehmen"],"Text Color":["Textfarbe"],"Background Color":["Hintergrundfarbe"],"Block has been deleted or is unavailable.":["Block wurde gelöscht oder ist nicht verfügbar."],"Reusable blocks":["Wiederverwendbare Blöcke"],"Cancel":["Abbrechen"],"Edit":["Bearbeiten"],"Write caption…":["Schreibe eine Beschriftung..."],"Use URL":["URL verwenden"],"Audio":["Audio"],"Upload":["Hochladen"],"Additional CSS Class(es)":["Zusätzliche CSS-Klasse(n)"],"HTML Anchor":["HTML-Anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Diese Farbkombination kann für Menschen schwer zu lesen sein. Versuche eine hellere Hintergrundfarbe und/oder eine dunklere Textfarbe zu verwenden."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Diese Farbkombination kann für Menschen schwer zu lesen sein. Versuche eine dunklere Hintergrundfarbe und/oder eine hellere Textfarbe zu verwenden."],"Clear":["Zurücksetzen"],"Custom color picker":["Individueller Farbwähler"],"Color: %s":["Farbe: %s"],"Full width":["Volle Breite"],"Wide width":["Weite Breite"],"Widgets":["Widgets"],"Formatting":["Formatierung"],"Common blocks":["Allgemeine Blöcke"],"Align right":["Rechtsbündig"],"Align center":["Zentrieren"],"Align left":["Linksbündig"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Druck seit 1440. Einen Schritt voraus sein, mit dem Entwicklungs-Plugin für den neuen Block-Editor im Core."],"Add title":["Titel hier eingeben"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Im Gutenberg-Entwicklungsmodus müssen Dateien erstellt werden. Führe npm install
aus, um Abhängigkeiten zu installieren, und npm run dev
, um die Dateien zu erstellen und zu beobachten. Lese die Datei Beitragen (eng.) für weitere Informationen."],"Author":["Autor"],"Slug":["Titelform"],"Discussion":["Diskussion"],"Custom fields":["Eigene Felder"],"Excerpt":["Auszug"],"Publish":["Veröffentlichen"],"Metadata":["Meta-Daten"],"Save":["Speichern"],"Documentation":["Dokumentation"],"Select Category":["Kategorie auswählen"],"(Untitled)":["(Ohne Titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg erfordert WordPress %s oder aktueller, um korrekt zu funktionieren. Bitte aktualisiere WordPress, bevor du Gutenberg aktivierst."],"Gutenberg Team":["Gutenberg-Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["vor %s"],"Block style name must be a string.":["Block-Style Namen müssen Zeichenfolgen sein."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_el.json b/bundle/android/raw/i18ncache_data_el.json
new file mode 100644
index 0000000000..89f442670c
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_el.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":["Σκοτεινό"],"Light":["Ανοιχτό"],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":["Inline Κώδικας"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Σημείωση: Η αυτόματη αναπαραγωγή βίντεο μπορεί να προκαλέσει θέματα χρηστικότητας σε κάποιους επισκέπτες."],"Footer section":["Τμήμα υποσέλιδου"],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Περιεχόμενο Άρθρου"],"Post content settings":[],"Percentage width":["Πλάτος επί τοις εκατό"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Σημείωση: Η αυτόματη αναπαραγωγή ήχου μπορεί να προκαλέσει θέματα χρηστικότητας σε κάποιους επισκέπτες."],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":["Ρυθμίσεις μικροεφαρμογών για προχωρημένους"],"(experimental)":["(πειραματικό)"],"Block Areas":["Περιοχές Πλαισίων"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":["Αυτός ο συνδυασμός χρωμάτων μπορεί να δυσκολέψει τους ανθρώπους στην ανάγνωση."],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":["γραμμή"],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":["Group"],"Crop image to fill entire column":["Περικοπή της εικόνας για να γεμίσει ολόκληρη τη στήλη"],"Play inline":[],"Leave empty if the image is purely decorative.":["Αφήστε κενό εάν η εικόνα είναι καθαρά διακοσμητική."],"Describe the purpose of the image":["Περιγράψτε το σκοπό της εικόνας"],"Add a block":["Προσθέστε ένα πλαίσιο"],"Block vertical alignment setting label\u0004Change vertical alignment":["Αλλαγή Στοίχισης "],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":["Αντικατάσταση Εικόνας"],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":["Αλλαγή μικροεφαρμογής"],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":["Δεν έχετε δικαιώματα χρήσης μικροεφαρμογών σε αυτόν τον ιστότοπο."],"Select a legacy widget to display:":[],"There are no widgets available.":["Δεν υπάρχουν διαθέσιμες μικροεφαρμογές."],"Change block type or style":["Αλλαγή τύπου ή στυλ μπλοκ"],"keyboard key\u0004Space":["Κενό"],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":["Όροι αναζήτησης"],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":["Προεπιλεγμένο"],"find":["εύρεση"],"Help visitors find your content.":["Βοηθήστε τους επισκέπτες να βρουν το περιεχόμενο σας."],"Search":["Αναζήτηση"],"Add button text…":["Προσθήκη κειμένου κουμπιού..."],"Button text":["Κείμενο κουμπιού"],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":["Προσθήκη ετικέτας..."],"Label text":["Κείμενο ετικέτας"],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":["από"],"An error has occurred, which probably means the feed is down. Try again later.":["Παρουσιάστηκε σφάλμα. Το κανάλι ίσως είναι εκτός λειτουργίας. Ξαναδοκιμάστε αργότερα."],"RSS Error:":["Σφάλμα RSS:"],"block style\u0004Default":["Προεπιλεγμένο"],"Fullscreen mode deactivated":["Η λειτουργία πλήρους οθόνης είναι απενεργοποιημένη"],"Fullscreen mode activated":["Η λειτουργία πλήρους οθόνης είναι ενεργοποιημένη"],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":["Η άνω γραμμή εργαλείων είναι απενεργοποιημένη"],"Top toolbar activated":["Η άνω γραμμή εργαλείων είναι ενεργοποιημένη"],"Back":["Επιστροφή"],"Feature activated":["Η λειτουργία ενεργοποιήθηκε"],"Feature deactivated":["Η λειτουργία απενεργοποιήθηκε"],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":["Εμφανίζει καταχωρήσεις από οποιαδήποτε ροή RSS ή Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Μέγιστος αριθμός λέξεων στο απόσπασμα"],"Display excerpt":["Εμφάνιση αποσπάσματος"],"Display date":["Εμφάνιση ημερομηνίας"],"Display author":["Εμφάνιση συντάκτη"],"RSS settings":[],"Edit RSS URL":["Επεξεργασία RSS URL "],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":["Απόκρυψη του αποσπάσματος στη σελίδα πλήρους περιεχομένου"],"The excerpt is visible.":["Το απόσπασμα είναι ορατό."],"The excerpt is hidden.":["Το απόσπασμα είναι κρυφό"],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":["Υπογράμμιση"],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":["λέξεις"],"content placeholder\u0004Content…":["Περιεχόμενο..."],"button label\u0004Convert to link":["Μετατροπή σε σύνδεσμο"],"button label\u0004Try again":["Προσπαθήστε ξανά"],"Editor tips":["Συμβουλές συντάκτη"],"Block (selected)":["Μπλοκ (επιλεγμένο)"],"Document (selected)":["Έγγραφο (επιλεγμένο)"],"%d word":["%d λέξη","%d λέξεις"],"Top toolbar":[],"Link Rel":[],"Link CSS Class":["CSS Κλάση Συνδέσμου"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":["Εργαλεία μπλοκ"],"Permalink":["Μόνιμος σύνδεσμος"],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Προσθήκη Νέου"],"add new on admin bar\u0004Block Area":[],"Link inserted.":["Έγινε εισαγωγή συνδέσμου."],"Warning: the link has been inserted but may have errors. Please test it.":["Προειδοποίηση: έγινε εισαγωγή του συνδέσμου αλλά μπορεί να υπάρχουν σφάλματα. Παρακαλούμε, ελέγξτε τον."],"%s block selected.":[],"Thumbnail":["Μικρογραφία"],"Full Size":["Πλήρες Μέγεθος"],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":["Τεράστιο"],"font size name\u0004Large":["Μεγάλο"],"font size name\u0004Medium":["Μεσαίο"],"font size name\u0004Small":["Μικρό"],"font size name\u0004Normal":["Κανονικό"],"keyboard button\u0004Enter":["Δώστε"],"button label\u0004Import":["Εισαγωγή"],"button label\u0004Download":["Λήψη"],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":["Διεύθυνση του %s"],"Paste or type URL":["Επικολλήστε ή πληκτρολογήστε το URL"],"Insert from URL":["Εισαγωγή από URL"],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":["Επιλογές"],"(opens in a new tab)":["(ανοίγει σε μία νέα καρτέλα)"],"Minutes":["Λεπτά"],"Hours":["Ώρες"],"Time":[],"Year":["Έτος"],"Day":["Ημέρα"],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":["Μήνας"],"Date":["Ημερομηνία"],"Go to the first (home) or last (end) day of a week.":["Μεταβείτε στην πρώτη (πλήκτρο home) ή τελευταία (πλήκτρο end) ημέρα μίας εβδομάδας."],"Home/End":["Home/End"],"Home and End":["Home και End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Μετακινηθείτε προς τα πίσω (πλήκτρο PgUp) ή προς τα εμπρός (πλήκτρο PgDn) κατά ένα μήνα."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up και Page Down"],"Move backward (up) or forward (down) by one week.":["Μετακινηθείτε προς τα πίσω (επάνω βέλος) και προς τα εμπρός (κάτω βέλος) κατά μία εβδομάδα."],"Up and Down Arrows":["Επάνω και Κάτω Βέλη"],"Move backward (left) or forward (right) by one day.":["Μετακινηθείτε προς τα πίσω (αριστερό βέλος) και προς τα εμπρός (δεξί βέλος) κατά μία ημέρα."],"Left and Right Arrows":["Αριστερό και Δεξί Βέλος"],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":["Το άρθρο σας θα δημοσιευτεί την καθορισμένη ημερομηνία και ώρα."],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":["Avatar"],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":["Μετατροπή σε HTML"],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":["HTML"],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":["Εισαγωγή από αρχείο JSON"],"Backtick":[],"Period":[],"Comma":[],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":[],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Ευχαριστούμε για την δοκιμή του Gutenberg!"],"Help build Gutenberg":["Βοηθήστε στην κατασκευή του Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["Η κοινότητα του WordPress"],"Code is Poetry":["Ο Κώδικας είναι Ποίηση"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":["Συλλογές Εικόνων"],"Images & Videos":["Εικόνες & Βίντεο"],"Text & Headings":["Κείμενο & Επικεφαλίδες"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],"Small":[],"Reusable":[],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Διατήρηση ως HTML"],"Edit URL":["Τροποποίηση URL"],"Color settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],"Muted":["Σιωπηλό"],"Video settings":[],"recent comments":["πρόσφατα σχόλια"],"Latest Comments":["Τελευταία σχόλια"],"Display Excerpt":["Προβολή αποσπάσματος"],"Display Date":["Εμφάνιση ημερομηνίας"],"Display Avatar":["Εμφάνιση άβαταρ"],"Latest comments settings":[],"Number of Comments":["Αριθμός σχολίων"],"Background Opacity":[],"Auto":["Αυτόματο"],"Preload":[],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Υποστήριξη"],"No comments to show.":["Χωρίς σχόλια για εμφάνιση."],"%1$s on %2$s":["%1$s στο %2$s"],"Select Post":["Επιλέξτε άρθρο"],"Select Week":["Επιλέξτε εβδομάδα"],"Select Day":["Επιλέξτε ημέρα"],"Select Month":["Επιλέξτε μήνα"],"Select Year":["Επιλέξτε έτος"],"Archives":[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":["Ανοιχτό πράσινο κυανό"],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],"Dots":[],"Wide Line":[],"Large":[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["έγγραφο"],"Copy URL":[],"Write file name…":[],"File":[],"A single column within a columns block.":[],"Column":[],"Outline":[],"Loop":[],"Autoplay":[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":["Αντικατάσταση εικόνας"],"Remove image":["Αφαίρεση εικόνας"],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":[],"Enter URL here…":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":["Αφαίρεση %s"],"Copy the permalink":["Αντιγραφή μόνιμου συνδέσμου"],"Permalink copied":["Μόνιμος σύνδεσμος αντιγράφηκε"],"Height in pixels":["Ύψος σε pixels"],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":["Κωδικός χρώματος: %s"],"Skip to the selected block":[],"Publish…":["Δημοσίευση..."],"Schedule…":[],"Edit post permalink":["Επεξεργασία μόνιμου συνδέσμου"],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Editor settings":[],"Link settings":[],"Unlink":["Αποσύνδεση"],"Page break":["Αλλαγή σελίδας"],"pagination":["σελιδοποίηση"],"next page":["επόμενη σελιδα"],"Image Size":["Μέγεθος εικόνας"],"Height":["Ύψος"],"Width":["Πλάτος"],"Image Dimensions":["Διαστάσεις εικόνας"],"Thumbnails are not cropped.":["Οι μικρογραφίες δεν αποκόπηκαν."],"Thumbnails are cropped to align.":[],"Media Library":["Συλλογή Πολυμέσων"],"Advanced":[],"Add item":["Προσθήκη αντικειμένου"],"Reset the template":[],"Keep it as is":[],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":["Στατιστικά Εγγράφου"],"is now scheduled. It will go live on":[],"Scheduled":["Προγραμματίστηκε"],"Scheduling…":[],"Code editor selected":[],"Visual editor selected":["Επιλέχθηκε ο οπτικός διορθωτής"],"Plugins":["Πρόσθετα"],"Custom Size":["Προσαρμοσμένο μέγεθος"],"Layout elements":[],"term\u0004%s removed":["%s αφαιρέθηκε"],"term\u0004%s added":["%s προστέθηκε"],"imperative verb\u0004Preview":["Προεπισκόπηση"],"Block deleted.":["Το πλαίσιο διαγράφηκε."],"Block updated.":["Το πλαίσιο ενημερώθηκε."],"Block created.":["Το πλαίσιο δημιουργήθηκε."],"Trashing failed":["Η διαγραφή απέτυχε"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],"Paragraphs":["Παράγραφοι"],"Headings":["Κεφαλίδες"],"Words":["Λέξεις"],"Content structure":[],"Public":["Δημόσιο"],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":["Έχει συνθηματικό"],"Only visible to site admins and editors.":[],"Private":["Ιδιωτικό"],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":["Χρήση ασφαλούς συνθηματικού"],"Create password":["Δημιουργία συνθηματικού"],"Move to Trash":[],"Parent Term":[],"Parent Category":["Γονική κατηγορία"],"Add new term":["Προσθήκη νέου όρου"],"Add new category":["Προσθήκη νέας κατηγορίας"],"Term":["Όρος"],"Tag":["Ετικέτα"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":[],"Immediately":["Άμεσα"],"Save Draft":["Αποθήκευση προχείρου"],"Saving":["Γίνεται αποθήκευση"],"Publish:":["Δημοσίευση:"],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What’s next?":["Τι ακολουθεί;"],"is now live.":[],"Published":["Δημοσιευμένο"],"Schedule":["Προγραμματισμός"],"Update":["Αναβάθμιση"],"Submit for Review":["Υποβολή για έλεγχο"],"Updating…":[],"Publishing…":[],"Allow pingbacks & trackbacks":[],"Permalink:":["Μόνιμος σύνδεσμος:"],"Pending review":[],"%d Revision":["%d αναθεώρηση",""],"Suggestion:":["Πρόταση:"],"Post Format":["Μορφή άρθρου"],"Chat":["Συζήτηση"],"Status":["Κατάσταση"],"Standard":["Κανονικό"],"Aside":[],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow comments":[],"Template:":["Πρότυπο:"],"no parent":[],"no title":["χωρίς τίτλο"],"Order":["Σειρά"],"No blocks found.":[],"%d result found.":[],"Saved":["Αποθηκεύτηκε"],"Embeds":[],"Blocks":["Πλαίσια"],"Search for a block":[],"Add block":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],"Undo":["Αναίρεση"],"Redo":["Επανάληψη"],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":["Περισσότερες επιλογές"],"Edit visually":[],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],"Remove":["Αφαίρεση"],"Find original":[],"Copy all content":[],"Copied!":["Αντιγράφηκε!"],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":["Ορατότητα"],"Status & visibility":[],"Page attributes":[],"Block":[],"Document":[],"Close settings":[],"Editor content":["Περιεχόμενο διορθωτή"],"Tools":["Εργαλεία"],"Editor":["Διορθωτής"],"Code editor":[],"Visual editor":[],"Editor top bar":[],"Settings":["Ρυθμίσεις"],"Reset":["Επαναφορά"],"Dismiss this notice":["Απόκρυψη ειδοποίησης"],"Item removed.":[],"Item added.":["Το στοιχείο προστέθηκε."],"Drop files to upload":["Σύρετε εδώ αρχεία για μεταφόρτωση"],"PM":["ΜΜ"],"AM":["ΠΜ"],"An unknown error occurred.":["Ένα άγνωστο σφάλμα παρουσιάστηκε."],"No results.":["Χωρίς αποτελέσματα."],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":["(χωρίς τίτλο)"],"URL":["URL"],"Submit":["Υποβολή"],"Close":["Κλείσιμο"],"Insert link":[],"Edit link":[],"Link":["Σύνδεσμος"],"Strikethrough":["Διπλή διαγράμμιση"],"Italic":["Πλάγια"],"Bold":["Έντονα"],"Remove link":[],"Number of items":["Αριθμός αντικειμένων"],"All":["Όλα"],"Category":["Κατηγορία"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Παλιότερο σε νεώτερο"],"Newest to Oldest":["Νεώτερο σε παλιότερο"],"Order by":["Ταξινόμηση ανά"],"Select":["Επιλογή"],"Select or Upload Media":[],"Video":["Βίντεο"],"Write…":[],"poetry":["ποίηση"],"Verse":[],"New Column":[],"Delete Column":["Διαγραφή στήλης"],"Add Column After":[],"Add Column Before":[],"Delete Row":["Διαγραφή σειράς"],"Add Row After":[],"Add Row Before":[],"Edit table":[],"Table":["Πίνακας"],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":["Shortcode"],"divider":[],"horizontal-line":[],"Separator":["Διαχωριστικό"],"Quote":["Παράθεση"],"Write citation…":[],"Write quote…":["Γράψτε παράθεση ..."],"Pullquote":[],"Write preformatted text…":[],"Preformatted":["Προδιαμορφωμένη"],"text":["κείμενο"],"Paragraph":["Παράγραφος"],"Font Size":["Μέγεθος γραμμάτων"],"Drop Cap":[],"Text settings":[],"Read more":["Διαβάστε περισσότερα"],"Write list…":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],"List":["Λίστα"],"recent posts":[],"No posts found.":["Δεν βρέθηκαν άρθρα. "],"Latest Posts":["Πρόσφατα άρθρα"],"Display post date":["Εμφάνιση ημερομηνίας άρθρου"],"Grid view":[],"List view":[],"photo":["φωτογραφία"],"Image settings":[],"Image":["Εικόνα "],"Preview":["Προεπισκόπηση"],"embed":[],"Custom HTML":["Προσαρμοσμένη HTML"],"subtitle":["υπότιτλος"],"title":["τίτλος"],"Heading":["Επικεφαλίδα"],"Write heading…":["Εισαγωγή επικεφαλίδας…"],"Heading %d":["Επικεφαλίδα %d"],"Level":["Επίπεδο"],"Heading settings":[],"photos":["φωτογραφίες"],"images":["εικόνες"],"None":["Κανένα"],"Media File":["Αρχείο πολυμέσων"],"Attachment Page":["Σελίδα συνημμένων"],"Link to ":[],"Crop Images":["Περικοπή Εικόνων"],"Gallery settings":[],"Gallery":["Γκαλερί"],"Classic":["Κλασικό"],"video":["video"],"audio":["ήχος"],"music":["μουσική"],"image":["εικόνα"],"blog":["ιστολόγιο"],"post":["άρθρο"],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":["%s URL"],"Embedding…":[],"Write title…":["Γράψτε τον τίτλο ..."],"Fixed Background":["Σταθερό υπόβαθρο"],"Edit image":[],"Columns":["Στήλες"],"Experiments":[],"Code":["Κωδικός"],"Write code…":[],"Categories":["Κατηγορίες"],"Show Hierarchy":[],"Show post counts":["Προβολή αριθμού άρθρων"],"Categories settings":[],"Add text…":["Προσθήκη κειμένου…"],"Button":["Κουμπί"],"Apply":["Υποβολή"],"Text Color":["Χρώμα κειμένου"],"Background Color":["Χρώμα Φόντου"],"Block has been deleted or is unavailable.":[],"Reusable blocks":[],"Cancel":["Άκυρο"],"Edit":["Επεξεργασία"],"Write caption…":["Εισαγωγή λεζάντας…"],"Use URL":[],"Audio":["Ήχος"],"Upload":["Ανέβασμα"],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":["Καθαρισμός"],"Custom color picker":[],"Color: %s":["Χρώμα: %s"],"Full width":[],"Wide width":[],"Widgets":["Μικροεφαρμογές"],"Formatting":["Μορφοποίηση"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Προσθήκη τίτλου"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Συντάκτης"],"Slug":["Σύντομο όνομα"],"Discussion":["Συζήτηση"],"Custom fields":[],"Excerpt":["Απόσπασμα"],"Publish":["Δημοσίευση"],"Metadata":["Μεταδεδομένα"],"Save":["Αποθήκευση"],"Documentation":["Τεκμηρίωση"],"Select Category":["Επιλογή Κατηγορίας"],"(Untitled)":["(Χωρίς τίτλο)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Το Gutenberg απαιτεί το WordPress %s ή μεταγενέστερο προκειμένου να λειτουργήσει σωστά. Παρακαλούμε, αναβαθμίστε το WordPress προτού ενεργοποιήσετε τον Gutenberg."],"Gutenberg Team":["Η Ομάδα του Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Δοκιμή"],"%s ago":["%s πριν"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_enau.json b/bundle/android/raw/i18ncache_data_enau.json
new file mode 100644
index 0000000000..b966e42875
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_enau.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],"Replace":["Replace"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],"Next":["Next"],"Previous":["Previous"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct “block” of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable page templates":[],"Page Templates":["Page Templates"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],"inserter":["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Add submenu":[],"Add link…":["Add link…"],"Dark":["Dark"],"Light":["Light"],"recording":["recording"],"podcast":["podcast"],"sound":["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Bin."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\u0004Add New":["Add New"],"Admin Menu text\u0004Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hooves of a goat,\nAnd breaking the golden lilies afloat\n With the dragonfly on the river."],"Navigation":["Navigation"],"Loading Navigation…":["Loading Navigation…"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra large"],"Block breadcrumb":["Block breadcrumb"],"Editor footer":[],"Site Title":["Site title"],"Open Colors Selector":["Open colours selector"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in bin."],"No templates found.":["No templates found."],"Parent Template:":["Parent template:"],"Search Templates":["Search templates"],"All Templates":["All templates"],"View Template":["View template"],"Edit Template":["Edit template"],"New Template":["New template"],"Add New Template":["Add new template"],"Template\u0004Add New":["Add new"],"Admin Menu text\u0004Templates":["Templates"],"Template":["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"Gradient":["Gradient"],"Gradient Presets":["Gradient presets"],"No Preview Available.":["No preview available."],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 December 2018"],"February 21, 2019":["21 February 2019"],"May 7, 2019":["7 May 2019"],"Release Date":["Release date"],"Jazz Musician":["Jazz musician"],"Version":["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["The wren
earns his living
noiselessly."],"Welcome to the wonderful world of blocks…":["Welcome to the wonderful world of blocks…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],"cite":["cite"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc appears - still, snowy and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In the village of La Mancha, the name of which I have no desire to call to mind, there lived, not long since, one of those gentlemen that keep a lance in the lance rack, an old buckler, a lean hack and a greyhound for coursing."],"Block navigation":["Block navigation"],"Full Site Editing":["Full site editing"],"Templates to include in your theme.":["Templates to include in your theme."],"Templates":["Templates"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can’t load.":["Block previews can’t load."],"Retry":["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter address"],"Pill Shape":["Pill shape"],"Logos Only":["Logos only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],"Fill":["Fill"],"Link rel":["Link rel"],"Border Radius":["Border radius"],"Write gallery caption…":["Write gallery caption…"],"Content blocks":[],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable block directory search":[],"Block Directory":["Block directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the file system. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse list numbering"],"Start Value":["Start value"],"Ordered list settings":[],"Clear Media":["Clear media"],"Default Style":["Default style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],"Color":["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["Block name must be a string."],"Custom":["Custom"],"Draft":["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor\". Then, you’ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],"Skip":["Skip"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO settings":[],"Description":["Description"],"Open in new tab":["Open in new tab"],"links":["links"],"navigation":["navigation"],"menu":["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar’s ID.":["The sidebar’s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area "],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Post Content"],"Post content settings":[],"Percentage width":["Percentage width"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\u0004Block Areas":["Block Areas"],"post type singular name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"header":[],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],"section":["section"],"row":["row"],"wrapper":["wrapper"],"container":["container"],"A block that groups other blocks.":["A block that groups other blocks."],"Group":["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],"Taxonomy":["Taxonomy"],"Tag Cloud settings":[],"- Select -":["- Select -"],"Default":["Default"],"find":["find"],"Help visitors find your content.":["Help visitors find your content."],"Search":["Search"],"Add button text…":["Add button text…"],"Button text":["Button text"],"Optional placeholder…":["Optional placeholder…"],"Optional placeholder text":["Optional placeholder text"],"Add label…":["Add label…"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],"archive":["archive"],"posts":["posts"],"A calendar of your site’s posts.":["A calendar of your site’s posts."],"Calendar":["Calendar"],"by":["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\u0004Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],"Back":["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],"feed":["Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],"RSS":["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS settings":[],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],"ebook":["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],"Underline":["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Content…"],"button label\u0004Convert to link":["Convert to link"],"button label\u0004Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top toolbar":[],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],"Permalink":["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Bin."],"Block\u0004Add New":["Add New"],"add new on admin bar\u0004Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],"Thumbnail":["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],"Annotation":["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resolve"],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Import"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Embed"],"block title\u0004Embed":["Embed"],"block title\u0004Classic":["Classic"],"block style\u0004Large":["Large"],"block style\u0004Rounded":["Rounded"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"media":["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview…":["Generating preview…"],"Edit or update the image":["Edit or update the image"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay — great for headers.":["Add an image or video with a text overlay — great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\u0004View":["View"],"editor button\u0004Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block navigator"],"Styles":["Styles"],"Advanced panels":[],"Document panels":[],"General":["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"Options":["Options"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Hours":["Hours"],"Time":["Time"],"Year":["Year"],"Day":["Day"],"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"Month":["Month"],"Date":["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],"Stripes":["Stripes"],"Your site doesn’t include support for this block.":["Your site doesn’t include support for this block."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],"Cover":["Cover"],"Border settings":[],"Medium":["Medium"],"Paste URL or type to search":["Paste URL or type to search"],"Terms":["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],"HTML":["HTML"],"Write HTML…":["Write HTML…"],"Media settings":[],"Overlay":["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Current":["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage all reusable blocks":[],"Title":["Title"],"Fullscreen mode":[],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Create":["Create"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylised one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],"Galleries":["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\u0004More":["More"],"button to expand options\u0004More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],"Small":["Small"],"Reusable":["Reusable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color settings":[],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],"Muted":["Muted"],"Video settings":[],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest comments settings":[],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],"Auto":["Auto"],"Preload":["Preload"],"Audio settings":[],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],"Support":["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],"Archives":["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block","Remove Blocks"],"Open publish panel":["Open publish panel"],"Dots":["Dots"],"Wide Line":["Wide Line"],"Large":["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],"download":[],"pdf":["pdf"],"document":["document"],"Copy URL":["Copy URL"],"Write file name…":["Write file name…"],"File":["File"],"A single column within a columns block.":["A single column within a columns block."],"Column":["Column"],"Outline":["Outline"],"Loop":["Loop"],"Autoplay":["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you’re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Autosaving":["Autosaving"],"Enter URL here…":["Enter URL here…"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table — perfect for sharing charts and data.":["Insert a table — perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you’d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\u0004Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer settings":[],"Spacer":["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish…":["Publish…"],"Schedule…":["Schedule…"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Editor settings":["Editor settings"],"Link settings":["Link settings"],"Unlink":["Unlink"],"Page break":["Page break"],"pagination":["pagination"],"next page":["next page"],"Image Size":["Image Size"],"Height":["Height"],"Width":["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],"Advanced":["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn’t match the template assigned to your post type.":["The content of your post doesn’t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Scheduled":["Scheduled"],"Scheduling…":["Scheduling…"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Plugins":["Plugins"],"Custom Size":["Custom Size"],"Layout elements":[],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"imperative verb\u0004Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Words":["Words"],"Content structure":["Content structure"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Private":["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Bin"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],"Term":["Term"],"Tag":["Tag"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Save Draft":["Save Draft"],"Saving":["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What’s next?":["What’s next?"],"is now live.":["is now live."],"Published":["Published"],"Schedule":["Schedule"],"Update":["Update"],"Submit for Review":["Submit for Review"],"Updating…":["Updating…"],"Publishing…":["Publishing…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalink:"],"Pending review":[],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Aside"],"Featured image":["Featured image"],"Set featured image":[],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow comments":[],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],"Order":["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],"Saved":["Saved"],"Embeds":["Embeds"],"Blocks":["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Undo":["Undo"],"Redo":["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],"Duplicate":["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],"Remove":["Remove"],"Find original":["Find original"],"Copy all content":[],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],"Visibility":["Visibility"],"Status & visibility":[],"Page attributes":[],"Block":["Block"],"Document":["Document"],"Close settings":["Close settings"],"Editor content":["Editor content"],"Tools":["Tools"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor top bar"],"Settings":["Settings"],"Reset":["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],"URL":["URL"],"Submit":["Submit"],"Close":["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],"Link":["Link"],"Strikethrough":["Strikethrough"],"Italic":["Italic"],"Bold":["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],"All":["All"],"Category":["Category"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],"Select":["Select"],"Select or Upload Media":["Select or Upload Media"],"Video":["Video"],"Write…":["Write…"],"poetry":["poetry"],"Verse":["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],"Table":["Table"],"Write subheading…":["Write subheading…"],"Write shortcode here…":["Write shortcode here…"],"Shortcode":["Shortcode"],"divider":["divider"],"horizontal-line":["horizontal-line"],"Separator":["Separator"],"Quote":["Quote"],"Write citation…":["Write citation…"],"Write quote…":["Write quote…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Write preformatted text…"],"Preformatted":["Preformatted"],"text":["text"],"Paragraph":["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text settings":[],"Read more":["Read more"],"Write list…":["Write list…"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],"List":["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],"photo":["photo"],"Image settings":[],"Image":["Image"],"Preview":["Preview"],"embed":["embed"],"Custom HTML":["Custom HTML"],"subtitle":["subtitle"],"title":["title"],"Heading":["Heading"],"Write heading…":["Write heading…"],"Heading %d":["Heading %d"],"Level":["Level"],"Heading settings":[],"photos":["photos"],"images":["images"],"None":["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Link to ":[],"Crop Images":["Crop Images"],"Gallery settings":[],"Gallery":["Gallery"],"Classic":["Classic Edit"],"video":["video"],"audio":["audio"],"music":["music"],"image":["image"],"blog":["blog"],"post":["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here…":["Enter URL to embed here…"],"%s URL":["%s URL"],"Embedding…":["Embedding…"],"Write title…":["Write title…"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],"Columns":["Columns"],"Experiments":["Experiments"],"Code":["Code"],"Write code…":["Write code…"],"Categories":["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories settings":[],"Add text…":["Add text…"],"Button":["Button"],"Apply":["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable blocks":[],"Cancel":["Cancel"],"Edit":["Edit"],"Write caption…":["Write caption…"],"Use URL":["Use URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],"Clear":["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatting"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information."],"Author":["Author"],"Slug":["Slug"],"Discussion":["Discussion"],"Custom fields":[],"Excerpt":["Excerpt"],"Publish":["Publish"],"Metadata":["Metadata"],"Save":["Save"],"Documentation":["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_enca.json b/bundle/android/raw/i18ncache_data_enca.json
new file mode 100644
index 0000000000..6195604dc3
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_enca.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],"Replace":["Replace"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],"Next":["Next"],"Previous":["Previous"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width, and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable page templates":[],"Page Templates":["Page Templates"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],"inserter":["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Add submenu":[],"Add link…":["Add link…"],"Dark":["Dark"],"Light":["Light"],"recording":["recording"],"podcast":["podcast"],"sound":["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Trash."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\u0004Add New":["Add New"],"Admin Menu text\u0004Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],"Navigation":["Navigation"],"Loading Navigation…":["Loading Navigation…"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra Large"],"Block breadcrumb":["Block breadcrumb"],"Editor footer":[],"Site Title":["Site Title"],"Open Colors Selector":["Open Colours Selector"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in Trash."],"No templates found.":["No templates found."],"Parent Template:":["Parent Template:"],"Search Templates":["Search Templates"],"All Templates":["All Templates"],"View Template":["View Template"],"Edit Template":["Edit Template"],"New Template":["New Template"],"Add New Template":["Add New Template"],"Template\u0004Add New":["Add New"],"Admin Menu text\u0004Templates":["Templates"],"Template":["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"Gradient":["Gradient"],"Gradient Presets":["Gradient Presets"],"No Preview Available.":["No Preview Available."],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["December 6, 2018"],"February 21, 2019":["February 21, 2019"],"May 7, 2019":["May 7, 2019"],"Release Date":["Release Date"],"Jazz Musician":["Jazz Musician"],"Version":["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["The wren
Earns his living
Noiselessly."],"Welcome to the wonderful world of blocks…":["Welcome to the wonderful world of blocks…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to Action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],"cite":["cite"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc appears—still, snowy, and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing."],"Block navigation":["Block navigation"],"Full Site Editing":["Full Site Editing"],"Templates to include in your theme.":["Templates to include in your theme."],"Templates":["Templates"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can’t load.":["Block previews can’t load."],"Retry":["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter Address"],"Pill Shape":["Pill Shape"],"Logos Only":["Logos Only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],"Fill":["Fill"],"Link rel":["Link rel"],"Border Radius":["Border Radius"],"Write gallery caption…":["Write gallery caption…"],"Content blocks":[],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable block directory search":[],"Block Directory":["Block Directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the filesystem. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse List Numbering"],"Start Value":["Start Value"],"Ordered list settings":[],"Clear Media":["Clear Media"],"Default Style":["Default Style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],"Color":["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["Block name must be a string."],"Custom":["Custom"],"Draft":["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],"Skip":["Skip"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO settings":[],"Description":["Description"],"Open in new tab":["Open in new tab"],"links":["links"],"navigation":["navigation"],"menu":["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar’s ID.":["The sidebar’s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area"],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Post Content"],"Post content settings":[],"Percentage width":["Percentage width"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\u0004Block Areas":["Block Areas"],"post type singular name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"header":[],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],"section":["section"],"row":["row"],"wrapper":["wrapper"],"container":["container"],"A block that groups other blocks.":["A block that groups other blocks."],"Group":["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],"Taxonomy":["Taxonomy"],"Tag Cloud settings":[],"- Select -":["- Select -"],"Default":["Default"],"find":["find"],"Help visitors find your content.":["Help visitors find your content."],"Search":["Search"],"Add button text…":["Add button text…"],"Button text":["Button text"],"Optional placeholder…":["Optional placeholder…"],"Optional placeholder text":["Optional placeholder text"],"Add label…":["Add label…"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],"archive":["archive"],"posts":["posts"],"A calendar of your site’s posts.":["A calendar of your site’s posts."],"Calendar":["Calendar"],"by":["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\u0004Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],"Back":["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],"feed":["Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],"RSS":["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS settings":[],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],"ebook":["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],"Underline":["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Content…"],"button label\u0004Convert to link":["Convert to link"],"button label\u0004Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top toolbar":[],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],"Permalink":["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Trash."],"Block\u0004Add New":["Add New"],"add new on admin bar\u0004Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],"Thumbnail":["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],"Annotation":["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resolve"],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Import"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Embed"],"block title\u0004Embed":["Embed"],"block title\u0004Classic":["Classic"],"block style\u0004Large":["Large"],"block style\u0004Rounded":["Rounded"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"media":["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview…":["Generating preview…"],"Edit or update the image":["Edit or update the image"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customize its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay — great for headers.":["Add an image or video with a text overlay — great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\u0004View":["View"],"editor button\u0004Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block Navigator"],"Styles":["Styles"],"Advanced panels":[],"Document panels":[],"General":["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"Options":["Options"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Hours":["Hours"],"Time":["Time"],"Year":["Year"],"Day":["Day"],"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"Month":["Month"],"Date":["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],"Stripes":["Stripes"],"Your site doesn’t include support for this block.":["Your site doesn’t include support for this block."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],"Cover":["Cover"],"Border settings":[],"Medium":["Medium"],"Paste URL or type to search":["Paste URL or type to search"],"Terms":["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],"HTML":["HTML"],"Write HTML…":["Write HTML…"],"Media settings":[],"Overlay":["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Current":["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage all reusable blocks":[],"Title":["Title"],"Fullscreen mode":[],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Create":["Create"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg!"],"Help build Gutenberg":["Help build Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],"Galleries":["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organization of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\u0004More":["More"],"button to expand options\u0004More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],"Small":["Small"],"Reusable":["Reusable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color settings":[],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],"Muted":["Muted"],"Video settings":[],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest comments settings":[],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],"Auto":["Auto"],"Preload":["Preload"],"Audio settings":[],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],"Support":["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],"Archives":["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block","Remove Blocks"],"Open publish panel":["Open publish panel"],"Dots":["Dots"],"Wide Line":["Wide Line"],"Large":["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],"download":[],"pdf":["pdf"],"document":["document"],"Copy URL":["Copy URL"],"Write file name…":["Write file name…"],"File":["File"],"A single column within a columns block.":["A single column within a columns block."],"Column":["Column"],"Outline":["Outline"],"Loop":["Loop"],"Autoplay":["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you’re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Autosaving":["Autosaving"],"Enter URL here…":["Enter URL here…"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table — perfect for sharing charts and data.":["Insert a table — perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you’d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\u0004Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer settings":[],"Spacer":["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish…":["Publish…"],"Schedule…":["Schedule…"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Editor settings":["Editor settings"],"Link settings":["Link settings"],"Unlink":["Unlink"],"Page break":["Page break"],"pagination":["pagination"],"next page":["next page"],"Image Size":["Image Size"],"Height":["Height"],"Width":["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],"Advanced":["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn’t match the template assigned to your post type.":["The content of your post doesn’t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Scheduled":["Scheduled"],"Scheduling…":["Scheduling…"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Plugins":["Plugins"],"Custom Size":["Custom Size"],"Layout elements":[],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"imperative verb\u0004Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Trashing failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Words":["Words"],"Content structure":["Content structure"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Private":["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Trash"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],"Term":["Term"],"Tag":["Tag"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Save Draft":["Save Draft"],"Saving":["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What’s next?":["What’s next?"],"is now live.":["is now live."],"Published":["Published"],"Schedule":["Schedule"],"Update":["Update"],"Submit for Review":["Submit for Review"],"Updating…":["Updating…"],"Publishing…":["Publishing…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalink:"],"Pending review":[],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Aside"],"Featured image":["Featured image"],"Set featured image":[],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow comments":[],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],"Order":["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],"Saved":["Saved"],"Embeds":["Embeds"],"Blocks":["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Undo":["Undo"],"Redo":["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],"Duplicate":["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],"Remove":["Remove"],"Find original":["Find original"],"Copy all content":[],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],"Visibility":["Visibility"],"Status & visibility":[],"Page attributes":[],"Block":["Block"],"Document":["Document"],"Close settings":["Close settings"],"Editor content":["Editor content"],"Tools":["Tools"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor top bar"],"Settings":["Settings"],"Reset":["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],"URL":["URL"],"Submit":["Submit"],"Close":["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],"Link":["Link"],"Strikethrough":["Strikethrough"],"Italic":["Italic"],"Bold":["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],"All":["All"],"Category":["Category"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],"Select":["Select"],"Select or Upload Media":["Select or Upload Media"],"Video":["Video"],"Write…":["Write…"],"poetry":["poetry"],"Verse":["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],"Table":["Table"],"Write subheading…":["Write subheading…"],"Write shortcode here…":["Write shortcode here…"],"Shortcode":["Shortcode"],"divider":["divider"],"horizontal-line":["horizontal-line"],"Separator":["Separator"],"Quote":["Quote"],"Write citation…":["Write citation…"],"Write quote…":["Write quote…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Write preformatted text…"],"Preformatted":["Preformatted"],"text":["text"],"Paragraph":["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text settings":[],"Read more":["Read more"],"Write list…":["Write list…"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],"List":["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],"photo":["photo"],"Image settings":[],"Image":["Image"],"Preview":["Preview"],"embed":["embed"],"Custom HTML":["Custom HTML"],"subtitle":["subtitle"],"title":["title"],"Heading":["Heading"],"Write heading…":["Write heading…"],"Heading %d":["Heading %d"],"Level":["Level"],"Heading settings":[],"photos":["photos"],"images":["images"],"None":["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Link to ":[],"Crop Images":["Crop Images"],"Gallery settings":[],"Gallery":["Gallery"],"Classic":["Classic"],"video":["video"],"audio":["audio"],"music":["music"],"image":["image"],"blog":["blog"],"post":["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here…":["Enter URL to embed here…"],"%s URL":["%s URL"],"Embedding…":["Embedding…"],"Write title…":["Write title…"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],"Columns":["Columns"],"Experiments":["Experiments"],"Code":["Code"],"Write code…":["Write code…"],"Categories":["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories settings":[],"Add text…":["Add text…"],"Button":["Button"],"Apply":["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable blocks":[],"Cancel":["Cancel"],"Edit":["Edit"],"Write caption…":["Write caption…"],"Use URL":["Use URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],"Clear":["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatting"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information."],"Author":["Author"],"Slug":["Slug"],"Discussion":["Discussion"],"Custom fields":[],"Excerpt":["Excerpt"],"Publish":["Publish"],"Metadata":["Metadata"],"Save":["Save"],"Documentation":["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_engb.json b/bundle/android/raw/i18ncache_data_engb.json
new file mode 100644
index 0000000000..3c770d0faf
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_engb.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Show submenu icon for top-level items"],"Display settings":["Display settings"],"Choose variation":["Choose variation"],"Angle":["Angle"],"%s Block":["%s Block"],"%1$s Block. %2$s":["%1$s Block. %2$s"],"%s Block. Column %d":["%s Block. Column %d"],"%1$s Block. Column %2$d. %3$s":["%1$s Block. Column %2$d. %3$s"],"%s Block. Row %d":["%s Block. Row %d"],"%1$s Block. Row %2$d. %3$s":["%1$s Block. Row %2$d. %3$s"],"Post Excerpt":["Post Excerpt"],"Post Date":["Post Date"],"No Date":["No Date"],"Post Author":["Post Author"],"Choose":["Choose"],"twentytwenty":["twentytwenty"],"Theme":["Theme"],"Choose a template part by slug and theme, or create a new one.":["Choose a template part by slug and theme, or create a new one."],"Error adding template.":["Error adding template."],"Footer label":["Footer label"],"Header label":["Header label"],"Unsupported":["Unsupported"],"The description will be displayed in the menu if the current theme supports it.":["The description will be displayed in the menu if the current theme supports it."],"Level %1$s. %2$s":["Level %1$s. %2$s"],"Level %s. Empty.":["Level %s. Empty."],"Empty":["Empty"],"Search results for %s":["Search results for %s"],"Recently updated":["Recently updated"],"Multiple selected blocks":["Multiple selected blocks"],"By %s":["By %s"],"Inspector":["Inspector"],"Site editor advanced settings.":["Site editor advanced settings."],"(beta)":["(beta)"],"Site Editor":["Site Editor"],"Site editor top bar.":["Site editor top bar."],"Briefly describe the link to help screen reader users.":["Briefly describe the link to help screen reader users."],"Link Label":["Link Label"],"%s label":["%s label"],"poem":["poem"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window, which is almost a postage stamp in the frame, other forms appear;"],"Full Post":["Full Post"],"Show:":["Show:"],"Create from all top-level pages":["Create from all top-level pages"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Prompt visitors to take action with a group of button-style links."],"Buttons":["Buttons"],"Background":["Background"],"Background & Text Color":["Background & Text Colour"],"Images Size":["Images Size"],"Remove multiple selected blocks.":["Remove multiple selected blocks."],"(%s: gradient %s)":["(%s: gradient %s)"],"(%s: color %s)":["(%s: colour %s)"],"(Gradient: %s)":["(Gradient: %s)"],"(Color: %s)":["(Colour: %s)"],"Here's a detailed guide.":["Here's a detailed guide."],"New to the Block Editor? Want to learn more about using it? ":["New to the Block Editor? Want to learn more about using it?"],"Learn how to use the Block Editor":["Learn how to use the Block Editor"],"Help":["Help"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s block icon"],"Submit for Review…":["Submit for Review…"],"Update…":["Update…"],"Select items to save.":["Select items to save."],"What do you want to save?":["What do you want to save?"],"Untitled":["Untitled"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)"],"Site Editor (beta)":["Site Editor (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],"Replace":["Replace"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],"Next":["Next"],"Previous":["Previous"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct “block” of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable page templates":["Enable page templates"],"Page Templates":["Page Templates"],"Enable Full Site Editing demo templates":["Enable Full Site Editing demo templates"],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],"inserter":["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Add submenu":["Add submenu"],"Add link…":["Add link…"],"Dark":["Dark"],"Light":["Light"],"recording":["recording"],"podcast":["podcast"],"sound":["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Bin."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\u0004Add New":["Add New"],"Admin Menu text\u0004Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hooves of a goat,\nAnd breaking the golden lilies afloat\n With the dragonfly on the river."],"Navigation":["Navigation"],"Loading Navigation…":["Loading Navigation…"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra large"],"Block breadcrumb":["Block breadcrumb"],"Editor footer":["Editor footer"],"Site Title":["Site title"],"Open Colors Selector":["Open colours selector"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in bin."],"No templates found.":["No templates found."],"Parent Template:":["Parent template:"],"Search Templates":["Search templates"],"All Templates":["All templates"],"View Template":["View template"],"Edit Template":["Edit template"],"New Template":["New template"],"Add New Template":["Add new template"],"Template\u0004Add New":["Add new"],"Admin Menu text\u0004Templates":["Templates"],"Template":["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"Gradient":["Gradient"],"Gradient Presets":["Gradient presets"],"No Preview Available.":["No preview available."],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 December 2018"],"February 21, 2019":["21 February 2019"],"May 7, 2019":["7 May 2019"],"Release Date":["Release date"],"Jazz Musician":["Jazz musician"],"Version":["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["The wren
earns his living
noiselessly."],"Welcome to the wonderful world of blocks…":["Welcome to the wonderful world of blocks…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],"cite":["cite"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc appears - still, snowy and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In the village of La Mancha, the name of which I have no desire to call to mind, there lived, not long since, one of those gentlemen that keep a lance in the lance rack, an old buckler, a lean hack and a greyhound for coursing."],"Block navigation":["Block navigation"],"Full Site Editing":["Full site editing"],"Templates to include in your theme.":["Templates to include in your theme."],"Templates":["Templates"],"Inserter help panel":["Inserter help panel"],"Pre-publish checks":["Pre-publish checks"],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can’t load.":["Block previews can’t load."],"Retry":["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter address"],"Pill Shape":["Pill shape"],"Logos Only":["Logos only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],"Fill":["Fill"],"Link rel":["Link rel"],"Border Radius":["Border radius"],"Write gallery caption…":["Write gallery caption…"],"Content blocks":["Content blocks"],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable block directory search":["Enable block directory search"],"Block Directory":["Block directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the file system. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse list numbering"],"Start Value":["Start value"],"Ordered list settings":["Ordered list settings"],"Clear Media":["Clear media"],"Default Style":["Default style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],"Color":["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Enable Widgets screen and Legacy Widgets block":["Enable Widgets screen and Legacy Widgets block"],"Experimental settings":["Experimental settings"],"Block name name must be a string.":["Block name must be a string."],"Custom":["Custom"],"Draft":["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor\". Then, you’ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],"Skip":["Skip"],"Select a variation to start with.":["Select a variation to start with."],"Add a page, link, or another item to your navigation.":["Add a page, link, or another item to your navigation."],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO settings":["SEO settings"],"Description":["Description"],"Open in new tab":["Open in new tab"],"links":["links"],"navigation":["navigation"],"menu":["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar’s ID.":["The sidebar’s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area "],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and filtering":["Sorting and filtering"],"Post meta settings":["Post meta settings"],"Post Content":["Post Content"],"Post content settings":["Post content settings"],"Percentage width":["Percentage width"],"Column settings":["Column settings"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\u0004Block Areas":["Block Areas"],"post type singular name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"header":["header"],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],"section":["section"],"row":["row"],"wrapper":["wrapper"],"container":["container"],"A block that groups other blocks.":["A block that groups other blocks."],"Group":["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],"Taxonomy":["Taxonomy"],"Tag Cloud settings":["Tag Cloud settings"],"- Select -":["- Select -"],"Default":["Default"],"find":["find"],"Help visitors find your content.":["Help visitors find your content."],"Search":["Search"],"Add button text…":["Add button text…"],"Button text":["Button text"],"Optional placeholder…":["Optional placeholder…"],"Optional placeholder text":["Optional placeholder text"],"Add label…":["Add label…"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],"archive":["archive"],"posts":["posts"],"A calendar of your site’s posts.":["A calendar of your site’s posts."],"Calendar":["Calendar"],"by":["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\u0004Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],"Back":["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],"feed":["Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],"RSS":["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS settings":["RSS settings"],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],"ebook":["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],"Underline":["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Content…"],"button label\u0004Convert to link":["Convert to link"],"button label\u0004Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top toolbar":["Top toolbar"],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],"Permalink":["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Bin."],"Block\u0004Add New":["Add New"],"add new on admin bar\u0004Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],"Thumbnail":["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align text right":["Align text right"],"Align text center":["Align text centre"],"Align text left":["Align text left"],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],"Annotation":["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\u0004Most used":["Most used"],"imperative verb\u0004Resolve":["Resolve"],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Import"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Embed"],"block title\u0004Embed":["Embed"],"block title\u0004Classic":["Classic"],"block style\u0004Large":["Large"],"block style\u0004Rounded":["Rounded"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"media":["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview…":["Generating preview…"],"Edit or update the image":["Edit or update the image"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text settings":["Media & Text settings"],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay — great for headers.":["Add an image or video with a text overlay — great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\u0004View":["View"],"editor button\u0004Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block navigator"],"Styles":["Styles"],"Advanced panels":["Advanced panels"],"Document panels":["Document panels"],"General":["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"Options":["Options"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Hours":["Hours"],"Time":["Time"],"Year":["Year"],"Day":["Day"],"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"Month":["Month"],"Date":["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],"Stripes":["Stripes"],"Your site doesn’t include support for this block.":["Your site doesn’t include support for this block."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],"Cover":["Cover"],"Border settings":["Border settings"],"Medium":["Medium"],"Paste URL or type to search":["Paste URL or type to search"],"Terms":["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],"HTML":["HTML"],"Write HTML…":["Write HTML…"],"Media settings":["Media settings"],"Overlay":["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Current":["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage all reusable blocks":["Manage all reusable blocks"],"Title":["Title"],"Fullscreen mode":["Fullscreen mode"],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Create":["Create"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight mode":["Spotlight mode"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d right to position %3$d":["Move %1$s block from position %2$d right to position %3$d"],"movie":["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual editor and Code editor.":["Switch between visual editor and code editor."],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard shortcuts":["Keyboard shortcuts"],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylised one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],"Galleries":["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\u0004More":["More"],"button to expand options\u0004More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],"Small":["Small"],"Reusable":["Reusable"],"Remove from Reusable blocks":["Remove from reusable blocks"],"Add to Reusable blocks":["Add to reusable blocks"],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color settings":["Colour settings"],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],"Muted":["Muted"],"Video settings":["Video settings"],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest comments settings":["Latest comments settings"],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],"Auto":["Auto"],"Preload":["Preload"],"Audio settings":["Audio settings"],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives settings":["Archives settings"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],"Support":["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],"Archives":["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block"],"Open publish panel":["Open publish panel"],"Dots":["Dots"],"Wide Line":["Wide Line"],"Large":["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],"download":["download"],"pdf":["pdf"],"document":["document"],"Copy URL":["Copy URL"],"Write file name…":["Write file name…"],"File":["File"],"A single column within a columns block.":["A single column within a columns block."],"Column":["Column"],"Outline":["Outline"],"Loop":["Loop"],"Autoplay":["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you’re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Autosaving":["Autosaving"],"Enter URL here…":["Enter URL here…"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table — perfect for sharing charts and data.":["Insert a table — perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table settings":["Table settings"],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you’d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\u0004Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer settings":["Spacer settings"],"Spacer":["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish…":["Publish…"],"Schedule…":["Schedule…"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Editor settings":["Editor settings"],"Link settings":["Link settings"],"Unlink":["Unlink"],"Page break":["Page break"],"pagination":["pagination"],"next page":["next page"],"Image Size":["Image Size"],"Height":["Height"],"Width":["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],"Advanced":["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn’t match the template assigned to your post type.":["The content of your post doesn’t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Scheduled":["Scheduled"],"Scheduling…":["Scheduling…"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Plugins":["Plugins"],"Custom Size":["Custom Size"],"Layout elements":["Layout elements"],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"imperative verb\u0004Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View post":["View post"],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Words":["Words"],"Content structure":["Content structure"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Private":["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Bin"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],"Term":["Term"],"Tag":["Tag"],"Add new Term":["Add new term"],"Add new tag":["Add new tag"],"Switch to draft":["Switch to draft"],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Save Draft":["Save Draft"],"Saving":["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What’s next?":["What’s next?"],"is now live.":["is now live."],"Published":["Published"],"Schedule":["Schedule"],"Update":["Update"],"Submit for Review":["Submit for Review"],"Updating…":["Updating…"],"Publishing…":["Publishing…"],"Allow pingbacks & trackbacks":["Allow pingbacks & trackbacks"],"Permalink:":["Permalink:"],"Pending review":["Pending review"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Aside"],"Featured image":["Featured image"],"Set featured image":["Set featured image"],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow comments":["Allow comments"],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],"Order":["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],"Saved":["Saved"],"Embeds":["Embeds"],"Blocks":["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Undo":["Undo"],"Redo":["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],"Duplicate":["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can’t be moved right":["Block %1$s is at the beginning of the content and can’t be moved right"],"Block %1$s is at the end of the content and can’t be moved right":["Block %1$s is at the end of the content and can’t be moved right"],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],"Remove":["Remove"],"Find original":["Find original"],"Copy all content":["Copy all content"],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],"Visibility":["Visibility"],"Status & visibility":["Status & visibility"],"Page attributes":["Page attributes"],"Block":["Block"],"Document":["Document"],"Close settings":["Close settings"],"Editor content":["Editor content"],"Tools":["Tools"],"Editor":["Editor"],"Code editor":["Code editor"],"Visual editor":["Visual editor"],"Editor top bar":["Editor top bar"],"Settings":["Settings"],"Reset":["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],"URL":["URL"],"Submit":["Submit"],"Close":["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],"Link":["Link"],"Strikethrough":["Strikethrough"],"Italic":["Italic"],"Bold":["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],"All":["All"],"Category":["Category"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],"Select":["Select"],"Select or Upload Media":["Select or Upload Media"],"Video":["Video"],"Write…":["Write…"],"poetry":["poetry"],"Verse":["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],"Table":["Table"],"Write subheading…":["Write subheading…"],"Write shortcode here…":["Write shortcode here…"],"Shortcode":["Shortcode"],"divider":["divider"],"horizontal-line":["horizontal-line"],"Separator":["Separator"],"Quote":["Quote"],"Write citation…":["Write citation…"],"Write quote…":["Write quote…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Write preformatted text…"],"Preformatted":["Preformatted"],"text":["text"],"Paragraph":["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text settings":["Text settings"],"Read more":["Read more"],"Write list…":["Write list…"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],"List":["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],"photo":["photo"],"Image settings":["Image settings"],"Image":["Image"],"Preview":["Preview"],"embed":["embed"],"Custom HTML":["Custom HTML"],"subtitle":["subtitle"],"title":["title"],"Heading":["Heading"],"Write heading…":["Write heading…"],"Heading %d":["Heading %d"],"Level":["Level"],"Heading settings":["Heading settings"],"photos":["photos"],"images":["images"],"None":["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Link to ":["Link to "],"Crop Images":["Crop Images"],"Gallery settings":["Gallery settings"],"Gallery":["Gallery"],"Classic":["Classic Edit"],"video":["video"],"audio":["audio"],"music":["music"],"image":["image"],"blog":["blog"],"post":["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here…":["Enter URL to embed here…"],"%s URL":["%s URL"],"Embedding…":["Embedding…"],"Write title…":["Write title…"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],"Columns":["Columns"],"Experiments":["Experiments"],"Code":["Code"],"Write code…":["Write code…"],"Categories":["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories settings":["Categories settings"],"Add text…":["Add text…"],"Button":["Button"],"Apply":["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable blocks":["Reusable blocks"],"Cancel":["Cancel"],"Edit":["Edit"],"Write caption…":["Write caption…"],"Use URL":["Use URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],"Clear":["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full width":["Full width"],"Wide width":["Wide width"],"Widgets":["Widgets"],"Formatting":["Formatting"],"Common blocks":["Common blocks"],"Align right":["Align right"],"Align center":["Align centre"],"Align left":["Align left"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information."],"Author":["Author"],"Slug":["Slug"],"Discussion":["Discussion"],"Custom fields":["Custom fields"],"Excerpt":["Excerpt"],"Publish":["Publish"],"Metadata":["Metadata"],"Save":["Save"],"Documentation":["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg/"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ennz.json b/bundle/android/raw/i18ncache_data_ennz.json
new file mode 100644
index 0000000000..b966e42875
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ennz.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );"],"You are probably offline.":["You are probably offline."],"Justify items right":["Justify items right"],"Justify items center":["Justify items centre"],"Justify items left":["Justify items left"],"Change items justification":["Change items justification"],"The media file has been replaced":["The media file has been replaced"],"Replace":["Replace"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["You are currently in edit mode. To return to the navigation mode, press Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the colour or remove the control point."],"Gradient control point at position %1$s with color code %2$s.":["Gradient control point at position %1$s with colour code %2$s."],"Preset Size":["Preset Size"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter."],"Open Media Library":["Open Media Library"],"Next":["Next"],"Previous":["Previous"],"Finish":["Finish"],"Page %1$d of %2$d":["Page %1$d of %2$d"],"Guide controls":["Guide controls"],"Remove Control Point":["Remove Control Point"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Each block comes with its own set of controls for changing things like colour, width and alignment. These will show and hide automatically when you have a block selected."],"Make each block your own":["Make each block your own"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["In the WordPress editor, each paragraph, image or video is presented as a distinct “block” of content."],"ADD MEDIA":["ADD MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon."],"Get to know the Block Library":["Get to know the Block Library"],"Welcome Guide":["Welcome Guide"],"Enable page templates":[],"Page Templates":["Page Templates"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":["Full Site Editing Demo Templates"],"Welcome to the Block Editor":["Welcome to the Block Editor"],"Get started":["Get started"],"inserter":["inserter"],"Post Title":["Post Title"],"Add nofollow to link":["Add nofollow to link"],"Add submenu":[],"Add link…":["Add link…"],"Dark":["Dark"],"Light":["Light"],"recording":["recording"],"podcast":["podcast"],"sound":["sound"],"Array of instance changes":["Array of instance changes"],"Current widget instance":["Current widget instance"],"Template parts to include in your templates.":["Template parts to include in your templates."],"Template parts list":["Template parts list"],"Template parts list navigation":["Template parts list navigation"],"Filter template parts list":["Filter template parts list"],"Uploaded to this template part":["Uploaded to this template part"],"Insert into template part":["Insert into template part"],"Template part archives":["Template part archives"],"No template parts found in Trash.":["No template parts found in Bin."],"No template parts found.":["No template parts found."],"Parent Template Part:":["Parent Template Part:"],"Search Template Parts":["Search Template Parts"],"All Template Parts":["All Template Parts"],"View Template Part":["View Template Part"],"Edit Template Part":["Edit Template Part"],"New Template Part":["New Template Part"],"Add New Template Part":["Add New Template Part"],"Template Part\u0004Add New":["Add New"],"Admin Menu text\u0004Template Parts":["Template Parts"],"Template Part":["Template Part"],"Template Parts":["Template Parts"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hooves of a goat,\nAnd breaking the golden lilies afloat\n With the dragonfly on the river."],"Navigation":["Navigation"],"Loading Navigation…":["Loading Navigation…"],"Navigation Structure":["Navigation Structure"],"Create empty":["Create empty"],"Create a Navigation from all existing pages, or create an empty one.":["Create a Navigation from all existing pages, or create an empty one."],"Navigation Link":["Navigation Link"],"(Note: many devices and browsers do not display this text.)":["(Note: many devices and browsers do not display this text.)"],"Describe the role of this image on the page.":["Describe the role of this image on the page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Toggle between using the same value for all screen sizes or using a unique value per screen size."],"Use the same %s on all screensizes.":["Use the same %s on all screen sizes."],"Large screens":["Large screens"],"Medium screens":["Medium screens"],"Small screens":["Small screens"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controls the %1$s property for %2$s viewports."],"Currently selected":["Currently selected"],"Search or type url":["Search or type URL"],"Press ENTER to add this link":["Press ENTER to add this link"],"Currently selected link settings":["Currently selected link settings"],"Generic label for block inserter button\u0004Add block":["Add block"],"directly add the only allowed block\u0004Add %s":["Add %s"],"%s block added":["%s block added"],"Move %s":["Move %s"],"Extra Large":["Extra large"],"Block breadcrumb":["Block breadcrumb"],"Editor footer":[],"Site Title":["Site title"],"Open Colors Selector":["Open colours selector"],"Templates list":["Templates list"],"Templates list navigation":["Templates list navigation"],"Filter templates list":["Filter templates list"],"Uploaded to this template":["Uploaded to this template"],"Insert into template":["Insert into template"],"Template archives":["Template archives"],"No templates found in Trash.":["No templates found in bin."],"No templates found.":["No templates found."],"Parent Template:":["Parent template:"],"Search Templates":["Search templates"],"All Templates":["All templates"],"View Template":["View template"],"Edit Template":["Edit template"],"New Template":["New template"],"Add New Template":["Add new template"],"Template\u0004Add New":["Add new"],"Admin Menu text\u0004Templates":["Templates"],"Template":["Template"],"No matching template found":["No matching template found"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradient code: %s"],"All content copied.":["All content copied."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media upload failed. If this is a photo or a large image, please scale it down and try again."],"Gradient":["Gradient"],"Gradient Presets":["Gradient presets"],"No Preview Available.":["No preview available."],"Midnight":["Midnight"],"Electric grass":["Electric grass"],"Pale ocean":["Pale ocean"],"Luminous dusk":["Luminous dusk"],"Blush bordeaux":["Blush bordeaux"],"Blush light purple":["Blush light purple"],"Cool to warm spectrum":["Cool to warm spectrum"],"Very light gray to cyan bluish gray":["Very light grey to cyan bluish grey"],"Luminous vivid orange to vivid red":["Luminous vivid orange to vivid red"],"Luminous vivid amber to luminous vivid orange":["Luminous vivid amber to luminous vivid orange"],"Light green cyan to vivid green cyan":["Light green cyan to vivid green cyan"],"Vivid cyan blue to vivid purple":["Vivid cyan blue to vivid purple"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 December 2018"],"February 21, 2019":["21 February 2019"],"May 7, 2019":["7 May 2019"],"Release Date":["Release date"],"Jazz Musician":["Jazz musician"],"Version":["Version"],"Six.":["Six."],"Five.":["Five."],"Four.":["Four."],"Three.":["Three."],"Two.":["Two."],"One.":["One."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["The wren
earns his living
noiselessly."],"Welcome to the wonderful world of blocks…":["Welcome to the wonderful world of blocks…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimensions"],"Minimum height in pixels":["Minimum height in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to action"],"In quoting others, we cite ourselves.":["In quoting others, we cite ourselves."],"cite":["cite"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc appears - still, snowy and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In the village of La Mancha, the name of which I have no desire to call to mind, there lived, not long since, one of those gentlemen that keep a lance in the lance rack, an old buckler, a lean hack and a greyhound for coursing."],"Block navigation":["Block navigation"],"Full Site Editing":["Full site editing"],"Templates to include in your theme.":["Templates to include in your theme."],"Templates":["Templates"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["Please contact your site administrator to install new blocks."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No blocks found in your library. Please contact your site administrator to install new blocks."],"No blocks found in your library.":["No blocks found in your library."],"No blocks found in your library. These blocks can be downloaded and installed:":["No blocks found in your library. These blocks can be downloaded and installed:"],"No blocks found in your library. We did find %d block available for download.":["No blocks found in your library. We did find %d block available for download.","No blocks found in your library. We did find %d blocks available for download."],"Block previews can’t load.":["Block previews can’t load."],"Retry":["Retry"],"Block previews can't install.":["Block previews can't install."],"Updated %s":["Updated %s"],"%d active installation":["%d active installation","%d active installations"],"This author has %d block, with an average rating of %d.":["This author has %d block, with an average rating of %d.","This author has %d blocks, with an average rating of %d."],"Authored by %s":["Authored by %s"],"%d total rating":["%d total rating","%d total ratings"],"%s out of 5 stars":["%s out of 5 stars"],"Enter Address":["Enter address"],"Pill Shape":["Pill shape"],"Logos Only":["Logos only"],"Create a block of links to your social media or external sites":["Create a block of links to your social media or external sites"],"Social links":["Social links"],"Open block navigator":["Open block navigator"],"Attachment page":["Attachment page"],"Fill":["Fill"],"Link rel":["Link rel"],"Border Radius":["Border radius"],"Write gallery caption…":["Write gallery caption…"],"Content blocks":[],"Restore the backup":["Restore the backup"],"The backup of this post in your browser is different from the version below.":["The backup of this post in your browser is different from the version below."],"Enable block directory search":[],"Block Directory":["Block directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Unable to connect to the file system. Please confirm your credentials."],"Sorry, you are not allowed to install blocks.":["Sorry, you are not allowed to install blocks."],"%1$d block is disabled.":["%1$d block is disabled.","%1$d blocks are disabled."],"Reverse List Numbering":["Reverse list numbering"],"Start Value":["Start value"],"Ordered list settings":[],"Clear Media":["Clear media"],"Default Style":["Default style"],"Not set":["Not set"],"While writing, you can press / to quickly insert new blocks.":["While writing, you can press / to quickly insert new blocks."],"Browse through the library to learn more about what each block does.":["Browse through the library to learn more about what each block does."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor."],"Version of the content block format used by the object.":["Version of the content block format used by the object."],"HTML content for the object, transformed for display.":["HTML content for the object, transformed for display."],"Content for the object, as it exists in the database.":["Content for the object, as it exists in the database."],"The content for the object.":["The content for the object."],"Change column alignment":["Change column alignment"],"Align Column Right":["Align Column Right"],"Align Column Center":["Align Column Centre"],"Align Column Left":["Align Column Left"],"Color":["Colour"],"Vivid purple":["Vivid purple"],"Disable & Reload":["Disable & Reload"],"Enable & Reload":["Enable & Reload"],"A page reload is required for this change. Make sure your content is saved before reloading.":["A page reload is required for this change. Make sure your content is saved before reloading."],"Display these keyboard shortcuts.":["Display these keyboard shortcuts."],"Experiments Settings":["Experiments Settings"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["Block name must be a string."],"Custom":["Custom"],"Draft":["Draft"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Block \"%1$s\" does not contain a style named \"%2$s.\"."],"Learn more about anchors":["Learn more about anchors"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor\". Then, you’ll be able to link directly to this section of your page."],"Widget Blocks (Experimental)":["Widget Blocks (Experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload a video file, pick one from your media library, or add one with a URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload an image file, pick one from your media library, or add one with a URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload an audio file, pick one from your media library, or add one with a URL."],"Upload a media file or pick one from your media library.":["Upload a media file or pick one from your media library."],"Skip":["Skip"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["What's this?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Don't let search engines follow this link."],"Provide more context about where the link goes.":["Provide more context about where the link goes."],"Title Attribute":["Title Attribute"],"SEO settings":[],"Description":["Description"],"Open in new tab":["Open in new tab"],"links":["links"],"navigation":["navigation"],"menu":["menu"],"Add a navigation block to your site.":["Add a navigation block to your site."],"Upload a file or pick one from your media library.":["Upload a file or pick one from your media library."],"Learn more about embeds":["Learn more about embeds"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Paste a link to the content you want to display on your site."],"Upload an image or video file, or pick one from your media library.":["Upload an image or video file, or pick one from your media library."],"Three columns; wide center column":["Three columns; wide centre column"],"Three columns; equal split":["Three columns; equal split"],"Two columns; two-thirds, one-third split":["Two columns; two-thirds, one-third split"],"Two columns; one-third, two-thirds split":["Two columns; one-third, two-thirds split"],"Two columns; equal split":["Two columns; equal split"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Your site doesn’t have any %s, so there’s nothing to display here at the moment."],"More tools & options":["More tools & options"],"Create Table":["Create Table"],"Insert a table for sharing data.":["Insert a table for sharing data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Ungroup"],"verb\u0004Group":["Group"],"Separate with commas or the Enter key.":["Separate with commas or the Enter key."],"Separate with commas, spaces, or the Enter key.":["Separate with commas, spaces, or the Enter key."],"Separate multiple classes with spaces.":["Separate multiple classes with spaces."],"Move image forward":["Move image forward"],"Move image backward":["Move image backward"],"Sorry, you are not allowed to edit sidebars.":["Sorry, you are not allowed to edit sidebars."],"Sorry, you are not allowed to read sidebars.":["Sorry, you are not allowed to read sidebars."],"The sidebar’s ID.":["The sidebar’s ID."],"Displays a set of blocks":["Displays a set of blocks"],"Blocks Area":["Blocks Area "],"Block rendered as empty.":["Block rendered as empty."],"Inline Code":["Inline Code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Note: autoplaying videos may cause usability issues for some visitors."],"Footer section":["Footer section"],"Header section":["Header section"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Post Content"],"Post content settings":[],"Percentage width":["Percentage width"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Note: autoplaying audio may cause usability issues for some visitors."],"Block area updated.":["Block area updated."],"Block area scheduled.":["Block area scheduled."],"Block area published.":["Block area published."],"Block areas list":["Block areas list"],"Block areas list navigation":["Block areas list navigation"],"Filter block areas list":["Filter block areas list"],"No block area found.":["No block area found."],"Search Block Areas":["Search Block Areas"],"All Block Areas":["All Block Areas"],"View Block Area":["View Block Area"],"Edit Block Area":["Edit Block Area"],"New Block Area":["New Block Area"],"Add New Block Area":["Add New Block Area"],"admin menu\u0004Block Areas":["Block Areas"],"post type singular name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Block Area (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimental custom post type that will store block areas referenced by themes."],"Widgets screen content":["Widgets screen content"],"header":[],"Widgets advanced settings":["Widgets advanced settings"],"(experimental)":["(experimental)"],"Block Areas":["Block Areas"],"Widgets screen top bar":["Widgets screen top bar"],"This color combination may be hard for people to read.":["This colour combination may be hard for people to read."],"There is no poster image currently selected":["There is no poster image currently selected"],"The current poster image url is %s":["The current poster image URL is %s"],"section":["section"],"row":["row"],"wrapper":["wrapper"],"container":["container"],"A block that groups other blocks.":["A block that groups other blocks."],"Group":["Group"],"Crop image to fill entire column":["Crop image to fill entire column"],"Play inline":["Play inline"],"Leave empty if the image is purely decorative.":["Leave empty if the image is purely decorative."],"Describe the purpose of the image":["Describe the purpose of the image"],"Add a block":["Add a block"],"Block vertical alignment setting label\u0004Change vertical alignment":["Change vertical alignment"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertically Align Bottom"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertically Align Middle"],"Replace Image":["Replace Image"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertically Align Top"],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["More rich text controls"],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":["The last part of the URL."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],"Taxonomy":["Taxonomy"],"Tag Cloud settings":[],"- Select -":["- Select -"],"Default":["Default"],"find":["find"],"Help visitors find your content.":["Help visitors find your content."],"Search":["Search"],"Add button text…":["Add button text…"],"Button text":["Button text"],"Optional placeholder…":["Optional placeholder…"],"Optional placeholder text":["Optional placeholder text"],"Add label…":["Add label…"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],"archive":["archive"],"posts":["posts"],"A calendar of your site’s posts.":["A calendar of your site’s posts."],"Calendar":["Calendar"],"by":["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\u0004Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],"Back":["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],"feed":["Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],"RSS":["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS settings":[],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],"ebook":["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],"Underline":["Underline"],"Attempt Block Recovery":["Attempt Block Recovery"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Content…"],"button label\u0004Convert to link":["Convert to link"],"button label\u0004Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top toolbar":[],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],"Permalink":["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":["Block area reverted to draft."],"Block area published privately.":["Block area published privately."],"No block areas found in Trash.":["No block areas found in Bin."],"Block\u0004Add New":["Add New"],"add new on admin bar\u0004Block Area":["Block Area"],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],"Thumbnail":["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page Break"],"Stack on mobile":["Stack on mobile"],"Annotation":["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resolve"],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Import"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Embed"],"block title\u0004Embed":["Embed"],"block title\u0004Classic":["Classic"],"block style\u0004Large":["Large"],"block style\u0004Rounded":["Rounded"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"media":["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview…":["Generating preview…"],"Edit or update the image":["Edit or update the image"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay — great for headers.":["Add an image or video with a text overlay — great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the classic WordPress editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\u0004View":["View"],"editor button\u0004Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":["Block navigator"],"Styles":["Styles"],"Advanced panels":[],"Document panels":[],"General":["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"Options":["Options"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Hours":["Hours"],"Time":["Time"],"Year":["Year"],"Day":["Day"],"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"Month":["Month"],"Date":["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/saturation/lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],"Stripes":["Stripes"],"Your site doesn’t include support for this block.":["Your site doesn’t include support for this block."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],"Cover":["Cover"],"Border settings":[],"Medium":["Medium"],"Paste URL or type to search":["Paste URL or type to search"],"Terms":["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],"HTML":["HTML"],"Write HTML…":["Write HTML…"],"Media settings":[],"Overlay":["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Current":["Current"],"After Conversion":["After Conversion"],"Change alignment":["Change alignment"],"Change text alignment":["Change text alignment"],"%d block":["%d block","%d blocks"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage all reusable blocks":[],"Title":["Title"],"Fullscreen mode":[],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Create":["Create"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylised one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],"Galleries":["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\u0004More":["More"],"button to expand options\u0004More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],"Small":["Small"],"Reusable":["Reusable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color settings":[],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],"Muted":["Muted"],"Video settings":[],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest comments settings":[],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],"Auto":["Auto"],"Preload":["Preload"],"Audio settings":[],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg/"],"Support":["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],"Archives":["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":["Inline image"],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block","Remove Blocks"],"Open publish panel":["Open publish panel"],"Dots":["Dots"],"Wide Line":["Wide Line"],"Large":["Large"],"Show download button":["Show download button"],"Download button settings":["Download button settings"],"Link To":["Link To"],"Text link settings":["Text link settings"],"download":[],"pdf":["pdf"],"document":["document"],"Copy URL":["Copy URL"],"Write file name…":["Write file name…"],"File":["File"],"A single column within a columns block.":["A single column within a columns block."],"Column":["Column"],"Outline":["Outline"],"Loop":["Loop"],"Autoplay":["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you’re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Autosaving":["Autosaving"],"Enter URL here…":["Enter URL here…"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table — perfect for sharing charts and data.":["Insert a table — perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you’d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\u0004Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer settings":[],"Spacer":["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish…":["Publish…"],"Schedule…":["Schedule…"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Editor settings":["Editor settings"],"Link settings":["Link settings"],"Unlink":["Unlink"],"Page break":["Page break"],"pagination":["pagination"],"next page":["next page"],"Image Size":["Image Size"],"Height":["Height"],"Width":["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],"Advanced":["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn’t match the template assigned to your post type.":["The content of your post doesn’t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Scheduled":["Scheduled"],"Scheduling…":["Scheduling…"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Plugins":["Plugins"],"Custom Size":["Custom Size"],"Layout elements":[],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"imperative verb\u0004Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":["Updating failed."],"Scheduling failed.":["Scheduling failed."],"Publishing failed.":["Publishing failed."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Words":["Words"],"Content structure":["Content structure"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Private":["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":["Move to Bin"],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],"Term":["Term"],"Tag":["Tag"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Save Draft":["Save Draft"],"Saving":["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What’s next?":["What’s next?"],"is now live.":["is now live."],"Published":["Published"],"Schedule":["Schedule"],"Update":["Update"],"Submit for Review":["Submit for Review"],"Updating…":["Updating…"],"Publishing…":["Publishing…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalink:"],"Pending review":[],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Aside"],"Featured image":["Featured image"],"Set featured image":[],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow comments":[],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],"Order":["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],"Saved":["Saved"],"Embeds":["Embeds"],"Blocks":["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Undo":["Undo"],"Redo":["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],"Duplicate":["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],"Remove":["Remove"],"Find original":["Find original"],"Copy all content":[],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],"Visibility":["Visibility"],"Status & visibility":[],"Page attributes":[],"Block":["Block"],"Document":["Document"],"Close settings":["Close settings"],"Editor content":["Editor content"],"Tools":["Tools"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor top bar"],"Settings":["Settings"],"Reset":["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],"URL":["URL"],"Submit":["Submit"],"Close":["Close"],"Insert link":["Insert link"],"Edit link":["Edit link"],"Link":["Link"],"Strikethrough":["Strikethrough"],"Italic":["Italic"],"Bold":["Bold"],"Remove link":["Remove link"],"Number of items":["Number of items"],"All":["All"],"Category":["Category"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],"Select":["Select"],"Select or Upload Media":["Select or Upload Media"],"Video":["Video"],"Write…":["Write…"],"poetry":["poetry"],"Verse":["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],"Table":["Table"],"Write subheading…":["Write subheading…"],"Write shortcode here…":["Write shortcode here…"],"Shortcode":["Shortcode"],"divider":["divider"],"horizontal-line":["horizontal-line"],"Separator":["Separator"],"Quote":["Quote"],"Write citation…":["Write citation…"],"Write quote…":["Write quote…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Write preformatted text…"],"Preformatted":["Preformatted"],"text":["text"],"Paragraph":["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text settings":[],"Read more":["Read more"],"Write list…":["Write list…"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],"List":["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":["Grid view"],"List view":["List view"],"photo":["photo"],"Image settings":[],"Image":["Image"],"Preview":["Preview"],"embed":["embed"],"Custom HTML":["Custom HTML"],"subtitle":["subtitle"],"title":["title"],"Heading":["Heading"],"Write heading…":["Write heading…"],"Heading %d":["Heading %d"],"Level":["Level"],"Heading settings":[],"photos":["photos"],"images":["images"],"None":["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Link to ":[],"Crop Images":["Crop Images"],"Gallery settings":[],"Gallery":["Gallery"],"Classic":["Classic Edit"],"video":["video"],"audio":["audio"],"music":["music"],"image":["image"],"blog":["blog"],"post":["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here…":["Enter URL to embed here…"],"%s URL":["%s URL"],"Embedding…":["Embedding…"],"Write title…":["Write title…"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],"Columns":["Columns"],"Experiments":["Experiments"],"Code":["Code"],"Write code…":["Write code…"],"Categories":["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories settings":[],"Add text…":["Add text…"],"Button":["Button"],"Apply":["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable blocks":[],"Cancel":["Cancel"],"Edit":["Edit"],"Write caption…":["Write caption…"],"Use URL":["Use URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":["Additional CSS Class(es)"],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],"Clear":["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatting"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information."],"Author":["Author"],"Slug":["Slug"],"Discussion":["Discussion"],"Custom fields":[],"Excerpt":["Excerpt"],"Publish":["Publish"],"Metadata":["Metadata"],"Save":["Save"],"Documentation":["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":["Block style name must be a string."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_enza.json b/bundle/android/raw/i18ncache_data_enza.json
new file mode 100644
index 0000000000..935da3ae06
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_enza.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":["Display a legacy widget."],"Legacy Widget (Experimental)":["Legacy Widget (Experimental)"],"Change widget":["Change widget"],"Legacy Widget":["Legacy Widget"],"You don't have permissions to use widgets on this site.":["You don't have permissions to use widgets on this site."],"Select a legacy widget to display:":["Select a legacy widget to display:"],"There are no widgets available.":["There are no widgets available."],"Change block type or style":["Change block type or style"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":[],"Search Terms":["Search Terms"],"Exit the Editor":["Exit the Editor"],"Block Manager":["Block Manager"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, you are not allowed to access widgets on this site."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["Embedded content from %s can't be previewed in the editor."],"Custom Color":["Custom Colour"],"Prompt visitors to take action with a button-style link.":["Prompt visitors to take action with a button-style link."],"Stick to the top of the blog":["Stick to the top of the blog"],"Read about permalinks":["Read about permalinks"],"The last part of the URL.":[],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["A cloud of your most used tags."],"Tag Cloud":["Tag Cloud"],"Taxonomy":["Taxonomy"],"Tag Cloud settings":[],"- Select -":["- Select -"],"Default":["Default"],"find":["find"],"Help visitors find your content.":["Help visitors find your content."],"Search":["Search"],"Add button text…":["Add button text…"],"Button text":["Button text"],"Optional placeholder…":["Optional placeholder…"],"Optional placeholder text":["Optional placeholder text"],"Add label…":["Add label…"],"Label text":["Label text"],"image %1$d of %2$d in gallery":["image %1$d of %2$d in gallery"],"archive":["archive"],"posts":["posts"],"A calendar of your site’s posts.":["A calendar of your site’s posts."],"Calendar":["Calendar"],"by":["by"],"An error has occurred, which probably means the feed is down. Try again later.":["An error has occurred, which probably means the feed is down. Try again later."],"RSS Error:":["RSS error:"],"block style\u0004Default":["Default"],"Fullscreen mode deactivated":["Fullscreen mode deactivated"],"Fullscreen mode activated":["Fullscreen mode activated"],"Spotlight mode deactivated":["Spotlight mode deactivated"],"Spotlight mode activated":["Spotlight mode activated"],"Top toolbar deactivated":["Top Toolbar deactivated"],"Top toolbar activated":["Top Toolbar activated"],"Back":["Back"],"Feature activated":["Feature activated"],"Feature deactivated":["Feature deactivated"],"Vertical Pos.":["Vertical Pos."],"Horizontal Pos.":["Horizontal Pos."],"feed":["Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["Display entries from any RSS or Atom feed."],"RSS":["RSS"],"Max number of words in excerpt":["Max number of words in excerpt"],"Display excerpt":["Display excerpt"],"Display date":["Display date"],"Display author":["Display author"],"RSS settings":[],"Edit RSS URL":["Edit RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Content before this block will be shown in the excerpt on your archives page."],"Hide the excerpt on the full content page":["Hide the excerpt on the full content page"],"The excerpt is visible.":["The excerpt is visible."],"The excerpt is hidden.":["The excerpt is hidden."],"Sorry, this content could not be embedded.":["Sorry, this content could not be embedded."],"Embed Amazon Kindle content.":["Embed Amazon Kindle content."],"ebook":["eBook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Embed Crowdsignal (formerly Polldaddy) content."],"Focal Point Picker":["Focal point picker"],"Underline":["Underline"],"Attempt Block Recovery":["Attempt block recovery"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Content…"],"button label\u0004Convert to link":["Convert to link"],"button label\u0004Try again":["Try again"],"Editor tips":["Editor tips"],"Block (selected)":["Block (selected)"],"Document (selected)":["Document (selected)"],"%d word":["%d word","%d words"],"Top toolbar":[],"Link Rel":["Link rel"],"Link CSS Class":["Link CSS class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used."],"To edit the featured image, you need permission to upload media.":["To edit the featured image, you need permission to upload media."],"To edit this block, you need permission to upload media.":["To edit this block, you need permission to upload media."],"(selected block)":["(selected block)"],"Block tools":["Block tools"],"Permalink":["Permalink"],"This image has an empty alt attribute":["This image has an empty alt attribute"],"This image has an empty alt attribute; its file name is %s":["This image has an empty alt attribute; its file name is %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Add New"],"add new on admin bar\u0004Block Area":[],"Link inserted.":["Link inserted."],"Warning: the link has been inserted but may have errors. Please test it.":["Warning: the link has been inserted but may have errors. Please test it."],"%s block selected.":["%s block selected.","%s blocks selected."],"Thumbnail":["Thumbnail"],"Full Size":["Full Size"],"Link selected.":["Link selected."],"Start writing with text or HTML":["Start writing with text or HTML"],"Type text or HTML":["Type text or HTML"],"Block icon":["Block icon"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Start writing or type / to choose a block"],"Empty block; start writing or type forward slash to choose a block":["Empty block; start writing or type forward slash to choose a block"],"Paragraph block":["Paragraph block"],"Page Break":["Page break"],"Stack on mobile":["Stack on mobile"],"Annotation":["Annotation"],"Drag images, upload new ones or select files from your library.":["Drag images, upload new ones or select files from your library."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resolve"],"font size name\u0004Huge":["Huge"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Small"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Import"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Embed"],"block title\u0004Embed":["Embed"],"block title\u0004Classic":["Classic"],"block style\u0004Large":["Large"],"block style\u0004Rounded":["Rounded"],"%s (opens in a new tab)":["%s (opens in a new tab)"],"Link edited.":["Link edited."],"Link removed.":["Link removed."],"media":["media"],"Double-check your settings before publishing.":["Double-check your settings before publishing."],"Generating preview…":["Generating preview…"],"Edit or update the image":["Edit or update the image"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigate to the nearest toolbar."],"Document tools":["Document tools"],"Document and block tools":["Document and block tools"],"Embed a video from your media library or upload a new one.":["Embed a video from your media library or upload a new one."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insert poetry. Use special spacing formats. Or quote song lyrics."],"Add white space between blocks and customize its height.":["Add white space between blocks and customise its height."],"Insert additional custom elements with a WordPress shortcode.":["Insert additional custom elements with a WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Create a break between ideas or sections with a horizontal separator."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Give special visual emphasis to a quote from your text."],"Start with the building block of all narrative.":["Start with the building block of all narrative."],"Separate your content into a multi-page experience.":["Separate your content into a multi-page experience."],"Set media and words side-by-side for a richer layout.":["Set media and words side-by-side for a richer layout."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Create a bulleted or numbered list."],"Display a list of your most recent comments.":["Display a list of your most recent comments."],"Insert an image to make a visual statement.":["Insert an image to make a visual statement."],"Add custom HTML code and preview it as you edit.":["Add custom HTML code and preview it as you edit."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce new sections and organise content to help visitors (and search engines) understand the structure of your content."],"Display multiple images in a rich gallery.":["Display multiple images in a rich gallery."],"Add a link to a downloadable file.":["Add a link to a downloadable file."],"Embed videos, images, tweets, audio, and other content from external sources.":["Embed videos, images, tweets, audio, and other content from external sources."],"Resize for smaller devices":["Resize for smaller devices"],"This embed may not preserve its aspect ratio when the browser is resized.":["This embed may not preserve its aspect ratio when the browser is resized."],"This embed will preserve its aspect ratio when the browser is resized.":["This embed will preserve its aspect ratio when the browser is resized."],"Embed an Animoto video.":["Embed an Animoto video."],"Embed a Vimeo video.":["Embed a Vimeo video."],"Embed Flickr content.":["Embed Flickr content."],"Embed Spotify content.":["Embed Spotify content."],"Embed SoundCloud content.":["Embed SoundCloud content."],"Embed a WordPress post.":["Embed a WordPress post."],"Embed an Instagram post.":["Embed an Instagram post."],"Embed a Facebook post.":["Embed a Facebook post."],"Embed a WordPress.tv video.":["Embed a WordPress.tv video."],"Embed a VideoPress video.":["Embed a VideoPress video."],"Embed a Tumblr post.":["Embed a Tumblr post."],"Embed a TED video.":["Embed a TED video."],"Embed Speaker Deck content.":["Embed Speaker Deck content."],"Embed a YouTube video.":["Embed a YouTube video."],"Embed SmugMug content.":["Embed SmugMug content."],"Embed Slideshare content.":["Embed Slideshare content."],"Embed Scribd content.":["Embed Scribd content."],"Embed Screencast content.":["Embed Screencast content."],"Embed ReverbNation content.":["Embed ReverbNation content."],"Embed a Reddit thread.":["Embed a Reddit thread."],"Embed Polldaddy content.":["Embed Polldaddy content."],"Embed Mixcloud content.":["Embed Mixcloud content."],"Embed a tweet.":["Embed a tweet."],"Embed Meetup.com content.":["Embed Meetup.com content."],"Embed Kickstarter content.":["Embed Kickstarter content."],"Embed Issuu content.":["Embed Issuu content."],"Embed Imgur content.":["Embed Imgur content."],"Embed Hulu content.":["Embed Hulu content."],"Embed a Dailymotion video.":["Embed a Dailymotion video."],"Embed CollegeHumor content.":["Embed CollegeHumor content."],"Embed Cloudup content.":["Embed Cloudup content."],"Add an image or video with a text overlay — great for headers.":["Add an image or video with a text overlay — great for headers."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Use the WordPress Classic Editor."],"Display a list of all categories.":["Display a list of all categories."],"Embed a simple audio player.":["Embed a simple audio player."],"noun\u0004View":["View"],"editor button\u0004Left to right":["Left to right"],"Save as Pending":["Save as Pending"],"%s address":["%s address"],"Paste or type URL":["Paste or type URL"],"Insert from URL":["Insert from URL"],"Block Navigator":[],"Styles":["Styles"],"Advanced panels":[],"Document panels":[],"General":["General"],"Open the block navigation menu.":["Open the block navigation menu."],"Work without distraction":["Work without distraction"],"Focus on one block at a time":["Focus on one block at a time"],"Access all block and document tools in a single place":["Access all block and document tools in a single place"],"Options":["Options"],"(opens in a new tab)":["(opens in a new tab)"],"Minutes":["Minutes"],"Hours":["Hours"],"Time":["Time"],"Year":["Year"],"Day":["Day"],"December":["December"],"November":["November"],"October":["October"],"September":["September"],"August":["August"],"July":["July"],"June":["June"],"May":["May"],"April":["April"],"March":["March"],"February":["February"],"January":["January"],"Month":["Month"],"Date":["Date"],"Go to the first (home) or last (end) day of a week.":["Go to the first (home) or last (end) day of a week."],"Home/End":["Home/End"],"Home and End":["Home and End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Move backward (PgUp) or forward (PgDn) by one month."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":["Move backward (up) or forward (down) by one week."],"Up and Down Arrows":["Up and Down Arrows"],"Move backward (left) or forward (right) by one day.":["Move backward (left) or forward (right) by one day."],"Left and Right Arrows":["Left and Right Arrows"],"Select the date in focus.":["Select the date in focus."],"Navigating with a keyboard":["Navigating with a keyboard"],"Click the desired day to select it.":["Click the desired day to select it."],"Click the right or left arrows to select other months in the past or the future.":["Click the right or left arrows to select other months in the past or the future."],"Click to Select":["Click to Select"],"Calendar Help":["Calendar Help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use your arrow keys to change the base colour. Move up to lighten the colour, down to darken, left to decrease saturation, and right to increase saturation."],"Choose a shade":["Choose a shade"],"Change color format":["Change colour format"],"Color value in HSL":["Colour value in HSL"],"Color value in RGB":["Colour value in RGB"],"Color value in hexadecimal":["Colour value in hexadecimal"],"RGB mode active":["RGB mode active"],"Hex color mode active":["Hex colour mode active"],"Hue/saturation/lightness mode active":["Hue/Saturation/Lightness mode active"],"Move the arrow left or right to change hue.":["Move the arrow left or right to change hue."],"Hue value in degrees, from 0 to 359.":["Hue value in degrees, from 0 to 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha value, from 0 (transparent) to 1 (fully opaque)."],"Stripes":["Stripes"],"Your site doesn’t include support for this block.":["Your site doesn’t include support for this block."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely."],"Media area":["Media area"],"Media & Text":["Media & Text"],"Show media on right":["Show media on right"],"Show media on left":["Show media on left"],"Open in New Tab":["Open in New Tab"],"Cover":["Cover"],"Border settings":[],"Medium":["Medium"],"Paste URL or type to search":["Paste URL or type to search"],"Terms":["Terms"],"Your work will be published at the specified date and time.":["Your work will be published at the specified date and time."],"Are you ready to schedule?":["Are you ready to schedule?"],"Always show pre-publish checks.":["Always show pre-publish checks."],"Take Over":["Take Over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Another user is currently working on this post, which means you cannot make changes, unless you take over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s is currently working on this post, which means you cannot make changes, unless you take over."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved."],"Avatar":["Avatar"],"This post is already being edited.":["This post is already being edited."],"Someone else has taken over this post.":["Someone else has taken over this post."],"This block contains unexpected or invalid content.":["This block contains unexpected or invalid content."],"Resolve Block":["Resolve Block"],"Convert to HTML":["Convert to HTML"],"This block can only be used once.":["This block can only be used once."],"Exit Code Editor":["Exit Code Editor"],"Editing Code":["Editing Code"],"Solid Color":["Solid Colour"],"Main Color":["Main Colour"],"HTML":["HTML"],"Write HTML…":["Write HTML…"],"Media settings":[],"Overlay":["Overlay"],"Insert Media":["Insert Media"],"Reusable block imported successfully!":["Reusable block imported successfully!"],"Invalid Reusable Block JSON file":["Invalid Reusable Block JSON file"],"Invalid JSON file":["Invalid JSON file"],"Import from JSON":["Import from JSON"],"Backtick":["Backtick"],"Period":["Period"],"Comma":["Comma"],"Change type of %d block":["Change type of %d block","Change type of %d blocks"],"Current":["Current"],"After Conversion":["After Conversion"],"Change alignment":[],"Change text alignment":[],"%d block":["%d block","%d blocks"],"Forward-slash":["Forward-slash"],"No archives to show.":["No archives to show."],"This file is empty.":["This file is empty."],"Sorry, this file type is not supported here.":["Sorry, this file type is not supported here."],"Manage all reusable blocks":[],"Title":["Title"],"Fullscreen mode":[],"Beautiful landscape":["Beautiful landscape"],"Close panel":["Close panel"],"Convert to Classic Block":["Convert to Classic Block"],"Remove Poster Image":["Remove Poster Image"],"Select Poster Image":["Select Poster Image"],"Poster Image":["Poster Image"],"This block is deprecated. Please use the Columns block instead.":["This block is deprecated. Please use the Columns block instead."],"Text Columns (deprecated)":["Text Columns (deprecated)"],"Create":["Create"],"Row Count":["Row Count"],"Column Count":["Column Count"],"This block is deprecated. Please use the Paragraph block instead.":["This block is deprecated. Please use the Paragraph block instead."],"Subheading (deprecated)":["Subheading (deprecated)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Change the block type after adding a new paragraph."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post."],"Add tags":["Add tags"],"Apply the \"%1$s\" format.":["Apply the \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling."],"Use a post format":["Use a post format"],"Insert After":["Insert After"],"Insert Before":["Insert Before"],"Move %1$d block from position %2$d down by one place":["Move %1$d block from position %2$d down by one place","Move %1$d blocks from position %2$d down by one place"],"Move %1$d block from position %2$d up by one place":["Move %1$d block from position %2$d up by one place","Move %1$d blocks from position %2$d up by one place"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["movie"],"Insert a new block before the selected block(s).":["Insert a new block before the selected block(s)."],"Remove the selected block(s).":["Remove the selected block(s)."],"Duplicate the selected block(s).":["Duplicate the selected block(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Clear selection."],"Select all text when typing. Press again to select all blocks.":["Select all text when typing. Press again to select all blocks."],"Selection shortcuts":["Selection shortcuts"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navigate to the previous part of the editor."],"Navigate to the next part of the editor.":["Navigate to the next part of the editor."],"Show or hide the settings sidebar.":["Show or hide the settings sidebar."],"Redo your last undo.":["Redo your last undo."],"Undo your last changes.":["Undo your last changes."],"Save your changes.":["Save your changes."],"Global shortcuts":["Global shortcuts"],"Remove a link.":["Remove a link."],"Convert the selected text into a link.":["Convert the selected text into a link."],"Underline the selected text.":["Underline the selected text."],"Make the selected text italic.":["Make the selected text italic."],"Make the selected text bold.":["Make the selected text bold."],"Text formatting":["Text formatting"],"Insert a new block after the selected block(s).":["Insert a new block after the selected block(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Thanks for testing Gutenberg Editor!"],"Help build Gutenberg":["Help build Gutenberg Editor"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository."],"The WordPress community":["The WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sure, the full-wide image can be pretty big. But sometimes the image is worth it."],"Accessibility is important — don’t forget image alt attribute":["Accessibility is important — don’t forget image alt attribute"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["The editor will endeavour to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:"],"Visual Editing":["Visual Editing"],"And Lists like this one of course :)":["And Lists like this one of course :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout blocks, like Buttons, Hero Images, Separators, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Embeds, like YouTube, Tweets, or other WordPress posts."],"Galleries":["Galleries"],"Images & Videos":["Images & Videos"],"Text & Headings":["Text & Headings"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing."],"The Inserter Tool":["The Inserter Tool"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before."],"A Picture is Worth a Thousand Words":["A Picture is Worth a Thousand Words"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Headings are separate blocks as well, which helps with the outline and organisation of your content."],"... like this one, which is right aligned.":["... like this one, which is right aligned."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting."],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["Welcome to the Gutenberg Editor"],"block name\u0004More":["More"],"button to expand options\u0004More":["More"],"Are you sure you want to unschedule this post?":["Are you sure you want to unschedule this post?"],"Alt Text (Alternative Text)":["Alt Text (alternative text)"],"Reusable Block":["Reusable Block"],"Unique identifier for the object.":["Unique identifier for the object."],"Untitled Reusable Block":["Untitled Reusable Block"],"Small":[],"Reusable":["Reusable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Keep as HTML"],"Edit URL":["Edit URL"],"Color settings":[],"The response is not a valid JSON response.":["The response is not a valid JSON response."],"Editor publish":["Editor publish"],"Muted":["Muted"],"Video settings":[],"recent comments":["recent comments"],"Latest Comments":["Latest Comments"],"Display Excerpt":["Display Excerpt"],"Display Date":["Display Date"],"Display Avatar":["Display Avatar"],"Latest comments settings":[],"Number of Comments":["Number of Comments"],"Background Opacity":["Background Opacity"],"Auto":["Auto"],"Preload":["Preload"],"Audio settings":[],"Display a monthly archive of your posts.":["Display a monthly archive of your posts."],"Display as Dropdown":["Display as Dropdown"],"Show Post Counts":["Show Post Counts"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Support"],"No comments to show.":["No comments to show."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Select Post"],"Select Week":["Select Week"],"Select Day":["Select Day"],"Select Month":["Select Month"],"Select Year":["Select Year"],"Archives":["Archives"],"Very dark gray":["Very dark grey"],"Cyan bluish gray":["Cyan bluish grey"],"Very light gray":["Very light grey"],"Vivid cyan blue":["Vivid cyan blue"],"Pale cyan blue":["Pale cyan blue"],"Vivid green cyan":["Vivid green cyan"],"Light green cyan":["Light green cyan"],"Luminous vivid amber":["Luminous vivid amber"],"Luminous vivid orange":["Luminous vivid orange"],"Vivid red":["Vivid red"],"Pale pink":["Pale pink"],"Inline image":[],"Available block types":["Available block types"],"Transform To:":["Transform To:"],"Remove Block":["Remove Block"],"Open publish panel":["Open publish panel"],"Dots":["Dots"],"Wide Line":["Wide Line"],"Large":["Large"],"Show download button":[],"Download button settings":[],"Link To":["Link To"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["document"],"Copy URL":["Copy URL"],"Write file name…":["Write file name…"],"File":["File"],"A single column within a columns block.":["A single column within a columns block."],"Column":["Column"],"Outline":["Outline"],"Loop":["Loop"],"Autoplay":["Autoplay"],"Playback Controls":["Playback Controls"],"Close dialog":["Close dialogue"],"Sorry, this file type is not permitted for security reasons.":["Sorry, this file type is not permitted for security reasons."],"Disable tips":["Disable tips"],"Got it":["Got it"],"See next tip":["See next tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["When you’re ready, submit your work for review, and an Editor will be able to approve it for you."],"Are you ready to submit for review?":["Are you ready to submit for review?"],"Replace image":["Replace image"],"Remove image":["Remove image"],"Error while uploading file %s to the media library.":["Error while uploading file %s to the media library."],"This file exceeds the maximum upload size for this site.":["This file exceeds the maximum upload size for this site."],"View the autosave":["View the autosave"],"There is an autosave of this post that is more recent than the version below.":["There is an autosave of this post that is more recent than the version below."],"Autosaving":["Autosaving"],"Enter URL here…":["Enter URL here…"],"Pin to toolbar":["Pin to toolbar"],"Unpin from toolbar":["Unpin from toolbar"],"Insert a table — perfect for sharing charts and data.":["Insert a table — perfect for sharing charts and data."],"Fixed width table cells":["Fixed width table cells"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Add text that respects your spacing and tabs, and also allows styling."],"Display a list of your most recent posts.":["Display a list of your most recent posts."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Add a block that displays content in multiple columns, then add whatever content blocks you’d like."],"Error loading block: %s":["Error loading block: %s"],"Unknown error":["Unknown error"],"Embed Handler":["Embed Handler"],"term\u0004Remove %s":["Remove %s"],"Copy the permalink":["Copy the permalink"],"Permalink copied":["Permalink copied"],"Height in pixels":["Height in pixels"],"Spacer settings":[],"Spacer":["Spacer"],"Toggle to show a large initial letter.":["Toggle to show a large initial letter."],"Showing large initial letter.":["Showing large initial letter."],"Name:":["Name:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Remove item"],"Color code: %s":["Colour code: %s"],"Skip to the selected block":["Skip to the selected block"],"Publish…":["Publish…"],"Schedule…":["Schedule…"],"Edit post permalink":["Edit post permalink"],"Show Block Settings":["Show Block Settings"],"Hide Block Settings":["Hide Block Settings"],"Block settings closed":["Block settings closed"],"Close plugin":["Close plugin"],"Editor settings":["Editor settings"],"Link settings":[],"Unlink":["Unlink"],"Page break":["Page break"],"pagination":["pagination"],"next page":["next page"],"Image Size":["Image Size"],"Height":["Height"],"Width":["Width"],"Image Dimensions":["Image Dimensions"],"Thumbnails are not cropped.":["Thumbnails are not cropped."],"Thumbnails are cropped to align.":["Thumbnails are cropped to align."],"Media Library":["Media Library"],"Advanced":["Advanced"],"Add item":["Add item"],"Reset the template":["Reset the template"],"Keep it as is":["Keep it as is"],"The content of your post doesn’t match the template assigned to your post type.":["The content of your post doesn’t match the template assigned to your post type."],"Resetting the template may result in loss of content, do you want to continue?":["Resetting the template may result in loss of content, do you want to continue?"],"Document Statistics":["Document Statistics"],"is now scheduled. It will go live on":["is now scheduled. It will go live on"],"Scheduled":["Scheduled"],"Scheduling…":["Scheduling…"],"Code editor selected":["Code editor selected"],"Visual editor selected":["Visual editor selected"],"Plugins":["Plugins"],"Custom Size":["Custom Size"],"Layout elements":[],"term\u0004%s removed":["%s removed"],"term\u0004%s added":["%s added"],"imperative verb\u0004Preview":["Preview"],"Block deleted.":["Block deleted."],"Block updated.":["Block updated."],"Block created.":["Block created."],"Trashing failed":["Binning failed"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["You have unsaved changes. If you proceed, they will be lost."],"Document Outline":["Document Outline"],"Paragraphs":["Paragraphs"],"Headings":["Headings"],"Words":["Words"],"Content structure":["Content structure"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protected with a password you choose. Only those with the password can view this post."],"Password Protected":["Password Protected"],"Only visible to site admins and editors.":["Only visible to site admins and editors."],"Private":["Private"],"Visible to everyone.":["Visible to everyone."],"Post Visibility":["Post Visibility"],"Would you like to privately publish this post now?":["Would you like to privately publish this post now?"],"Use a secure password":["Use a secure password"],"Create password":["Create password"],"Move to Trash":[],"Parent Term":["Parent Term"],"Parent Category":["Parent Category"],"Add new term":["Add new term"],"Add new category":["Add new category"],"Term":["Term"],"Tag":["Tag"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Are you sure you want to unpublish this post?"],"Immediately":["Immediately"],"Save Draft":["Save Draft"],"Saving":["Saving"],"Publish:":["Publish:"],"Visibility:":["Visibility:"],"Are you ready to publish?":["Are you ready to publish?"],"Copy Link":["Copy Link"],"What’s next?":["What’s next?"],"is now live.":["is now live."],"Published":["Published"],"Schedule":["Schedule"],"Update":["Update"],"Submit for Review":["Submit for Review"],"Updating…":["Updating…"],"Publishing…":["Publishing…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalink:"],"Pending review":[],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suggestion:"],"Post Format":["Post Format"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Aside"],"Featured image":["Featured image"],"Set featured image":[],"Learn more about manual excerpts":["Learn more about manual excerpts"],"Write an excerpt (optional)":["Write an excerpt (optional)"],"Allow comments":[],"Template:":["Template:"],"no parent":["no parent"],"no title":["no title"],"Order":["Order"],"No blocks found.":["No blocks found."],"%d result found.":["%d result found.","%d results found."],"Saved":["Saved"],"Embeds":["Embeds"],"Blocks":["Blocks"],"Search for a block":["Search for a block"],"Add block":["Add block"],"Copy Error":["Copy Error"],"Copy Post Text":["Copy Post Text"],"Attempt Recovery":["Attempt Recovery"],"The editor has encountered an unexpected error.":["The editor has encountered an unexpected error."],"Undo":["Undo"],"Redo":["Redo"],"(Multiple H1 headings are not recommended)":["(Multiple H1 headings are not recommended)"],"(Your theme may already use a H1 for the post title)":["(Your theme may already use a H1 for the post title)"],"(Incorrect heading level)":["(Incorrect heading level)"],"(Empty heading)":["(Empty heading)"],"Block Styles":["Block Styles"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it."],"Convert to Regular Block":["Convert to Regular Block"],"More options":["More options"],"Edit visually":["Edit visually"],"Duplicate":["Duplicate"],"Blocks cannot be moved down as they are already at the bottom":["Blocks cannot be moved down as they are already at the bottom"],"Blocks cannot be moved up as they are already at the top":["Blocks cannot be moved up as they are already at the top"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Block %s is the only block, and cannot be moved"],"Edit as HTML":["Edit as HTML"],"Convert to Blocks":["Convert to Blocks"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["This block has encountered an error and cannot be previewed."],"No block selected.":["No block selected."],"Transform into:":["Transform into:"],"Remove":["Remove"],"Find original":["Find original"],"Copy all content":[],"Copied!":["Copied!"],"Additional settings are now available in the Editor block settings sidebar":["Additional settings are now available in the Editor block settings sidebar"],"Visibility":["Visibility"],"Status & visibility":[],"Page attributes":[],"Block":["Block"],"Document":["Document"],"Close settings":["Close settings"],"Editor content":["Editor content"],"Tools":["Tools"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor top bar"],"Settings":["Settings"],"Reset":["Reset"],"Dismiss this notice":["Dismiss this notice"],"Item removed.":["Item removed."],"Item added.":["Item added."],"Drop files to upload":["Drop files to upload"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["An unknown error occurred."],"No results.":["No results."],"%d result found, use up and down arrow keys to navigate.":["%d result found, use up and down arrow keys to navigate.","%d results found, use up and down arrow keys to navigate."],"(no title)":["(no title)"],"URL":["URL"],"Submit":["Submit"],"Close":["Close"],"Insert link":[],"Edit link":[],"Link":["Link"],"Strikethrough":["Strikethrough"],"Italic":["Italic"],"Bold":["Bold"],"Remove link":[],"Number of items":["Number of items"],"All":["All"],"Category":["Category"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Oldest to Newest"],"Newest to Oldest":["Newest to Oldest"],"Order by":["Order by"],"Select":["Select"],"Select or Upload Media":["Select or Upload Media"],"Video":["Video"],"Write…":["Write…"],"poetry":["poetry"],"Verse":["Verse"],"New Column":["New Column"],"Delete Column":["Delete Column"],"Add Column After":["Add Column After"],"Add Column Before":["Add Column Before"],"Delete Row":["Delete Row"],"Add Row After":["Add Row After"],"Add Row Before":["Add Row Before"],"Edit table":["Edit table"],"Table":["Table"],"Write subheading…":["Write subheading…"],"Write shortcode here…":["Write shortcode here…"],"Shortcode":["Shortcode"],"divider":["divider"],"horizontal-line":["horizontal-line"],"Separator":["Separator"],"Quote":["Quote"],"Write citation…":["Write citation…"],"Write quote…":["Write quote…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Write preformatted text…"],"Preformatted":["Preformatted"],"text":["text"],"Paragraph":["Paragraph"],"Font Size":["Font Size"],"Drop Cap":["Drop Cap"],"Text settings":[],"Read more":["Read more"],"Write list…":["Write list…"],"numbered list":["numbered list"],"ordered list":["ordered list"],"bullet list":["bullet list"],"Indent list item":["Indent list item"],"Outdent list item":["Outdent list item"],"Convert to ordered list":["Convert to ordered list"],"Convert to unordered list":["Convert to unordered list"],"List":["List"],"recent posts":["recent posts"],"No posts found.":["No posts found."],"Latest Posts":["Latest Posts"],"Display post date":["Display post date"],"Grid view":[],"List view":[],"photo":["photo"],"Image settings":[],"Image":["Image"],"Preview":["Preview"],"embed":["embed"],"Custom HTML":["Custom HTML"],"subtitle":["subtitle"],"title":["title"],"Heading":["Heading"],"Write heading…":["Write heading…"],"Heading %d":["Heading %d"],"Level":["Level"],"Heading settings":[],"photos":["photos"],"images":["images"],"None":["None"],"Media File":["Media File"],"Attachment Page":["Attachment Page"],"Link to ":[],"Crop Images":["Crop Images"],"Gallery settings":[],"Gallery":["Gallery"],"Classic":["Classic Edit"],"video":["video"],"audio":["audio"],"music":["music"],"image":["image"],"blog":["blog"],"post":["post"],"Embedded content from %s":["Embedded content from %s"],"Enter URL to embed here…":["Enter URL to embed here…"],"%s URL":["%s URL"],"Embedding…":["Embedding…"],"Write title…":["Write title…"],"Fixed Background":["Fixed Background"],"Edit image":["Edit image"],"Columns":["Columns"],"Experiments":[],"Code":["Code"],"Write code…":["Write code…"],"Categories":["Categories"],"Show Hierarchy":["Show Hierarchy"],"Show post counts":["Show post counts"],"Categories settings":[],"Add text…":["Add text…"],"Button":["Button"],"Apply":["Apply"],"Text Color":["Text Colour"],"Background Color":["Background Colour"],"Block has been deleted or is unavailable.":["Block has been deleted or is unavailable."],"Reusable blocks":[],"Cancel":["Cancel"],"Edit":["Edit"],"Write caption…":["Write caption…"],"Use URL":["Use URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML Anchor"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["This colour combination may be hard for people to read. Try using a brighter background colour and/or a darker text colour."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["This colour combination may be hard for people to read. Try using a darker background colour and/or a brighter text colour."],"Clear":["Clear"],"Custom color picker":["Custom colour picker"],"Color: %s":["Colour: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatting"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Printing since 1440. This is the development plugin for the new block editor in core."],"Add title":["Add title"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Author"],"Slug":["Slug"],"Discussion":["Discussion"],"Custom fields":[],"Excerpt":["Excerpt"],"Publish":["Publish"],"Metadata":["Metadata"],"Save":["Save"],"Documentation":["Documentation"],"Select Category":["Select Category"],"(Untitled)":["(Untitled)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg."],"Gutenberg Team":["Gutenberg Editor Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s ago"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_es.json b/bundle/android/raw/i18ncache_data_es.json
new file mode 100644
index 0000000000..d98693151d
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_es.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Mostrar icono del submenú en los elementos del nivel superior"],"Display settings":["Ajustes de visualización"],"Choose variation":["Elegir variación"],"Angle":["Ángulo"],"%s Block":["Bloque %s"],"%1$s Block. %2$s":["Bloque %1$s. %2$s"],"%s Block. Column %d":["Bloque %s. Columna %d"],"%1$s Block. Column %2$d. %3$s":["Bloque %1$s. Columna %2$d. %3$s"],"%s Block. Row %d":["Bloque %s. Fila %d"],"%1$s Block. Row %2$d. %3$s":["Bloque %1$s. Fila %2$d. %3$s"],"Post Excerpt":["Extracto de la entrada"],"Post Date":["Fecha de la entrada"],"No Date":["Sin fecha"],"Post Author":["Autor de la entrada"],"Choose":["Elegir"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":["Elige una parte de la plantilla por slug y tema o crea una nueva."],"Error adding template.":["Error al añadir la plantilla."],"Footer label":["Etiqueta del pie de página"],"Header label":["Etiqueta de la cabecera"],"Unsupported":["No compatible"],"The description will be displayed in the menu if the current theme supports it.":["La descripción se mostrará en el menú si el tema actual es compatible."],"Level %1$s. %2$s":["Nivel %1$s. %2$s"],"Level %s. Empty.":["Nivel %s. Vacío."],"Empty":["Vacío"],"Search results for %s":["Resultados de la búsqueda de %s"],"Recently updated":["Recientemente actualizado"],"Multiple selected blocks":["Múltiples bloques seleccionados"],"By %s":["Por %s"],"Inspector":["Inspector"],"Site editor advanced settings.":["Ajustes avanzados del editor del sitio."],"(beta)":["(beta)"],"Site Editor":["Editor del sitio"],"Site editor top bar.":["Barra superior del editor del sitio."],"Briefly describe the link to help screen reader users.":["Describe brevemente el enlace para ayudar a los usuarios de lectores de pantalla."],"Link Label":["Etiqueta del enlace"],"%s label":["Etiqueta de %s"],"poem":["poema"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["MONTAÑA . EXTERIOR - NOCHE\nLa luz incierta que precede al amanecer dibuja con dificultad los riscos y matojos del monte. \nSube niebla del valle. "],"Full Post":["Entrada completa"],"Show:":["Mostrar:"],"Create from all top-level pages":["Crear desde todas las páginas padre"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["A wan fistro tiene musho peligro se calle ustée benemeritaar."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem fistrum diodenoo papaar papaar jarl. No te digo trigo por no llamarte Rodrigor."],"Prompt visitors to take action with a group of button-style links.":["Anima a los visitantes a que realicen alguna acción con un grupo de enlaces estilo botón."],"Buttons":["Botones"],"Background":["Fondo"],"Background & Text Color":["Color de fondo y color de texto"],"Images Size":["Tamaño de las imágenes"],"Remove multiple selected blocks.":["Elimina los bloques múltiples seleccionados."],"(%s: gradient %s)":["(%s: degradado %s)"],"(%s: color %s)":["(%s: color %s)"],"(Gradient: %s)":["(Degradado: %s)"],"(Color: %s)":["(Color: %s)"],"Here's a detailed guide.":["Aquí hay una guía detallada."],"New to the Block Editor? Want to learn more about using it? ":["¿Nuevo en el editor de bloques? ¿Quieres aprender más sobre cómo usarlo?"],"Learn how to use the Block Editor":["Aprende a usar el editor de bloques"],"Help":["Ayuda"],"https://wordpress.org/support/article/wordpress-editor/":["https://es.wordpress.org/support/article/wordpress-editor/"],"%s block icon":["Icono del bloque %s"],"Submit for Review…":["Enviar a revisión..."],"Update…":["Actualizar..."],"Select items to save.":["Selecciona elementos para guardar."],"What do you want to save?":["¿Qué quieres guardar?"],"Untitled":["Sin título"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["El editor de bloques incluye características experimentales que se pueden usar mientras están en desarrollo. Selecciona las que deseas activar. Es probable que estas características cambien, así que evita usarlas en producción."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Activar la edición completa del sitio (Advertencia: esto reemplazará tu tema y causará cambios potencialmente irreversibles en tu sitio. Recomendamos usar esto solo en un entorno de desarrollo)."],"Site Editor (beta)":["Editor del sitio (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Un «bloque» es el término abstracto utilizado\n// para describir las unidades de marcado que,\n// cuando se componen juntas, forman el\n// contenido o diseño de una página.\nregisterBlockType( nombre, ajustes );"],"You are probably offline.":["Probablemente estés desconectado."],"Justify items right":["Justificar elementos a la derecha"],"Justify items center":["Justificar elementos al centro"],"Justify items left":["Justificar elementos a la izquierda"],"Change items justification":["Cambiar el justificado de los elementos"],"The media file has been replaced":["El archivo de medios se ha reemplazado"],"Replace":["Reemplazar"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Actualmente estás en el modo de edición. Para volver al modo de navegación, pulsa «Escape»."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Actualmente estás en el modo de navegación. Navega entre bloques usando la tecla «Tab». Para salir del modo de navegación y editar el bloque seleccionado, pulsa «Intro»."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Usa las teclas de flecha izquierda o derecha o arrastra y suelta con el ratón para cambiar la posición del degradado. Pulsa el botón para cambiar el color o eliminar el punto de control."],"Gradient control point at position %1$s with color code %2$s.":["Punto de control de degradado en la posición %1$s con código de color %2$s."],"Preset Size":["Tamaño por defecto"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Las herramientas ofrecen diferentes interacciones para la selección y edición de bloques. Para seleccionar, pulsa «Escape», para volver a la edición, pulsa «Intro»."],"Open Media Library":["Abrir biblioteca de medios"],"Next":["Siguiente"],"Previous":["Anterior"],"Finish":["Finalizar"],"Page %1$d of %2$d":["Página %1$d de %2$d"],"Guide controls":["Controles de guía"],"Remove Control Point":["Eliminar punto de control"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Cada bloque viene con su propio conjunto de controles para cambiar cosas como el color, el ancho y la alineación. Estos se mostrarán y ocultarán automáticamente cuando hayas seleccionado un bloque."],"Make each block your own":["Haz que cada bloque sea tuyo"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["En el editor de WordPress, cada párrafo, imagen o vídeo se presenta como un «bloque» de diferente contenido."],"ADD MEDIA":["AÑADIR MEDIOS"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Todos los bloques que tienes disponibles están en la biblioteca de bloques. Los encontrarás donde sea que veas el icono "],"Get to know the Block Library":["Conoce la biblioteca de bloques"],"Welcome Guide":["Guía de bienvenida"],"Enable page templates":["Activar las plantillas de página"],"Page Templates":["Plantillas de página"],"Enable Full Site Editing demo templates":["Activar las plantillas de demostración de edición completa del sitio"],"Full Site Editing Demo Templates":["Plantillas de demostración de edición completa del sitio"],"Welcome to the Block Editor":["Bienvenido al editor de bloques"],"Get started":["Comenzar"],"inserter":["insertador"],"Post Title":["Título de la entrada"],"Add nofollow to link":["Añadir nofollow al enlace"],"Add submenu":["Añadir un submenú"],"Add link…":["Añadir enlace..."],"Dark":["Oscuro"],"Light":["Claro"],"recording":["grabación"],"podcast":["podcast"],"sound":["sonido"],"Array of instance changes":["Array de cambios en la instancia"],"Current widget instance":["Instancia actual del widget"],"Template parts to include in your templates.":["Partes de plantilla a incluir en tus plantillas."],"Template parts list":["Lista de partes de plantilla"],"Template parts list navigation":["Lista de navegación de partes de plantilla "],"Filter template parts list":["Filtrar lista de partes de plantilla"],"Uploaded to this template part":["Subida a esta parte de plantilla"],"Insert into template part":["Insertar en la parte de la plantilla"],"Template part archives":["Archivo de partes de plantilla"],"No template parts found in Trash.":["No se han encontrado partes de plantilla en la papelera."],"No template parts found.":["No se han encontrado partes de plantilla."],"Parent Template Part:":["Parte de plantilla padre:"],"Search Template Parts":["Buscar partes de plantilla"],"All Template Parts":["Todas las partes de plantilla"],"View Template Part":["Ver parte de plantilla"],"Edit Template Part":["Editar parte de plantilla"],"New Template Part":["Nueva parte de plantilla"],"Add New Template Part":["Añadir nueva parte de plantilla"],"Template Part\u0004Add New":["Añadir nueva"],"Admin Menu text\u0004Template Parts":["Partes de plantilla"],"Template Part":["Parte de plantilla"],"Template Parts":["Partes de plantilla"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Al andar se hace camino\ny al volver la vista atrás\nse ve la senda que nunca\nse ha de volver a pisar.\nCaminante no hay camino\nsino estelas en la mar…"],"Navigation":["Navegación"],"Loading Navigation…":["Cargando navegación..."],"Navigation Structure":["Estructura de navegación"],"Create empty":["Crear vacío"],"Create a Navigation from all existing pages, or create an empty one.":["Crea una navegación con todas las páginas existentes o crea una nueva vacía."],"Navigation Link":["Enlace de navegación"],"(Note: many devices and browsers do not display this text.)":["(Nota: muchos dispositivos y navegadores no muestran este texto.)"],"Describe the role of this image on the page.":["Describe el rol de esta imagen en la página."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Alterna entre usar el mismo valor en todos los tamaños de pantalla o usar un único valor por tamaño de pantalla."],"Use the same %s on all screensizes.":["Utilizar el mismo %s en todos los tamaños de pantalla."],"Large screens":["Pantallas grandes"],"Medium screens":["Pantallas medianas"],"Small screens":["Pantallas pequeñas"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controla la propiedad %1$s para los «viewports» %2$s."],"Currently selected":["Seleccionado actualmente"],"Search or type url":["Busca o escribe la URL"],"Press ENTER to add this link":["Pulsa INTRO para añadir este enlace"],"Currently selected link settings":["Ajustes del enlace seleccionado actualmente"],"Generic label for block inserter button\u0004Add block":["Añadir bloque"],"directly add the only allowed block\u0004Add %s":["Añadir %s"],"%s block added":["Bloque %s añadido"],"Move %s":["Mover %s"],"Extra Large":["Extra grande"],"Block breadcrumb":["Bloque de migas de pan"],"Editor footer":["Editor del pie de página"],"Site Title":["Título del sitio"],"Open Colors Selector":["Abrir el selector de color"],"Templates list":["Lista de plantillas"],"Templates list navigation":["Navegación de la lista de plantillas"],"Filter templates list":["Filtro de la lista de plantillas"],"Uploaded to this template":["Subido a esta plantilla"],"Insert into template":["Insertar en la plantilla"],"Template archives":["Archivos de plantillas"],"No templates found in Trash.":["No se han encontrado plantillas en la papelera."],"No templates found.":["No se han encontrado plantillas."],"Parent Template:":["Plantilla principal:"],"Search Templates":["Buscar plantillas"],"All Templates":["Todas las plantillas"],"View Template":["Ver la plantilla"],"Edit Template":["Editar la plantilla"],"New Template":["Nueva plantilla"],"Add New Template":["Añadir una nueva plantilla"],"Template\u0004Add New":["Añadir nueva"],"Admin Menu text\u0004Templates":["Plantillas"],"Template":["Plantilla"],"No matching template found":["No se han encontrado plantillas que coincidan"],"Gradient: %s":["Degradado: %s"],"Gradient code: %s":["Código de degradado: %s"],"All content copied.":["Copiado todo el contenido."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["La subida de medios ha fallado. Si esto es una foto o una imagen grande, por favor, reduce su tamaño e inténtalo de nuevo."],"Gradient":["Degradado"],"Gradient Presets":["Ajustes previos de degradado"],"No Preview Available.":["Vista previa no disponible."],"Midnight":["Medianoche"],"Electric grass":["Hierba eléctrica"],"Pale ocean":["Océano pálido"],"Luminous dusk":["Atardecer luminoso"],"Blush bordeaux":["Rubor burdeos"],"Blush light purple":["Rubor púrpura claro"],"Cool to warm spectrum":["Espectro frío a caliente"],"Very light gray to cyan bluish gray":["Gris muy claro a gris azulado cian"],"Luminous vivid orange to vivid red":["Naranja vivo luminoso a rojo vivo"],"Luminous vivid amber to luminous vivid orange":["Ámbar vivo luminoso a naranja vivo"],"Light green cyan to vivid green cyan":["Verde cian claro a verde cian vivo"],"Vivid cyan blue to vivid purple":["Cian azul vivo a púrpura vivo"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 de diciembre de 2018"],"February 21, 2019":["21 de febrero de 2019"],"May 7, 2019":["7 de mayo de 2019"],"Release Date":["Fecha de lanzamiento"],"Jazz Musician":["Músico de jazz"],"Version":["Versión"],"Six.":["Seis."],"Five.":["Cinco."],"Four.":["Cuatro."],"Three.":["Tres."],"Two.":["Dos."],"One.":["Uno."],"One of the hardest things to do in technology is disrupt yourself.":["Una de las cosas más difíciles de hacer en tecnología es interrumpirte a ti mismo."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["El reyezuelo
Se gana la vida
Sin hacer ruido."],"Welcome to the wonderful world of blocks…":["Bienvenido al maravilloso mundo de los bloques…"],"Snow Patrol":["Patrulla de la nieve"],"Dimensions":["Dimensiones"],"Minimum height in pixels":["Altura mínima en píxeles"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["A peich amatomaa apetecan a wan de la pradera va usté muy cargadoo por la gloria de mi madre está la cosa muy malar condemor."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Llévame al sircoo no puedor por la gloria de mi madre por la gloria de mi madre va usté muy cargadoo diodenoo al ataquerl llévame al sircoo no te digo trigo por no llamarte Rodrigor. "],"Call to Action":["Llamada a la acción"],"In quoting others, we cite ourselves.":["Al citar a otros, nos citamos a nosotros mismos."],"cite":["cita"],"Mont Blanc appears—still, snowy, and serene.":["El Mont Blanc aparece—quieto, nevado y sereno."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["En un lugar de la Mancha, de cuyo nombre no quiero acordarme, no ha mucho tiempo que vivía un hidalgo de los de lanza en astillero, adarga antigua, rocín flaco y galgo corredor."],"Block navigation":["Navegación de bloques"],"Full Site Editing":["Edición completa del sitio"],"Templates to include in your theme.":["Plantillas a incluir en tu tema."],"Templates":["Plantillas"],"Inserter help panel":["Panel de ayuda del insertador"],"Pre-publish checks":["Comprobaciones previas a la publicación"],"Please contact your site administrator to install new blocks.":["Por favor, contacta con el administrador de tu sitio para instalar nuevos bloques."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No se han encontrado bloques en tu biblioteca. Por favor, contacta con el administrador de tu sitio para instalar nuevos bloques."],"No blocks found in your library.":["No se han encontrado bloques en tu biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["No se han encontrado bloques en tu biblioteca. Estos bloques pueden ser descargados e instalados:"],"No blocks found in your library. We did find %d block available for download.":["No se han encontrado bloques en tu biblioteca. Hemos encontrado %d bloque disponible para descargar.","No se han encontrado bloques en tu biblioteca. Hemos encontrado %d bloques disponibles para descargar."],"Block previews can’t load.":["No se pueden cargar las vistas previas del bloque."],"Retry":["Reintentar"],"Block previews can't install.":["No se pueden instalar las vistas previas del bloque."],"Updated %s":["%s actualizado"],"%d active installation":["%d instalación activa","%d instalaciones activas"],"This author has %d block, with an average rating of %d.":["Este autor tiene %d bloque, con una valoración media de %d.","Este autor tiene %d bloques, con una valoración media de %d."],"Authored by %s":["Creado por %s"],"%d total rating":["%d valoración en total","%d valoraciones en total"],"%s out of 5 stars":["%s de 5 estrellas"],"Enter Address":["Introducir la dirección"],"Pill Shape":["Forma de pastilla"],"Logos Only":["Solo logotipos"],"Create a block of links to your social media or external sites":["Crea un bloque de enlaces a tus medios sociales o sitios externos"],"Social links":["Enlaces sociales"],"Open block navigator":["Abrir el navegador de bloques"],"Attachment page":["Página de adjuntos"],"Fill":["Rellenar"],"Link rel":["«rel» del enlace"],"Border Radius":["Radio del borde"],"Write gallery caption…":["Escribe la leyenda de la galería..."],"Content blocks":["Bloques de contenido"],"Restore the backup":["Restaurar la copia de seguridad"],"The backup of this post in your browser is different from the version below.":["La copia de seguridad de esta entrada en tu navegador es diferente de la siguiente versión."],"Enable block directory search":["Activar la búsqueda en el directorio de bloques"],"Block Directory":["Directorio de bloques"],"Unable to connect to the filesystem. Please confirm your credentials.":["No ha sido posible conectar con el sistema de archivos. Por favor, confirma tus credenciales."],"Sorry, you are not allowed to install blocks.":["Lo siento, no tienes permiso para instalar bloques."],"%1$d block is disabled.":["%1$d bloque está desactivado.","%1$d bloques están desactivados."],"Reverse List Numbering":["Lista de numeración inversa"],"Start Value":["Valor inicial"],"Ordered list settings":["Ajustes de listas ordenadas"],"Clear Media":["Vaciar los medios"],"Default Style":["Estilo por defecto"],"Not set":["No establecido"],"While writing, you can press / to quickly insert new blocks.":["Al escribir, puedes pulsar / para insertar nuevos bloques rápidamente."],"Browse through the library to learn more about what each block does.":["Examina la biblioteca para aprender más sobre qué hace cada bloque."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Hay bloques disponibles para todo tipo de contenidos: insertar texto, encabezados, imágenes, listas, vídeos, tablas y muchos más."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["¡Bienvenido al maravilloso mundo de los bloques! Los bloques son la base de todo el contenido dentro del editor."],"Version of the content block format used by the object.":["Versión del formato del bloque de contenido usado por el objeto."],"HTML content for the object, transformed for display.":["Contenido HTML para el objeto, transformado para su visualización."],"Content for the object, as it exists in the database.":["Contenido para el objeto, tal como existe en la base de datos."],"The content for the object.":["El contenido para el objeto."],"Change column alignment":["Cambiar la alineación de la columna"],"Align Column Right":["Alinear la columna a la derecha"],"Align Column Center":["Alinear la columna al centro"],"Align Column Left":["Alinear la columna a la izquierda"],"Color":["Color"],"Vivid purple":["Púrpura vivo"],"Disable & Reload":["Desactivar y recargar"],"Enable & Reload":["Activar y recargar"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Se necesita recargar la página para este cambio. Antes de recargar, asegúrate de que tu contenido está guardado."],"Display these keyboard shortcuts.":["Mostrar estos atajos del teclado."],"Experiments Settings":["Ajustes de experimentos"],"Enable Widgets screen and Legacy Widgets block":["Activar la pantalla de widgets y el bloque de widgets heredados"],"Experimental settings":["Ajustes experimentales"],"Block name name must be a string.":["El nombre del bloque debe ser una cadena."],"Custom":["Personalizado"],"Draft":["Borrador"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["El bloque «%1$s» no contiene un estilo llamado «%2$s»."],"Learn more about anchors":["Aprende más sobre los anclajes"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Introduce una palabra o dos — sin espacios — para crear una dirección web única solo para este encabezado, llamada «anclaje». Luego podrás enlazar directamente a esta sección de tu página."],"Widget Blocks (Experimental)":["Bloques de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Sube un archivo de vídeo, elige uno de tu biblioteca de medios o añade uno con una URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Sube un archivo de imagen, elige uno de tu biblioteca de medios o añade uno con una URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Sube un archivo de audio, elige uno de tu biblioteca de medios o añade uno con una URL."],"Upload a media file or pick one from your media library.":["Sube un archivo de medios o elige uno de tu biblioteca de medios."],"Skip":["Saltar"],"Select a variation to start with.":["Elige una variación con la que empezar."],"Add a page, link, or another item to your navigation.":["Añade una página, enlace u otro elemento a tu navegación."],"What's this?":["¿Qué es esto?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["No permitir que los motores de búsqueda sigan este enlace."],"Provide more context about where the link goes.":["Ofrece más contexto sobre a dónde va el enlace."],"Title Attribute":["Atributo del título"],"SEO settings":["Ajustes SEO"],"Description":["Descripción"],"Open in new tab":["Abrir en una nueva pestaña"],"links":["enlaces"],"navigation":["navegación"],"menu":["menú"],"Add a navigation block to your site.":["Añade un bloque de navegación a tu sitio."],"Upload a file or pick one from your media library.":["Sube un archivo de medios o elige uno de tu biblioteca de medios."],"Learn more about embeds":["Aprende más sobre los incrustados"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Pega un enlace al contenido que quieras mostrar en tu sitio."],"Upload an image or video file, or pick one from your media library.":["Sube un archivo de imagen o vídeo o elige uno de tu biblioteca de medios."],"Three columns; wide center column":["Tres columnas; columna ancha centrada"],"Three columns; equal split":["Tres columnas; igual separación"],"Two columns; two-thirds, one-third split":["Dos columnas: separación de dos tercios, un tercio "],"Two columns; one-third, two-thirds split":["Dos columnas; separación de un tercio, dos tercios"],"Two columns; equal split":["Dos columnas; igual separación"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Tu sitio ni tiene ningún %s, así que no hay nada que mostrar aquí de momento."],"More tools & options":["Más herramientas y opciones"],"Create Table":["Crear una tabla"],"Insert a table for sharing data.":["Inserta una tabla para compartir datos."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Desagrupar"],"verb\u0004Group":["Agrupar"],"Separate with commas or the Enter key.":["Sepáralo con comas o con la tecla Intro."],"Separate with commas, spaces, or the Enter key.":["Sepáralo con comas, espacios o la tecla Intro."],"Separate multiple classes with spaces.":["Separa múltiples clases con espacios."],"Move image forward":["Mover la imagen hacia delante"],"Move image backward":["Mover la imagen hacia atrás"],"Sorry, you are not allowed to edit sidebars.":["Lo siento, no tienes permiso para editar las barras laterales."],"Sorry, you are not allowed to read sidebars.":["Lo siento, no tienes permiso para leer las barras laterales."],"The sidebar’s ID.":["ID de la barra lateral"],"Displays a set of blocks":["Muestra un conjunto de bloques"],"Blocks Area":["Área de bloques"],"Block rendered as empty.":["Bloque mostrado como vacío."],"Inline Code":["Código integrado"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aviso: La reproducción automática de videos puede provocar problemas de usabilidad a algunos visitantes."],"Footer section":["Sección del pie de página"],"Header section":["Sección de la cabecera"],"Sorting and filtering":["Ordenación y filtrado"],"Post meta settings":["Ajustes meta de la entrada"],"Post Content":["Contenido de la entrada"],"Post content settings":["Ajustes del contenido de la entrada"],"Percentage width":["Porcentaje de ancho"],"Column settings":["Ajustes de columna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aviso: La reproducción automática de audio puede provocar problemas de usabilidad a algunos visitantes."],"Block area updated.":["Área de bloques actualizada."],"Block area scheduled.":["Área de bloques programada."],"Block area published.":["Área de bloques publicada."],"Block areas list":["Lista de áreas de bloques "],"Block areas list navigation":["Navegación de áreas de bloques"],"Filter block areas list":["Filtrar lista de áreas de bloques"],"No block area found.":["No se ha encontrado ningún área de bloques."],"Search Block Areas":["Buscar áreas de bloques"],"All Block Areas":["Todas las áreas de bloques"],"View Block Area":["Ver área de bloques"],"Edit Block Area":["Editar área de bloques"],"New Block Area":["Nueva área de bloques"],"Add New Block Area":["Añadir nueva área de bloques"],"admin menu\u0004Block Areas":["Áreas de bloques"],"post type singular name\u0004Block Area (Experimental)":["Área de bloques (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Área de bloques (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de contenido experimental que almacena las áreas de bloques referenciadas por los temas."],"Widgets screen content":["Contenido de la pantalla de widgets"],"header":["cabecera"],"Widgets advanced settings":["Ajustes avanzados de widgets"],"(experimental)":["(experimental)"],"Block Areas":["Áreas de bloques"],"Widgets screen top bar":["Barra superior de la pantalla de widgets"],"This color combination may be hard for people to read.":["Esta combinación de color puede ser difícil de leer para la gente."],"There is no poster image currently selected":["No hay ninguna imagen de póster seleccionada en este momento"],"The current poster image url is %s":["La url de la imagen actual de póster es %s"],"section":["sección"],"row":["fila"],"wrapper":["envoltura"],"container":["contenedor"],"A block that groups other blocks.":["Un bloque que agrupa otros bloques."],"Group":["Grupo"],"Crop image to fill entire column":["Recortar imagen para rellenar toda la columna"],"Play inline":["Reproducción integrada"],"Leave empty if the image is purely decorative.":["Déjalo vacío si la imagen es meramente decorativa."],"Describe the purpose of the image":["Describe el propósito de la imagen"],"Add a block":["Añade un bloque"],"Block vertical alignment setting label\u0004Change vertical alignment":["Cambiar la alineación vertical"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Alineación vertical al fondo"],"Block vertical alignment setting\u0004Vertically Align Middle":["Alineación vertical al medio"],"Replace Image":["Reemplazar imagen"],"Block vertical alignment setting\u0004Vertically Align Top":["Alineación vertical arriba"],"Display a legacy widget.":["Muestra un widget heredado."],"Legacy Widget (Experimental)":["Widget heredado (experimental)"],"Change widget":["Cambiar widget"],"Legacy Widget":["Widget heredado"],"You don't have permissions to use widgets on this site.":["No tienes permisos para usar widgets en este sitio."],"Select a legacy widget to display:":["Elige un widget heredado a mostrar:"],"There are no widgets available.":["No hay ningún widget disponible."],"Change block type or style":["Cambiar tipo o estilo del bloque"],"keyboard key\u0004Space":["Espacio"],"keyboard key\u0004Backspace":["Retroceso"],"More rich text controls":["Más controles de texto enriquecido"],"Search Terms":["Términos de búsqueda"],"Exit the Editor":["Salir del editor"],"Block Manager":["Gestor de bloques"],"Class name of the widget.":["Nombre de la clase del widget."],"Sorry, you are not allowed to access widgets on this site.":["Lo siento, no tienes permisos para acceder a widgets en este sitio."],"Widgets (beta)":["Widgets (beta)"],"link":["enlace"],"Embedded content from %s can't be previewed in the editor.":["El contenido incrustado desde %s no se puede previsualizar en el editor."],"Custom Color":["Color personalizado"],"Prompt visitors to take action with a button-style link.":["Anima a los visitantes a que realicen alguna acción con un enlace estilo botón."],"Stick to the top of the blog":["Fíjalo a la parte superior del blog"],"Read about permalinks":["Lee acerca de los enlaces permanentes"],"The last part of the URL.":["La última parte de la URL."],"URL Slug":["Slug de la URL"],"A cloud of your most used tags.":["Una nube de tus etiquetas más utilizadas."],"Tag Cloud":["Nube de etiquetas"],"Taxonomy":["Taxonomía"],"Tag Cloud settings":["Ajustes de la nube de etiquetas"],"- Select -":["- Seleccionar -"],"Default":["Por defecto"],"find":["encontrar"],"Help visitors find your content.":["Ayuda a los visitantes a descubrir tu contenido."],"Search":["Buscar"],"Add button text…":["Añade el texto del botón…"],"Button text":["Texto del botón"],"Optional placeholder…":["Marcador de posición opcional…"],"Optional placeholder text":["Texto opcional para el marcador de posición"],"Add label…":["Añadir etiqueta…"],"Label text":["Texto de la etiqueta"],"image %1$d of %2$d in gallery":["imagen %1$d de %2$d en la biblioteca"],"archive":["archivo"],"posts":["entradas"],"A calendar of your site’s posts.":["Un calendario de las entradas de tu sitio."],"Calendar":["Calendario"],"by":["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Ha ocurrido un error que, probablemente, implique que se ha caído el feed. Prueba de nuevo más tarde."],"RSS Error:":["Error de RSS:"],"block style\u0004Default":["Por defecto"],"Fullscreen mode deactivated":["Modo a pantalla completa desactivado"],"Fullscreen mode activated":["Modo a pantalla completa activado"],"Spotlight mode deactivated":["Modo de enfoque desactivado"],"Spotlight mode activated":["Modo de enfoque activado"],"Top toolbar deactivated":["Barra superior desactivada"],"Top toolbar activated":["Barra superior activada"],"Back":["Volver"],"Feature activated":["Característica activada"],"Feature deactivated":["Característica desacdtivada"],"Vertical Pos.":["Pos. vertical"],"Horizontal Pos.":["Pos. horizontal"],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Muestra entradas de cualquier feed RSS o Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Número máximo de palabras en el extracto"],"Display excerpt":["Mostrar extracto"],"Display date":["Mostrar fecha"],"Display author":["Mostrar autor"],"RSS settings":["Ajustes RSS"],"Edit RSS URL":["Editar URL del RSS"],"Content before this block will be shown in the excerpt on your archives page.":["El contenido anterior a este bloque se mostrará en el extracto de tu página de archivo."],"Hide the excerpt on the full content page":["Ocultar el extracto en la página con el contenido completo."],"The excerpt is visible.":["El extracto es visible."],"The excerpt is hidden.":["El extracto está oculto."],"Sorry, this content could not be embedded.":["Lo siento, este contenido no se puede incrustar."],"Embed Amazon Kindle content.":["Incrustar contenido de Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incrustar contenido de Crowdsignal (anteriormente Polldaddy)."],"Focal Point Picker":["Selector del punto focal"],"Underline":["Subrayado"],"Attempt Block Recovery":["Intentar la recuperación de bloque"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Contenido…"],"button label\u0004Convert to link":["Convertir a enlace"],"button label\u0004Try again":["Probar de nuevo"],"Editor tips":["Trucos para el editor"],"Block (selected)":["Bloque (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d palabra","%d palabras"],"Top toolbar":["Barra de herramientas superior"],"Link Rel":["Relación del enlace"],"Link CSS Class":["Clase CSS del enlace"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crea contenido, y guárdalo para ti y otros colaboradores para reutilizarlo en tu sitio. Actualiza el bloque y l os cambios se aplicarán en todas las partes donde esté en uso."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada necesitas permisos para subir medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque necesitas permisos para subir medios."],"(selected block)":["(bloque seleccionado)"],"Block tools":["Herramientas del bloque"],"Permalink":["Enlace permanente"],"This image has an empty alt attribute":["La imagen tiene un atributo ALT vacío"],"This image has an empty alt attribute; its file name is %s":["La imagen tiene un atributo ALT vacío; su nombre de archivo es %s"],"Block area reverted to draft.":["Área de bloques devuelta a borrador."],"Block area published privately.":["Área de bloques publicada en privado."],"No block areas found in Trash.":["No se encontraron áreas de bloques en la papelera."],"Block\u0004Add New":["Añadir nuevo"],"add new on admin bar\u0004Block Area":["Área de bloques"],"Link inserted.":["Enlace insertado."],"Warning: the link has been inserted but may have errors. Please test it.":["Atención: el enlace se ha insertado pero puede tener errores. Por favor, compruébalo."],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],"Thumbnail":["Miniatura"],"Full Size":["Tamaño completo"],"Link selected.":["Enlace seleccionado."],"Start writing with text or HTML":["Empieza a escribir texto o HTML"],"Type text or HTML":["Escribe texto o HTML"],"Block icon":["Icono del bloque"],"Align text right":["Alinear el texto a la derecha"],"Align text center":["Alinear el texto al centro"],"Align text left":["Alinear el texto a la izquierda"],"Start writing or type / to choose a block":["Empieza a escribir o escribe / para elegir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vacío; empieza a escribir o escribe una barra inclinada hacia adelante para elegir un bloque"],"Paragraph block":["Bloque de párrafo"],"Page Break":["Salto de página"],"Stack on mobile":["Apilar en móvil"],"Annotation":["Notas"],"Drag images, upload new ones or select files from your library.":["Arrastra imágenes, sube nuevas o elige archivos desde tu biblioteca."],"blocks\u0004Most used":["Más usados"],"imperative verb\u0004Resolve":["Resuelve"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Medio"],"font size name\u0004Small":["Pequeño"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Intro"],"button label\u0004Import":["Importar"],"button label\u0004Download":["Descarga"],"button label\u0004Embed":["Incrustar"],"block title\u0004Embed":["Incrustado"],"block title\u0004Classic":["Clásico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":["Redondeado"],"%s (opens in a new tab)":["%s (abre en una nueva pestaña)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace quitado."],"media":["medios"],"Double-check your settings before publishing.":["Vuelve a comprobar tus ajustes antes de publicar."],"Generating preview…":["Generando vista previa…"],"Edit or update the image":["Edita o actualiza la imagen"],"Media":["Medios"],"Navigate to the nearest toolbar.":["Navega hasta la barra de herramientas más cercana."],"Document tools":["Herramientas del documento"],"Document and block tools":["Herramientas del documento y los bloques"],"Embed a video from your media library or upload a new one.":["Incrusta un vídeo desde tu biblioteca de medios o sube uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserta poesía. Utiliza formatos de espaciado especiales. O cita letras de canciones."],"Add white space between blocks and customize its height.":["Añade espacio en blanco entre bloques y personaliza su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserta elementos adicionales personalizados con un shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea una ruptura entre ideas o secciones con un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Da un énfasis visual al texto citado. «Al citar a otros, nos citamos a nosotros mismos» — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Da un énfasis visual especial a una cita de tu texto."],"Start with the building block of all narrative.":["Empieza con el bloque que cimienta toda la narrativa."],"Separate your content into a multi-page experience.":["Separa tu contenido en una experiencia multi-página."],"Set media and words side-by-side for a richer layout.":["Coloca las palabras y los medios uno al lado del otro para tener un diseño más rico."],"Media & Text settings":["Ajustes de medios y texto"],"Create a bulleted or numbered list.":["Crea una lista de viñetas o numerada."],"Display a list of your most recent comments.":["Muestra una lista de tus comentarios más recientes."],"Insert an image to make a visual statement.":["Inserta una imagen para hacer una declaración visual"],"Add custom HTML code and preview it as you edit.":["Añade código personalizado HTML y previsualízalo mientras lo editas."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce nuevas secciones y organiza el contenido para ayudar a los visitantes (y a los motores de búsqueda) a comprender la estructura de tu contenido."],"Display multiple images in a rich gallery.":["Muestra múltiples imágenes en una galería enriquecida."],"Add a link to a downloadable file.":["Añade un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta vídeos, imágenes, tweets, audios, y otros contenidos desde fuentes externas."],"Resize for smaller devices":["Cambia el tamaño para dispositivos más pequeños."],"This embed may not preserve its aspect ratio when the browser is resized.":["Este incrustado podría no mantener su relación de aspecto cuando el navegador cambie de tamaño."],"This embed will preserve its aspect ratio when the browser is resized.":["Este incrustado mantendrá su relación de aspecto cuando el navegador cambie de tamaño."],"Embed an Animoto video.":["Incrusta un vídeo de Animoto."],"Embed a Vimeo video.":["Incrusta un vídeo de Vimeo."],"Embed Flickr content.":["Incrusta contenido de Flickr."],"Embed Spotify content.":["Incrusta contenido de Spotify."],"Embed SoundCloud content.":["Incrusta contenido de SoundCloud."],"Embed a WordPress post.":["Incrusta una entrada de WordPress."],"Embed an Instagram post.":["Incrusta una publicación de Instagram."],"Embed a Facebook post.":["Incrusta una publicación de Facebook."],"Embed a WordPress.tv video.":["Incrusta un vídeo de WordPress.tv."],"Embed a VideoPress video.":["Incrusta un vídeo de VideoPress."],"Embed a Tumblr post.":["Incrusta una publicación de Tumblr."],"Embed a TED video.":["Incrusta un vídeo de TED."],"Embed Speaker Deck content.":["Incrusta contenido de Speaker Deck."],"Embed a YouTube video.":["Incrusta un vídeo de YouTube."],"Embed SmugMug content.":["Incrusta contenido de SmugMug."],"Embed Slideshare content.":["Incrusta contenido de Slideshare."],"Embed Scribd content.":["Incrusta contenido de Scribd."],"Embed Screencast content.":["Incrusta contenido de Screencast."],"Embed ReverbNation content.":["Incrusta contenido de ReverbNation."],"Embed a Reddit thread.":["Incrusta un hilo de Reddit."],"Embed Polldaddy content.":["Incrusta contenido de Polldaddy."],"Embed Mixcloud content.":["Incrusta contenido de Mixcloud."],"Embed a tweet.":["Incrusta un tweet."],"Embed Meetup.com content.":["Incrusta contenido de Meetup.com."],"Embed Kickstarter content.":["Incrusta contenido de Kickstarter."],"Embed Issuu content.":["Incrusta contenido de Issuu."],"Embed Imgur content.":["Incrusta contenido de Imgur."],"Embed Hulu content.":["Incrusta contenido de Hulu."],"Embed a Dailymotion video.":["Incrusta un vídeo de Dailymotion."],"Embed CollegeHumor content.":["Incrusta contenido de CollegeHumor."],"Embed Cloudup content.":["Incrusta contenido de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Añade una imagen o vídeo con un texto superpuesto — genial para cabeceras."],"Display code snippets that respect your spacing and tabs.":["Muestra fragmentos de código que respetan tus espacios y tabuladores."],"Use the classic WordPress editor.":["Utiliza el editor clásico de WordPress."],"Display a list of all categories.":["Muestra una lista de todas las categorías."],"Embed a simple audio player.":["Incrusta un reproductor sencillo de audio."],"noun\u0004View":["Ver"],"editor button\u0004Left to right":["De izquierda a derecha"],"Save as Pending":["Guardar como pendiente"],"%s address":["dirección del %s"],"Paste or type URL":["Pega o teclea la URL"],"Insert from URL":["Insertar desde URL"],"Block Navigator":["Navegador de bloques"],"Styles":["Estilos"],"Advanced panels":["Paneles avanzados"],"Document panels":["Paneles de documentos"],"General":["Generales"],"Open the block navigation menu.":["Abre el menú de navegación de bloques."],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Enfócate en un bloque cada vez"],"Access all block and document tools in a single place":["Accede a todos las herramientas de bloques y documentos desde un solo lugar"],"Options":["Opciones"],"(opens in a new tab)":["(abre en una nueva pestaña)"],"Minutes":["Minutos"],"Hours":["Horas"],"Time":["Hora"],"Year":["Año"],"Day":["Día"],"December":["diciembre"],"November":["noviembre"],"October":["octubre"],"September":["septiembre"],"August":["agosto"],"July":["julio"],"June":["junio"],"May":["mayo"],"April":["abril"],"March":["marzo"],"February":["febrero"],"January":["enero"],"Month":["Mes"],"Date":["Fecha"],"Go to the first (home) or last (end) day of a week.":["Ve al primer (inicio) o último (fin) día de una semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio y fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Moverse hacia atrás (PgUp) o hacia delante (PgDn) un mes."],"PgUp/PgDn":["Av Pág/Re Pág"],"Page Up and Page Down":["Avanzar página y retroceder página"],"Move backward (up) or forward (down) by one week.":["Moverse hacia atrás (arriba) o hacia delante (abajo) una semana."],"Up and Down Arrows":["Flechas arriba y abajo"],"Move backward (left) or forward (right) by one day.":["Moverse hacia atrás (izquierda) o hacia delante (derecha) un día."],"Left and Right Arrows":["Flechas izquierda y derecha"],"Select the date in focus.":["Seleccionar la fecha con foco."],"Navigating with a keyboard":["Navegación con teclado"],"Click the desired day to select it.":["Clic en el día deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Haz clic en las flechas izquierda y derecha para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para seleccionar"],"Calendar Help":["Ayuda del calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utiliza las teclas de flechas para cambiar el color base. Muévete arriba para aclarar el color, abajo para oscurecerlo, a la izquierda para disminuir la saturación y a la derecha para aumentar la saturación."],"Choose a shade":["Elige una sombra"],"Change color format":["Cambia el formato de color"],"Color value in HSL":["Valor del color en HSL"],"Color value in RGB":["Valor del color en RGB"],"Color value in hexadecimal":["Valor del color en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color hex activo"],"Hue/saturation/lightness mode active":["Modo de tono/saturación/brillo activo"],"Move the arrow left or right to change hue.":["Mueve la flecha izquierda o derecha para cambiar el tono."],"Hue value in degrees, from 0 to 359.":["Valor del tono en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (completamente opaco)."],"Stripes":["Franjas"],"Your site doesn’t include support for this block.":["Tu sitio no incluye compatibilidad con este bloque."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque «%s». Puedes dejar intacto este bloque o quitarlo del todo."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque «%s». Puedes dejar intacto este bloque, convertir su contenido a un bloque de HTML personalizado o quitarlo del todo."],"Media area":["Área de medios"],"Media & Text":["Medios y texto"],"Show media on right":["Mostrar medios a la derecha"],"Show media on left":["Mostrar medios a la izquierda"],"Open in New Tab":["Abrir en pestaña nueva"],"Cover":["Fondo"],"Border settings":["Ajustes del borde"],"Medium":["Medio"],"Paste URL or type to search":["Pega la URL o teclea para buscar"],"Terms":["Términos"],"Your work will be published at the specified date and time.":["Tu trabajo se publicará en la fecha y hora establecidas."],"Are you ready to schedule?":["¿Estás listo para programar?"],"Always show pre-publish checks.":["Mostrar siempre las comprobaciones previas a la publicación."],"Take Over":["Tomar el control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Hay otro usuario trabajando ahora mismo en esta entrada, lo que quiere decir que tú no puedes hacer cambios, a no ser que tomes el control."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s está trabajando ahora mismo en esta entrada, lo que quiere decir que tú no puedes hacer cambios a no ser que tomes el control."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Otro usuario tiene ahora el control de edición de esta entrada. No te preocupes, se han guardado tus cambios hasta este momento."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s tiene ahora el control de edición de esta entrada. No te preocupes, se han guardado tus cambios hasta este momento."],"Avatar":["Avatar"],"This post is already being edited.":["Esta entrada está siendo editada."],"Someone else has taken over this post.":["Alguien ha tomado el control de esta entrada."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o no válido."],"Resolve Block":["Resolver bloque"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque solo se puede utilizar una vez."],"Exit Code Editor":["Salir del editor de código."],"Editing Code":["Editando código"],"Solid Color":["Color sólido"],"Main Color":["Color principal"],"HTML":["HTML"],"Write HTML…":["Escribe HTML..."],"Media settings":["Ajustes de medios"],"Overlay":["Superposición"],"Insert Media":["Insertar medios"],"Reusable block imported successfully!":["¡Bloque reutilizable importado correctamente!"],"Invalid Reusable Block JSON file":["Archivo JSON de bloque reutilizable no válido"],"Invalid JSON file":["Archivo JSON no válido"],"Import from JSON":["Importar de JSON"],"Backtick":["Acento grave"],"Period":["Punto"],"Comma":["Coma"],"Change type of %d block":["Cambiar el tipo de %d bloque","Cambiar el tipo de %d bloques"],"Current":["Actual"],"After Conversion":["Después de la conversión"],"Change alignment":["Cambiar la alineación"],"Change text alignment":["Cambiar la alineación del texto"],"%d block":["%d bloque","%d bloques"],"Forward-slash":["Barra"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["Este archivo está vacío."],"Sorry, this file type is not supported here.":["Lo siento, este tipo de archivo no es compatible aquí."],"Manage all reusable blocks":["Gestionar todos los bloques reutilizables"],"Title":["Título"],"Fullscreen mode":["Modo de pantalla completa"],"Beautiful landscape":["Precioso paisaje"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir a bloque clásico"],"Remove Poster Image":["Quitar imagen del póster"],"Select Poster Image":["Elegir imagen de poster"],"Poster Image":["Imagen de poster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque está obsoleto. Por favor, utiliza el bloque de columnas en su lugar."],"Text Columns (deprecated)":["Columnas de texto (obsoletas)"],"Create":["Crear"],"Row Count":["Recuento de filas"],"Column Count":["Recuento de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque está obsoleto. Por favor, utiliza el bloque de párrafo en su lugar."],"Subheading (deprecated)":["Subtítulo (obsoleto)"],"blockquote":["cita"],"Change the block type after adding a new paragraph.":["Cambia el tipo de bloque después de agregar un nuevo párrafo."],"Spotlight mode":["Modo de enfoque"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y a los motores de búsqueda a navegar por tu sitio y encontrar tu contenido. Añade unas cuantas palabras clave que describan tu entrada."],"Add tags":["Añade etiquetas"],"Apply the \"%1$s\" format.":["Aplica el formato «%1$s»."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tu tema utiliza formatos de entrada para destacar los distintos tipos de contenido, como imágenes o vídeos. Aplica un formato de entrada para ver estos estilos especiales."],"Use a post format":["Usa un formato de entrada"],"Insert After":["Insertar después"],"Insert Before":["Insertar antes"],"Move %1$d block from position %2$d down by one place":["Mueve %1$d bloque de la posición %2$d a un sitio más abajo","Mueve %1$d bloques de la posición %2$d a un sitio más abajo"],"Move %1$d block from position %2$d up by one place":["Mueve %1$d bloque de la posición %2$d un sitio más arriba","Mueve %1$d bloques de la posición %2$d un sitio más arriba"],"Move %1$s block from position %2$d right to position %3$d":["Mueve %1$s bloque de la posición %2$d a la posición %3$d"],"movie":["película"],"Insert a new block before the selected block(s).":["Inserta un nuevo bloque antes del/los bloque(s) seleccionado(s)."],"Remove the selected block(s).":["Quita el/los bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplica el/los bloque(s) seleccionado(s)."],"Block shortcuts":["Atajos de bloques"],"Clear selection.":["Vaciar selección."],"Select all text when typing. Press again to select all blocks.":["Selecciona todo el texto mientras tecleas. Pulsa de nuevo para seleccionar todos los bloques."],"Selection shortcuts":["Atajos de selección"],"Switch between Visual editor and Code editor.":["Cambia entre el editor visual y el editor de código."],"Navigate to the previous part of the editor.":["Navega a la parte anterior del editor."],"Navigate to the next part of the editor.":["Navega a la parte siguiente del editor."],"Show or hide the settings sidebar.":["Muestra u oculta la barra lateral de ajustes."],"Redo your last undo.":["Rehace tu último deshacer."],"Undo your last changes.":["Deshace tus últimos cambios."],"Save your changes.":["Guarda tus cambios."],"Global shortcuts":["Atajos globales"],"Remove a link.":["Quita un enlace."],"Convert the selected text into a link.":["Convierte el texto seleccionado en un enlace."],"Underline the selected text.":["Subraya el texto seleccionado."],"Make the selected text italic.":["Cambia el texto seleccionado a cursiva."],"Make the selected text bold.":["Cambia el texto seleccionado a negrita."],"Text formatting":["Formatos de texto"],"Insert a new block after the selected block(s).":["Inserta un nuevo bloque después del/los bloque(s) seleccionado(s)."],"Keyboard shortcuts":["Atajos de teclado"],"Thanks for testing Gutenberg!":["¡Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si quieres aprender más sobre cómo crear bloques adicionales o si estás interesado en ayudar con el proyecto, pásate por el repositorio en GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El código es poesía"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puedes crear cualquier bloque que quieras, estático y dinámico, decorativo o plano. Aquí tienes un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede estar en alguna de estas alineaciones. El bloque de incrustar también las tiene, y es adaptable desde la base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo de arriba es una galería con solo dos imágenes. Es un modo sencillo de crear visualmente atractivos diseños, sin tener que lidiar con floats. También puedes convertir fácilmente la galería de nuevo a imágenes individuales, usando el cambiador de bloques. "],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por supuesto, la imagen a ancho completo puede ser realmente grande. Pero a veces la imagen es lo importante."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante. No te olvides del atributo de imagen alt."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combinas las nuevas alineaciones de galería ancha y ancho completo puedes crear diseños ricos en medios muy rápidamente:"],"Media Rich":["Medios enriquecidos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puedes cambiar la cantidad de columnas de tus galerías arrastrando un control deslizante en el inspector de bloques de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser lo que necesitas. Por ejemplo, puede que quieras añadir una cita sutil como parte de la composición de tu texto o puede que prefieras mostrar una estilizada y gigante. Todas estás opciones están en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La información correspondiente al origen de la cita está en un campo de texto separado, parecido a las leyendas bajo las imágenes, para que la estructura de la cita esté protegida aunque la selecciones, modifiques o quites del origen. Es siempre sencillo añadirla de nuevo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["El editor tratará de crear una nueva experiencia de creación de páginas y entradas que ayude a escribir publicaciones enriquecidas sin esfuerzo y tiene «bloques» para hacer sencillo lo que hoy conllevaría usar shortcodes, HTML personalizado o esotéricos descubrimientos de incrustaciones."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que puedes editarlos donde estén y manipular directamente tu contenido. En vez de tener campos para editar cosas como la fuente de una cita o el texto de un botón, puedes cambiar directamente el contenido. Prueba a modificar la siguiente cita:"],"Visual Editing":["Edición visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de diseño, como botones, imágenes principales, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits o entradas de otro WordPress."],"Galleries":["Galerías"],"Images & Videos":["Imágenes y vídeos"],"Text & Headings":["Texto y encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Anímate a probarlo, puedes descubrir cosas que WordPress ya puede añadir en tus entradas de las que no tenías ni idea. Aquí tienes una breve lista de lo que actualmente puedes encontrar ahí:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo lo que WordPress puede hacer esté disponible para ti rápidamente y en el mismo lugar de la interfaz. No tienes que descubrir etiquetas HTML, clases o recordar sintaxis complicadas de shortcodes. Ese es el espíritu tras el insertador — el botón (+)
que verás en el editor — que te permite navegar por todos los bloques de contenido disponibles y añadirlos a tu entrada. Los plugins y temas pueden registrar los suyos propios, abriendo una enorme cantidad de posibilidades para la edición y la publicación enriquecida."],"The Inserter Tool":["La herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prueba a seleccionar o quitar o editar la leyenda, ahora ya no tienes porque ser cuidadoso a la hora de seleccionar la imagen u otro texto por error y arruinar la presentación."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si tu tema es compatible, verás el botón de «ancho» en la barra de herramientas de la imagen. Pruébalo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestionar imágenes y medios con el máximo cuidado es un enfoque principal del nuevo editor. Afortunadamente encontrarás posibilidades para añadir leyendas o hacer de ancho completo tus fotos de un modo mucho más fácil y robusto que antes."],"A Picture is Worth a Thousand Words":["Una imagen vale más que mil palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados también son bloques separados, lo que ayuda a la estructura y organización de tu contenido."],"... like this one, which is right aligned.":["... como esta, que está alineada a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que estás leyendo ahora es un bloque de texto, el bloque más básico de todos. El bloque de texto tiene sus propios controles para moverlo libremente por toda la publicación…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que añadir contenido enriquecido a WordPress sea algo sencillo y agradable. Toda esta entrada está creada con piezas de contenido —algo parecido a los ladrillos LEGO — que puedes mover y con los que puedes interactuar. Mueve tu cursor y verás que aparecen los distintos bloques con líneas y flechas. Pulsa en las flechas para recolocar rápidamente los bloques, sin miedo a perder cosas sen el proceso de copiar y pegar. "],"Of Mountains & Printing Presses":["Hablando de montañas e imprentas"],"Welcome to the Gutenberg Editor":["Bienvenido al editor Gutenberg"],"block name\u0004More":["Más"],"button to expand options\u0004More":["Más"],"Are you sure you want to unschedule this post?":["¿Seguro que quieres anular la programación de esta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador único para el objeto."],"Untitled Reusable Block":["Bloque reutilizable sin título"],"Small":["Pequeño"],"Reusable":["Reutilizable"],"Remove from Reusable blocks":["Eliminar de los bloques reutilizables"],"Add to Reusable blocks":["Añadir a los bloques reutilizables"],"Keep as HTML":["Mantener como HTML"],"Edit URL":["Editar URL"],"Color settings":["Ajustes de color"],"The response is not a valid JSON response.":["Las respuesta no es una respuesta JSON válida."],"Editor publish":["Publicación del editor"],"Muted":["Silenciado"],"Video settings":["Ajustes de vídeo"],"recent comments":["comentarios recientes"],"Latest Comments":["Últimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":["Mostrar fecha"],"Display Avatar":["Mostrar avatar"],"Latest comments settings":["Ajustes de últimos comentarios"],"Number of Comments":["Número de comentarios"],"Background Opacity":["Opacidad del fondo"],"Auto":["Auto"],"Preload":["Precarga"],"Audio settings":["Ajustes de audio"],"Display a monthly archive of your posts.":["Muestra un archivo por meses de tus entradas."],"Display as Dropdown":["Mostrar como desplegable"],"Show Post Counts":["Mostrar contador de entradas"],"Archives settings":["Ajustes de archivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Soporte"],"No comments to show.":["No hay comentarios que mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar entrada"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar día"],"Select Month":["Elegir mes"],"Select Year":["Seleccionar año"],"Archives":["Archivos"],"Very dark gray":["Gris muy oscuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris muy claro"],"Vivid cyan blue":["Azul cian vivo"],"Pale cyan blue":["Azul cian pálido"],"Vivid green cyan":["Cian verde vivo"],"Light green cyan":["Cian verde claro"],"Luminous vivid amber":["Ambar vivo luminoso"],"Luminous vivid orange":["Naranja vivo luminoso"],"Vivid red":["Rojo vivo"],"Pale pink":["Rosa pálido"],"Inline image":["Imagen integrada"],"Available block types":["Tipos de bloques disponibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir el panel de publicar"],"Dots":["Puntos"],"Wide Line":["Línea ancha"],"Large":["Grande"],"Show download button":["Mostrar el botón de descarga"],"Download button settings":["Ajustes del botón de descarga"],"Link To":["Enlazado a"],"Text link settings":["Ajustes del texto del enlace"],"download":["Descargar"],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escribe el nombre del archivo…"],"File":["Archivo"],"A single column within a columns block.":["Una columna simple dentro de un bloque de columnas."],"Column":["Columna"],"Outline":["Contorno"],"Loop":["Repetir"],"Autoplay":["Reproducción automática"],"Playback Controls":["Controles de reproducción"],"Close dialog":["Cerrar diálogo"],"Sorry, this file type is not permitted for security reasons.":["Lo siento, este tipo de archivo no está permitido por motivos de seguridad."],"Disable tips":["Desactivar consejos"],"Got it":["Entendido"],"See next tip":["Ver siguiente consejo"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando estés listo, envía tu trabajo para revisión y un editor te lo podrá aprobar."],"Are you ready to submit for review?":["¿Estás listo para enviarlo a revisión?"],"Replace image":["Reemplazar imagen"],"Remove image":["Quitar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca de medios."],"This file exceeds the maximum upload size for this site.":["El tamaño del archivo excede el tamaño permitido en este sitio."],"View the autosave":["Ver el guardado automático"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado automático de esta entrada que es más reciente que la versión de abajo."],"Autosaving":["Guardando automáticamente"],"Enter URL here…":["Introduce aquí la URL…"],"Pin to toolbar":["Fijar a la barra de herramientas"],"Unpin from toolbar":["Quitar de la barra de herramientas"],"Insert a table — perfect for sharing charts and data.":["Inserta una tabla -- perfecto para compartir gráficos y datos."],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table settings":["Ajustes de tabla"],"Add text that respects your spacing and tabs, and also allows styling.":["Añade texto que respete tus espacios y tabulados, y que también permita estilos."],"Display a list of your most recent posts.":["Muestra una lista de tus entradas más recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Añade un bloque que muestra contenido extraído de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Añade un bloque que muestra contenido en varias columnas, luego añade cualquier bloque de contenido que quieras."],"Error loading block: %s":["Error al cargar el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Gestor del servicio"],"term\u0004Remove %s":["Quitar %s"],"Copy the permalink":["Copia el enlace permanente"],"Permalink copied":["Enlace permanente copiado"],"Height in pixels":["Altura en píxeles"],"Spacer settings":["Ajustes del espaciador"],"Spacer":["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Quitar elemento"],"Color code: %s":["Código de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish…":["Publicar…"],"Schedule…":["Programado…"],"Edit post permalink":["Editar enlace permanente de la entrada"],"Show Block Settings":["Mostrar ajustes del bloque"],"Hide Block Settings":["Ocultar ajustes del bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Editor settings":["Ajustes del editor"],"Link settings":["Ajustes del enlace"],"Unlink":["Quitar enlace"],"Page break":["Salto de página"],"pagination":["paginación"],"next page":["página siguiente"],"Image Size":["Tamaño de la imagen"],"Height":["Altura"],"Width":["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca de medios"],"Advanced":["Avanzado"],"Add item":["Añadir elemento."],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como está"],"The content of your post doesn’t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en pérdida de contenido, ¿quieres continuar?"],"Document Statistics":["Estadísticas del documento"],"is now scheduled. It will go live on":["está ahora programada. Estará disponible el"],"Scheduled":["Programada"],"Scheduling…":["Programando…"],"Code editor selected":["Editor de código seleccionado"],"Visual editor selected":["Editor visual seleccionado"],"Plugins":["Plugins"],"Custom Size":["Tamaño personalizado"],"Layout elements":["Elementos de diseño"],"term\u0004%s removed":["%s quitada"],"term\u0004%s added":["%s añadida"],"imperative verb\u0004Preview":["Vista previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":["Fallo al actualizar"],"Scheduling failed.":["Fallo al programar"],"Publishing failed.":["Fallo al publicar"],"View post":["Ver la entrada"],"You have unsaved changes. If you proceed, they will be lost.":["Tienes cambios sin guardar. Si sigues se perderán."],"Document Outline":["Esquema del documento"],"Paragraphs":["Párrafos"],"Headings":["Encabezados"],"Words":["Palabras"],"Content structure":["Estructura del contenido"],"Public":["Público"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contraseña que tú elijas. Solo los que tengan la contraseña pueden ver esta entrada."],"Password Protected":["Protegida con contraseña"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],"Private":["Privada"],"Visible to everyone.":["Visible por todos"],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["¿Te gustaría publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contraseña segura"],"Create password":["Crear contraseña"],"Move to Trash":["Mover a la papelera"],"Parent Term":["Término superior"],"Parent Category":["Categoría superior"],"Add new term":["Añadir nuevo término"],"Add new category":["Añadir nueva categoría"],"Term":["Término"],"Tag":["Etiqueta"],"Add new Term":["Añadir un nuevo término"],"Add new tag":["Añadir una nueva etiqueta"],"Switch to draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["¿Seguro que quieres anular la publicación de esta entrada?"],"Immediately":["Inmediatamente"],"Save Draft":["Guardar borrador"],"Saving":["Guardando"],"Publish:":["Publicar: "],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["¿Estás listo para publicar?"],"Copy Link":["Copiar enlace"],"What’s next?":["¿Y ahora qué?"],"is now live.":["está ahora visible."],"Published":["Publicada"],"Schedule":["Programar"],"Update":["Actualizar"],"Submit for Review":["Enviar a revisión"],"Updating…":["Actualizando..."],"Publishing…":["Publicando..."],"Allow pingbacks & trackbacks":["Permitir pingbacks y trackbacks"],"Permalink:":["Enlace permanente:"],"Pending review":["Pendiente de revisión"],"%d Revision":["%d revisión","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de entrada:"],"Chat":["Chat"],"Status":["Estado"],"Standard":["Estándar"],"Aside":["Minientrada"],"Featured image":["Imagen destacada"],"Set featured image":["Establecer la imagen destacada"],"Learn more about manual excerpts":["Aprende más sobre extractos manuales"],"Write an excerpt (optional)":["Escribe un extracto (opcional)"],"Allow comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin título"],"Order":["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],"Saved":["Guardado"],"Embeds":["Incrustados"],"Blocks":["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Añadir bloque"],"Copy Error":["Copiar error"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar la recuperación"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],"Undo":["Deshacer"],"Redo":["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el título de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vacío)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["¿Estás seguro de querer borrar este bloque compartido?\nSe borrará permanentemente de todas las entradas y páginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":["Más opciones"],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya están en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya están al principio"],"Block %1$s is at the beginning of the content and can’t be moved right":["El bloque %1$s está al principio del contenido y no se puede mover"],"Block %1$s is at the end of the content and can’t be moved right":["El bloque %1$s está al final del contenido y no se puede mover"],"Block %s is the only block, and cannot be moved":["El bloque %s es el único bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["Ningún bloque seleccionado."],"Transform into:":["Transformar a:"],"Remove":["Quitar"],"Find original":["Encontrar el original"],"Copy all content":["Copiar todo el contenido"],"Copied!":["¡Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],"Visibility":["Visibilidad"],"Status & visibility":["Estado y visibilidad"],"Page attributes":["Atributos de página"],"Block":["Bloque"],"Document":["Documento"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],"Tools":["Herramientas"],"Editor":["Editor"],"Code editor":["Editor de código"],"Visual editor":["Editor visual"],"Editor top bar":["Barra superior del editor"],"Settings":["Ajustes"],"Reset":["Restablecer"],"Dismiss this notice":["Descartar este aviso"],"Item removed.":["Elemento quitado."],"Item added.":["Elemento añadido."],"Drop files to upload":["Arrastra archivos para subirlos"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ha ocurrido un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, utiliza las teclas arriba y abajo para navegar.","%d resultados encontrados, utiliza las teclas arriba y abajo para navegar."],"(no title)":["(sin título)"],"URL":["URL"],"Submit":["Enviar"],"Close":["Cerrar"],"Insert link":["Insertar un enlace"],"Edit link":["Editar el enlace"],"Link":["Enlace"],"Strikethrough":["Tachado"],"Italic":["Cursiva"],"Bold":["Negrita"],"Remove link":["Eliminar el enlace"],"Number of items":["Número de elementos"],"All":["Todo"],"Category":["Categoría"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],"Select":["Elegir"],"Select or Upload Media":["Elige o sube medios"],"Video":["Vídeo"],"Write…":["Escribe…"],"poetry":["poesía"],"Verse":["Verso"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["Añadir columna después"],"Add Column Before":["Añadir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Añadir fila después"],"Add Row Before":["Añadir fila antes"],"Edit table":["Editar tabla"],"Table":["Tabla"],"Write subheading…":["Escribe el subtítulo…"],"Write shortcode here…":["Escribe aquí el shortcode…"],"Shortcode":["Shortcode"],"divider":["separador"],"horizontal-line":["línea-horizontal"],"Separator":["Separador"],"Quote":["Cita"],"Write citation…":["Escribe la referencia…"],"Write quote…":["Escribe la cita…"],"Pullquote":["Cita"],"Write preformatted text…":["Escribe texto preformateado…"],"Preformatted":["Preformateado"],"text":["texto"],"Paragraph":["Párrafo"],"Font Size":["Tamaño de fuente"],"Drop Cap":["Capitalizar"],"Text settings":["Ajustes del texto"],"Read more":["Leer más"],"Write list…":["Escribe una lista…"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con viñetas"],"Indent list item":["Añadir sangría al elemento de la lista"],"Outdent list item":["Reducir sangría al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],"List":["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se encontraron entradas."],"Latest Posts":["Últimas entradas"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":["Vista de cuadrícula"],"List view":["Vista de lista"],"photo":["foto"],"Image settings":["Ajustes de imagen"],"Image":["Imagen"],"Preview":["Vista previa"],"embed":["incrustar"],"Custom HTML":["HTML personalizado"],"subtitle":["subtítulo"],"title":["título"],"Heading":["Encabezado"],"Write heading…":["Escribe el encabezado…"],"Heading %d":["Encabezado %d"],"Level":["Nivel"],"Heading settings":["Ajustes del encabezado"],"photos":["fotos"],"images":["imágenes"],"None":["Ninguna"],"Media File":["Archivo multimedia"],"Attachment Page":["Página de adjuntos"],"Link to ":["Enlazar a"],"Crop Images":["Recortar imágenes"],"Gallery settings":["Ajustes de la galería"],"Gallery":["Galería"],"Classic":["Clásico"],"video":["vídeo"],"audio":["audio"],"music":["música"],"image":["imagen"],"blog":["blog"],"post":["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here…":["Introduce aquí la URL a incrustar…"],"%s URL":["%s URL"],"Embedding…":["Incrustando…"],"Write title…":["Escribe el título…"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],"Columns":["Columnas"],"Experiments":["Experimentos"],"Code":["Código"],"Write code…":["Escribe código…"],"Categories":["Categorías"],"Show Hierarchy":["Mostrar jerarquía"],"Show post counts":["Mostrar contador de entradas"],"Categories settings":["Ajustes de las categorías"],"Add text…":["Añade texto…"],"Button":["Botón"],"Apply":["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no está disponible."],"Reusable blocks":["Bloques reutilizables"],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escribe la leyenda…"],"Use URL":["Usar URL"],"Audio":["Audio"],"Upload":["Subir"],"Additional CSS Class(es)":["Clase(s) CSS adicional(es)"],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más claro y/o un color de texto más oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más oscuro y/o un color de texto más claro."],"Clear":["Borrar"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full width":["Ancho completo"],"Wide width":["Ancho amplio"],"Widgets":["Widgets"],"Formatting":["Formatos"],"Common blocks":["Bloques comunes"],"Align right":["Alinear a la derecha"],"Align center":["Alinear al centro"],"Align left":["Alinear a la izquierda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del núcleo."],"Add title":["Añadir título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["El modo de desarrollo de Gutenberg requiere crear una serie de archivos. Ejecuta npm install
para instalar las dependencias, npm run build
para crear los archivos o npm run dev
para crear y ver los archivos. Lee el archivo colaborando para más información."],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Comentarios"],"Custom fields":["Campos personalizados"],"Excerpt":["Extracto"],"Publish":["Publicar"],"Metadata":["Metadatos"],"Save":["Guardar"],"Documentation":["Documentación"],"Select Category":["Elegir categoría"],"(Untitled)":["(Sin título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg requiere WordPress %s o posterior para funcionar adecuadamente. Por favor, actualiza WordPress antes de activar Gutenberg."],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["hace %s"],"Block style name must be a string.":["El nombre del estilo del bloque debe ser una cadena."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_esar.json b/bundle/android/raw/i18ncache_data_esar.json
new file mode 100644
index 0000000000..0014ee7ebb
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_esar.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":["Bloque mostrado como vacío."],"Inline Code":["Código en línea"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aviso: Reproducir videos automáticamente puede causar problemas de usabilidad para algunos visitantes."],"Footer section":["Sección de pie de página"],"Header section":["Sección de cabecera"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Contenido de la entrada"],"Post content settings":[],"Percentage width":["Porcentaje del ancho"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aviso: reproducir audios automáticamente puede producir problemas de usabilidad para algunos visitantes."],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["Contenido de la pantalla de widgets"],"header":[],"Widgets advanced settings":["Ajustes avanzados de widgets"],"(experimental)":["(experimental)"],"Block Areas":["Áreas de bloques"],"Widgets screen top bar":["Barra superior de la pantalla de widgets"],"This color combination may be hard for people to read.":["Esta combinación de colores puede ser difícil de leer para la gente."],"There is no poster image currently selected":["No hay ninguna imagen de póster seleccionada en este momento"],"The current poster image url is %s":["La URL de la imagen actual de póster actual es %s"],"section":["sección"],"row":["fila"],"wrapper":["envoltura"],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":["%d palabra","%d palabras"],"Top toolbar":[],"Link Rel":["Enlace relativo"],"Link CSS Class":["Enlace de una clase CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Creá contenido y guardalo para que vos y otros contribuidores puedan usarlo en tu sitio. Actualizá el bloque y los cambios serán aplicados en todos los lugares donde éste sea utilizado."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada necesitás permisos para subir archivos multimedia."],"To edit this block, you need permission to upload media.":["Para editar este bloque necesitás permisos para subir archivos multimedia. "],"(selected block)":["(bloque seleccionado)"],"Block tools":["Herramientas de bloque"],"Permalink":["Enlace permanente"],"This image has an empty alt attribute":["Esta imagen tiene un atributo atl vacío"],"This image has an empty alt attribute; its file name is %s":["Esta imagen tiene un atributo atl vacío; el nombre del archivo es %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Agregar nuevo"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Advertencia: el enlace ha sido insertado pero puede haber errores. Probalo, por favor."],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],"Thumbnail":["Miniatura"],"Full Size":["Tamaño completo"],"Link selected.":[],"Start writing with text or HTML":["Empezá a escribir texto o HTML"],"Type text or HTML":["Escribir texto o HTML"],"Block icon":["Ícono del bloque"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Empezá a escribir o ingresá / para elegir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vacio. Empezá a escribir o escribí una barra diagonal para elegir un bloque"],"Paragraph block":["Bloque de párrafo"],"Page Break":["Salto de página"],"Stack on mobile":["Apilar en dispositivos móviles"],"Annotation":["Anotación"],"Drag images, upload new ones or select files from your library.":["Arrastrá imágenes, subí nuevas o seleccioná archivos de tu biblioteca."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resuelve"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Medio"],"font size name\u0004Small":["Pequeño"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importar"],"button label\u0004Download":["Descargar"],"button label\u0004Embed":["Incrustar"],"block title\u0004Embed":["Incrustado"],"block title\u0004Classic":["Clásico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":["Redondeado"],"%s (opens in a new tab)":["%s (abre en una nueva pestaña)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace quitado."],"media":["multimedia"],"Double-check your settings before publishing.":["Volvé a comprobar tus ajustes antes de publicar."],"Generating preview…":["Generando vista previa…"],"Edit or update the image":["Editá o actualiza la imagen"],"Media":["Multimedia"],"Navigate to the nearest toolbar.":["Navega hasta la barra de herramientas más cercana."],"Document tools":["Herramientas del documento"],"Document and block tools":["Herramientas del documento y los bloques"],"Embed a video from your media library or upload a new one.":["Incrusta un video desde tu biblioteca multimedia o sube uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserta poesía. Utiliza formatos de espaciado especiales. O cita letras de canciones."],"Add white space between blocks and customize its height.":["Agrega espacio en blanco entre bloques y personaliza su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserta elementos adicionales personalizados con un shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea una ruptura entre ideas o secciones con un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Da un énfasis visual al texto citado. \"Al citar a otros, nos citamos a nosotros mismos.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Da un énfasis visual especial a una cita de tu texto."],"Start with the building block of all narrative.":["Empieza con el bloque que cimienta toda la narrativa."],"Separate your content into a multi-page experience.":["Separa tu contenido en una experiencia multi-página."],"Set media and words side-by-side for a richer layout.":["Colocá las palabras y los archivos multimedia uno al lado del otro para tener un diseño más rico."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Crea una lista de viñetas o numerada."],"Display a list of your most recent comments.":["Muestra una lista de tus comentarios más recientes."],"Insert an image to make a visual statement.":["Inserta una imagen para hacer una declaración visual."],"Add custom HTML code and preview it as you edit.":["Agrega código personalizado HTML y previsualízalo mientras lo editas."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce nuevas secciones y organiza el contenido para ayudar a los visitantes (y a los motores de búsqueda) a comprender la estructura de tu contenido."],"Display multiple images in a rich gallery.":["Muestra múltiples imágenes en una galería enriquecida."],"Add a link to a downloadable file.":["Agrega un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta videos, imágenes, tweets, audios, y otros contenidos desde fuentes externas."],"Resize for smaller devices":["Cambia el tamaño para dispositivos más pequeños"],"This embed may not preserve its aspect ratio when the browser is resized.":["Este incrustado podría no mantener su relación de aspecto cuando el navegador cambie de tamaño."],"This embed will preserve its aspect ratio when the browser is resized.":["Este incrustado mantendrá su relación de aspecto cuando el navegador cambie de tamaño."],"Embed an Animoto video.":["Incrustar video Animoto."],"Embed a Vimeo video.":["Incrustar video Vimeo."],"Embed Flickr content.":["Incrustar contenido de Flickr."],"Embed Spotify content.":["Incrustar contenido de Spotify."],"Embed SoundCloud content.":["Incrustar contenido de SoundCloud."],"Embed a WordPress post.":["Incrustar una entrada de WordPress."],"Embed an Instagram post.":["Incrustar una publicación de Instagram."],"Embed a Facebook post.":["Incrustar una publicación de Facebook."],"Embed a WordPress.tv video.":["Incrustar un video de WordPress.tv."],"Embed a VideoPress video.":["Incrustar un video de VideoPress."],"Embed a Tumblr post.":["Incrustar una publicación de Tumblr."],"Embed a TED video.":["Incrustar un video de TED."],"Embed Speaker Deck content.":["Incrustar contenido de Speaker Deck."],"Embed a YouTube video.":["Incrustar un video de YouTube."],"Embed SmugMug content.":["Incrustar contenido de SmugMug."],"Embed Slideshare content.":["Incrustar contenido de Slideshare."],"Embed Scribd content.":["Incrustar contenido de Scribd."],"Embed Screencast content.":["Incrustar contenido de Screencast."],"Embed ReverbNation content.":["Incrustar contenido de ReverbNation."],"Embed a Reddit thread.":["Incrustar una hilo de Reddit."],"Embed Polldaddy content.":["Incrustar contenido de Polldaddy."],"Embed Mixcloud content.":["Incrustar contenido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contenido de Meetup.com."],"Embed Kickstarter content.":["Incrustar contenido de Kickstarter."],"Embed Issuu content.":["Incrustar contenido de Issuu."],"Embed Imgur content.":["Incrustar contenido de Imgur."],"Embed Hulu content.":["Incrustar contenido de Hulu."],"Embed a Dailymotion video.":["Incrustar un video de Dailymotion."],"Embed CollegeHumor content.":["Incrustar contenido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contenido de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Agrega una imagen o video con un texto superpuesto — genial para encabezados."],"Display code snippets that respect your spacing and tabs.":["Muestra fragmentos de código que respetan tus espacios y tabuladores."],"Use the classic WordPress editor.":["Utiliza el editor clásico de WordPress."],"Display a list of all categories.":["Muestra una lista de todas las categorías."],"Embed a simple audio player.":["Incrusta un reproductor sencillo de audio."],"noun\u0004View":["Ver"],"editor button\u0004Left to right":["De izquierda a derecha"],"Save as Pending":["Guardar como pendiente"],"%s address":["dirección del %s"],"Paste or type URL":["Pega o teclea la URL"],"Insert from URL":["Insertar desde URL"],"Block Navigator":[],"Styles":["Estilos"],"Advanced panels":[],"Document panels":[],"General":["Generales"],"Open the block navigation menu.":["Abre el menú de navegación de bloques."],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Enfócate en un bloque cada vez"],"Access all block and document tools in a single place":["Accede a todos las herramientas de bloques y documentos desde un solo lugar"],"Options":["Opciones"],"(opens in a new tab)":["(abre en una nueva pestaña)"],"Minutes":["Minutos"],"Hours":["Horas"],"Time":["Hora"],"Year":["Año"],"Day":["Día"],"December":["diciembre"],"November":["noviembre"],"October":["octubre"],"September":["septiembre"],"August":["agosto"],"July":["julio"],"June":["junio"],"May":["mayo"],"April":["abril"],"March":["marzo"],"February":["febrero"],"January":["enero"],"Month":["Mes"],"Date":["Fecha"],"Go to the first (home) or last (end) day of a week.":["Ve al primer (inicio) o último (fin) día de una semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio y fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Moverse hacia atrás (PgUp) o hacia delante (PgDn) un mes."],"PgUp/PgDn":["Av Pág/Re Pág"],"Page Up and Page Down":["Avanzar página y retroceder página"],"Move backward (up) or forward (down) by one week.":["Moverse hacia atrás (arriba) o hacia delante (abajo) una semana."],"Up and Down Arrows":["Flechas arriba y abajo"],"Move backward (left) or forward (right) by one day.":["Moverse hacia atrás (izquierda) o hacia delante (derecha) un día."],"Left and Right Arrows":["Flechas izquierda y derecha"],"Select the date in focus.":["Seleccionar la fecha con foco."],"Navigating with a keyboard":["Navegación con teclado"],"Click the desired day to select it.":["Clic en el día deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Hacé clic en las flechas izquierda y derecha para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para seleccionar"],"Calendar Help":["Ayuda del calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Elige una sombra"],"Change color format":["Cambia el formato de color"],"Color value in HSL":["Valor del color en HSL"],"Color value in RGB":["Valor del color en RGB"],"Color value in hexadecimal":["Valor del color en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color hex activo"],"Hue/saturation/lightness mode active":["Modo de tono/saturación/brillo activo"],"Move the arrow left or right to change hue.":["Mueve la flecha izquierda o derecha para cambiar el tono."],"Hue value in degrees, from 0 to 359.":["Valor del tono en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (completamente opaco)."],"Stripes":["Franjas"],"Your site doesn’t include support for this block.":["Tu sitio no incluye compatibilidad con este bloque."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque \"%s\". Podés dejar intacto este bloque o quitarlo del todo."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Tu sitio no incluye compatibilidad con el bloque \"%s\". Podés dejarlo tal cual está, convertir su contenido a un bloque de HTML personalizado o quitarlo del todo."],"Media area":["Área de multimedia"],"Media & Text":["Multimedia y texto"],"Show media on right":["Mostrar multimedia a la derecha"],"Show media on left":["Mostrar multimedia a la izquierda"],"Open in New Tab":["Abrir en pestaña nueva"],"Cover":["Cubrir"],"Border settings":[],"Medium":["Medio"],"Paste URL or type to search":["Pega la URL o teclea para buscar"],"Terms":["Términos"],"Your work will be published at the specified date and time.":["Tu trabajo se publicará en la fecha y hora establecidas."],"Are you ready to schedule?":["¿Estás listo para programar?"],"Always show pre-publish checks.":["Mostrar siempre las comprobaciones previas a la publicación."],"Take Over":["Tomar el control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Hay otro usuario trabajando ahora en esta entrada, lo que quiere decir que vos no podés hacer cambios, a no ser que tomes el control."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s está trabajando ahora en esta entrada, lo que quiere decir que vos no podés hacer cambios a no ser que tomes el control."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Otro usuario tiene ahora el control de edición de esta entrada. No te preocupes, los cambios que has hecho hasta este momento ya fueron guardados."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s tiene ahora el control de edición de esta entrada. No te preocupes, los cambios que has hecho hasta este momento ya fueron guardados."],"Avatar":["Avatar"],"This post is already being edited.":["Esta entrada está siendo editada."],"Someone else has taken over this post.":["Alguien ha tomado el control de esta entrada."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o no válido."],"Resolve Block":["Resolver bloque"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque solo se puede utilizar una vez."],"Exit Code Editor":["Salir del editor de código"],"Editing Code":["Editando código"],"Solid Color":["Color sólido"],"Main Color":["Color principal"],"HTML":["HTML"],"Write HTML…":["Escribir HTML..."],"Media settings":[],"Overlay":["Superposición"],"Insert Media":["Insertar multimedia"],"Reusable block imported successfully!":["¡Bloque reutilizable importado correctamente!"],"Invalid Reusable Block JSON file":["Archivo JSON de bloque reutilizable no válido"],"Invalid JSON file":["Archivo JSON no válido"],"Import from JSON":["Importar de JSON"],"Backtick":["Acento grave (`)"],"Period":["Punto"],"Comma":["Coma"],"Change type of %d block":["Cambiar el tipo de %d bloque","Cambiar el tipo de %d bloques"],"Current":["Actual"],"After Conversion":["Después de la conversión"],"Change alignment":[],"Change text alignment":[],"%d block":["%d bloque","%d bloques"],"Forward-slash":["Barra"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["Este archivo está vacío."],"Sorry, this file type is not supported here.":["Lo siento, este tipo de archivo no es compatible aquí."],"Manage all reusable blocks":[],"Title":["Título"],"Fullscreen mode":[],"Beautiful landscape":["Precioso paisaje"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir a bloque clásico"],"Remove Poster Image":["Quitar imagen del póster"],"Select Poster Image":["Elegir imagen de poster"],"Poster Image":["Imagen de poster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque está obsoleto. Por favor, usá el bloque de columnas en su lugar."],"Text Columns (deprecated)":["Columnas de texto (obsoletas)"],"Create":["Crear"],"Row Count":["Recuento de filas"],"Column Count":["Recuento de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque está obsoleto. Por favor, usá el bloque de párrafo en su lugar."],"Subheading (deprecated)":["Subtítulo (obsoleto)"],"blockquote":["cita"],"Change the block type after adding a new paragraph.":["Cambiá el tipo de bloque después de agregar un nuevo párrafo."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y a los motores de búsqueda a navegar por tu sitio y encontrar tu contenido. Agregá unas cuantas palabras clave que describan tu entrada."],"Add tags":["Agrega etiquetas"],"Apply the \"%1$s\" format.":["Aplica el formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tu tema utiliza formatos de entrada para destacar los distintos tipos de contenido, como imágenes o videos. Aplicá un formato de entrada para ver estos estilos especiales."],"Use a post format":["Usar un formato de entrada"],"Insert After":["Insertar después"],"Insert Before":["Insertar antes"],"Move %1$d block from position %2$d down by one place":["Mueve %1$d bloque de la posición %2$d a un sitio más abajo","Mueve %1$d bloques de la posición %2$d a un sitio más abajo"],"Move %1$d block from position %2$d up by one place":["Mueve %1$d bloque de la posición %2$d un sitio más arriba","Mueve %1$d bloques de la posición %2$d un sitio más arriba"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["película"],"Insert a new block before the selected block(s).":["Inserta un nuevo bloque antes del/los bloque(s) seleccionado(s)."],"Remove the selected block(s).":["Quita el/los bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplica el/los bloque(s) seleccionado(s)."],"Block shortcuts":["Atajos de bloques"],"Clear selection.":["Vaciar selección."],"Select all text when typing. Press again to select all blocks.":["Seleccioná todo el texto mientras tecleas. Pulsá de nuevo para seleccionar todos los bloques."],"Selection shortcuts":["Atajos de selección"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navega a la parte anterior del editor."],"Navigate to the next part of the editor.":["Navega a la parte siguiente del editor."],"Show or hide the settings sidebar.":["Muestra u oculta la barra lateral de ajustes."],"Redo your last undo.":["Rehace tu último deshacer."],"Undo your last changes.":["Deshace tus últimos cambios."],"Save your changes.":["Guardá tus cambios."],"Global shortcuts":["Atajos globales"],"Remove a link.":["Quita un enlace."],"Convert the selected text into a link.":["Convierte el texto seleccionado en un enlace."],"Underline the selected text.":["Subraya el texto seleccionado."],"Make the selected text italic.":["Cambia el texto seleccionado a cursiva."],"Make the selected text bold.":["Cambia el texto seleccionado a negrita."],"Text formatting":["Formatos de texto"],"Insert a new block after the selected block(s).":["Inserta un nuevo bloque después del/los bloque(s) seleccionado(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["¡Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si querés aprender más sobre cómo crear bloques adicionales, o si estás interesado en ayudar con el proyecto, mirá el repositorio en GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El código es poesía"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Podés crear cualquier bloque que quieras, estático y dinámico, decorativo o plano. Acá tenés un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede estar en alguna de estas alineaciones. El bloque de incrustar también las tiene, y es adaptable desde la base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo de arriba es una galería con solo dos imágenes. Es un modo sencillo de crear visualmente atractivos diseños, sin tener que lidiar con floats. También podés convertir fácilmente la galería de nuevo a imágenes individuales, usando el cambiador de bloques."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por supuesto, la imagen a ancho completo puede ser realmente grande. Pero a veces la imagen es lo importante."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante. No te olvides del atributo de imagen alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combinás las nuevas alineaciones de galería ancha y ancho completo podés crear diseños ricos en multimedia muy rápidamente:"],"Media Rich":["Multimedia enriquecida"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Podés cambiar la cantidad de columnas de tus galerías arrastrando un control deslizante en el inspector de bloques de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser lo que necesitas. Por ejemplo, puede que quieras agregar una cita como parte de la composición de tu texto, o puede que prefieras mostrar una estilizada y gigante. Todas estás opciones están en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La información correspondiente al origen de la cita está en un campo de texto separado, parecido a las leyendas bajo las imágenes, para que la estructura de la cita esté protegida aunque la selecciones, modifiques o quites del origen. Es siempre sencillo agregarla de nuevo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["El editor tratará de crear una nueva experiencia de creación de páginas y entradas que ayude a escribir publicaciones enriquecidas sin esfuerzo, y tiene “bloques” para hacer sencillo lo que hoy conllevaría usar shortcodes, HTML personalizado o esotéricos descubrimientos de incrustaciones."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que podés editarlos donde estén y manipular directamente tu contenido. En vez de tener campos para editar cosas como el código o una cita, o el texto de un botón, podés cambiar directamente el contenido. Prueba a modificar la siguiente cita:"],"Visual Editing":["Edición visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de diseño, como botones, imágenes principales, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits o entradas de otro WordPress."],"Galleries":["Galerías"],"Images & Videos":["Imágenes y videos"],"Text & Headings":["Texto y encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Animate a probarlo, podés descubrir cosas que WordPress ya puede agregar en tus entradas de las que no tenías ni idea. Acá tenés una breve lista de lo que actualmente podés encontrar ahí:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo lo que WordPress puede hacer esté disponible para ti rápidamente y en el mismo lugar de la interfaz. No tenés que descubrir etiquetas HTML, clases o recordar sintaxis complicadas de shortcodes. Ese es el espíritu tras el insertador — el botón (+)
que verás en el editor — que te permite navegar por todos los bloques de contenido disponibles y agregarlos a tu entrada. Los plugins y temas pueden registrar los suyos propios, abriendo una enorme cantidad de posibilidades para la edición y la publicación enriquecida."],"The Inserter Tool":["La herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prueba a seleccionar o quitar o editar la leyenda, ahora ya no tenés porque ser cuidadoso a la hora de seleccionar la imagen u otro texto por error y arruinar la presentación."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si tu tema es compatible verás el botón \"ancho\" en la barra de herramientas de la imagen. Probalo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestionar imágenes y multimedia con el máximo cuidado es un enfoque principal del nuevo editor. Afortunadamente encontrarás posibilidades para agregar leyendas o hacer de ancho completo tus fotos de un modo mucho más fácil y robusto que antes."],"A Picture is Worth a Thousand Words":["Una imagen vale más que mil palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados también son bloques separados, lo que ayuda a la estructura y organización de tu contenido."],"... like this one, which is right aligned.":["... como esta, que está alineada a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que estás leyendo ahora es un bloque de texto, el bloque más básico de todos. El bloque de texto tiene sus propios controles para moverlo libremente por toda la publicación…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que agregar contenido enriquecido a WordPress sea algo sencillo y agradable. Toda esta entrada está creada con piezas de contenido —algo parecido a los ladrillos LEGO — que podés mover y con los que podés interactuar. Mueve tu cursor y verás que aparecen los distintos bloques con líneas y flechas. Pulsa en las flechas para recolocar rápidamente los bloques, sin miedo a perder cosas sen el proceso de copiar y pegar."],"Of Mountains & Printing Presses":["Hablando de montañas e imprentas"],"Welcome to the Gutenberg Editor":["Bienvenido al editor Gutenberg"],"block name\u0004More":["Más"],"button to expand options\u0004More":["Más"],"Are you sure you want to unschedule this post?":["¿Estás seguro de querer anular la programación de esta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador único para el objeto."],"Untitled Reusable Block":["Bloque reutilizable sin título"],"Small":[],"Reusable":["Reutilizable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Mantener como HTML"],"Edit URL":["Editar URL"],"Color settings":[],"The response is not a valid JSON response.":["Las respuesta no es una respuesta JSON válida."],"Editor publish":["Publicación del editor"],"Muted":["Silenciado"],"Video settings":[],"recent comments":["comentarios recientes"],"Latest Comments":["Últimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":["Mostrar fecha"],"Display Avatar":["Mostrar avatar"],"Latest comments settings":[],"Number of Comments":["Número de comentarios"],"Background Opacity":["Opacidad del fondo"],"Auto":["Auto"],"Preload":["Precarga"],"Audio settings":[],"Display a monthly archive of your posts.":["Muestra un archivo por meses de tus entradas."],"Display as Dropdown":["Mostrar como desplegable"],"Show Post Counts":["Mostrar contador de entradas"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Soporte"],"No comments to show.":["No hay comentarios que mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar entrada"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar día"],"Select Month":["Elegir mes"],"Select Year":["Seleccionar año"],"Archives":["Archivos"],"Very dark gray":["Gris muy oscuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris muy claro"],"Vivid cyan blue":["Azul cian vivo"],"Pale cyan blue":["Azul cian pálido"],"Vivid green cyan":["Cian verde vivo"],"Light green cyan":["Cian verde claro"],"Luminous vivid amber":["Ambar vivo luminoso"],"Luminous vivid orange":["Naranja vivo luminoso"],"Vivid red":["Rojo vivo"],"Pale pink":["Rosa pálido"],"Inline image":[],"Available block types":["Tipos de bloques disponibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir el panel de publicar"],"Dots":["Puntos"],"Wide Line":["Línea ancha"],"Large":["Grande"],"Show download button":[],"Download button settings":[],"Link To":["Enlazado a"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escribí el nombre del archivo…"],"File":["Archivo"],"A single column within a columns block.":["Una columna simple dentro de un bloque de columnas."],"Column":["Columna"],"Outline":["Contorno"],"Loop":["Repetir"],"Autoplay":["Reproducción automática"],"Playback Controls":["Controles de reproducción"],"Close dialog":["Cerrar diálogo"],"Sorry, this file type is not permitted for security reasons.":["Lo siento, este tipo de archivo no está permitido por motivos de seguridad."],"Disable tips":["Desactivar consejos"],"Got it":["Entendido"],"See next tip":["Ver siguiente consejo"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando estés listo, enviá tu trabajo para revisión, y un editor podrá aprobártelo."],"Are you ready to submit for review?":["¿Estás listo para enviarlo a revisión?"],"Replace image":["Reemplazar imagen"],"Remove image":["Quitar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca multimedia."],"This file exceeds the maximum upload size for this site.":["El tamaño del archivo excede el tamaño permitido en este sitio."],"View the autosave":["Ver el guardado automático"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado automático de esta entrada que es más reciente que la versión de abajo."],"Autosaving":["Guardando automáticamente"],"Enter URL here…":["Escribí la URL acá..."],"Pin to toolbar":["Fijar a la barra de herramientas"],"Unpin from toolbar":["Quitar de la barra de herramientas"],"Insert a table — perfect for sharing charts and data.":["Inserta una tabla -- perfecto para compartir gráficos y datos."],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Agrega texto que respete tus espacios y tabulados, y que también permita estilos."],"Display a list of your most recent posts.":["Muestra una lista de tus entradas más recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Agrega un bloque que muestra contenido extraído de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Agrega un bloque que muestra contenido en varias columnas, luego añade cualquier bloque de contenido que quieras."],"Error loading block: %s":["Error al cargar el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Gestor del servicio"],"term\u0004Remove %s":["Quitar %s"],"Copy the permalink":["Copia el enlace permanente"],"Permalink copied":["Enlace permanente copiado"],"Height in pixels":["Altura en píxeles"],"Spacer settings":[],"Spacer":["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Quitar elemento"],"Color code: %s":["Código de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish…":["Publicar…"],"Schedule…":["Programado…"],"Edit post permalink":["Editar enlace permanente de la entrada"],"Show Block Settings":["Mostrar ajustes del bloque"],"Hide Block Settings":["Ocultar ajustes del bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Editor settings":["Ajustes del editor"],"Link settings":[],"Unlink":["Quitar enlace"],"Page break":["Salto de página"],"pagination":["paginación"],"next page":["página siguiente"],"Image Size":["Tamaño de la imagen"],"Height":["Altura"],"Width":["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca multimedia"],"Advanced":["Avanzado"],"Add item":["Agregar elemento"],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como está"],"The content of your post doesn’t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en pérdida de contenido, ¿querés continuar?"],"Document Statistics":["Estadísticas del documento"],"is now scheduled. It will go live on":["está ahora programada. Estará disponible el"],"Scheduled":["Programada"],"Scheduling…":["Programando…"],"Code editor selected":["Editor de código seleccionado"],"Visual editor selected":["Editor visual seleccionado"],"Plugins":["Plugins"],"Custom Size":["Tamaño personalizado"],"Layout elements":[],"term\u0004%s removed":["%s quitada"],"term\u0004%s added":["%s agregada"],"imperative verb\u0004Preview":["Vista previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Tenés cambios sin guardar. Si sigues se perderán."],"Document Outline":["Esquema del documento"],"Paragraphs":["Párrafos"],"Headings":["Encabezados"],"Words":["Palabras"],"Content structure":["Estructura del contenido"],"Public":["Público"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contraseña que vos elijas. Solo los que tengan la contraseña pueden ver esta entrada."],"Password Protected":["Protegida con contraseña"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],"Private":["Privada"],"Visible to everyone.":["Visible por todos."],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["¿Te gustaría publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contraseña segura"],"Create password":["Crear contraseña"],"Move to Trash":[],"Parent Term":["Término superior"],"Parent Category":["Categoría superior"],"Add new term":["Agregar nuevo término"],"Add new category":["Agregar nueva categoría"],"Term":["Término"],"Tag":["Etiqueta"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["¿Estás seguro de querer anular la publicación de esta entrada?"],"Immediately":["Inmediatamente"],"Save Draft":["Guardar borrador"],"Saving":["Guardando"],"Publish:":["Publicar:"],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["¿Estás listo para publicar?"],"Copy Link":["Copiar enlace"],"What’s next?":["¿Y ahora qué?"],"is now live.":["está ahora visible."],"Published":["Publicada"],"Schedule":["Programar"],"Update":["Actualizar"],"Submit for Review":["Enviar a revisión"],"Updating…":["Actualizando..."],"Publishing…":["Publicando..."],"Allow pingbacks & trackbacks":[],"Permalink:":["Enlace permanente:"],"Pending review":[],"%d Revision":["%d revisión","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de entrada"],"Chat":["Chat"],"Status":["Estado"],"Standard":["Estándar"],"Aside":["Minientrada"],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":["Aprende más sobre extractos manuales"],"Write an excerpt (optional)":["Escribí un extracto (opcional)"],"Allow comments":[],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin título"],"Order":["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],"Saved":["Guardado"],"Embeds":["Incrustados"],"Blocks":["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Agregar bloque"],"Copy Error":["Copiar error"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar recuperación"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],"Undo":["Deshacer"],"Redo":["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el título de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vacío)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["¿Estás seguro de querer borrar este bloque compartido?\nSe borrará permanentemente de todas las entradas y páginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":["Más opciones"],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya están en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya están al principio"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["El bloque %s es el único bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["Ningún bloque seleccionado."],"Transform into:":["Transformar a:"],"Remove":["Quitar"],"Find original":["Encontrar el original"],"Copy all content":[],"Copied!":["¡Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],"Visibility":["Visibilidad"],"Status & visibility":[],"Page attributes":[],"Block":["Bloque"],"Document":["Documento"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],"Tools":["Herramientas"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Barra superior del editor"],"Settings":["Ajustes"],"Reset":["Restablecer"],"Dismiss this notice":["Descartar este aviso"],"Item removed.":["Elemento quitado."],"Item added.":["Elemento agregado."],"Drop files to upload":["Arrastra archivos para subirlos"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ocurrió un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, usá las teclas arriba y abajo para navegar.","%d resultados encontrados, usá las teclas arriba y abajo para navegar."],"(no title)":["(sin título)"],"URL":["URL"],"Submit":["Enviar"],"Close":["Cerrar"],"Insert link":[],"Edit link":[],"Link":["Enlace"],"Strikethrough":["Tachado"],"Italic":["Cursiva"],"Bold":["Negrita"],"Remove link":[],"Number of items":["Número de elementos"],"All":["Todo"],"Category":["Categoría"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],"Select":["Elegir"],"Select or Upload Media":["Elige o sube multimedia"],"Video":["Vídeo"],"Write…":["Escribí…"],"poetry":["poesía"],"Verse":["Verso"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["Agregar columna después"],"Add Column Before":["Agregar columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Agregar fila después"],"Add Row Before":["Agregar fila antes"],"Edit table":[],"Table":["Tabla"],"Write subheading…":["Escribí el subtítulo…"],"Write shortcode here…":["Escribí acá el shortcode…"],"Shortcode":["Shortcode"],"divider":["separador"],"horizontal-line":["línea-horizontal"],"Separator":["Separador"],"Quote":["Cita"],"Write citation…":["Escribí la referencia…"],"Write quote…":["Escribí la cita…"],"Pullquote":["Cita"],"Write preformatted text…":["Escribí texto preformateado…"],"Preformatted":["Preformateado"],"text":["texto"],"Paragraph":["Párrafo"],"Font Size":["Tamaño de fuente"],"Drop Cap":["Capitalizar"],"Text settings":[],"Read more":["Leer Mas"],"Write list…":["Escribí una lista…"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con viñetas"],"Indent list item":["Agregar sangría al elemento de la lista"],"Outdent list item":["Reducir sangría al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],"List":["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se encontraron entradas."],"Latest Posts":["Últimas entradas"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":[],"List view":[],"photo":["foto"],"Image settings":[],"Image":["Imagen"],"Preview":["Vista previa"],"embed":["incrustar"],"Custom HTML":["HTML personalizado"],"subtitle":["subtítulo"],"title":["título"],"Heading":["Encabezado"],"Write heading…":["Escribí el encabezado…"],"Heading %d":["Encabezado %d"],"Level":["Nivel"],"Heading settings":[],"photos":["fotos"],"images":["imágenes"],"None":["Ninguna"],"Media File":["Archivo multimedia"],"Attachment Page":["Página de adjuntos"],"Link to ":[],"Crop Images":["Recortar imágenes"],"Gallery settings":[],"Gallery":["Galería"],"Classic":["Clásico"],"video":["video"],"audio":["audio"],"music":["música"],"image":["imagen"],"blog":["blog"],"post":["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here…":["Introduce acá la URL a incrustar…"],"%s URL":["%s URL"],"Embedding…":["Incrustando…"],"Write title…":["Escribí el título…"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],"Columns":["Columnas"],"Experiments":[],"Code":["Código"],"Write code…":["Escribí código…"],"Categories":["Categorías"],"Show Hierarchy":["Mostrar jerarquía"],"Show post counts":[],"Categories settings":[],"Add text…":["Agrega texto…"],"Button":["Botón"],"Apply":["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no está disponible."],"Reusable blocks":[],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escribí la leyenda…"],"Use URL":["Usar URL"],"Audio":["Audio"],"Upload":["Subir"],"Additional CSS Class(es)":[],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más claro y/o un color de texto más oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más oscuro y/o un color de texto más claro."],"Clear":["Borrar"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatos"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del núcleo."],"Add title":["Agregar título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Comentarios"],"Custom fields":[],"Excerpt":["Extracto"],"Publish":["Publicar"],"Metadata":["Metadatos"],"Save":["Guardar"],"Documentation":["Documentación"],"Select Category":["Elegir categoría"],"(Untitled)":["(Sin título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["hace %s"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_escl.json b/bundle/android/raw/i18ncache_data_escl.json
new file mode 100644
index 0000000000..b09dbc61b2
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_escl.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":["palabras"],"content placeholder\u0004Content…":["Contenido..."],"button label\u0004Convert to link":["Convertir a enlace"],"button label\u0004Try again":["Reintentar"],"Editor tips":["Tips del Editor"],"Block (selected)":["Bloque (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d palabra","%d palabras"],"Top toolbar":[],"Link Rel":["Rel del enlace"],"Link CSS Class":["Enlace a la clase CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crea contenido, guárdalo para que tú y otros colaboradores lo reutilicen en su sitio. Actualiza el bloque, y los cambios se aplicarán en todos los lugares donde se utiliza."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada, necesitas contar con permisos para cargar medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque, necesitarás permiso para cargar medios."],"(selected block)":["(Bloque seleccionado)"],"Block tools":["Herramientas de bloque"],"Permalink":["Enlace permanente"],"This image has an empty alt attribute":["Esta imagen tiene un atributo ALT vacío"],"This image has an empty alt attribute; its file name is %s":["Esta imagen tiene un atributo ALT vacío; su nombre de archivo es %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Agregar Nuevo"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Advertencia: el link que insertaste puede que contenga errores. Por favor pruébalo."],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],"Thumbnail":["Imagen en miniatura"],"Full Size":["Tamaño completo"],"Link selected.":[],"Start writing with text or HTML":["Empezar a escribir con texto o HTML"],"Type text or HTML":["Escribe texto o HTML"],"Block icon":["Icono de bloque"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Empieza a escribir o tipea / para elegir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vacío; Inicia la escritura o escriba la barra diagonal para elegir un bloque"],"Paragraph block":["Bloque de párrafo"],"Page Break":["Salto de Página"],"Stack on mobile":["Apilar en móvil"],"Annotation":["Anotación"],"Drag images, upload new ones or select files from your library.":["Arrastra imágenes, carga otras nuevas o selecciona archivos de la biblioteca."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resolver"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Largo"],"font size name\u0004Medium":["Mediano"],"font size name\u0004Small":["Pequeña"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enviar"],"button label\u0004Import":["Importar"],"button label\u0004Download":["Descargar"],"button label\u0004Embed":["Embebido"],"block title\u0004Embed":["Embebido"],"block title\u0004Classic":["Clásico"],"block style\u0004Large":["Largo"],"block style\u0004Rounded":["Redondeado"],"%s (opens in a new tab)":["%s (abrir en una nueva pestaña)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace removido."],"media":["media"],"Double-check your settings before publishing.":["Comprueba dos veces la configuración antes de publicarla."],"Generating preview…":["Generando vista previa…"],"Edit or update the image":["Editar o actualizar la imagen"],"Media":["Media"],"Navigate to the nearest toolbar.":["Muévete hasta la barra de herramientas más cercana."],"Document tools":["Herramientas de documentos"],"Document and block tools":["Herramientas de documentos y bloques"],"Embed a video from your media library or upload a new one.":["Incrustar un vídeo desde biblioteca multimedia o subir uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insertar poesía. Utiliza formatos de espaciado especiales. O cita las letras de canciones."],"Add white space between blocks and customize its height.":["Añade espacio en blanco entre bloques y personaliza su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserta elementos personalizados adicionales con un código corto de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crear un salto entre ideas o secciones usando un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Dar énfasis visual de texto citado. \"Al citar a los demás, nos citamos a nosotros mismos.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Da un especial énfasis visual a una cita de tu texto."],"Start with the building block of all narrative.":["Comienza con la construcción de bloque para toda la narrativa."],"Separate your content into a multi-page experience.":["Separa tu contenido en una experiencia de varias páginas."],"Set media and words side-by-side for a richer layout.":["Define los medios y las palabras a los lados para un diseño más enriquecido."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Cree una lista numerada o con viñetas."],"Display a list of your most recent comments.":["Muestra una lista de tus comentarios más recientes."],"Insert an image to make a visual statement.":["Inserta una imagen para hacer una declaración visual."],"Add custom HTML code and preview it as you edit.":["Añade código HTML personalizado y previsualizalo a medida que edites."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce nuevas secciones y organiza contenido para ayudar a los visitantes (y motores de búsqueda) a comprender la estructura de su contenido."],"Display multiple images in a rich gallery.":["Muestra varias imágenes en una galería enriquecida."],"Add a link to a downloadable file.":["Agregar un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta vídeos, imágenes, tweets, audio y otros contenidos de fuentes externas."],"Resize for smaller devices":["Cambiar el tamaño para dispositivos más pequeños"],"This embed may not preserve its aspect ratio when the browser is resized.":["Es posible que esta incrustación no conserve su relación de aspecto cuando se redimensione el navegador."],"This embed will preserve its aspect ratio when the browser is resized.":["Esta incrustación conservará su relación de aspecto cuando se redimensione el navegador."],"Embed an Animoto video.":["Incrustar un video de animoto."],"Embed a Vimeo video.":["Incrustar un vídeo de Vimeo."],"Embed Flickr content.":["Incrustar contenido de Flickr."],"Embed Spotify content.":["Incrustar contenido de Spotify."],"Embed SoundCloud content.":["Incrustar contenido de SoundCloud."],"Embed a WordPress post.":["Embeber una entrada de WordPress."],"Embed an Instagram post.":["Incrustar imagen de Instagram."],"Embed a Facebook post.":["Incrustar una publicación de Facebook."],"Embed a WordPress.tv video.":["Incrustar un vídeo de WordPress.tv."],"Embed a VideoPress video.":["Incrustar un vídeo de VideoPress."],"Embed a Tumblr post.":["Incrustar una entrada de Tumblr."],"Embed a TED video.":["Incrustar un video de TED."],"Embed Speaker Deck content.":["Incrustar contenido de Speaker Deck."],"Embed a YouTube video.":["Incrustar un vídeo de YouTube."],"Embed SmugMug content.":["Incrustar contenido de SmugMug."],"Embed Slideshare content.":["Incrustar contenido de Slideshare."],"Embed Scribd content.":["Incrustar contenido de Scribd."],"Embed Screencast content.":["Incrustar contenido de Screencast."],"Embed ReverbNation content.":["Incrustar contenido ReverbNation."],"Embed a Reddit thread.":["Incrustar un hilo de Reddit."],"Embed Polldaddy content.":["Incrustar contenido de Polldaddy."],"Embed Mixcloud content.":["Incrustar contenido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contenido de Meetup.com."],"Embed Kickstarter content.":["Incrustar contenido de Kickstarter."],"Embed Issuu content.":["Incrustar contenido de Issuu."],"Embed Imgur content.":["Incrustar contenido de Imgur."],"Embed Hulu content.":["Incrustar contenido de Hulu."],"Embed a Dailymotion video.":["Incrustar un vídeo de DailyMotion."],"Embed CollegeHumor content.":["Incrustar contenido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contenido de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Añade una imagen o un vídeo con una superposición de texto — ideal para encabezados."],"Display code snippets that respect your spacing and tabs.":["Mostrar fragmentos de código que respeten tu espaciado y las pestañas."],"Use the classic WordPress editor.":["Utiliza el editor clásico de WordPress."],"Display a list of all categories.":["Mostrar una lista de todas las categorías."],"Embed a simple audio player.":["Incrustar un reproductor de audio simple."],"noun\u0004View":["Ver"],"editor button\u0004Left to right":["Izquierda a Derecha"],"Save as Pending":["Guardar como pendiente"],"%s address":["Dirección %s"],"Paste or type URL":["Pegar o escribir URL"],"Insert from URL":["Insertar desde URL"],"Block Navigator":[],"Styles":["Estilos"],"Advanced panels":[],"Document panels":[],"General":["General"],"Open the block navigation menu.":["Abre el menú de navegación de bloques."],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Centrarse en un bloque a la vez"],"Access all block and document tools in a single place":["Accede a todas las herramientas de bloques y documentos en un solo lugar"],"Options":["Opciones"],"(opens in a new tab)":["(se abre en una nueva pestaña)"],"Minutes":["Minutos"],"Hours":["Horas"],"Time":["Hora"],"Year":["Año"],"Day":["Día"],"December":["Diciembre"],"November":["Noviembre"],"October":["Octubre"],"September":["Septiembre"],"August":["Agosto"],"July":["Julio"],"June":["Junio"],"May":["May"],"April":["Abril"],"March":["Marzo"],"February":["Febrero"],"January":["Enero"],"Month":["Mes"],"Date":["Fecha"],"Go to the first (home) or last (end) day of a week.":["Ve al primer (inicio) o último (final) día de una semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio y Fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Mueva hacia atrás (PgUp) o adelante (PgDn) por un mes."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Página Arriba y Página Abajo"],"Move backward (up) or forward (down) by one week.":["Mueva hacia atrás (arriba) o hacia adelante (abajo) por una semana."],"Up and Down Arrows":["Flechas Arriba y Abajo"],"Move backward (left) or forward (right) by one day.":["Mueva hacia atrás (izquierda) o adelante (derecha) por un día."],"Left and Right Arrows":["Flechas Izquierda y Derecha"],"Select the date in focus.":["Seleccione la fecha en foco."],"Navigating with a keyboard":["Navegar con un teclado"],"Click the desired day to select it.":["Clic en el día deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Clic en las flechas derecha o izquierda para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para Seleccionar"],"Calendar Help":["Ayuda del Calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Elegir una sombra"],"Change color format":["Cambiar formato de color"],"Color value in HSL":["Valor de color en HSL"],"Color value in RGB":["Valor de color en RGB"],"Color value in hexadecimal":["Valor de color en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color hexadecimal activo"],"Hue/saturation/lightness mode active":["Tono/saturación/modo de ligereza activo"],"Move the arrow left or right to change hue.":["Mueva la flecha a la izquierda o derecha para cambiar el matiz."],"Hue value in degrees, from 0 to 359.":["Valor de matiz en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (completamente opaco)."],"Stripes":["Rayas"],"Your site doesn’t include support for this block.":["Tu sitio no incluye soporte para este bloque."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Tu sitio no incluye soporte para el bloque \" %s\". Puedes dejar este bloque intacto o eliminarlo por completo."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Tu sitio no incluye soporte para el bloque \" %s\". Puedes dejar este bloque intacto, convertir su contenido en un bloque HTML personalizado o eliminarlo por completo."],"Media area":["Área de medios"],"Media & Text":["Media y Texto"],"Show media on right":["Mostrar medios a la derecha"],"Show media on left":["Mostrar medios a la izquierda"],"Open in New Tab":["Abrir en una Pestaña Nueva"],"Cover":["Portada"],"Border settings":[],"Medium":["Mediano"],"Paste URL or type to search":["Pegar la URL o escribe para buscar"],"Terms":["Términos"],"Your work will be published at the specified date and time.":["Tu trabajo se publicará en la fecha y hora especificadas."],"Are you ready to schedule?":["¿Estás listo para programar?"],"Always show pre-publish checks.":["Mostrar siempre comprobaciones previas a la publicación."],"Take Over":["Tomar el Control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Otro usuario está trabajando actualmente en esta entrada, lo que significa que no puedes hacer cambios, a menos que te hagas cargo."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s está trabajando actualmente en esta entrada, lo que significa que no se pueden realizar cambios, a menos que te haga cargo."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Otro usuario tiene ahora el control de edición de esta entrada. No te preocupes, tus cambios hasta este momento han sido guardados."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s ahora tiene el control de edición de esta entrada. No te preocupes, tus cambios hasta este momento han sido guardados."],"Avatar":["Avatar"],"This post is already being edited.":["Esta entrada ya está siendo editada."],"Someone else has taken over this post.":["Alguien más se ha apoderado de esta entrada."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o no válido."],"Resolve Block":["Resolver Bloque"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque sólo se puede utilizar una vez."],"Exit Code Editor":["Salir del Editor de Código"],"Editing Code":["Editando Código"],"Solid Color":["Color Sólido"],"Main Color":["Color Principal"],"HTML":["HTML"],"Write HTML…":["Escribir HTML…"],"Media settings":[],"Overlay":["Sobreponer"],"Insert Media":["Insertar Archivo Multimedia"],"Reusable block imported successfully!":["¡Bloque reutilizable importado correctamente!"],"Invalid Reusable Block JSON file":["Archivo JSON no válido de Bloque Reutilizable"],"Invalid JSON file":["Archivo JSON no válido"],"Import from JSON":["Importar desde JSON"],"Backtick":["Apóstrofe"],"Period":["Periodo"],"Comma":["Coma"],"Change type of %d block":["Cambiar tipo de %d bloque","Cambiar tipo de %d bloques"],"Current":["Actual"],"After Conversion":["Después de la Conversión"],"Change alignment":[],"Change text alignment":[],"%d block":["%d bloque","%d bloques"],"Forward-slash":["Barra de avance"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["El archivo está vacío."],"Sorry, this file type is not supported here.":["Lo sentimos, este tipo de archivo no es compatible aquí."],"Manage all reusable blocks":[],"Title":["Título"],"Fullscreen mode":[],"Beautiful landscape":["Paisaje hermoso"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir en Bloque Clásico"],"Remove Poster Image":["Eliminar la imagen de Poster"],"Select Poster Image":["Seleccionar Imagen del Afiche"],"Poster Image":["Imagen del Afiche"],"This block is deprecated. Please use the Columns block instead.":["Este bloque está obsoleto. Por favor, utiliza el bloque columnas en su lugar."],"Text Columns (deprecated)":["Columnas de Texto (obsoletas)"],"Create":["Crear"],"Row Count":["Recontar Filas"],"Column Count":["Contar Columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque está obsoleto. En su lugar, utiliza el bloque de párrafo."],"Subheading (deprecated)":["Subtítulo (obsoleto)"],"blockquote":["cita"],"Change the block type after adding a new paragraph.":["Cambia el tipo de bloque después de agregar un nuevo párrafo."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y motores de búsqueda a navegar por tu sitio y encontrar tu contenido. Añade algunas palabras clave para describir tu entrada."],"Add tags":["Agregar etiquetas"],"Apply the \"%1$s\" format.":["Aplicar el formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Su tema utiliza formatos de entrada para resaltar diferentes tipos de contenido, como imágenes o vídeos. Aplica un formato de entrada para ver este estilo especial."],"Use a post format":["Usa un formato de entrada"],"Insert After":["Insertar Después"],"Insert Before":["Insertar Antes"],"Move %1$d block from position %2$d down by one place":["Mueve %1$d bloque desde la posición %2$d un lugar abajo","Mueve %1$d bloques desde la posición %2$d un lugar abajo"],"Move %1$d block from position %2$d up by one place":["Mueve %1$d bloque desde la posición %2$d un lugar arriba","Mueve %1$d bloques desde la posición %2$d un lugar arriba"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["película"],"Insert a new block before the selected block(s).":["Insertar un nuevo bloque antes de el(los) bloque(s) seleccionado(s)"],"Remove the selected block(s).":["Eliminar el(los) bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplicar el(los) bloque(s) seleccionado(s)."],"Block shortcuts":["Atajos de bloque"],"Clear selection.":["Borrar selección."],"Select all text when typing. Press again to select all blocks.":["Seleccionar todo cuando escribas. Púlsalo de nuevo para seleccionar todos los bloques."],"Selection shortcuts":["Atajos de selección"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Muévete hasta la parte anterior del editor."],"Navigate to the next part of the editor.":["Muévete hasta la parte siguiente del editor."],"Show or hide the settings sidebar.":["Mostrar u ocultar la barra lateral de ajustes."],"Redo your last undo.":["Rehacer tu último deshacer."],"Undo your last changes.":["Deshacer los últimos cambios."],"Save your changes.":["Guardar tus cambios."],"Global shortcuts":["Accesos directos globales"],"Remove a link.":["Quitar un enlace."],"Convert the selected text into a link.":["Convertir el texto seleccionado en un vínculo."],"Underline the selected text.":["Subraye el texto seleccionado."],"Make the selected text italic.":["Convertir el texto seleccionado en cursivas."],"Make the selected text bold.":["Convertir el texto seleccionado en negritas."],"Text formatting":["Formato de texto"],"Insert a new block after the selected block(s).":["Inserte un nuevo bloque después de el(los bloque(s) seleccionado(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["¡Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayudar a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si deseas obtener más información acerca de cómo crear bloques adicionales, o si estás interesado en ayudar con el proyecto, dirígete al Repositorio de GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El Código es Poesía"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puedes construir cualquier bloque que desees, estático o dinámico, decorativo o llano. Aquí hay un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede optar por estas alineaciones. El bloque embed los tiene también, y por defecto es responsivo:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo anterior es una galería con sólo dos imágenes. Es una manera más fácil de crear diseños visualmente atractivos, sin tener que lidiar con los flotadores. También puedes convertir fácilmente de una galería a imágenes individuales y viceversa, utilizando el conmutador de bloques."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Claro, la imagen de todo el ancho puede ser bastante grande. Pero a veces la imagen vale la pena."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante — No olvides el atributo ALT de imagen"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combinas las nuevas alineaciones al ancho y a todo el ancho con galerías, puedes crear un diseño muy rico en medios, muy rápidamente:"],"Media Rich":["Medios Ricos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puedes cambiar la cantidad de columnas de tus galerías arrastrando un control deslizante en el inspector de bloques en la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser cualquier cosa que necesites. Por ejemplo, es posible que desees agregar una composición tenue como parte de la composición de tu texto, o puede que prefieras mostrar una estilizada gigante. Todas estas opciones están disponibles en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La información correspondiente al origen de la cita es un campo de texto independiente, similar a los subtítulos en imágenes, por lo que la estructura de la cita se protege incluso si se selecciona, se modifica o se quita el origen. siempre es fácil añadirla nuevamente."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["El editor se esforzará por crear una experiencia rica al crear una nueva entrada o página, lo que hace que la escritura sea sin esfuerzo, disponibilizando \"bloques\" para que sea aún más fácil lo que hoy se hace con shortcodes, HTML personalizado, o “la parte misteriosa\" al incrustar código."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que puedes editarlos en su lugar y manipular su contenido directamente. En lugar de tener campos para editar cosas como el origen de una cita, o el texto de un botón; puedes cambiar directamente el contenido. Intenta editar la siguiente cita:"],"Visual Editing":["Edición Visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto:)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de diseño, como Botones, Imágenes Grandes, Separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Contenido Embebido, como YouTube, Tuits, u otras entradas de WordPress."],"Galleries":["Galerías"],"Images & Videos":["Imágenes y Vídeos"],"Text & Headings":["Texto y Encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Dale una oportunidad, puedes descubrir cosas que WordPress ya añade a tus mensajes y que aún no sabías. Aquí hay una breve lista de lo que puedes encontrar actualmente:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo aquello que WordPress puede hacer esté disponible para ti rápidamente y en el mismo lugar en la interfaz. Ya no necesitarás descifrar las etiquetas HTML, las clases o recordar la sintaxis complicada de código. Ese el espíritu detrás del insertador — el botón (+)
que verás alrededor del editor — te permitirá navegar por todos los bloques de contenido disponibles y agregarlos a su entrada. Los plugins y los temas son capaces de registrar sus propios, abriendo todo tipo de posibilidades para la edición y publicación."],"The Inserter Tool":["La Herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Intenta seleccionar y quitar, o editar el título, ahora no debes preocuparte de arruinar la presentación cuando selecciones la imagen u otro texto por error."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si el tema lo soporta, verás el botón “Ancho” en la barra de herramientas de la imagen. Dale una oportunidad."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["El manejo de imágenes y medios con el máximo cuidado es uno de los focos principales del nuevo editor. Afortunadamente, encontrarás de un modo más fácil y robusto que antes aspectos como la adición de subtítulos o ir a toda el ancho con sus imágenes."],"A Picture is Worth a Thousand Words":["Una Imagen Vale más que Mil Palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados son bloques separados también, lo que ayuda con el esquema y la organización de tu contenido."],"... like this one, which is right aligned.":["... como éste, que está alineado a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que estás leyendo ahora es un bloque de texto, el bloque más básico de todos. El bloque de texto tiene sus propios controles para poder moverlo libremente alrededor de la entrada…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que la creación de contenido enriquecido en WordPress sea simple y agradable. Toda esta entrada está compuesta por piezas de contenido — algo similar a los bloques LEGO — que puedes mover y interactuar. Mueve el cursor alrededor y notarás que los diferentes bloques se iluminan con contornos y flechas. Pulsa las flechas para reposicionar los bloques rápidamente, sin temor a perder cosas en el proceso de copiar y pegar."],"Of Mountains & Printing Presses":["De Montañas e Imprentas"],"Welcome to the Gutenberg Editor":["Bienvenido al Editor Gutenberg"],"block name\u0004More":["Más"],"button to expand options\u0004More":["Más"],"Are you sure you want to unschedule this post?":["¿Estás seguro de que deseas desprogramar esta entrada?"],"Alt Text (Alternative Text)":["Alt (texto alternativo)"],"Reusable Block":["Bloque Reutilizable"],"Unique identifier for the object.":["Identificador único para el objeto."],"Untitled Reusable Block":["Bloque Reutilizable Sin Título"],"Small":[],"Reusable":["Reutilizable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Guardar como HTML"],"Edit URL":["Editar URL"],"Color settings":[],"The response is not a valid JSON response.":["La respuesta no es una respuesta JSON válida."],"Editor publish":["Publicar editor"],"Muted":["Apagado"],"Video settings":[],"recent comments":["comentarios recientes"],"Latest Comments":["Ultimos Comentarios"],"Display Excerpt":["Mostrar Extracto"],"Display Date":["Mostrar Fecha"],"Display Avatar":["Mostrar Avatar"],"Latest comments settings":[],"Number of Comments":["Número de Comentarios"],"Background Opacity":["Opacidad de Fondo"],"Auto":["Auto"],"Preload":["Precarga"],"Audio settings":[],"Display a monthly archive of your posts.":["Muestra un archivo mensual de tus entradas."],"Display as Dropdown":["Mostrar como Menú Desplegable"],"Show Post Counts":["Mostrar Contador de Entradas"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Soporte"],"No comments to show.":["No hay comentarios para mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar Entrada"],"Select Week":["Seleccionar Semana"],"Select Day":["Seleccionar Día"],"Select Month":["Seleccionar mes"],"Select Year":["Seleccionar Año"],"Archives":["Archivos"],"Very dark gray":["Gris muy oscuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris muy claro"],"Vivid cyan blue":["Azul ciánico vivo"],"Pale cyan blue":["Azul cian pálido"],"Vivid green cyan":["Verde vivo ciánico"],"Light green cyan":["Verde claro cian"],"Luminous vivid amber":["Ámbar vivo luminoso"],"Luminous vivid orange":["Anaranjado vivo luminoso"],"Vivid red":["Rojo vivo"],"Pale pink":["Rosa pálido"],"Inline image":[],"Available block types":["Tipos de bloque disponibles"],"Transform To:":["Transformar A:"],"Remove Block":["Quitar Bloque"],"Open publish panel":["Abrir el panel publicar"],"Dots":["Puntos"],"Wide Line":["Línea Ancha"],"Large":["Largo"],"Show download button":[],"Download button settings":[],"Link To":["Enlace a"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escriba el nombre del archivo…"],"File":["Archivo"],"A single column within a columns block.":["Una sola columna dentro de un bloque de columnas."],"Column":["Columna"],"Outline":["Contorno"],"Loop":["Loop"],"Autoplay":["Autoreproducir"],"Playback Controls":["Controles de Reproducción"],"Close dialog":["Cerrar el diálogo"],"Sorry, this file type is not permitted for security reasons.":["Lo sentimos, por razones de seguridad este tipo de archivos no está permitido."],"Disable tips":["Deshabilitar sugerencias"],"Got it":["Entiendo"],"See next tip":["Ver siguiente consejo"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando estés listo, envía tu trabajo para su revisión, y un editor podrá aprobarlo."],"Are you ready to submit for review?":["¿Estás listo para enviar a revisión?"],"Replace image":["Reemplazar imagen"],"Remove image":["Eliminar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca de medios."],"This file exceeds the maximum upload size for this site.":["Este archivo supera el tamaño máximo de subida para este sitio."],"View the autosave":["Ver el autoguardado"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado automático de esta entrada que es más reciente que la versión de abajo."],"Autosaving":["Autoguardado"],"Enter URL here…":["Ingresa aquí la URL..."],"Pin to toolbar":["Pegar a la barra de herramientas"],"Unpin from toolbar":["Liberar de la barra de herramientas"],"Insert a table — perfect for sharing charts and data.":["Insertar una tabla — perfecta para compartir gráficos y datos."],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Agrega texto que respete el espaciado y las fichas, y también que permita el estilo."],"Display a list of your most recent posts.":["Muestra una lista de tus mensajes más recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Agrega un bloque que muestre el contenido extraído de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Añade un bloque que muestre contenido en varias columnas y, a continuación, añade los bloques de contenido que quieras."],"Error loading block: %s":["Error cargando el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Incrustar Controlador"],"term\u0004Remove %s":["Quitar %s"],"Copy the permalink":["Copiar el Enlace"],"Permalink copied":["Enlace copiado"],"Height in pixels":["Alto en píxeles"],"Spacer settings":[],"Spacer":["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de%3$s)"],"Remove item":["Quitar elemento"],"Color code: %s":["Código de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish…":["Publicar…"],"Schedule…":["Programar…"],"Edit post permalink":["Editar Enlace de la entrada"],"Show Block Settings":["Mostrar Configuración de Bloque"],"Hide Block Settings":["Ocultar Configuración de Bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Editor settings":["Configuración del editor"],"Link settings":[],"Unlink":["Quitar Enlace"],"Page break":["Salto de página"],"pagination":["paginación"],"next page":["página siguiente"],"Image Size":["Tamaño de imagen"],"Height":["Alto"],"Width":["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca multimedia"],"Advanced":["Avanzado"],"Add item":["Añadir elemento"],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como está"],"The content of your post doesn’t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en pérdida de contenido, ¿quieres continuar?"],"Document Statistics":["Estadísticas del documento"],"is now scheduled. It will go live on":["está ahora programada. Estará disponible el"],"Scheduled":["Programada"],"Scheduling…":["Programando…"],"Code editor selected":["Editor de código seleccionado"],"Visual editor selected":["Editor visual seleccionado"],"Plugins":["Plugins"],"Custom Size":["Tamaño Personalizado"],"Layout elements":[],"term\u0004%s removed":["%s borrada"],"term\u0004%s added":["%s añadida"],"imperative verb\u0004Preview":["Vista Previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Ri new cambios sin guardar. Si sigues se perderán."],"Document Outline":["Esquema del documento"],"Paragraphs":["Párrafos"],"Headings":["Cabaceras"],"Words":["Palabras"],"Content structure":["Estructura del contenido"],"Public":["Público"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contraseña que tú elijas. Solo los que tengan la contraseña pueden ver esta entrada."],"Password Protected":["Protegido con clave"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],"Private":["Privado"],"Visible to everyone.":["Visible por todos."],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["¿Te gustaría publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contraseña segura"],"Create password":["Crear contraseña"],"Move to Trash":[],"Parent Term":["Término superior"],"Parent Category":["Categoría principal"],"Add new term":["Añadir nuevo término"],"Add new category":["Agregar nueva categoría"],"Term":["Término"],"Tag":["Etiqueta"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["¿Estás seguro de querer anular la publicación de esta entrada?"],"Immediately":["Inmediatamente"],"Save Draft":["Guardar"],"Saving":["Guardando"],"Publish:":["Publicar:"],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["¿Estás listo para publicar?"],"Copy Link":["Copiar Link"],"What’s next?":["¿Y ahora qué?"],"is now live.":["está ahora visible."],"Published":["Publicado"],"Schedule":["Programar"],"Update":["Actualizar"],"Submit for Review":["Enviar para revisar"],"Updating…":["Actualizando…"],"Publishing…":["Publicando…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Enlace permanente:"],"Pending review":[],"%d Revision":["%d revisión","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de publicación"],"Chat":["Chat"],"Status":["Estado"],"Standard":["Estándar"],"Aside":["Aside"],"Featured image":["Imagen destacada"],"Set featured image":[],"Learn more about manual excerpts":["Aprende más sobre extractos manuales"],"Write an excerpt (optional)":["Escribe un extracto (opcional)"],"Allow comments":[],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin título"],"Order":["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],"Saved":["Guardado"],"Embeds":["Incrustación"],"Blocks":["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Añadir bloque"],"Copy Error":["Error al copiar"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar recuperación"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],"Undo":["Deshacer"],"Redo":["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el título de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vacío)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["¿Estás seguro de querer borrar este bloque compartido?\nSe borrará permanentemente de todas las entradas y páginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":["Más opciones"],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya están en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya están al principio"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["El bloque %s es el único bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["No haz seleccionado ningún bloque."],"Transform into:":["Transformar a:"],"Remove":["Eliminar"],"Find original":["Encontrar el original"],"Copy all content":[],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],"Visibility":["Visibilidad"],"Status & visibility":[],"Page attributes":[],"Block":["Bloque"],"Document":["Documento"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],"Tools":["Herramientas"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Barra superior del editor"],"Settings":["Opciones"],"Reset":["Resetear"],"Dismiss this notice":["Descartar este aviso"],"Item removed.":["Elemento eliminado."],"Item added.":["El elemento ha sido agregado."],"Drop files to upload":["Arrastra archivos para subir"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ha ocurrido un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, utiliza las teclas arriba y abajo para navegar.","%d resultados encontrados, utiliza las teclas arriba y abajo para navegar."],"(no title)":["(sin título)"],"URL":["URL"],"Submit":["Enviar"],"Close":["Cerrar"],"Insert link":[],"Edit link":[],"Link":["Enlace"],"Strikethrough":["Tachado"],"Italic":["Cursiva"],"Bold":["Negrita"],"Remove link":[],"Number of items":["Número de elementos"],"All":["Todo"],"Category":["Categoría"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],"Select":["Seleccionar"],"Select or Upload Media":["Elige o sube medios"],"Video":["Video"],"Write…":["Escribe…"],"poetry":["poesía"],"Verse":["Versículo"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["Añadir columna después"],"Add Column Before":["Añadir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Añadir fila después"],"Add Row Before":["Añadir fila antes"],"Edit table":[],"Table":["Tabla"],"Write subheading…":["Escribe el subtítulo…"],"Write shortcode here…":["Escribe aquí el shortcode…"],"Shortcode":["Shortcode"],"divider":["separador"],"horizontal-line":["línea-horizontal"],"Separator":["Separador"],"Quote":["Cita"],"Write citation…":["Escribe la cita…"],"Write quote…":["Escribe la cita…"],"Pullquote":["Cita"],"Write preformatted text…":["Escribe texto preformateado…"],"Preformatted":["Preformateado"],"text":["texto"],"Paragraph":["Párrafo"],"Font Size":["Tamaño de Fuente"],"Drop Cap":["Capitalizar"],"Text settings":[],"Read more":["Leer Más"],"Write list…":["Escribe una lista…"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con viñetas"],"Indent list item":["Añadir sangría al elemento de la lista"],"Outdent list item":["Reducir sangría al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],"List":["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se encontraron entradas."],"Latest Posts":["Últimas publicaciones"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":[],"List view":[],"photo":["foto"],"Image settings":[],"Image":["Imagen"],"Preview":["Vista Previa"],"embed":["incrustar"],"Custom HTML":["HTML Personalizado"],"subtitle":["subtítulo"],"title":["título"],"Heading":["Título"],"Write heading…":["Escribe el encabezado…"],"Heading %d":["Encabezado %d"],"Level":["Nivel"],"Heading settings":[],"photos":["fotos"],"images":["imágenes"],"None":["Ninguno"],"Media File":["Archivo Multimedial"],"Attachment Page":["Página de Adjuntos"],"Link to ":[],"Crop Images":["Recortar imágenes"],"Gallery settings":[],"Gallery":["Galería"],"Classic":["Clásico"],"video":["video"],"audio":["audio"],"music":["música"],"image":["imagen"],"blog":["blog"],"post":["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here…":["Introduce aquí la URL a incrustar…"],"%s URL":["%s URL"],"Embedding…":["Incrustando…"],"Write title…":["Escribe el título…"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],"Columns":["Columnas"],"Experiments":[],"Code":["Código"],"Write code…":["Escribe código…"],"Categories":["Categorías"],"Show Hierarchy":["Mostrar Jerarquicamente"],"Show post counts":["Mostrar contador de entradas"],"Categories settings":[],"Add text…":["Añade texto…"],"Button":["Botón"],"Apply":["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de Fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no está disponible."],"Reusable blocks":[],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escribe la leyenda…"],"Use URL":["Usar URL"],"Audio":["Audio"],"Upload":["Cargar"],"Additional CSS Class(es)":[],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más claro y/o un color de texto más oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más oscuro y/o un color de texto más claro."],"Clear":["Limpiar"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formato"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del núcleo."],"Add title":["Añadir título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Discusión"],"Custom fields":[],"Excerpt":["Extracto"],"Publish":["Publicar"],"Metadata":["Metadata"],"Save":["Guardar"],"Documentation":["Documentación"],"Select Category":["Seleccionar categoría"],"(Untitled)":["(Sin título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["hace %s"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_escr.json b/bundle/android/raw/i18ncache_data_escr.json
new file mode 100644
index 0000000000..0beec38008
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_escr.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":["%d palabra","%d palabras"],"Top toolbar":[],"Link Rel":["Link Rel"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Cree contenido y sálvelo para usted y para otros colaboradores para que sea reutilizado en todo su sitio. Actualice el bloque y los cambios se aplicarán en donde se utilice."],"To edit the featured image, you need permission to upload media.":["Para editar la imagen destacada, usted necesita permisos para subir medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque, usted necesita permiso para subir medios."],"(selected block)":["(bloque seleccionado)"],"Block tools":["Herramientas de bloque"],"Permalink":["Enlace permanente"],"This image has an empty alt attribute":["Esta imagen tiene el atributo 'alt' vacío."],"This image has an empty alt attribute; its file name is %s":["Esta imagen tiene el atributo 'alt' vacío; el archivo se llama %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Agregar nuevo"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Precaución: el enlace ha sido insertado pero tiene errores. Por favor, hágale pruebas. "],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],"Thumbnail":["Miniatura"],"Full Size":["Tamaño completo"],"Link selected.":[],"Start writing with text or HTML":["Comience escribiendo con texto o HTML"],"Type text or HTML":["Escriba texto o HTML"],"Block icon":["Icono de bloque"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Comience a escribir o inserte / para escoger un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vacío; comience a escribir o inserte una barra inclinada para escoger un bloque."],"Paragraph block":["Bloque de párrafo"],"Page Break":["Salto de página"],"Stack on mobile":["Apilar en móviles"],"Annotation":["Nota"],"Drag images, upload new ones or select files from your library.":["Arrastre imágenes, suba nuevas o escoja unas de su biblioteca."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Resolver"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Mediana"],"font size name\u0004Small":["Pequeña"],"font size name\u0004Normal":["Regular"],"keyboard button\u0004Enter":["Aceptar"],"button label\u0004Import":["Importar"],"button label\u0004Download":["Descargar"],"button label\u0004Embed":["Incrustar"],"block title\u0004Embed":["Incrustado"],"block title\u0004Classic":["Clásico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":["Redondeado"],"%s (opens in a new tab)":["%s (abre en pestaña nueva)"],"Link edited.":["Enlace editado."],"Link removed.":["Enlace retirado."],"media":["medios"],"Double-check your settings before publishing.":["Verifique sus ajustes dos veces antes de publicar."],"Generating preview…":["Generando vista previa..."],"Edit or update the image":["Editar o actualizar imagen"],"Media":["Medios"],"Navigate to the nearest toolbar.":["Navegar a la barra de herramientas más cercana."],"Document tools":["Herramientas de documento"],"Document and block tools":[],"Embed a video from your media library or upload a new one.":["Incruste un video de su biblioteca de medios o suba uno nuevo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Incluya poesía, utilice formatos de espaciado especiales, o cite letras de canciones."],"Add white space between blocks and customize its height.":["Agregue espacio en blanco entre bloques y personalice su altura."],"Insert additional custom elements with a WordPress shortcode.":["Inserte elementos adicionales a su medida con un shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Agregue una separación entre ideas o secciones con un separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Enfatizar visualmente el texto citado. \"Al citar a los demás, nos citamos a nosotros mismos.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Dar un énfasis visual a una cita dentro del texto."],"Start with the building block of all narrative.":["Comience con el bloque de construcción de toda la narrativa."],"Separate your content into a multi-page experience.":["Separe su contenido en una experiencia multi-página."],"Set media and words side-by-side for a richer layout.":["Ajuste los medios y las palabras lado a lado para un diseño más rico."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Crear una lista con viñetas o numerada."],"Display a list of your most recent comments.":["Mostrar una lista de los comentarios más recientes."],"Insert an image to make a visual statement.":["Insertar una imagen para llamar la atención visualmente."],"Add custom HTML code and preview it as you edit.":["Agregar código HTML personalizado y ver mientras lo edita."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduzca secciones nuevas y organice el contenido para ayudar a los visitantes (y al SEO) a entender la estructura de su contenido."],"Display multiple images in a rich gallery.":["Mostrar varias imágenes en una galería enriquecida."],"Add a link to a downloadable file.":["Agregar un enlace a un archivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Insertar videos, imágenes, tweets, audios y otros contenidos de fuentes externas."],"Resize for smaller devices":["Cambiar tamaño para dispositivos móviles"],"This embed may not preserve its aspect ratio when the browser is resized.":["Esta incrustación puede que no mantenga su relación de aspecto cuando el navegador cambie de tamaño."],"This embed will preserve its aspect ratio when the browser is resized.":["Esta incrustación mantendrá su relación de aspecto cuando el navegador cambie de tamaño."],"Embed an Animoto video.":["Incrustar un video Animoto."],"Embed a Vimeo video.":["Incrustar un video de Vimeo."],"Embed Flickr content.":["Incrustar contenido de Flickr."],"Embed Spotify content.":["Incrustar contenido de Spotify."],"Embed SoundCloud content.":["Incrustar contenido de SoundCloud."],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":["Incrustar contenido de Polldaddy"],"Embed Mixcloud content.":["Incrustar contenido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contenido de Meetup.com"],"Embed Kickstarter content.":["Incrustar contenido de Kickstarter."],"Embed Issuu content.":["Incrustar contenido de Issuu"],"Embed Imgur content.":["Incrustar contenido de Imgur."],"Embed Hulu content.":["Incrustar contenido de Hulu."],"Embed a Dailymotion video.":["Incrustar contenido de Dailymotion."],"Embed CollegeHumor content.":["Incrustar contenido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contenido de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Agregue una imagen o un video con texto superpuesto — es genial para encabezados."],"Display code snippets that respect your spacing and tabs.":["Mostrar fragmentos de código que respetan el espaciado y las pestañas."],"Use the classic WordPress editor.":["Use el editor clásico de WordPress."],"Display a list of all categories.":["Mostrar una lista de todas las categorías."],"Embed a simple audio player.":["Incrustar un reproductor de audio sencillo."],"noun\u0004View":["Ver"],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":["Trabajar sin distracciones"],"Focus on one block at a time":["Enfocarse en un bloque a la vez"],"Access all block and document tools in a single place":["Acceder todos los bloques y herramientas de documento en un mismo lugar"],"Options":["Opciones"],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":["Ir al primer día de la semana (inicio) o al último (final)."],"Home/End":["Inicio/Final"],"Home and End":["Inicio y final"],"Move backward (PgUp) or forward (PgDn) by one month.":["Mover un mes hacia atrás (PgUp) o hacia adelante (PgDn)."],"PgUp/PgDn":["PgArriba/PgAbajo"],"Page Up and Page Down":["Página arriba y Página abajo"],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":["Haga clic en el día deseado para seleccionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Haga clic en las flechas izquierda o derecha para seleccionar otros meses en el pasado o en el futuro."],"Click to Select":["Clic para seleccionar."],"Calendar Help":["Ayuda del calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Elegir un tono"],"Change color format":["Cambiar el formato de color"],"Color value in HSL":["Valor de color HSL"],"Color value in RGB":["Valor de color RGB"],"Color value in hexadecimal":["Valor de color hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo de color Hex activo"],"Hue/saturation/lightness mode active":["Modo Hue/saturation/lightness activo"],"Move the arrow left or right to change hue.":["Mover la flecha izquierda o la derecha para cambiar el matiz (hue)."],"Hue value in degrees, from 0 to 359.":["Valor de matiz (hue) en grados, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor Alpha, de 0 (transparente) a 1 (opaco)."],"Stripes":[],"Your site doesn’t include support for this block.":["Su sitio no permite este bloque."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Su sitio no permite el bloque \"%s\". Usted puede dejar este bloque intacto o retirarlo completamente."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Si sitio no permite el bloque \"%s\". Usted puede dejar este bloque intacto, convertir su contenido en un bloque HTML personalizado o retirarlo completamente."],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":["Pegar URL o escribir para buscar"],"Terms":[],"Your work will be published at the specified date and time.":["Su post será publicado en la fecha y hora especificados"],"Are you ready to schedule?":["¿Está listo para programar?"],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Otro usuario se encuentra trabajando en este post, por lo que usted no puede hacer cambios, a menos que tome el control del post."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s se encuentra trabajando en este post, por lo que usted no puede hacer cambios, a menos que tome el control del post."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Otro usuario tomó control de la edición de este post. No se ofusque, sus cambios, hasta ahora, han sido guardados."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s tomó control de la edición de este post. No se ofusque, sus cambios, hasta ahora, han sido guardados."],"Avatar":["Avatar"],"This post is already being edited.":["Este post ya está siendo editado."],"Someone else has taken over this post.":["Alguien más tomó control de este post."],"This block contains unexpected or invalid content.":["Este bloque contiene contenido inesperado o inválido"],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":["Este bloque sólo puede ser usado una vez."],"Exit Code Editor":["Salir de editor de código"],"Editing Code":["Editando código"],"Solid Color":[],"Main Color":[],"HTML":["HTML"],"Write HTML…":["Escriba HTML..."],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":["Importar desde JSON"],"Backtick":[],"Period":["Punto"],"Comma":["Coma"],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":["%d bloque","%d bloques"],"Forward-slash":["Barra inclinada"],"No archives to show.":["No hay archivos que mostrar."],"This file is empty.":["Este archivo está vacío."],"Sorry, this file type is not supported here.":["Sorry, este tipo de archivo no es permitido aquí."],"Manage all reusable blocks":[],"Title":["Título"],"Fullscreen mode":[],"Beautiful landscape":["Paisaje hermoso"],"Close panel":["Cerrar panel"],"Convert to Classic Block":["Convertir a Bloque clásico"],"Remove Poster Image":["Retirar imagen de Poster"],"Select Poster Image":["Escoger imagen de Poster"],"Poster Image":["Imagen de Poster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque está obsoleto. En cambio, utilice el bloque de Columnas."],"Text Columns (deprecated)":["Columnas de texto (obsoleto)"],"Create":["Crear"],"Row Count":["Número de filas"],"Column Count":["Número de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque está obsoleto. En cambio, utilice el bloque de Párrafo."],"Subheading (deprecated)":["Subtítulo (obsoleto)"],"blockquote":[],"Change the block type after adding a new paragraph.":["Cambie el tipo de bloque luego de agregar un párrafo nuevo."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Las etiquetas ayudan a los usuarios y a los motores de búsqueda a navegar por su sitio y encontrar su contenido. Agregue algunas palabras clave para describir su publicación."],"Add tags":["Agregar etiquetas"],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Su tema usa formatos de post para destacar diferentes tipos de contenido, tales como imágenes o videos. Aplique un formato para ver este diseño especial."],"Use a post format":["Usar formato de entrada"],"Insert After":["Insertar Después"],"Insert Before":["Insertar Antes"],"Move %1$d block from position %2$d down by one place":["Mover %1$d bloque de la posición %2$d un lugar hacia abajo","Mover %1$d bloques de la posición %2$d un lugar hacia abajo"],"Move %1$d block from position %2$d up by one place":["Mover %1$d bloque de la posición %2$d un lugar hacia arriba","Mover %1$d bloques de la posición %2$d un lugar hacia arriba"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["pelicula"],"Insert a new block before the selected block(s).":["Inserta un nuevo bloque antes de los bloques seleccionados."],"Remove the selected block(s).":["Remover bloque(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplicar bloque(s) seleccionado(s)."],"Block shortcuts":["Block shortcuts"],"Clear selection.":["Limpiar selección."],"Select all text when typing. Press again to select all blocks.":["Seleccione todo el texto al escribir. Presione nuevamente para seleccionar todos los bloques."],"Selection shortcuts":["Selección de shortcuts"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navegue a la parte anterior del editor."],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":["Mostrar u ocultar la barra lateral de configuraciones."],"Redo your last undo.":["Rehaga su último deshacer."],"Undo your last changes.":["Seshacer cambios."],"Save your changes.":["Guarde sus cambios"],"Global shortcuts":["Shortcuts globales"],"Remove a link.":["Eliminar un enlace."],"Convert the selected text into a link.":["Convertir el texto seleccionado en un enlace."],"Underline the selected text.":["Subrayar el texto seleccionado."],"Make the selected text italic.":["Hacer el texto seleccionado cursiva."],"Make the selected text bold.":["Hacer el texto seleccionado negrita."],"Text formatting":["Formato de texto"],"Insert a new block after the selected block(s).":["Inserta un nuevo bloque después de los bloques seleccionados."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["¡Gracias por probar Gutenberg!"],"Help build Gutenberg":["Ayuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si quiere aprender más sobre cómo crear bloques adicionales, o si está interesado en ayudar con el proyecto, visite el repositorio en GitHub."],"The WordPress community":["La comunidad WordPress"],"Code is Poetry":["El código es poesía"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puede crear cualquier bloque, estático y dinámico, decorativo o plano. Aquí tiene un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Cualquier bloque puede estar en alguna de estas alineaciones. El bloque de incrustar también las tiene, y es adaptable desde la base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Lo de arriba es una galería con solo dos imágenes. Es un modo sencillo de crear visualmente atractivos diseños, sin tener que lidiar con floats. También puede convertir fácilmente la galería de nuevo a imágenes individuales, usando el cambiador de bloques. "],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por supuesto, la imagen de ancho completo puede ser realmente grande. Pero a veces la imagen es lo importante."],"Accessibility is important — don’t forget image alt attribute":["La accesibilidad es importante. No se olvide del atributo de imagen alt."],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si combina las nueva alineaciones de galería ancha y ancho completo puede crear diseños ricos en medios rápidamente:"],"Media Rich":["Medios enriquecidos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puede cambiar la cantidad de columnas de sus galerías arrastrando un control deslizante en el inspector de bloques de la barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Los bloques pueden ser lo que necesitas. Por ejemplo, puede que quieras añadir una cita suave como parte de la composición de tu texto, o puede que prefieras mostrar una estilizada y gigante. Todas estás opciones están en el insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["La información correspondiente al origen de la cita está en un campo de texto separado, parecido a las leyendas bajo las imágenes, para que la estructura de la cita esté protegida aunque la selecciones, modifiques o quites del origen. Es siempre sencillo añadirla de nuevo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["El editor procurará crear una nueva experiencia de creación de páginas y entradas que ayude a escribir publicaciones sin esfuerzo, utilizando los \"bloques\" para hacer mas sencillo lo que hoy conllevaría usar shortcodes, HTML personalizado o descubrir como incrustar \"codigos sospechosos\"."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio de los bloques es que puedes editarlos donde estén y manipular directamente tu contenido. En vez de tener campos para editar cosas como el código o una cita, o el texto de un botón, puedes cambiar directamente el contenido. Prueba a modificar la siguiente cita:"],"Visual Editing":["Edición visual"],"And Lists like this one of course :)":["Y listas como esta, por supuesto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de diseño, como botones, imágenes prominentes, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits o entradas de otro WordPress."],"Galleries":["Galerías"],"Images & Videos":["Imágenes y vídeos"],"Text & Headings":["Texto y encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Anímate a probarlo, puedes descubrir cosas que WordPress ya puede añadir en tus entradas de las que no tenías ni idea. Aquí tienes una breve lista de lo que actualmente puedes encontrar ahí:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagina que todo lo que WordPress puede hacer esté disponible para ti rápidamente y en el mismo lugar de la interfaz. No tienes que descubrir etiquetas HTML, clases o recordar sintaxis complicadas de shortcodes. Ese es el espíritu tras el insertador — el botón (+)
que verás en el editor — que te permite navegar por todos los bloques de contenido disponibles y añadirlos a tu entrada. Los plugins y temas pueden registrar los suyos propios, abriendo una enorme cantidad de posibilidades para la edición y la publicación enriquecida."],"The Inserter Tool":["La herramienta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prueba a seleccionar o quitar o editar la leyenda, ahora ya no tienes porque ser cuidadoso a la hora de seleccionar la imagen u otro texto por error y arruinar la presentación."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si tue tema es compatible veras el botón \"ancho\" en la barra de herramientas de la imagen. Pruébalo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestionar imágenes y medios con el máximo cuidado es un enfoque principal del nuevo editor. Afortunadamente encontrarás posibilidades para añadir leyendas o hacer de ancho completo tus fotos de un modo mucho más fácil y robusto que antes."],"A Picture is Worth a Thousand Words":["Una imagen vale más que mil palabras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Los encabezados también son bloques separados, lo que ayuda a la estructura y organización de tu contenido."],"... like this one, which is right aligned.":["... como esta, que está alineada a la derecha."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Lo que estás leyendo ahora es un bloque de texto, el bloque más básico de todos. El bloque de texto tiene sus propios controles para moverlo libremente por toda la publicación…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["El objetivo de este nuevo editor es hacer que añadir contenido enriquecido a WordPress sea algo sencillo y agradable. Toda esta entrada está creada con piezas de contenido —algo parecido a los ladrillos LEGO — que puedes mover y con los que puedes interactuar. Mueve tu cursor y verás que aparecen los distintos bloques con líneas y flechas. Pulsa en las flechas para recolocar rápidamente los bloques, sin miedo a perder cosas sen el proceso de copiar y pegar. "],"Of Mountains & Printing Presses":["Hablando de montañas y prensas de impresión"],"Welcome to the Gutenberg Editor":["Bienvenido al editor Gutenberg"],"block name\u0004More":["Más"],"button to expand options\u0004More":["Más"],"Are you sure you want to unschedule this post?":["¿Estás seguro de querer anular la programación de esta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador único del objeto."],"Untitled Reusable Block":["Blogue reutilizable sin título"],"Small":[],"Reusable":["Reutilizable"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Mantener como HTML"],"Edit URL":["Editar URL"],"Color settings":[],"The response is not a valid JSON response.":["Las respuesta no es una respuesta JSON válida."],"Editor publish":["Publicación del editor"],"Muted":["Silenciado"],"Video settings":[],"recent comments":["comentarios recientes"],"Latest Comments":["Últimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":[],"Display Avatar":[],"Latest comments settings":[],"Number of Comments":[],"Background Opacity":["Opacidad del fondo"],"Auto":["Automática"],"Preload":["Precarga"],"Audio settings":[],"Display a monthly archive of your posts.":["Mostrar un archivo mensual de las entradas del sitio."],"Display as Dropdown":["Mostrar como desplegable"],"Show Post Counts":["Mostrar contador de entradas"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Soporte"],"No comments to show.":["No hay comentarios que mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Elegir entrada"],"Select Week":["Elegir semana"],"Select Day":["Elegir día"],"Select Month":["Elegir mes"],"Select Year":["Elegir año"],"Archives":["Archivo"],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["Tipos de bloques disponibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir el panel de publicar"],"Dots":["Puntos"],"Wide Line":["Línea ancha"],"Large":["Grande"],"Show download button":[],"Download button settings":[],"Link To":["Enlazar a"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escribe el nombre del archivo…"],"File":["Archivo"],"A single column within a columns block.":["Una columna simple dentro de un bloque de columnas."],"Column":["Columna"],"Outline":["Contorno"],"Loop":["En bucle"],"Autoplay":["Reproducción automática"],"Playback Controls":["Controles de reproducción"],"Close dialog":["Cerrar ventana"],"Sorry, this file type is not permitted for security reasons.":["Lo siento, este tipo de archivo no está permitido por razones de seguridad."],"Disable tips":["Desactivar consejos"],"Got it":["Lo tengo"],"See next tip":["Ver siguiente consejo"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cuando estés listo, envía tu trabajo para revisión, y un editor podrá aprobártelo."],"Are you ready to submit for review?":["¿Estás listo para enviarlo a revisión?"],"Replace image":["Reemplazar imagen"],"Remove image":["Quitar imagen"],"Error while uploading file %s to the media library.":["Error al subir el archivo %s a la biblioteca de medios."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["Ver el guardado automático"],"There is an autosave of this post that is more recent than the version below.":["Hay un guardado automático de esta entrada que es más reciente que la versión de abajo."],"Autosaving":["Guardando automáticamente"],"Enter URL here…":["Introduce aquí la URL…"],"Pin to toolbar":["Fijar a la barra de herramientas"],"Unpin from toolbar":["Quitar de la barra de herramientas"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":["Celdas de tabla de ancho fijo"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Añade texto que respete tus espacios y tabulados, y que también permita estilos."],"Display a list of your most recent posts.":["Muestra una lista de tus entradas más recientes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Añade un bloque que muestra contenido extraído de otros sitios, como Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Añade un bloque que muestra contenido en varias columnas, luego añade cualquier bloque de contenido que quieras."],"Error loading block: %s":["Error al cargar el bloque: %s"],"Unknown error":["Error desconocido"],"Embed Handler":["Gestor del servicio"],"term\u0004Remove %s":["Eliminar %s"],"Copy the permalink":["Copia el enlace permanente"],"Permalink copied":["Enlace permanente copiado"],"Height in pixels":["Altura en píxeles"],"Spacer settings":[],"Spacer":["Espaciador"],"Toggle to show a large initial letter.":["Alternar para mostrar una letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nombre:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Eliminar elemento"],"Color code: %s":["Código de color: %s"],"Skip to the selected block":["Saltar al bloque seleccionado"],"Publish…":["Publicar…"],"Schedule…":["Programar…"],"Edit post permalink":["Editar enlace permanente de la entrada"],"Show Block Settings":["Mostrar ajustes del bloque"],"Hide Block Settings":["Ocultar ajustes del bloque"],"Block settings closed":["Ajustes del bloque cerrados"],"Close plugin":["Cerrar plugin"],"Editor settings":["Ajustes del editor"],"Link settings":[],"Unlink":["Quitar enlace"],"Page break":["Salto de página"],"pagination":["paginación"],"next page":["página siguiente"],"Image Size":["Tamaño de imagen"],"Height":["Altura"],"Width":["Ancho"],"Image Dimensions":["Dimensiones de la imagen"],"Thumbnails are not cropped.":["Las miniaturas no se recortan."],"Thumbnails are cropped to align.":["Las miniaturas se recortan alineadas."],"Media Library":["Biblioteca de medios"],"Advanced":["Avanzado"],"Add item":[],"Reset the template":["Restablecer la plantilla"],"Keep it as is":["Mantenerla como está"],"The content of your post doesn’t match the template assigned to your post type.":["El contenido de tu entrada no se ajusta a la plantilla asignada a tu tipo de contenido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer la plantilla puede resultar en pérdida de contenido, ¿quieres continuar?"],"Document Statistics":["Estadísticas del documento"],"is now scheduled. It will go live on":["está ahora programada. Estará disponible el"],"Scheduled":["Programada"],"Scheduling…":["Programando…"],"Code editor selected":["Editor de código seleccionado"],"Visual editor selected":["Editor visual seleccionado"],"Plugins":["Plugins"],"Custom Size":["Tamaño personalizado"],"Layout elements":[],"term\u0004%s removed":["%s borrada"],"term\u0004%s added":["%s añadida"],"imperative verb\u0004Preview":["Vista previa"],"Block deleted.":["Bloque borrado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo al enviar a la papelera"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Ri new cambios sin guardar. Si sigues se perderán."],"Document Outline":["Esquema del documento"],"Paragraphs":["Párrafos"],"Headings":["Encabezados"],"Words":["Palabras"],"Content structure":[],"Public":["Pública"],"Protected with a password you choose. Only those with the password can view this post.":["Protegida con una contraseña que tú elijas. Solo los que tengan la contraseña pueden ver esta entrada."],"Password Protected":["Protegida por contraseña"],"Only visible to site admins and editors.":["Solo visible para administradores y editores del sitio."],"Private":["Privada"],"Visible to everyone.":["Visible por todos"],"Post Visibility":["Visibilidad de la entrada"],"Would you like to privately publish this post now?":["¿Te gustaría publicar ahora en privado esta entrada?"],"Use a secure password":["Usa una contraseña segura"],"Create password":["Crear contraseña"],"Move to Trash":[],"Parent Term":["Término superior"],"Parent Category":["Categoría superior"],"Add new term":["Añadir nuevo término"],"Add new category":["Añadir nueva categoría"],"Term":["Término"],"Tag":["Etiqueta"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["¿Estás seguro de querer anular la publicación de esta entrada?"],"Immediately":["Inmediatamente"],"Save Draft":["Guardar borrador"],"Saving":["Guardando"],"Publish:":["Publicar: "],"Visibility:":["Visibilidad:"],"Are you ready to publish?":["¿Estás listo para publicar?"],"Copy Link":["Copiar enlace"],"What’s next?":["¿Y ahora qué?"],"is now live.":["está ahora visible."],"Published":["Publicada"],"Schedule":["Programar"],"Update":["Actualizar"],"Submit for Review":["Enviar a revisión"],"Updating…":["Actualizando..."],"Publishing…":["Publicando..."],"Allow pingbacks & trackbacks":[],"Permalink:":["Enlace permanente:"],"Pending review":[],"%d Revision":["%d revisión","%d revisiones"],"Suggestion:":["Sugerencia:"],"Post Format":["Formato de entrada:"],"Chat":["Chat"],"Status":["Estado"],"Standard":["Estándar"],"Aside":["Minientrada"],"Featured image":["Imagen destacada"],"Set featured image":[],"Learn more about manual excerpts":["Aprende más sobre extractos manuales"],"Write an excerpt (optional)":["Escribe un extracto (opcional)"],"Allow comments":[],"Template:":["Plantilla:"],"no parent":["sin superior"],"no title":["sin título"],"Order":["Orden"],"No blocks found.":["No se han encontrado bloques."],"%d result found.":["Se encontró %d resultado.","Se encontraron %d resultados."],"Saved":["Guardado"],"Embeds":["Incrustados"],"Blocks":["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Añadir bloque"],"Copy Error":["Error al copiar"],"Copy Post Text":["Copiar texto de la entrada"],"Attempt Recovery":["Intentar recuperación"],"The editor has encountered an unexpected error.":["El editor ha encontrado un error inesperado."],"Undo":["Deshacer"],"Redo":["Rehacer"],"(Multiple H1 headings are not recommended)":["(No se recomiendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(Tu tema puede que ya use un H1 para el título de la entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado vacío)"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["¿Estás seguro de querer borrar este bloque compartido?\nSe borrará permanentemente de todas las entradas y páginas que lo usen."],"Convert to Regular Block":["Convertir a bloque normal"],"More options":[],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Los bloques no se pueden mover hacia abajo porque ya están en el fondo"],"Blocks cannot be moved up as they are already at the top":["Los bloques no se pueden mover arriba porque ya están al principio"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["El bloque %s es el único bloque, y no puede moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Convertir en bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque ha encontrado un error y no puede previsualizarse."],"No block selected.":["Ningún bloque seleccionado."],"Transform into:":["Transformar a:"],"Remove":["Quitar"],"Find original":["Encontrar el original"],"Copy all content":[],"Copied!":["¡Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Ahora hay ajustes adicionales disponibles en la barra de ajustes del editor de bloques"],"Visibility":["Visibilidad"],"Status & visibility":[],"Page attributes":[],"Block":["Bloque","%d bloques"],"Document":["Documento"],"Close settings":["Cerrar ajustes"],"Editor content":["Contenido del editor"],"Tools":["Herramientas"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Barra superior del editor"],"Settings":["Ajustes"],"Reset":["Restablecer"],"Dismiss this notice":["Descargar este aviso"],"Item removed.":["Elemento eliminado."],"Item added.":["Elemento añadido."],"Drop files to upload":["Arrastra archivos para subirlos"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ha ocurrido un error desconocido."],"No results.":["No hay resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, utiliza las teclas arriba y abajo para navegar.","%d resultados encontrados, utiliza las teclas arriba y abajo para navegar."],"(no title)":["(sin título)"],"URL":["URL"],"Submit":["Enviar"],"Close":["Cerrar"],"Insert link":[],"Edit link":[],"Link":["Enlace"],"Strikethrough":["Tachado"],"Italic":["Cursiva"],"Bold":["Negrita"],"Remove link":[],"Number of items":["Número de elementos"],"All":["Todo"],"Category":["Categoría"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["De antiguas a nuevas"],"Newest to Oldest":["De nuevas a antiguas"],"Order by":["Ordenar por"],"Select":["Elegir"],"Select or Upload Media":["Elige o sube medios"],"Video":["Vídeo"],"Write…":["Escribe…"],"poetry":["poesía"],"Verse":["Verso"],"New Column":["Nueva columna"],"Delete Column":["Borrar columna"],"Add Column After":["Añadir columna después"],"Add Column Before":["Añadir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Añadir fila después"],"Add Row Before":["Añadir fila antes"],"Edit table":[],"Table":["Tabla"],"Write subheading…":["Escribe el subtítulo…"],"Write shortcode here…":["Escribe aquí el shortcode…"],"Shortcode":["Shortcode"],"divider":["separador"],"horizontal-line":["línea-horizontal"],"Separator":["Separador"],"Quote":["Cita"],"Write citation…":["Escribe la cita…"],"Write quote…":["Escribe la cita…"],"Pullquote":["Cita"],"Write preformatted text…":["Escribe texto preformateado…"],"Preformatted":["Preformateado"],"text":["texto"],"Paragraph":["Párrafo"],"Font Size":["Tamaño de fuente"],"Drop Cap":["Capitalizar"],"Text settings":[],"Read more":["Leer más"],"Write list…":["Escribe una lista…"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista con viñetas"],"Indent list item":["Añadir sangría al elemento de la lista"],"Outdent list item":["Reducir sangría al elemento de la lista"],"Convert to ordered list":["Convertir a lista ordenada"],"Convert to unordered list":["Convertir a lista desordenada"],"List":["Lista"],"recent posts":["entradas recientes"],"No posts found.":["No se han encontrado entradas."],"Latest Posts":["Últimas entradas"],"Display post date":["Mostrar fecha de la entrada"],"Grid view":[],"List view":[],"photo":["foto"],"Image settings":[],"Image":["Imagen"],"Preview":["Vista previa"],"embed":["incrustar"],"Custom HTML":["HTML personalizado"],"subtitle":["subtítulo"],"title":["título"],"Heading":["Encabezado"],"Write heading…":["Escribe el encabezado…"],"Heading %d":["Encabezado %d"],"Level":["Nivel"],"Heading settings":[],"photos":["fotos"],"images":["imágenes"],"None":["Ninguna"],"Media File":["Archivo multimedia"],"Attachment Page":["Página de adjuntos"],"Link to ":[],"Crop Images":["Recortar imágenes"],"Gallery settings":[],"Gallery":["Galería"],"Classic":["Clásico"],"video":["vídeo"],"audio":["audio"],"music":["música"],"image":["imagen"],"blog":["blog"],"post":["entrada"],"Embedded content from %s":["Contenido incrustado desde %s"],"Enter URL to embed here…":["Introduce aquí la URL a incrustar…"],"%s URL":["%s URL"],"Embedding…":["Incrustando…"],"Write title…":["Escribe el título…"],"Fixed Background":["Fondo fijo"],"Edit image":["Editar imagen"],"Columns":["Columnas"],"Experiments":[],"Code":["Código"],"Write code…":["Escribe código…"],"Categories":["Categorías"],"Show Hierarchy":[],"Show post counts":["Mostrar contador de entradas"],"Categories settings":[],"Add text…":["Añade texto…"],"Button":["Botón"],"Apply":["Aplicar"],"Text Color":["Color del texto"],"Background Color":["Color de fondo"],"Block has been deleted or is unavailable.":["El bloque se ha borrado o no está disponible."],"Reusable blocks":[],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escribe la leyenda…"],"Use URL":["Usar URL"],"Audio":["Audio"],"Upload":["Subir"],"Additional CSS Class(es)":[],"HTML Anchor":["Anclaje HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más claro y/o un color de texto más oscuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinación de color puede ser difícil de leer para la gente. Trata de usar un color de fondo más oscuro y/o un color de texto más claro."],"Clear":["Restablecer"],"Custom color picker":["Selector de color personalizado"],"Color: %s":["Color: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatos"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimiendo desde 1440. Este es el plugin en desarrollo del nuevo editor de bloques del núcleo."],"Add title":["Añadir título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Comentarios"],"Custom fields":[],"Excerpt":["Extracto"],"Publish":["Publicar"],"Metadata":["Metadatos"],"Save":["Guardar"],"Documentation":["Documentación"],"Select Category":["Elige la categoría"],"(Untitled)":["(sin título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["El equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["Hace %s"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_fa.json b/bundle/android/raw/i18ncache_data_fa.json
new file mode 100644
index 0000000000..3bdf025973
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_fa.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":["خیلی بزرگ"],"Block breadcrumb":[],"Editor footer":["پاورقی ویرایشگر"],"Site Title":["عنوان سایت"],"Open Colors Selector":["بازکردن انتخابگر رنگ"],"Templates list":["فهرست قالب ها"],"Templates list navigation":["پیمایش فهرست قالب ها"],"Filter templates list":["صافی فهرست قالب ها"],"Uploaded to this template":["بارگزاری در این قالب"],"Insert into template":["درج درون قالب"],"Template archives":["بایگانی های قالب"],"No templates found in Trash.":["هیچ قالبی درون زباله دان پیدا نشد."],"No templates found.":["هیچ قالبی یافت نشد."],"Parent Template:":["قالب مادر:"],"Search Templates":["جستجوی قالب ها"],"All Templates":["همه قالب ها"],"View Template":["مشاهده قالب"],"Edit Template":["ویرایش قالب"],"New Template":["قالب جدید"],"Add New Template":["افزودن قالب جدید"],"Template\u0004Add New":["افزودن جدید"],"Admin Menu text\u0004Templates":["قالب ها"],"Template":["قالب"],"No matching template found":["هیچ قالب سازگانی پیدا نشد."],"Gradient: %s":["طیف: %s"],"Gradient code: %s":["کد طیف: %s"],"All content copied.":["تمام محتوا کپی شد."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["بارگزاری رسانه شکست خورد. اگر یک عکس یا تصویر بزرگ است، لطفا مقیاس آن را کاهش داده و مجددا تلاش نمایید."],"Gradient":["طیف"],"Gradient Presets":["تنظیمات پیش فرض طیف"],"No Preview Available.":["پیشنمایشی دردسترس نیست."],"Midnight":["نیمه شب"],"Electric grass":["چمن کهربایی"],"Pale ocean":["اقیانوس کم رنگ"],"Luminous dusk":["غروب نورانی"],"Blush bordeaux":[],"Blush light purple":["بفنش سرخ روشن"],"Cool to warm spectrum":["طیف سرد به گرم"],"Very light gray to cyan bluish gray":["خاکستری بسیار روشن به خاکستری مایل به آبی"],"Luminous vivid orange to vivid red":["نارنجی روشن درخشان به قرمز روشن"],"Luminous vivid amber to luminous vivid orange":["کهربای روشن درخشان تا نارنجی روشن درخشان"],"Light green cyan to vivid green cyan":["سبز فیروزه ای به سبز روشن"],"Vivid cyan blue to vivid purple":["آبی روشن فیروزه ای به بنفش روشن"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["December 6, 2018"],"February 21, 2019":["February 21, 2019"],"May 7, 2019":["May 7, 2019"],"Release Date":["تاریخ انتشار"],"Jazz Musician":["Jazz Musician"],"Version":["نسخه"],"Six.":["شش."],"Five.":["پنج."],"Four.":["چهار."],"Three.":["سه."],"Two.":["دو."],"One.":["یک."],"One of the hardest things to do in technology is disrupt yourself.":["یکی از سخت ترین چیزها برای انجام در تکنولوژی تطبیق دادن خود است."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["چکاوک
بی صدا
زندگی اش را بدست می آورد."],"Welcome to the wonderful world of blocks…":["به دنیای هیجان انگیز بلوک ها خوش آمدید..."],"Snow Patrol":["گشت برفی"],"Dimensions":["ابعاد"],"Minimum height in pixels":["حداقل ارتفاع (پیکسل)"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["دعوت به اقدام"],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":["پیمایش بلاک ها"],"Full Site Editing":["ویرایشگر کامل سایت"],"Templates to include in your theme.":["قالبهایی که پوستهٔ شما در بر خواهد گرفت."],"Templates":["قالب ها"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["لطفا با مدیر سایت جهت نصب بلاک های جدید تماس بگیرید."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["بلوکی در کتابخانه شما یافت نشد. لطفا با مدیر سایت خود برای نصب بلوک های جدید تماس بگیرید."],"No blocks found in your library.":["هیچ بلاکی در کتابخانه شما پیدا نشد."],"No blocks found in your library. These blocks can be downloaded and installed:":["بلوکی در کتابخانه شما یافت نشد. این بلوک ها می توانند دانلود و نصب شوند."],"No blocks found in your library. We did find %d block available for download.":["بلوکی در کتابخانه شما یافت نشد. ما %d بلوک در دسترس برای دانلود پیدا کردیم."],"Block previews can’t load.":["پیش نمایش بلوک نمی تواند بارگزاری شود."],"Retry":["تلاش مجدد"],"Block previews can't install.":["پیشنمایش بلوک نمیتواند نصب شود."],"Updated %s":["%s به روزرسانی شد."],"%d active installation":["%d نصب فعال"],"This author has %d block, with an average rating of %d.":["این نویسنده %d بلوک با میانگین امتیاز %d دارد."],"Authored by %s":["نوشته شده توسط %s"],"%d total rating":[],"%s out of 5 stars":["%s از 5 ستاره"],"Enter Address":["درج نشانی"],"Pill Shape":["شکل قرص"],"Logos Only":["فقط آرم ها"],"Create a block of links to your social media or external sites":["ساخت یک بلوک از پیوندها به شبکه های اجتماعی خود یک سایت های دیگر."],"Social links":["پیوندهای شبکه اجتماعی"],"Open block navigator":["بازکردن پیمایشگر بلوک ها"],"Attachment page":["برگه پیوستها"],"Fill":["پر کردن"],"Link rel":["ارتباط پیوند"],"Border Radius":["شعاع لبه"],"Write gallery caption…":["عنوان گالری را بنویسید..."],"Content blocks":[],"Restore the backup":["بازگردانی نسخه پشتیبان"],"The backup of this post in your browser is different from the version below.":["نسخه پشتیبان این نوشته در مرورگر شما با نسخه زیر متفاوت است."],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":["متأسفم! شما مجاز به نصب بلوک نمی باشید."],"%1$d block is disabled.":["%1$d بلوک غیرفعال شد."],"Reverse List Numbering":[],"Start Value":["مقدار شروع"],"Ordered list settings":[],"Clear Media":["پاک کردن رسانه"],"Default Style":["سبک پیشفرض"],"Not set":["تنظیم نشده"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["درون کتابخانه گردش کنید تا ببینید هر بلوک چه کاری انجام می دهد."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["بلوک های مختلفی برای تمام انواع محتوا موجود هستند: متن، عنوان، تصویر، لیست، ویدئو، جدول و بسیاری موارد دیگر را درج کنید."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["به دنیای هیجان انگیز بلوک ها خوش آمدید! بلوک ها اساس تمام محتوای درون ویرایشگر هستند."],"Version of the content block format used by the object.":["نسخه فرمت بلوک محتوای استفاده شده توسط شیئ."],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":["تغییر تراز ستون"],"Align Column Right":["راست چین کردن ستون"],"Align Column Center":["وسط چین کردن ستون"],"Align Column Left":["چپ چین کردن ستون"],"Color":["رنگ"],"Vivid purple":["بنفش روشن"],"Disable & Reload":["غیرفعال کردن و بارگیری مجدد"],"Enable & Reload":["فعال کردن و بارگیری مجدد"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":["نمایش میانبرهای صفحه کلید"],"Experiments Settings":["تنظیمات بررسی"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":["سفارسی"],"Draft":["پیشنویس"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["بلوک \"%1$s\" شامل استایلی به نام \"%2$s.\" نیست."],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":["نادیده بگیر"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["این چیست؟"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["به موتورهای جستجو اجازه دنبال کردن این پیوند را نده."],"Provide more context about where the link goes.":[],"Title Attribute":["ویژگی عنوان"],"SEO settings":[],"Description":["توضیحات"],"Open in new tab":["باز کردن در زبانه جدید"],"links":["لینک ها"],"navigation":["راهبری"],"menu":["فهرست"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["بارگزاری یک فایل یا انتخاب از کتابخانه رسانه."],"Learn more about embeds":["درباره جاسازی ها بیشتر بدانید."],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["پیوندی را که می خواهید در سایت شما نمایش داده شود، درون محتوا بچسبانید."],"Upload an image or video file, or pick one from your media library.":["بارگزاری یک تصویر یا انتخاب از کتابخانه رسانه."],"Three columns; wide center column":["سه ستون؛ ستون وسط عریض"],"Three columns; equal split":["سه ستون؛ اندازه مساوی"],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":["دو ستون؛ اندازه مساوی"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["گزینه ها و ابزارهای بیشتر"],"Create Table":["ایجاد جدول"],"Insert a table for sharing data.":["برای به اشتراک گذاری اطلاعات جدول درج نمایید."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":["گروه"],"Separate with commas or the Enter key.":["جدا کردن با کاما یا کلید Enter."],"Separate with commas, spaces, or the Enter key.":["جدا کردن با کاما، کلید فاصله (space) یا ورود (Enter)."],"Separate multiple classes with spaces.":["کلاسهای متعدد را با فاصله (space) جدا کنید."],"Move image forward":["انتقال تصویر به جلو"],"Move image backward":["انتقال تصویر به عقب"],"Sorry, you are not allowed to edit sidebars.":["با عرض پوزش، شما اجازهی ویرایش ستونکناری را ندارید."],"Sorry, you are not allowed to read sidebars.":["با عرض پوزش، شما اجازهی خواندن ستونکناری را ندارید."],"The sidebar’s ID.":["شناسه نوار کناری."],"Displays a set of blocks":["مجموعهای از بلوکها را نمایش می دهد"],"Blocks Area":["ناحیه بلوکها"],"Block rendered as empty.":["بلوک به عنوان خالی ارائه شده است."],"Inline Code":["کد درونخطی"],"Note: Autoplaying videos may cause usability issues for some visitors.":["نکته: پخش خودکار ویدئوها ممکن است برای برخی بازدیدکنندگان مشکلات کاربری ایجاد کند."],"Footer section":["بخش پانوشت"],"Header section":["بخش سرنوشت"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["محتوای نوشته"],"Post content settings":[],"Percentage width":["درصد عرض"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["نکته: پخش خودکار صداها ممکن است برای برخی بازدیدکنندگان مشکلات کاربری ایجاد کند."],"Block area updated.":["ناحیه بلوک بهروزرسانی شد."],"Block area scheduled.":["ناحیه بلوک زمانبندی شد."],"Block area published.":["ناحیه بلوک منتشر شد."],"Block areas list":["فهرست نواحی بلوک"],"Block areas list navigation":["فهرست راهبری نواحی بلوک"],"Filter block areas list":["صافی لیست مناطق بلوک"],"No block area found.":["هیچ منطقه بلوکی یافت نشد."],"Search Block Areas":["مناطق بلوک جستجو"],"All Block Areas":["تمامی مناطق بلوک"],"View Block Area":["نمایش منطقه بلوک"],"Edit Block Area":["ویرایش بلوک"],"New Block Area":["بلوک جدید"],"Add New Block Area":["اضافه کردن بلوک جدید"],"admin menu\u0004Block Areas":["مناطق بلوک"],"post type singular name\u0004Block Area (Experimental)":["منطقه بلوک (آزمایشی)"],"post type general name\u0004Block Area (Experimental)":["منطقه بلوک (آزمایشی)"],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["محتوای صفحه ابزارکها"],"header":[],"Widgets advanced settings":["تنظیمات پیشرفته ابزارکها"],"(experimental)":["(آزمایشی)"],"Block Areas":["نواحی بلوک"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":["این ترکیب رنگ ممکن است برای افراد هنگام خواندن سخت باشد."],"There is no poster image currently selected":["در حال حاضر هیچ تصویر پیشنمایشی انتخاب نشده است"],"The current poster image url is %s":["نشانی اینترنتی تصویر پیشنمایش فعلی %s است."],"section":["بخش"],"row":["ردیف"],"wrapper":["بسته بندی"],"container":["دربردارنده"],"A block that groups other blocks.":["یک بلوک که بلوکهای دیگر را گروهبندی می کند."],"Group":["گروه"],"Crop image to fill entire column":["برش تصویر برای پر کردن تمام ستون"],"Play inline":["اجرا خطی"],"Leave empty if the image is purely decorative.":["اگر تصویر کاملاً جنبه تزئینی دارد، خالی بگذارید."],"Describe the purpose of the image":["هدف این تصویر را شرح دهید"],"Add a block":["افزودن بلوک"],"Block vertical alignment setting label\u0004Change vertical alignment":["تغییر تراز عمودی"],"Block vertical alignment setting\u0004Vertically Align Bottom":["تراز عمودی پایین"],"Block vertical alignment setting\u0004Vertically Align Middle":["تراز عمودی میانه"],"Replace Image":["جایگزینی تصویر"],"Block vertical alignment setting\u0004Vertically Align Top":["تراز عمودی بالا"],"Display a legacy widget.":["نمایش یک ابزارک پیشین."],"Legacy Widget (Experimental)":["ابزارک پیشین (آزمایشی)"],"Change widget":["تغییر ابزارک"],"Legacy Widget":["ابزارک پیشین"],"You don't have permissions to use widgets on this site.":["شما دسترسی لازم برای استفاده ابزارکها در این سایت را ندارید."],"Select a legacy widget to display:":["یک ابزارک جهت نمایش انتخاب نمایید:"],"There are no widgets available.":["هیچ ابزارکی دردسترس نیست."],"Change block type or style":["تغییر نوع بلوک یا استایل"],"keyboard key\u0004Space":["فاصله (Space)"],"keyboard key\u0004Backspace":["فاصله عقب (Backspace)"],"More rich text controls":["کنترلهای متن غنی بیشتر"],"Search Terms":["واژههای جستجو"],"Exit the Editor":["خروج از ویرایشگر"],"Block Manager":["مدیریت بلوک"],"Class name of the widget.":["نام کلاس ابزارک."],"Sorry, you are not allowed to access widgets on this site.":["متاسفانه شما اجازهی دسترسی به ابزارکهای این سایت را ندارید."],"Widgets (beta)":["ابزارکها"],"link":["پیوند"],"Embedded content from %s can't be previewed in the editor.":["امکان پیشنمایش محتوای جاسازی شده از %s در ویرایشگر وجود ندارد."],"Custom Color":["رنگ سفارشی"],"Prompt visitors to take action with a button-style link.":["بازدید کنندگان را با یک پیوند شبیه دکمه برای اقدام راهنمایی کنید."],"Stick to the top of the blog":["چسباندن به بالای بلاگ"],"Read about permalinks":["خواندن درباره پیوندهای یکتا"],"The last part of the URL.":["آخرین بخش از نشانی اینترنتی."],"URL Slug":["نامک نشانی اینترنتی"],"A cloud of your most used tags.":["ابری از برچسبهایی که بیشتر استفاده کردهاید."],"Tag Cloud":["ابر برچسب"],"Taxonomy":["طبقهبندی"],"Tag Cloud settings":[],"- Select -":["- انتخاب نمایید -"],"Default":["پیشفرض"],"find":["یافتن"],"Help visitors find your content.":["به بازدیدکنندگان کمک کنید محتوای شما را پیدا کنند."],"Search":["جستجو"],"Add button text…":["افزودن متن دکمه..."],"Button text":["متن دکمه"],"Optional placeholder…":["عنوان نگهدارنده اختیاری..."],"Optional placeholder text":["متن عنوان نگهدارنده اختیاری"],"Add label…":["افزودن برچسب..."],"Label text":["متن برچسب"],"image %1$d of %2$d in gallery":["تصویر %1$d از %2$d در گالری"],"archive":["بایگانی"],"posts":["نوشتهها"],"A calendar of your site’s posts.":["یک تقویم از نوشتههای سایت شما."],"Calendar":["تقویم"],"by":["توسط"],"An error has occurred, which probably means the feed is down. Try again later.":["خطایی رخ داده است، که احتمالاً به این معنی است که خوراک کار نمیکند. بعداً دوباره تلاش کنید."],"RSS Error:":["خطای RSS:"],"block style\u0004Default":["پیشفرض"],"Fullscreen mode deactivated":["حالت تمام صفحه غیرفعال شده است"],"Fullscreen mode activated":["حالت تمام صفحه فعال شده است"],"Spotlight mode deactivated":["حالت ویژه غیرفعال شده است"],"Spotlight mode activated":["حالت ویژه فعال شده است"],"Top toolbar deactivated":["نوار ابزار بالا غیرفعال شده است"],"Top toolbar activated":["نوار ابزار بالا فعال شده است"],"Back":["عقب"],"Feature activated":["ویژگی فعال شده است"],"Feature deactivated":["ویژگی غیرفعال شده است"],"Vertical Pos.":["موقعیت عمودی"],"Horizontal Pos.":["موقعیت افقی"],"feed":["خوراک"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["نمایش نوشتهها از هر RSS یا خوراک Atom."],"RSS":["RSS"],"Max number of words in excerpt":["حداکثر تعداد کلمات در چکیده"],"Display excerpt":["نمایش چکیده"],"Display date":["نمایش تاریخ"],"Display author":["نمایش نویسنده"],"RSS settings":[],"Edit RSS URL":["ویرایش نشانی اینترنتی RSS"],"Content before this block will be shown in the excerpt on your archives page.":["محتوای قبل از این بلوک در چکیده برگه بایگانیهای شما نمایش داده خواهد شد."],"Hide the excerpt on the full content page":[" مخفی کردن چکیده در محتوای کامل برگه"],"The excerpt is visible.":["چکیده قابل مشاهده است."],"The excerpt is hidden.":["چکیده پنهان است."],"Sorry, this content could not be embedded.":["با عرض پوزش، این محتوا نمیتواند جاسازی شود."],"Embed Amazon Kindle content.":["جاسازی محتوای Amazon Kindle."],"ebook":["کتاب الکترونیک"],"Embed Crowdsignal (formerly Polldaddy) content.":["جاسازی محتوای Crowdsignal (Polldaddy سابق)"],"Focal Point Picker":["انتخابگر نقطه کانونی"],"Underline":["زیر خط دار"],"Attempt Block Recovery":["تلاش برای بازیابی بلوک"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["محتوا..."],"button label\u0004Convert to link":["تبدیل به پیوند"],"button label\u0004Try again":["دوباره سعی کنید"],"Editor tips":["نکات ویرایشگر"],"Block (selected)":["بلوک (انتخاب شده)"],"Document (selected)":["اسناد (انتخاب شده)"],"%d word":["%d کلمه"],"Top toolbar":[],"Link Rel":["لینک Rel"],"Link CSS Class":["لینک کلاس CSS"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["تولید محتوا و ذخیره کردن آن در سایت برای استفاده مجدد شما و دیگر نویسندگان، با بهروز رسانی بلوک، تغییرات در هرجایی که بلوک استفاده شده اعمال میشود."],"To edit the featured image, you need permission to upload media.":["برای ویرایش تصویر شاخص باید اجازه آپلود رسانهها را داشته باشید."],"To edit this block, you need permission to upload media.":["برای ویرایش این بلوک باید اجازه آپلود رسانهها را داشته باشید."],"(selected block)":["(بلوک انتخابشده)"],"Block tools":["ابزارهای بلوک"],"Permalink":["پیوند"],"This image has an empty alt attribute":["این تصویر یک مشخصه آلت خالی دارد"],"This image has an empty alt attribute; its file name is %s":["این تصویر یک مشخصه آلت خالی دارد؛ نام فایل آن %s است"],"Block area reverted to draft.":["بلوک به پیش نویس برگردانده شد."],"Block area published privately.":["بلوک به طور خصوصی منتشر شد."],"No block areas found in Trash.":["هیچ نواحی بلوکی در زبالهدان پیدا نشد."],"Block\u0004Add New":["افزودن جدید"],"add new on admin bar\u0004Block Area":["ناحیه بلوک"],"Link inserted.":["پیوند درج شد."],"Warning: the link has been inserted but may have errors. Please test it.":["هشدار: این پیوند وارد شده اما ممکن است دچار اشتباه شود. لطفاً آن را امتحان کنید."],"%s block selected.":["%s بلوکها انتخاب شد."],"Thumbnail":["تصویر بندانگشتی"],"Full Size":["اندازه کامل"],"Link selected.":["پیوند انتخاب شد."],"Start writing with text or HTML":["شروع به نوشتن با متن یا HTML"],"Type text or HTML":["تایپ متن یا HTML"],"Block icon":["آیکون بلوک"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["شروع به نوشتن یا تایپ / برای انتخاب یک بلوک"],"Empty block; start writing or type forward slash to choose a block":["بلوک خالی؛ شروع به نوشتن یا تایپ به جلو برای انتخاب یک بلوک"],"Paragraph block":["بلوک پاراگراف"],"Page Break":["برش صفحه"],"Stack on mobile":["پشته شدن در موبایل"],"Annotation":["حاشیه نویسی"],"Drag images, upload new ones or select files from your library.":["تصاویر را بکشید، موارد جدید بارگذاری نمایید یا فایلها را از کتابخانه خود انتخاب نمایید."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["رفعکردن"],"font size name\u0004Huge":["بزرگ"],"font size name\u0004Large":["بزرگ"],"font size name\u0004Medium":["متوسط"],"font size name\u0004Small":["کوچک"],"font size name\u0004Normal":["معمولی"],"keyboard button\u0004Enter":["وارد"],"button label\u0004Import":["وارد كردن"],"button label\u0004Download":["دانلود"],"button label\u0004Embed":["قراردادن"],"block title\u0004Embed":["قراردادن"],"block title\u0004Classic":["کلاسیک"],"block style\u0004Large":["بزرگ"],"block style\u0004Rounded":["گرد شده"],"%s (opens in a new tab)":["%s (در یک زبانه جدید باز میشود)"],"Link edited.":["پیوند ویرایش شده"],"Link removed.":["پیوند حذف شد."],"media":["رسانه"],"Double-check your settings before publishing.":["قبل از انتشار دوباره تنظیمات خود را بررسی کنید."],"Generating preview…":["درحال تولید پیشنمایش..."],"Edit or update the image":["ویرایش یا بروزرسانی تصویر"],"Media":["رسانه"],"Navigate to the nearest toolbar.":["حرکت به نزدیکترین نوار ابزار."],"Document tools":["سند ابزارها"],"Document and block tools":["ابزارهای بلوک و سند"],"Embed a video from your media library or upload a new one.":["یک ویدئو از کتابخانه رسانهای خود قرار دهید یا یک ویدئو جدید آپلود کنید."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["شعری درج نمایید. از قالبهای فاصلهگذاری ویژه استفاده نمایید. یا ترانه آهنگی را نقلقول نمایید."],"Add white space between blocks and customize its height.":["فاصله بین بلوکها را اضافه کنید و ارتفاع آن را سفارشی کنید."],"Insert additional custom elements with a WordPress shortcode.":["عناصر سفارشی اضافی را با یک کد کوتاه وردپرس وارد کنید."],"Create a break between ideas or sections with a horizontal separator.":["یک تفکیک بین ایدهها یا بخشها با جدا کننده افقی ایجاد کنید."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["به متن نقل قول شده تاکید ظاهری بدهید. «در نقل قول کردن دیگران، ما خودمان را نشان میدهیم.» - ژولیو کورتازار"],"Give special visual emphasis to a quote from your text.":["تاکید ویژهای بر روی یک نقل قول از متن خود داشته باشید."],"Start with the building block of all narrative.":["شروع کنید به ساختن بلوک تمامی روایات."],"Separate your content into a multi-page experience.":["محتوای خود را در یک تجربه چند صفحهای جدا کنید."],"Set media and words side-by-side for a richer layout.":["رسانهها و کلمات رسانه کناری را برای یک چیدمان غنیتر تنظیم کنید."],"Media & Text settings":[],"Create a bulleted or numbered list.":["ایجاد یک لیست شمارهبندی شده یا گلولهای."],"Display a list of your most recent comments.":["نمایش فهرستی از آخرین نظرات شما."],"Insert an image to make a visual statement.":["یک تصویر برای ایجاد یک بیانیه تصویری قرار دهید."],"Add custom HTML code and preview it as you edit.":["افزودن کد HTML سفارشی و پیشنمایش آن در حالت ویرایشی."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["بخشهای جدید را معرفی کرده و برای کمک به بازدیدکنندگان (و موتورهای جستجو) که ساختار محتوای شما را درک کنید."],"Display multiple images in a rich gallery.":["نمایش عکس های متعدد در یک گالری بزرگ ."],"Add a link to a downloadable file.":["یک لینک به یک فایل قابل دانلود اضافه کنید."],"Embed videos, images, tweets, audio, and other content from external sources.":["قراردادن فیلمها، تصاویر، توییتها، صدا و سایر مطالب از منابع خارجی."],"Resize for smaller devices":["تغییر اندازه برای دستگاه های کوچکتر"],"This embed may not preserve its aspect ratio when the browser is resized.":["این تعبیه ممکن است نسبت ابعاد آن را هنگام تغییر اندازه مرورگر حفظ نکند."],"This embed will preserve its aspect ratio when the browser is resized.":["این تعبیه با افزایش اندازه مرورگر نسبت ابعاد آن را حفظ خواهد کرد."],"Embed an Animoto video.":["قراردادن یک ویدیو متحرک."],"Embed a Vimeo video.":["قراردادن یک ویدیو Vimeo."],"Embed Flickr content.":["قراردادن محتوای Flickr."],"Embed Spotify content.":["قراردادن محتوای Spotify ."],"Embed SoundCloud content.":["قراردادن محتوای SoundCloud."],"Embed a WordPress post.":["قراردادن یک پست وردپرس."],"Embed an Instagram post.":["قراردادن یک پست اینستاگرام."],"Embed a Facebook post.":["قراردادن یک پست فیسبوک."],"Embed a WordPress.tv video.":["قراردادن ویدیو WordPress.tv."],"Embed a VideoPress video.":["قراردادن یک ویدیو VideoPress."],"Embed a Tumblr post.":["قراردادن یک پست Tumblr."],"Embed a TED video.":["قراردادن یک ویدیو TED."],"Embed Speaker Deck content.":["قراردادن محتوای Speaker Deck."],"Embed a YouTube video.":["قراردادن یک ویدیو یوتیوب."],"Embed SmugMug content.":["قراردادن محتوای SmugMug."],"Embed Slideshare content.":["قراردادن محتوای Slideshare."],"Embed Scribd content.":["قراردادن محتوای Scribd."],"Embed Screencast content.":["قراردادن محتوای Screencast."],"Embed ReverbNation content.":["قراردادن محتوای ReverbNation."],"Embed a Reddit thread.":["قراردادن محتوای Reddit."],"Embed Polldaddy content.":["قراردادن محتوای Polldaddy."],"Embed Mixcloud content.":["قراردادن محتوای Mixcloud ."],"Embed a tweet.":["قراردادن یک توییت."],"Embed Meetup.com content.":["قراردادن محتوای Meetup.com."],"Embed Kickstarter content.":["قراردادن محتوای Kickstarter."],"Embed Issuu content.":["قراردادن محتوای Issuu."],"Embed Imgur content.":["قراردادن محتویات Imgur."],"Embed Hulu content.":["قردادن محتوای Hulu."],"Embed a Dailymotion video.":["قراردادن یک ویدئوی Dailymotion."],"Embed CollegeHumor content.":["قراردادن محتوای CollegeHumor."],"Embed Cloudup content.":["قراردادن محتوای Cloudup."],"Add an image or video with a text overlay — great for headers.":["یک تصویر یا ویدئو را با یک پوشش متن اضافه کنید - عالی برای سربرگها."],"Display code snippets that respect your spacing and tabs.":["نمایش قطعه کدهایی که به فاصله ها و تب ها رجوع میکند."],"Use the classic WordPress editor.":["از ویرایشگر کلاسیک وردپرس استفاده کنید."],"Display a list of all categories.":["نمایش یک لیست از همه دسته ها."],"Embed a simple audio player.":["قراردادن یک پخش کننده صوتی ساده"],"noun\u0004View":["نمایش"],"editor button\u0004Left to right":["چپ به راست"],"Save as Pending":["ذخیره به عنوان در انتظار"],"%s address":["%s آدرس"],"Paste or type URL":["چسباندن یا نوشتن URL"],"Insert from URL":["گنجاندن از URL"],"Block Navigator":["پیمایشگر بلوک"],"Styles":["شیوهنامه ها"],"Advanced panels":[],"Document panels":[],"General":["عمومی"],"Open the block navigation menu.":["منوی کنترل بلوک را باز کنید"],"Work without distraction":["کار بدون حواس پرتی"],"Focus on one block at a time":["تمرکز بر روی یک بلوک در لحظه"],"Access all block and document tools in a single place":["دسترسی به تمام ابزارهای بلوک و سند بصورت واحد"],"Options":["گزینه ها"],"(opens in a new tab)":["(در یک برگه جدید باز می شود)"],"Minutes":["دقیقه ها"],"Hours":["ساعت ها"],"Time":["زمان"],"Year":["سال"],"Day":["روز"],"December":["دسامبر"],"November":["نوامبر"],"October":["اوکتبر"],"September":["سپتامبر"],"August":["آگوست"],"July":["جولای"],"June":["ژوئن"],"May":["مه"],"April":["آپریل"],"March":["مارچ"],"February":["فوریه"],"January":["ژانویه"],"Month":["ماه"],"Date":["تاریخ"],"Go to the first (home) or last (end) day of a week.":["برو به اولین (خانه) یا آخرین (پایان) روز در هفته."],"Home/End":["خانه / پایان"],"Home and End":["خانه و پایان"],"Move backward (PgUp) or forward (PgDn) by one month.":["حرکت به عقب (PgUp) یا جلو (PgDn) در یک ماه."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["بالای صفحه و پایین صفحه"],"Move backward (up) or forward (down) by one week.":["حرکت به عقب (بالا) و جلو (پایین) در هفته."],"Up and Down Arrows":["پیکانهای بالا و پایین"],"Move backward (left) or forward (right) by one day.":["حرکت به عقب (چپ) یا به جلو (راست) تا یک روز."],"Left and Right Arrows":["پیکانهای چپ و راست"],"Select the date in focus.":["تاریخ دقیق را انتخاب کنید."],"Navigating with a keyboard":["هدایت بوسیله صفحه کلید"],"Click the desired day to select it.":["برای انتخاب روز دلخواه روی آن کلیک کنید."],"Click the right or left arrows to select other months in the past or the future.":["برای انتخاب ماه های دیگر در گذشته و یا آینده بر روی راست و چپ کلیک کنید "],"Click to Select":["برای انتخاب کلیک کنید"],"Calendar Help":["راهنمای تقویم"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["از کلیدهای جهتنما برای تغییر رنگ پایه استفاده کنید. حرکت به بالا برای روشنتر شدن رنگ، به پایین برای تیرهتر شدن، سمت چپ برای افزایش اشباع رنگ، و سمت راست برای کاهش اشباع رنگ."],"Choose a shade":["یک سایه انتخاب کنید"],"Change color format":["تغییر سیستم رنگی"],"Color value in HSL":["کد رنگ در سیستم HSL"],"Color value in RGB":["کد رنگ در سیستم RGB"],"Color value in hexadecimal":["کد رنگ در سیستم 16تایی"],"RGB mode active":["حالت RGB فعال است"],"Hex color mode active":["حالت رنگ 16تایی فعال است"],"Hue/saturation/lightness mode active":["حالت رنگ / اشباع / سبک بودن فعال است"],"Move the arrow left or right to change hue.":["برای تغییر رنگ فلش را به چپ و یا راست حرکت دهید."],"Hue value in degrees, from 0 to 359.":["مقدار رنگ در درجه از 0 تا 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["مقدار آلفا از ۰ (شفاف)تا ۱ (کاملا کدر)."],"Stripes":["نوارها"],"Your site doesn’t include support for this block.":["سایت شما شامل پشتیبانی از این بلوک نمیشود."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["سایت شما شامل پشتیبانی از بلوک \"%s\" نمیشود. شما میتوانید این بلوک را دستنخورده باقی بگذارید و یا به طور کامل حذف کنید."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["سایت شما شامل پشتیبانی از بلوک \"%s\" نمیشود. شما می توانید این بلوک را دست نخورده باقی بگذارید، محتوای آن را به یک بلوک سفارشی HTML تبدیل کنید یا آن را کاملا حذف کنید."],"Media area":["ناحیه رسانه"],"Media & Text":["رسانه و متن"],"Show media on right":["نمایش رسانه در راست"],"Show media on left":["نمایش رسانه در چپ"],"Open in New Tab":["باز کردن در زبانه جدید"],"Cover":["رویه"],"Border settings":[],"Medium":["میانه"],"Paste URL or type to search":["URL را بچسبانید یا تایپ کنید تا جستجو شود"],"Terms":["کلمات"],"Your work will be published at the specified date and time.":["نوشتهی شما در تاریخ و ساعت مشخص شده منتشر خواهد شد."],"Are you ready to schedule?":["آیا شما برای زمانبندی آماده هستید؟"],"Always show pre-publish checks.":["همیشه بررسی پیش از انتشار نمایش داده میشود."],"Take Over":["بهعهده گرفتن"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["در حال حاضر یک کاربر دیگر در حال کار کردن روی این نوشته است، ابن یعنی شما نمیتوانید تغییری ایجاد کنید مگر اینکه آن را به عهده بگیرید."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["در حال حاضر %s در حال کار کردن روی این نوشته است، ابن یعنی شما نمیتوانید تغییری ایجاد کنید مگر اینکه آن را به عهده بگیرید."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["یک کاربر دیگر کنترل ویرایش این پست را دارد. نگران نباشید تغییرات شما تا این لحظه ذخیره شده است."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["در حال حاضر %s کنترل این پست را دارد. نگران نباشید، تغییرات شما تا این لحظه ذخیره شدهاست."],"Avatar":["آواتار"],"This post is already being edited.":["این نوشته هماکنون در حال ویرایش است"],"Someone else has taken over this post.":["شخص دیگری این نوشته را دست گرفته است"],"This block contains unexpected or invalid content.":["این بلاک حاوی محتوای غیرمنطقی یا نامعتبر است."],"Resolve Block":["رفع کردن بلوک"],"Convert to HTML":["تبدیل به HTML"],"This block can only be used once.":["این بلوک تنها می تواند یکبار استفاده شود."],"Exit Code Editor":["خروج از ویرایشگر کد"],"Editing Code":["ویرایش کد"],"Solid Color":["رنگ توپُر"],"Main Color":["رنگ اصلی"],"HTML":["HTML"],"Write HTML…":["نوشتن HTML ..."],"Media settings":[],"Overlay":["پوشش"],"Insert Media":["درج رسانه"],"Reusable block imported successfully!":["بلاک بازکاربردپذیر باموفقیت درونریزی شد!"],"Invalid Reusable Block JSON file":["پرونده JSON بلاک بازکاربردپذیر نامعتبر است"],"Invalid JSON file":["پرونده JSON نامعتبر"],"Import from JSON":["درونریزی از JSON"],"Backtick":["پشتی"],"Period":["دوره زمانی"],"Comma":["کاما"],"Change type of %d block":["تغییر نوع بلوک %d"],"Current":["جاری"],"After Conversion":["پس از تبدیل"],"Change alignment":["تغییر ترازبندی"],"Change text alignment":["تغییر ترازبندی متن"],"%d block":["بلوک(های) %d"],"Forward-slash":["جلو-عقب"],"No archives to show.":["بایگانی برای نمایش وجود ندارد"],"This file is empty.":["این فایل خالی است."],"Sorry, this file type is not supported here.":["متاسفانه، این نوع فایل در اینجا پشتیبانی نمی شود."],"Manage all reusable blocks":[],"Title":["عنوان"],"Fullscreen mode":[],"Beautiful landscape":["منظره زیبا"],"Close panel":["بستن پنل"],"Convert to Classic Block":["تبدیل به بلوک کلاسیک"],"Remove Poster Image":["حذف پوستر تصویر"],"Select Poster Image":["تصویر پوستر را انتخاب کنید"],"Poster Image":["تصویر پوستر"],"This block is deprecated. Please use the Columns block instead.":["این بلاک قدیمی شده. لطفا از بلاک ستونها استفاده کنید."],"Text Columns (deprecated)":["متن ستونی (قدیمی شده)"],"Create":["ایجاد"],"Row Count":["تعداد ردیف"],"Column Count":["تعداد ستون"],"This block is deprecated. Please use the Paragraph block instead.":["این بلوک منقضی شده است لطفا به جای آن از بلوک پاراگراف استفاده کنید."],"Subheading (deprecated)":["زیرعنوان (منسوخ)"],"blockquote":["نقل قول"],"Change the block type after adding a new paragraph.":["بعد از اضافه کردن یک پاراگراف جدید نوع بلوک را تغییر دهید."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["برچسب ها به کاربران و موتورهای جستجو کمک می کنند به سایت شما هدایت شوند و محتوای شما را پیدا کنند. چند کلمه کلیدی برای توصیف پست خود اضافه کنید."],"Add tags":["افزودن برچسب"],"Apply the \"%1$s\" format.":["درخواست \"%1$s\" فرمت."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["موضوع شما از فرمت های ارسالی برای برجسته کردن انواع مختلف محتوا مانند تصاویر و ویدیوها استفاده می کند. یک قالب ارسالی برای مشاهده این ظاهر خاص وارد کنید."],"Use a post format":["از فرمت نوشته استفاده کنید"],"Insert After":["پس از وارد کردن"],"Insert Before":["قبل از وارد کردن"],"Move %1$d block from position %2$d down by one place":["حرکتدادنِ %1$d بلاک از جایگاه %2$d بهاندازهی یک بلاک به پایین"],"Move %1$d block from position %2$d up by one place":["حرکتدادنِ %1$d بلاک از جایگاه %2$d بهاندازهی یک بلاک به بالا"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["فیلم"],"Insert a new block before the selected block(s).":["بلاکی تازه قبل از بلاک(های) انتخابشده درج کنید."],"Remove the selected block(s).":["حذف بلوک(های) انتخابشده."],"Duplicate the selected block(s).":["تکثیر بلوک(های) انتخابشده."],"Block shortcuts":["میانبرهای بلوک"],"Clear selection.":["حذف انتخاب"],"Select all text when typing. Press again to select all blocks.":["هنگام تایپ تمام متن را انتخاب کنید برای انتخاب تمام بلوک ها دوباره فشار دهید."],"Selection shortcuts":["میانبرهای منتخب"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["حرکت به بخش قبلی ویرایشگر."],"Navigate to the next part of the editor.":["حرکت به بخش بعدی ویرایشگر."],"Show or hide the settings sidebar.":["نوار کناری تنظیمات را نمایش داده یا پنهان کنید."],"Redo your last undo.":["انجام دوباره آخرین لغو انجامشده شما."],"Undo your last changes.":["لغوانجام آخرین تغییرات شما."],"Save your changes.":["تغییرات خود را ذخیره کنید."],"Global shortcuts":["میانبرهای عمومی"],"Remove a link.":["حذف یک لینک."],"Convert the selected text into a link.":["تبدیل متن انتخاب شده به یک لینک."],"Underline the selected text.":["زیرخط دار کردن متن انتخابشده."],"Make the selected text italic.":["کجکردن متن انتخابشده."],"Make the selected text bold.":["ضخیمکردن متن انتخابشده."],"Text formatting":["فرمت متن"],"Insert a new block after the selected block(s).":["بعد از بلوک (های) انتخاب شده، یک بلوک جدید وارد کنید."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["تشکر برای آزمایش گوتنبرگ!"],"Help build Gutenberg":["راهنما ساختن گوتنبرگ"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["اگر میخواهید درباره نحوه ساخت بلوکهای اضافی بیشتر بدانید، یا اگر به کمک به پروژه علاقهمند هستید به مخزن GitHub سر بزنید."],"The WordPress community":["جامعه وردپرس"],"Code is Poetry":["کد شعر است"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["شما میتوانید هر بلوکی که دوست دارید ایجاد کنید، استاتیک یا پویا، تزئینی یا ساده. در اینجا یک بلوک بالایی است:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["هر بلوک میتواند به این ترازوها برسد. بلوک جاسازی نیز آنها را دارد و از جعبه پاسخگو است:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["عکس بالا یک گالری با دو تصویر است. این یک روش سادهتر برای ایجاد طرحهای جذاب بصری است، بدون این که مجبور باشید با شناور شدن سر و کار داشته باشید. همچنین میتوانید به راحتی گالری را با استفاده از تعویض بلوک به تصاویر انفرادی تبدیل کنید."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["مطمئنا، تصویر تمام عیار می تواند بسیار بزرگ باشد. اما گاهی اوقات تصویر ارزشش را دارد."],"Accessibility is important — don’t forget image alt attribute":["قابلیت دسترسی مهم است & mdash؛ ویژگی alt تصویر را فراموش نکن"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["اگر شما ترکیب جدید گسترده و تمام عیار با گالریها را ترکیب کنید، میتوانید طرح بسیار غنی از رسانهها را بسیار سریع ایجاد کنید:"],"Media Rich":["رسانه غنی"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["شما میتوانید با کشیدن یک اسلایدر در نوار کناری مقدار ستونها را در گالریهای خود تغییر دهید."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["بلوک میتواند هر چیزی که نیاز دارید باشد به عنوان مثال، ممکن است بخواهید یک نقل قول ضعیف را به عنوان بخشی از متن متن خود اضافه کنید، یا ممکن است ترجیح دهید یک نمایشگر غول پیکر تلقی کنید. همه این گزینهها در داخل درج شده است."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["اطلاعات مربوط به منبع نقل قول یک فیلد متنی جداگانه است، شبیه به زیرنویسها در زیر تصاویر، بنابراین ساختار نقل قول محافظت میشود حتی اگر شما انتخاب، اصلاح و یا حذف منبع. همیشه آسان است برای اضافه کردن آن به عقب."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["مزیت بزرگی از بلوکها این است که شما می توانید آنها را در جای خود ویرایش کنید و محتوای خود را به طور مستقیم دستکاری کنید. به جای داشتن زمینههایی برای ویرایش چیزهایی مانند منبع نقل قول یا متن یک دکمه، میتوانید محتوای آن را به طور مستقیم تغییر دهید. سعی کنید که نقل قول زیر را ویرایش کنید:"],"Visual Editing":["ویرایش دیداری"],"And Lists like this one of course :)":["و لیستها البته مانند این یکی :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["طرح بندی بلوکها، شبهه دکمهها، تصاویر شاخص، جداکنندهها و غیره."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["قراردادن، مانند یوتیوب، تویتها، و یا سایر پستهای وردپرس."],"Galleries":["گالریها"],"Images & Videos":["فیلم و تصاویر"],"Text & Headings":["متن و عنوان"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["تصور کنید همه چیزهایی که وردپرس می تواند انجام دهد به شما در سرعت و در همان مکان در رابط کاربری در دسترس است. بدون نیاز به تشخیص تگ های HTML، کلاس ها، و یا به یاد داشته باشید نحو مختصر کوتاه. این روح پشت ورودی است - دکمه (+)
که در اطراف ویرایشگر مشاهده می کنید، که به شما اجازه می دهد تمام بلوک های موجود در لیست را مرور کنید و آنها را در پست خود اضافه کنید. پلاگین ها و تم ها قادر به ثبت نام خود، باز کردن همه نوع از امکانات برای ویرایش و ویرایش غنی است."],"The Inserter Tool":["ابزار درج کننده"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["اگر پوسته شما از آن پشتیبانی کند دکمه \"عریض\" را در نوار ابزار تصویر مشاهده خواهید کرد. آن را امتحان کنید."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["یک تصویر ارزش هزار کلمه دارد"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":["... مانند این یکی، که راست چین شده است."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["آنچه که در حال خواندن هستید text block است که پایه اصلی همه است. بلوک متن دارای کنترل های خاصی است که به طور آزادانه در اطراف پست منتقل می شود ..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["هدف این ویرایشگر جدید افزودن محتوای غنی به وردپرس ساده و لذت بخش است. این پست کامل شامل pieces of content است - تا حدودی شبیه به آجر LEGO - که میتوانید با آن حرکت کنید و با آن ارتباط برقرار کنید. حرکت مکان نما خود را در اطراف و شما متوجه بلوک های مختلف نور با خطوط و فلش. فلش را فشار دهید تا بلوک را به سرعت تغییر دهید، بدون اینکه ترس از دست دادن چیزهایی را در روند کپی و چسباندن داشته باشید."],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["به ویرایشگر گوتنبرگ خوش آمدید"],"block name\u0004More":["بیشتر"],"button to expand options\u0004More":["بیشتر"],"Are you sure you want to unschedule this post?":["آیا مطمئن هستید که میخواهید این پست را غیرقابل برنامه ریزی کنید؟"],"Alt Text (Alternative Text)":["متن آلت (متن جایگزین)"],"Reusable Block":["بلوک قابل استفاده مجدد"],"Unique identifier for the object.":["شناسه منحصر به فرد برای این شی."],"Untitled Reusable Block":["بلاک بازکاربردپذیر بدون عنوان"],"Small":["کوچک"],"Reusable":["بازکاربردپذیر"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["نگه داشتن بعنوان HTML"],"Edit URL":["ویرایش لینک"],"Color settings":[],"The response is not a valid JSON response.":["جواب پاسخ جیسون معتبر نیست."],"Editor publish":["ویرایشگر عمومی"],"Muted":["سکوت"],"Video settings":[],"recent comments":["دیدگاههای اخیر"],"Latest Comments":["آخرین نظرات"],"Display Excerpt":["نمایش چکیده"],"Display Date":["تاریخ نمایش"],"Display Avatar":["نمایش آواتار"],"Latest comments settings":[],"Number of Comments":["تعداد دیدگاهها"],"Background Opacity":["وضوح پس زمینه"],"Auto":["خودکار"],"Preload":["پیشبارگذاری"],"Audio settings":[],"Display a monthly archive of your posts.":["نمایش یک آرشیو ماهانه از پستهای خود."],"Display as Dropdown":["نمایش به عنوان فهرست بازشو"],"Show Post Counts":["نمایش تعداد نوشتهها"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["پشتیبانی"],"No comments to show.":["تعداد دیدگاه جهت نمایش."],"%1$s on %2$s":["%1$s در %2$s"],"Select Post":["انتخاب نوشته"],"Select Week":["انتخاب هفته"],"Select Day":["انتخاب روز"],"Select Month":["انتخاب ماه"],"Select Year":["انتخاب سال"],"Archives":["بایگانی ها"],"Very dark gray":["طوسی خیلی تیره"],"Cyan bluish gray":["خاکستری مایل به آبی"],"Very light gray":["طوسی خیلی روشن"],"Vivid cyan blue":["آبی فیروزهای زنده"],"Pale cyan blue":["آبی فیروزهای کم رنگ"],"Vivid green cyan":["سبز فیروزهای زنده"],"Light green cyan":["سبز روشن"],"Luminous vivid amber":["کهربایی روشن درخشان"],"Luminous vivid orange":["نارنجی روشن درخشان"],"Vivid red":["قرمز روشن"],"Pale pink":["صورتی کمرنگ"],"Inline image":["تصویر توکار"],"Available block types":["انواع بلوک موجود"],"Transform To:":["تبدیل به:"],"Remove Block":["حذف بلوک"],"Open publish panel":["باز کردن پنل انتشار"],"Dots":["نقطه چین"],"Wide Line":["خط ممتد"],"Large":["بزرگ"],"Show download button":["نمایش دکمه دانلود"],"Download button settings":["تنظیمات دکمه دانلود"],"Link To":["لینک به"],"Text link settings":["تنظیمات پیوند متن"],"download":[],"pdf":["pdf"],"document":["سند"],"Copy URL":["کپی آدرس"],"Write file name…":["نام پرونده را بنویسید..."],"File":["فایل"],"A single column within a columns block.":["یک ستون تنها در داخل یک بلوک ستون."],"Column":["ستون"],"Outline":["خارج خط"],"Loop":["حلقه"],"Autoplay":["پخش خودکار"],"Playback Controls":["کنترل پخش"],"Close dialog":["بستن گفتگو"],"Sorry, this file type is not permitted for security reasons.":["با عرض پوزش، این نوع پرونده به دلایل امنیتی مجاز نیست."],"Disable tips":["غیر فعال کردن راهنمایی ها"],"Got it":["فهمیدم"],"See next tip":["دیدن نکته بعدی"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["وقتی آماده هستید، کار خود را برای بررسی ارسال کنید، و یک ویرایشگر قادر خواهد بود آن را برای شما تأیید کند."],"Are you ready to submit for review?":["آیا آماده ارسال برای بازبینی هستید؟"],"Replace image":["جایگزینی تصویر"],"Remove image":["حذف تصویر"],"Error while uploading file %s to the media library.":["خطا هنگام بارگزاری فایل %s به کتابخانه رسانه."],"This file exceeds the maximum upload size for this site.":["این فایل بیش از حداکثر اندازه آپلود برای این سایت است."],"View the autosave":["نمایش ذخیره خودکار"],"There is an autosave of this post that is more recent than the version below.":["یک ذخیره خودکار از این پست وجود دارد که جدیدتر از نسخه زیر است."],"Autosaving":["ذخیره خودکار"],"Enter URL here…":["URL را اینجا وارد کنید..."],"Pin to toolbar":["چسباندن به نوار ابزار"],"Unpin from toolbar":["برداشتن از نوار ابزار"],"Insert a table — perfect for sharing charts and data.":["جدول را وارد کنید - مناسب برای به اشتراک گذاری نمودارها و داده ها."],"Fixed width table cells":["سلولهای جدول با پهنای ثابت"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["متنی اضافه کنید که به فواصل و تب ها احترام بگذارد و همچنین اجازه طراحی ظاهر را بدهد."],"Display a list of your most recent posts.":["نمایش یک لیست از آخرین پست های شما."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["یک بلوک را که محتوای دیگر سایتها مانند توئیتر، اینستاگرام یا یوتوب را نمایش میدهد، اضافه کنید."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["یک بلوک را که محتوا را در چندین ستون نمایش می دهد اضافه کنید، سپس هر نوع بلوک محتوایی را که دوست دارید اضافه کنید."],"Error loading block: %s":["خطا در بارگیری بلوک: %s"],"Unknown error":["ارور ناشناخته"],"Embed Handler":["جاسازی نگهدارنده"],"term\u0004Remove %s":["حذف %s"],"Copy the permalink":["کپی پیوند یکتا"],"Permalink copied":["پیوند یکتا کپی شد"],"Height in pixels":["ارتفاع در پیکسل"],"Spacer settings":[],"Spacer":["فاصله"],"Toggle to show a large initial letter.":["تغییر وضعیت برای نمایش بزرگ حرف اول."],"Showing large initial letter.":["نمایش بزرگ حرف شروع."],"Name:":["نام:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["حذف آیتم"],"Color code: %s":["کد رنگ: %s"],"Skip to the selected block":["رفتن به بلوک انتخاب شده"],"Publish…":["انتشار..."],"Schedule…":["زمانبندی..."],"Edit post permalink":["ویرایش پیوند یکتای نوشته"],"Show Block Settings":["نمایش تنظیمات بلاک"],"Hide Block Settings":["مخفی کردن تنظیمات بلوک"],"Block settings closed":["تنظیمات بلوک بسته شد"],"Close plugin":["بستن افزونه"],"Editor settings":["تنظیمات ویرایشگر"],"Link settings":["تنظیمات پیوند"],"Unlink":["بدون لینک"],"Page break":["برش صفحه"],"pagination":["صفحهبندی"],"next page":["صفحه بعدی"],"Image Size":["اندازه تصویر"],"Height":["طول"],"Width":["عرض"],"Image Dimensions":["ابعاد تصویر"],"Thumbnails are not cropped.":["تصاویر بندانگشتی بریده نمیشوند."],"Thumbnails are cropped to align.":["تصاویر بندانگشتی به هم چسبیده می شوند."],"Media Library":["کتابخانه رسانه"],"Advanced":["موارد بیشتر"],"Add item":["این مورد را اضافه کنید"],"Reset the template":["الگو را بازنشانی کنید"],"Keep it as is":["آن را حفظ کنید"],"The content of your post doesn’t match the template assigned to your post type.":["محتوای نوشته شما مطابق با الگوی اختصاص یافته به نوع نوشته شما نیست."],"Resetting the template may result in loss of content, do you want to continue?":["بازنشانی الگو ممکن است منجر به از دست دادن محتوای شود، آیا می خواهید ادامه دهید؟"],"Document Statistics":["آمار سند"],"is now scheduled. It will go live on":["اکنون برنامه ریزی شده است ادامه خواهد داد"],"Scheduled":["زمانبندیشده"],"Scheduling…":["در حال زمانبندی…"],"Code editor selected":["ویرایشگر کد انتخاب شده است"],"Visual editor selected":["ویرایشگر ظاهریانتخاب شده است"],"Plugins":["افزونهها"],"Custom Size":["انداره سفارشی"],"Layout elements":[],"term\u0004%s removed":["%s حذف شد"],"term\u0004%s added":["%s افزوده شد"],"imperative verb\u0004Preview":["پیشنمایش"],"Block deleted.":["بلاک حذف شد."],"Block updated.":["بلاک بروزرسانی شد."],"Block created.":["بلاک ایجاد شد."],"Trashing failed":["حذف کردن ناموفق"],"Updating failed.":["بروزرسانی ناموفق بود."],"Scheduling failed.":["زمانبندی ناموفق بود."],"Publishing failed.":["انتشار ناموفق بود."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["شما تغییرات ذخیره نشده دارید اگر ادامه دهید، آنها از دست خواهند رفت."],"Document Outline":["طرح اسناد"],"Paragraphs":["پاراگرافها"],"Headings":["تیترها"],"Words":["واژهها"],"Content structure":["ساختار محتوا"],"Public":["عمومی"],"Protected with a password you choose. Only those with the password can view this post.":["حفاظت شده با کلمه عبور را انتخاب کردید. تنها کسانی که کلمه عبور را داشته باشند می توانند نوشته را ببینند."],"Password Protected":["حفاظت شده با کلمه عبور"],"Only visible to site admins and editors.":["فقط برای مدیر سایت و ویرایشگر قابل مشاهده."],"Private":["خصوصی"],"Visible to everyone.":["برای همه قابل مشاهده."],"Post Visibility":["قابل مشاهده بودن نوشته"],"Would you like to privately publish this post now?":["آیا می خواهید این نوشته را بصورت خصوصی منتشر کنید؟"],"Use a secure password":["استفاده از کلمه عبور من"],"Create password":["ایجاد کلمه عبور"],"Move to Trash":["انتقال به زبالهدان"],"Parent Term":["شرط والد"],"Parent Category":["دسته والد"],"Add new term":["افزودن شرط جدید"],"Add new category":["افزودن دسته جدید"],"Term":["شرط"],"Tag":["برچسب"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["آیا مطمئنید می خواهید این نوشته را از حالت انتشار خارج نمائید؟"],"Immediately":["بلافاصله"],"Save Draft":["ذخيره پیشنویس"],"Saving":["ذخیرهسازی"],"Publish:":["انتشار:"],"Visibility:":["قابلیت مشاهده: "],"Are you ready to publish?":["آیا آماده انتشار هستید؟"],"Copy Link":["کپی پیوند"],"What’s next?":["گام بعدی چیست؟"],"is now live.":["اکنون زنده است."],"Published":["منتشر شده"],"Schedule":["زمان بندی کردن"],"Update":["بروزرسانی"],"Submit for Review":["ارسال برای بازبینی"],"Updating…":["در حال بروز رسانی…"],"Publishing…":["درحال انتشار…"],"Allow pingbacks & trackbacks":[],"Permalink:":["پیوندیکتا:"],"Pending review":[],"%d Revision":["%d بازبینی"],"Suggestion:":["پیشنهادی:"],"Post Format":["نوع نوشته"],"Chat":["چت"],"Status":["وضعیت"],"Standard":["استاندارد"],"Aside":["کنارهم"],"Featured image":["تصویر شاخص"],"Set featured image":[],"Learn more about manual excerpts":["یادگیری بیشتر درباره خلاصه دستی"],"Write an excerpt (optional)":["نوشتن خلاصه (اختیاری)"],"Allow comments":[],"Template:":["قالب:"],"no parent":["بدون والد"],"no title":["بدون عنوان"],"Order":["سفارش"],"No blocks found.":["بلاکی یافت نشد."],"%d result found.":["%d نتیجه یافت شد."],"Saved":["ذخیره شد"],"Embeds":["جاسازیها"],"Blocks":["بلوکها"],"Search for a block":["جستجو برای بلوک"],"Add block":["افزودن بلوک"],"Copy Error":["کپی خطا"],"Copy Post Text":["کپی متن نوشته"],"Attempt Recovery":["تلاش برای بازیابی"],"The editor has encountered an unexpected error.":["ویرایشگر با یک خطای نابهنگام مواجه شد."],"Undo":["بازگردانی"],"Redo":["بازانجام"],"(Multiple H1 headings are not recommended)":["(استفاده چندگانه از H1 توصیه نمی شود)"],"(Your theme may already use a H1 for the post title)":["(قالب شما شاید از H1 برای عنوان متن استفاده می کند)"],"(Incorrect heading level)":["(سطح تیتر اشتباه)"],"(Empty heading)":["(تیتر خالی)"],"Block Styles":["استایلهای بلاک"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["آیا مطمئنید می خواهید بلاک اشتراک گذاری شده را حذف کنید؟\n\nان بصورت کلی تمام نوشتهها و برگههایی که از آن استفاده شده است حذف می کند."],"Convert to Regular Block":["تبدیل به بلاک معمولی"],"More options":["تنظیمات بیشتر"],"Edit visually":["ویرایش بصری"],"Duplicate":["تکثیر"],"Blocks cannot be moved down as they are already at the bottom":["بلاکهایی که نمی توانند به پایین منتقل شوند از انجا که خودشان پایین هستند"],"Blocks cannot be moved up as they are already at the top":["بلاکهایی که نمی توانند به بالا منتقل شوند از آنجا که خودشان در بالا هستند"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["بلاک %s تنها یک بلاک است، و نمی تواند منتقل شود"],"Edit as HTML":["ویرایش به عنوان HTML"],"Convert to Blocks":["تبدیل به بلاکها"],"Block: %s":["بلوک: %s"],"This block has encountered an error and cannot be previewed.":["این بلاک دارای خطایی است و نمی تواند پیش نمایش داشته باشد."],"No block selected.":["بلوکی انتخاب نشده است."],"Transform into:":["تبدیل شدن به:"],"Remove":["حذف کردن"],"Find original":["یافتن اصلی"],"Copy all content":[],"Copied!":["کپی شد!"],"Additional settings are now available in the Editor block settings sidebar":["تنظیمات اضافی در نوار کناری تنظیمات پیشرفته ویرایشگر موجود است"],"Visibility":["قابل مشاهده بودن"],"Status & visibility":[],"Page attributes":[],"Block":["بلوک"],"Document":["سند"],"Close settings":["تنظیمات بستن"],"Editor content":["محتوای ویرایشگر"],"Tools":["ابزارها"],"Editor":["ویرایشگر"],"Code editor":[],"Visual editor":[],"Editor top bar":["نوارابزار ویرایشگر"],"Settings":["تنظیمات"],"Reset":["بازنشانی"],"Dismiss this notice":["نادیده گرفتن این اعلان"],"Item removed.":["مورد حذف شد."],"Item added.":["مورد افزوده شد."],"Drop files to upload":["برای بارگذاری پرونده بکشید و رها کنید"],"PM":["بعدازظهر"],"AM":["ق.ظ"],"An unknown error occurred.":["خطای ناشناخته ای رخ داد."],"No results.":["بدون نتیجه."],"%d result found, use up and down arrow keys to navigate.":["%d نتیجه یافت شد، از نشانهگر بالا و پایین برای سیر در آن استفاده کنید."],"(no title)":["(بدون عنوان)"],"URL":["لینک "],"Submit":["ارسال"],"Close":["بسته"],"Insert link":["افزودن پیوند"],"Edit link":["ویرایش پیوند"],"Link":["پیوند"],"Strikethrough":["از بین بردن"],"Italic":["کج"],"Bold":["ضخیم"],"Remove link":["حذف پیوند"],"Number of items":["تعداد موارد"],"All":["همه"],"Category":["دسته"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["قدیم به جدید"],"Newest to Oldest":["جدید به قدیم"],"Order by":["مرتبسازی براساس"],"Select":["انتخاب"],"Select or Upload Media":["انتخاب یا بارگذاری چندرسانه"],"Video":["ویدئو"],"Write…":["نوشتن…"],"poetry":["شعر"],"Verse":["شعر"],"New Column":["ستون جدید"],"Delete Column":["حذف ستون"],"Add Column After":["افزودن ستون به بعد"],"Add Column Before":["افزودن ستون به قبل"],"Delete Row":["حذف ردیف"],"Add Row After":["افزودن ردیف به بعد"],"Add Row Before":["افزودن ردیف به قبل"],"Edit table":["ویرایش جدول"],"Table":["جدول"],"Write subheading…":["نوشتن توضیحات برای عنوان"],"Write shortcode here…":["نوشت کدکوتاه اینجا…"],"Shortcode":["کدکوتاه"],"divider":["تقسیم کننده"],"horizontal-line":["خط جداکننده افقی"],"Separator":["جداکننده"],"Quote":["نقل قول"],"Write citation…":["نوشتن استناد…"],"Write quote…":["نوشتن نقل قول…"],"Pullquote":["کشیدن نقل قول"],"Write preformatted text…":["نوشتن متن پیش فرمت شده…"],"Preformatted":["پیش فرمت شده"],"text":["متن"],"Paragraph":["پاراگراف"],"Font Size":["اندازه فونت"],"Drop Cap":["راس افتادن"],"Text settings":[],"Read more":["ادامه مطلب"],"Write list…":["نوشتن لیست…"],"numbered list":["لیست عددی"],"ordered list":["لیست مرتب شده"],"bullet list":["لیست نقطهای"],"Indent list item":["مورد لیست فرورفته"],"Outdent list item":["مورد لیست فرونرفته"],"Convert to ordered list":["تبدیل به لیست مرتب"],"Convert to unordered list":["تبدیل به لیست بدون ترتیب"],"List":["لیست"],"recent posts":["نوشتههای اخیر"],"No posts found.":["نوشته ای یافت نشد."],"Latest Posts":["نوشتههای اخیر"],"Display post date":["نمایش تاریخ نوشته"],"Grid view":["نمای جدولی"],"List view":["نمای لیستی"],"photo":["تصویر"],"Image settings":[],"Image":["تصویر"],"Preview":["پیشنمایش"],"embed":["جاسازی"],"Custom HTML":["کد سفارشی HTML"],"subtitle":["زیرعنوان"],"title":["عنوان"],"Heading":["تیتر"],"Write heading…":["نوشتن عنوان…"],"Heading %d":["تیتر %s"],"Level":["سطح"],"Heading settings":[],"photos":["تصاویر"],"images":["تصاویر"],"None":["هیچیک"],"Media File":["پرونده چندرسانه"],"Attachment Page":["پیوست برگه"],"Link to ":[],"Crop Images":["برش تصاویر"],"Gallery settings":[],"Gallery":["گالری"],"Classic":["کلاسیک"],"video":["ویدئو"],"audio":["صوت"],"music":["موسیقی"],"image":["تصویر"],"blog":["بلاگ"],"post":["نوشته"],"Embedded content from %s":["جاسازی کردن محتوا از %s"],"Enter URL to embed here…":["آدرس پیوند را برای جاسازی وارد کنید…"],"%s URL":["%s آدرس اینترنتی"],"Embedding…":["جاسازی…"],"Write title…":["نوشتن عنوان…"],"Fixed Background":["پس زمینه ثابت"],"Edit image":["ویرایش تصویر"],"Columns":["ستونها"],"Experiments":["آزمایش گوتنبرگ"],"Code":["کد"],"Write code…":["نوشتن کد…"],"Categories":["دستهها"],"Show Hierarchy":["نمایش سلسله مراتبی"],"Show post counts":["نمایش تعداد نوشتهها"],"Categories settings":[],"Add text…":["افزودن متن…"],"Button":["دکمه"],"Apply":["اعمال کردن"],"Text Color":["رنگ متن"],"Background Color":["رنگ پسزمینه"],"Block has been deleted or is unavailable.":["بلاک حذف شده یا دردسترس نمی باشد."],"Reusable blocks":[],"Cancel":["لغو"],"Edit":["ویرایش"],"Write caption…":["نوشتن عنوان…"],"Use URL":["بکارگیری URL"],"Audio":["صدا"],"Upload":["بارگذاری"],"Additional CSS Class(es)":["کلاس(های) CSS اضافی"],"HTML Anchor":["لنگر HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["این ترکیب رنگ ممکن است برای افراد هنگام خواندن مشکل ایجاد کند. پشت زمینه روشنتر یا رنگ متن تاریکتر انتخاب کنید."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["این ترکیب رنگ ممکن است برای افراد هنگام خواندن مشکل ایجاد کند. پشت زمینه تاریکتر یا رنگ متن را روشنتر انتخاب کنید."],"Clear":["پاک کردن"],"Custom color picker":["مجموعه سفارشی رنگ"],"Color: %s":["رنگ: %s"],"Full width":[],"Wide width":[],"Widgets":["ابزارکها"],"Formatting":["فرمت کردن"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["بر مبنای صنعت حروفچینی چاپ از سال 1440. این افزونه در حال توسعه بعنوان ویرایشگر جدید بلاک در هسته است."],"Add title":["افزودن عنوان"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["نویسنده"],"Slug":["نامک"],"Discussion":["گفتگو"],"Custom fields":[],"Excerpt":["چکیده"],"Publish":["انتشار"],"Metadata":["داده متا"],"Save":["ذخیره"],"Documentation":["مستندات"],"Select Category":["انتخاب دسته"],"(Untitled)":["(بدون عنوان)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["گوتنبرگ به وردپرس %s یا جدیدتر برای عملکرد صحیح نیاز دارد. لطفا قبل از فعالسازی گوتنبرگ وردپرس را ارتقاء دهید."],"Gutenberg Team":["تیم گوتنبرگ"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["گوتنبرگ"],"Demo":["پیشنمایش"],"%s ago":["%s قبل"],"Block style name must be a string.":["نام نوع بلاک باید رشته باشند."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_fr.json b/bundle/android/raw/i18ncache_data_fr.json
new file mode 100644
index 0000000000..a9b4de8dee
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_fr.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Afficher les icônes de sous-menu pour les éléments de niveau supérieur"],"Display settings":["Réglages d’affichage"],"Choose variation":["Choisir une variante"],"Angle":["Angle"],"%s Block":["%s bloc"],"%1$s Block. %2$s":["%1$s bloc. %2$s"],"%s Block. Column %d":["%s bloc. Colonne %d"],"%1$s Block. Column %2$d. %3$s":["%1$s bloc. Colonne %2$d. %3$s"],"%s Block. Row %d":["%s block. Ligne %d"],"%1$s Block. Row %2$d. %3$s":["%1$s bloc. Ligne %2$d. %3$s"],"Post Excerpt":["Extrait de la publication"],"Post Date":["Date de la publication"],"No Date":["Aucune date"],"Post Author":["Auteur de la publication"],"Choose":["Choisir"],"twentytwenty":["twentytwenty"],"Theme":["Thème"],"Choose a template part by slug and theme, or create a new one.":["Choisir un élément de modèle par slug et thème, ou créez-en un nouveau."],"Error adding template.":["Erreur lors de l’ajout du modèle."],"Footer label":["Libellé du pied de page"],"Header label":["Libellé de l’en-tête"],"Unsupported":["Non pris en charge"],"The description will be displayed in the menu if the current theme supports it.":["La description sera affichée dans le menu si le thème actuel la prend en charge."],"Level %1$s. %2$s":["Niveau %1$s. %2$s"],"Level %s. Empty.":["Niveau %s. Vide."],"Empty":["Vide"],"Search results for %s":["Résultats de recherche pour %s"],"Recently updated":["Mis à jour récemment"],"Multiple selected blocks":["Multiples blocs sélectionnés"],"By %s":["Par %s"],"Inspector":["Inspecteur"],"Site editor advanced settings.":["Réglages avancés de l’éditeur de site."],"(beta)":["(béta)"],"Site Editor":["Éditeur de site"],"Site editor top bar.":["Barre supérieure de l’éditeur de site."],"Briefly describe the link to help screen reader users.":["Décrivez brièvement le lien pour aider les utilisateur·ices de lecteurs d’écrans."],"Link Label":["Libellé du lien"],"%s label":["Libellé %s"],"poem":["poème"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAIBLES LUEURS DE L’AUBE - 1940 (MINIATURE)\nLa fenêtre, très petite au loin, est illuminée.\nTout autour, l’écran presque totalement noir. À présent, tandis que la caméra se déplace lentement vers la fenêtre qui est presque un timbre-poste dans le cadre, d’autres formes apparaissent ;"],"Full Post":["Publication complète"],"Show:":["Afficher :"],"Create from all top-level pages":["Créer à partir de toutes les pages de niveau supérieur"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Inviter les visiteurs à effectuer une action avec un lien ayant la forme d’un bouton."],"Buttons":["Boutons"],"Background":["Arrière-plan"],"Background & Text Color":["Couleur d’arrière-plan et de texte"],"Images Size":["Taille des images"],"Remove multiple selected blocks.":["Retirer les blocs sélectionnés."],"(%s: gradient %s)":["(%s : dégradé %s)"],"(%s: color %s)":["(%s : couleur %s)"],"(Gradient: %s)":["(dégradé : %s)"],"(Color: %s)":["(couleur : %s)"],"Here's a detailed guide.":["Voici un guide détaillé."],"New to the Block Editor? Want to learn more about using it? ":["Vous découvrez l’éditeur de blocs ? Vous souhaitez en savoir plus sur son utilisation ?"],"Learn how to use the Block Editor":["Apprenez à utiliser l’éditeur de blocs"],"Help":["Aide"],"https://wordpress.org/support/article/wordpress-editor/":["https://fr.wordpress.org/support/article/wordpress-editor/"],"%s block icon":["Icône du bloc %s"],"Submit for Review…":["Envoi pour relecture…"],"Update…":["Mise à jour…"],"Select items to save.":["Sélectionner des éléments à enregistrer."],"What do you want to save?":["Que voulez-vous enregistrer ?"],"Untitled":["Sans titre"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["L’éditeur inclut des fonctionnalités expérimentales qui sont utilisables tout au long de leur développement. Sélectionnez celles que vous souhaiteriez activer. Ces fonctionnalités vont probablement être modifiées, donc évitez de les utiliser en production."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Activer l’édition complète du site (Attention : cela remplacera votre thème et pourrait causer des modifications irréversibles sur votre site. Nous recommandons d’utiliser cela sur un environnement de développement uniquement)."],"Site Editor (beta)":["Éditeur de site (béta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Un « bloc » est un terme abstrait utilisé\n// pour décrire une unité de balisage qui\n// lorsque elle est utilisée avec d’autres,\n// forme le contenu ou la mise en page\n// d’une publication.\nregisterBlockType( name, settings );"],"You are probably offline.":["Vous êtes probablement hors ligne."],"Justify items right":["Justifier les éléments à droite"],"Justify items center":["Justifier les éléments au centre"],"Justify items left":["Justifier les éléments à gauche"],"Change items justification":["Modifier la justification des éléments"],"The media file has been replaced":["Le fichier média a été remplacé."],"Replace":["Remplacer"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Vous êtes actuellement en mode édition. Pour revenir au mode navigation, appuyez sur échap."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Vous êtes actuellement en mode navigation. Pour sortir du mode navigation et modifier le bloc sélectionné, appuyez sur entrée."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Utiliser les touches gauche ou droite ou glisser puis déposez avec la souris pour changer la position du dégradé. Appuyez sur le bouton pour changer la couleur ou retirer le point de contrôle."],"Gradient control point at position %1$s with color code %2$s.":["Point de contrôle du dégradé à la position %1$s avec le code couleur %2$s."],"Preset Size":["Taille prédéfinie"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Les outils offrent différentes interactions pour la sélection et la modification. Pour sélectionner, appuyez sur échap. Pour revenir à l’édition, appuyez sur entrée."],"Open Media Library":["Ouvrir la bibliothèque de médias"],"Next":["Suivant"],"Previous":["Précédent"],"Finish":["Terminer"],"Page %1$d of %2$d":["Page %1$d sur %2$d"],"Guide controls":["Guider les contrôles"],"Remove Control Point":["Retirer le point de contrôle"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Chaque bloc vient avec ses propres jeux d’options pour modifier des choses telles que la couleur, la taille ou encore l’alignement. Ils s’affichent automatiquement lorsqu’un bloc est sélectionné."],"Make each block your own":["Faites de chaque bloc votre allié"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["Dans l’éditeur de WordPress, chaque paragraphe, image ou vidéo est présentée en tant qu’un « bloc » de contenu distinct."],"ADD MEDIA":["AJOUTER UN MÉDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Tous les blocs disponibles se trouvent dans la bibliothèque de blocs. Vous la retrouverez partout où vous verrez l’icône ."],"Get to know the Block Library":["Découvrez la bibliothèque de blocs"],"Welcome Guide":["Guide de bienvenue"],"Enable page templates":[],"Page Templates":["Modèles de pages"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":["Modèles de démonstration du « full site editing »"],"Welcome to the Block Editor":["Bienvenue sur l’éditeur de blocs"],"Get started":["Lancez-vous !"],"inserter":["Outil d’insertion"],"Post Title":["Titre de la publication"],"Add nofollow to link":["Ajouter « nofollow » au lien"],"Add submenu":[],"Add link…":["Ajouter un lien…"],"Dark":["Sombre"],"Light":["Clair"],"recording":["enregistrement"],"podcast":["podcast"],"sound":["son"],"Array of instance changes":["Modifications du tableau d’instances"],"Current widget instance":["Instance de widget actuelle"],"Template parts to include in your templates.":["Éléments de modèles à inclure dans vos modèles."],"Template parts list":["Liste des éléments de modèles"],"Template parts list navigation":["Navigation dans la liste des éléments de modèles"],"Filter template parts list":["Filtrer la liste d’éléments de modèles"],"Uploaded to this template part":["Téléversé dans cet élément de modèle"],"Insert into template part":["Insérer dans l’élément de modèle"],"Template part archives":["Archives d’éléments de modèles"],"No template parts found in Trash.":["Aucun élément de modèle trouvé dans la corbeille."],"No template parts found.":["Aucun élément de modèle trouvé."],"Parent Template Part:":["Élément de modèle parent :"],"Search Template Parts":["Rechercher un élément de modèle"],"All Template Parts":["Tous les éléments de modèles"],"View Template Part":["Voir l’élément de modèle"],"Edit Template Part":["Modifier l’élément de modèle"],"New Template Part":["Nouvel élément de modèle"],"Add New Template Part":["Ajouter un élément de modèle"],"Template Part\u0004Add New":["Ajouter"],"Admin Menu text\u0004Template Parts":["Éléments de modèles"],"Template Part":["Élément de modèle"],"Template Parts":["Éléments de modèles"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Du temps que régnait le Grand Pan,\n\tLes dieux protégaient les ivrognes\nDes tas de génies titubants\n\tAu nez rouge, à la rouge trogne.\nDès qu'un homme vidait les cruchons,\n\tQu'un sac à vin faisait carousse\nIls venaient en bande à ses trousses\n\tCompter les bouchons."],"Navigation":["Navigation"],"Loading Navigation…":["Chargement de la navigation…"],"Navigation Structure":["Structure de la navigation"],"Create empty":["Créer (vide)"],"Create a Navigation from all existing pages, or create an empty one.":["Créez une navigation à partir de toutes les pages existantes, ou créez-en une vide."],"Navigation Link":["Lien de navigation"],"(Note: many devices and browsers do not display this text.)":["(note : plusieurs appareils et navigateurs n’afficheront pas ce texte)"],"Describe the role of this image on the page.":["Décrivez le rôle de cette image sur la page."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Basculer entre l’utilisation de la même valeur pour toutes les tailles d’écrans ou l’utilisation d’une valeur unique pour chaque taille."],"Use the same %s on all screensizes.":["Utiliser le même %s pour toutes les tailles d’écrans."],"Large screens":["Écrans larges"],"Medium screens":["Écrans moyens"],"Small screens":["Petits écrans"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Contrôler la propriété %1$s pour les surfaces de fenêtre %2$s."],"Currently selected":["Actuellement sélectionné"],"Search or type url":["Rechercher ou saisir une URL"],"Press ENTER to add this link":["Appuyer sur entrée pour ajouter ce lien"],"Currently selected link settings":["Réglages du lien actuellement sélectionné"],"Generic label for block inserter button\u0004Add block":["Ajouter un bloc"],"directly add the only allowed block\u0004Add %s":["Ajouter %s"],"%s block added":["Bloc %s ajouté"],"Move %s":["Déplacer %s"],"Extra Large":["Très grand"],"Block breadcrumb":["Bloc de fil d’Ariane"],"Editor footer":["Éditeur de pied de page"],"Site Title":["Titre du site"],"Open Colors Selector":["Ouvrir le sélecteur de couleurs"],"Templates list":["Liste des modèles"],"Templates list navigation":["Navigation de liste des modèles"],"Filter templates list":["Filtrer la liste des modèles"],"Uploaded to this template":["Téléversé sur ce modèle"],"Insert into template":["Insérer dans le modèle"],"Template archives":["Archives de modèle"],"No templates found in Trash.":["Aucun modèle trouvé dans la corbeille."],"No templates found.":["Aucun modèle trouvé."],"Parent Template:":["Modèle parent :"],"Search Templates":["Rechercher des modèles"],"All Templates":["Tous les modèles"],"View Template":["Voir le modèle"],"Edit Template":["Modifier le modèle"],"New Template":["Nouveau modèle"],"Add New Template":["Ajouter un nouveau modèle"],"Template\u0004Add New":["Ajouter un nouveau"],"Admin Menu text\u0004Templates":["Modèles"],"Template":["Modèle"],"No matching template found":["Aucun modèle correspondant trouvé"],"Gradient: %s":["Dégradé : %s"],"Gradient code: %s":["Code de dégradé : %s"],"All content copied.":["Tout le contenu a été copié."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Le téléversement du média a échoué. S’il s’agit d’une photo ou d’une grande image, veuillez la redimensionner puis réessayer."],"Gradient":["Dégradé"],"Gradient Presets":["Préréglages de dégradé"],"No Preview Available.":["Aucun aperçu disponible."],"Midnight":["Minuit"],"Electric grass":["Herbe électrique"],"Pale ocean":["Océan pâle"],"Luminous dusk":["Crépuscule lumineux"],"Blush bordeaux":["Bordeaux rougissant"],"Blush light purple":["Violet clair rougissant"],"Cool to warm spectrum":["Spectre froid vers chaud"],"Very light gray to cyan bluish gray":["Gris très clair vers gris-cyan bleuissant"],"Luminous vivid orange to vivid red":["Orange vif lumineux vers rouge lumineux"],"Luminous vivid amber to luminous vivid orange":["Ambre vif lumineux vers orange vif"],"Light green cyan to vivid green cyan":["Vert-cyan clair vers vert-cyan vif"],"Vivid cyan blue to vivid purple":["Bleu-cyan vif vers violet vif"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 décembre 2018"],"February 21, 2019":["21 février 2019"],"May 7, 2019":["7 mai 2019"],"Release Date":["Date de sortie"],"Jazz Musician":["Musicien de jazz"],"Version":["Version"],"Six.":["Six."],"Five.":["Cinq."],"Four.":["Quatre."],"Three.":["Trois."],"Two.":["Deux."],"One.":["Un."],"One of the hardest things to do in technology is disrupt yourself.":["L’une des choses les plus difficiles à faire dans le monde des technologies est de se réinventer soi-même."],"— Kobayashi Issa (一茶)":["— Paul Éluard (Onze Haï-kaïs, 1920)"],"The wren
Earns his living
Noiselessly.":["Une plume donne au chapeau
Un air de légèreté
La cheminée fume."],"Welcome to the wonderful world of blocks…":["Bienvenue dans le monde merveilleux des blocs…"],"Snow Patrol":["Patrouille des neiges"],"Dimensions":["Dimensions"],"Minimum height in pixels":["Hauteur minimale en pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Appel à l’action"],"In quoting others, we cite ourselves.":["En citant les autres, nous nous citons nous-mêmes."],"cite":["citer"],"Mont Blanc appears—still, snowy, and serene.":["Luire, ô lac, dans ton beau miroir !"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Dans un village de la Manche dont je ne veux pas me rappeler le nom, il n’y a pas longtemps que vivait un de ces hidalgos qui ont lance au râtelier, vieille rondache, maigre haridelle et limier de chasse."],"Block navigation":["Bloc navigation"],"Full Site Editing":["« Full site editing »"],"Templates to include in your theme.":["Modèles à inclure dans votre thème."],"Templates":["Modèles"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":["Veuillez contacter l’administrateur de votre site pour installer de nouveaux blocs."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Aucun bloc trouvé dans votre bibliothèque. Veuillez contacter l'administrateur de votre site pour installer de nouveaux blocs."],"No blocks found in your library.":["Aucun bloc trouvé dans votre bibliothèque."],"No blocks found in your library. These blocks can be downloaded and installed:":["Aucun bloc trouvé dans votre bibliothèque. Ces blocs peuvent être téléchargés et installés :"],"No blocks found in your library. We did find %d block available for download.":["Aucun bloc trouvé dans votre bibliothèque. Nous avons trouvé %d bloc disponible au téléchargement.","Aucun bloc trouvé dans votre bibliothèque. Nous avons trouvé %d blocs disponibles au téléchargement."],"Block previews can’t load.":["Les aperçus de blocs ne peuvent pas se charger."],"Retry":["Réessayer"],"Block previews can't install.":["Les aperçus de bloc ne peuvent pas être installés."],"Updated %s":["%s mis à jour"],"%d active installation":["%d installation active","%d installations actives"],"This author has %d block, with an average rating of %d.":["Cet auteur possède %d bloc, avec une évaluation moyenne de %d.","Cet auteur possède %d blocs, avec une évaluation moyenne de %d."],"Authored by %s":["Créé par %s"],"%d total rating":["%d évaluation au total","%d évaluations au total"],"%s out of 5 stars":["%s sur 5 étoiles"],"Enter Address":["Saisisissez l’adresse"],"Pill Shape":["Forme ovale"],"Logos Only":["Logos uniquement"],"Create a block of links to your social media or external sites":["Créer un bloc de liens vers vos réseaux sociaux ou sites externes"],"Social links":["Liens sociaux"],"Open block navigator":["Ouvrir le navigateur de blocs"],"Attachment page":["Page de fichier joint"],"Fill":["Remplir"],"Link rel":["Attribut « Rel » du lien"],"Border Radius":["Rayon de bordure"],"Write gallery caption…":["Écrire la légende de la galerie…"],"Content blocks":[],"Restore the backup":["Restaurer la sauvegarde"],"The backup of this post in your browser is different from the version below.":["La sauvegarde de cet article dans votre navigateur est différente de la version ci-dessous."],"Enable block directory search":[],"Block Directory":["Répertoire des blocs"],"Unable to connect to the filesystem. Please confirm your credentials.":["Impossible de se connecter au système de fichier. Veuillez confirmer vos identifiants de connexion."],"Sorry, you are not allowed to install blocks.":["Désolé, vous n’avez pas l’autorisation d’installer des blocs."],"%1$d block is disabled.":["Le bloc %1$d est désactivé.","Les blocs %1$d sont désactivés."],"Reverse List Numbering":["Inverser le numérotage de la liste"],"Start Value":["Valeur de départ"],"Ordered list settings":[],"Clear Media":["Effacer le média"],"Default Style":["Style par défaut"],"Not set":["Non défini"],"While writing, you can press / to quickly insert new blocks.":["Tandis que vous écrivez, vous pouvez utiliser la touche / pour insérer rapidement de nouveaux blocs."],"Browse through the library to learn more about what each block does.":["Parcourez la bibliothèque pour en savoir plus sur ce que fait chaque bloc."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Il existe des blocs pour toutes sortes de contenus : insérer du texte, des en-têtes, des images, des listes, des vidéos, des tableaux, et bien plus encore."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Vous voici dans le monde merveilleux des blocs ! Les blocs sont la base de tous les contenus au sien de l’éditeur."],"Version of the content block format used by the object.":["Version du format du bloc de contenu utilisé par l’objet."],"HTML content for the object, transformed for display.":["Contenu HTML pour l’objet, transformé pour l’affichage."],"Content for the object, as it exists in the database.":["Contenu pour cet objet, tel qu’il existe dans la base de données."],"The content for the object.":["Le contenu pour l’objet."],"Change column alignment":["Modifier l’alignement des colonnes"],"Align Column Right":["Aligner la colonne à droite"],"Align Column Center":["Centrer la colonne"],"Align Column Left":["Aligner la colonne à gauche"],"Color":["Couleur"],"Vivid purple":["Violet éclatant"],"Disable & Reload":["Désactiver et recharger"],"Enable & Reload":["Activer et recharger"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Un rechargement de page est nécessaire pour cette modification. Assurez-vous que votre contenu est enregistré avant de recharger."],"Display these keyboard shortcuts.":["Afficher ces raccourcis clavier."],"Experiments Settings":["Réglages expérimentaux"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["Les noms de blocs doivent être des chaînes."],"Custom":["Personnalisé"],"Draft":["Brouillon"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Le bloc « %1$s » ne contient pas de style nommé « %2$s »."],"Learn more about anchors":["En savoir plus sur les ancres"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Saisir un mot ou deux sans utiliser d’espaces pour créer une adresse web unique – une ancre – pour ce titre. Ensuite, vous pourrez créer des liens directement vers cette section de votre page."],"Widget Blocks (Experimental)":["Blocs Widgets (expérimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Téléversez un fichier vidéo, choisissez-en un dans votre bibliothèque de médias ou ajoutez-en un avec une URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Téléversez un fichier image, choisissez-en un dans votre bibliothèque de médias ou ajoutez-en un avec une URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Téléversez un fichier son, choisissez-en un dans votre bibliothèque de médias ou ajoutez-en un avec une URL."],"Upload a media file or pick one from your media library.":["Téléversez un fichier média ou choisissez-en un dans votre bibliothèque de médias."],"Skip":["Passer"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["Qu’est-ce ?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Ne pas laisser les moteur de recherche suivre ce lien."],"Provide more context about where the link goes.":["Fournissez plus de contexte sur la destination du lien."],"Title Attribute":["Attribut du titre"],"SEO settings":[],"Description":["Description"],"Open in new tab":["Ouvrir dans un nouvel onglet"],"links":["liens"],"navigation":["navigation"],"menu":["menu"],"Add a navigation block to your site.":["Ajoutez un bloc de navigation à votre site."],"Upload a file or pick one from your media library.":["Téléversez un fichier ou choisissez-en un dans votre bibliothèque de médias."],"Learn more about embeds":["En apprendre plus à propos des contenus embarqués"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Collez un lien vers le contenu que vous souhaitez afficher sur votre site."],"Upload an image or video file, or pick one from your media library.":["Téléversez un fichier image ou vidéo, ou sélectionnez-en un dans la bibliothèque de médias."],"Three columns; wide center column":["Trois colonnes ; colonne centrale large"],"Three columns; equal split":["Trois colonnes ; largeur égale"],"Two columns; two-thirds, one-third split":["Deux colonnes : deux tiers/un tiers"],"Two columns; one-third, two-thirds split":["Deux colonnes : un tiers/deux tiers"],"Two columns; equal split":["Deux colonnes ; largeur égale"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Votre site n’a aucun %s, donc il n’y a rien à afficher pour le moment."],"More tools & options":["Davantage d’outils et options"],"Create Table":["Créer un tableau"],"Insert a table for sharing data.":["Insérer un tableau pour partager des données."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Dégrouper"],"verb\u0004Group":["Grouper"],"Separate with commas or the Enter key.":["Séparez avec une virgule ou avec la touche entrée."],"Separate with commas, spaces, or the Enter key.":["Séparez avec une virgule, un espace, ou avec la touche entrée."],"Separate multiple classes with spaces.":["Dans le cas de plusieurs classes, séparez-les avec des espaces."],"Move image forward":["Déplacer l’image vers l’avant"],"Move image backward":["Déplacer l’image vers l’arrière"],"Sorry, you are not allowed to edit sidebars.":["Désolé, vous n’avez pas l’autorisation de modifier les colonnes latérales."],"Sorry, you are not allowed to read sidebars.":["Désolé, vous n’avez pas l’autorisation de visualiser les colonnes latérales."],"The sidebar’s ID.":["ID de la colonne latérale."],"Displays a set of blocks":["S’affiche comme un groupe de blocs"],"Blocks Area":["Zone de blocs"],"Block rendered as empty.":["Bloc devenu vide."],"Inline Code":["Code en ligne"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Remarque : la lecture automatique de vidéo peut créer des problèmes d’utilisabilité pour certains visiteurs."],"Footer section":["Section de pied de page"],"Header section":["Section d’en-tête"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Contenu de publication"],"Post content settings":[],"Percentage width":["Largeur en pourcentage"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Remarque : la lecture automatique de sons peut causer des problèmes d’utilisabilité pour certains utilisateurs."],"Block area updated.":["Zone de blocs mise à jour."],"Block area scheduled.":["Zone de blocs planifiée."],"Block area published.":["Zone de blocs publiée."],"Block areas list":["Liste de zones de blocs"],"Block areas list navigation":["Navigation de liste de zones de blocs"],"Filter block areas list":["Filtrer la liste des zones de blocs"],"No block area found.":["Aucune zone de blocs trouvée."],"Search Block Areas":["Rechercher des zones de blocs"],"All Block Areas":["Toutes les zones de blocs"],"View Block Area":["Voir la zone de blocs"],"Edit Block Area":["Modifier la zone de blocs"],"New Block Area":["Nouvelle de zone de blocs"],"Add New Block Area":["Ajouter une nouvelle zone de blocs"],"admin menu\u0004Block Areas":["Zones de blocs"],"post type singular name\u0004Block Area (Experimental)":["Zone de blocs (expérimental)"],"post type general name\u0004Block Area (Experimental)":["Zone de blocs (expérimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Type de publication personnalisé expérimental qui stockera les zones de blocs référencées par thèmes."],"Widgets screen content":["Contenu de l’écran Widgets"],"header":[],"Widgets advanced settings":["Réglages avancés des widgets"],"(experimental)":["(expérimental)"],"Block Areas":["Zones de blocs"],"Widgets screen top bar":["Barre du haut de l’écran Widgets"],"This color combination may be hard for people to read.":["Cette combinaison de couleurs risque d’être difficile à lire."],"There is no poster image currently selected":["Il n’y a actuellement aucune image de bannière sélectionnée"],"The current poster image url is %s":["L’URL de l’image de bannière actuelle est %s"],"section":["section"],"row":["ligne"],"wrapper":["conteneur"],"container":["contenant"],"A block that groups other blocks.":["Un bloc qui groupe d’autres blocs."],"Group":["Groupe"],"Crop image to fill entire column":["Recadrer l’image pour remplir toute la colonne"],"Play inline":["Lancer directement"],"Leave empty if the image is purely decorative.":["Laisser vide si l’image est purement décorative."],"Describe the purpose of the image":["Décrivez l’objet de l’image"],"Add a block":["Ajouter un bloc"],"Block vertical alignment setting label\u0004Change vertical alignment":["Modifier l’alignement vertical"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Aligner verticalement en bas"],"Block vertical alignment setting\u0004Vertically Align Middle":["Aligner verticalement au milieu"],"Replace Image":["Remplacer l’image"],"Block vertical alignment setting\u0004Vertically Align Top":["Aligner verticalement en haut"],"Display a legacy widget.":["Affiche un widget hérité."],"Legacy Widget (Experimental)":["Widget hérité (expérimental)"],"Change widget":["Modifier le widget"],"Legacy Widget":["Widget hérité"],"You don't have permissions to use widgets on this site.":["Vous n’avez pas l’autorisation d’utiliser des widgets sur ce site."],"Select a legacy widget to display:":["Sélectionner un widget hérité à afficher :"],"There are no widgets available.":["Il n’y a pas de widget disponible."],"Change block type or style":["Modifier le type ou le style de bloc"],"keyboard key\u0004Space":["Espace"],"keyboard key\u0004Backspace":["Retour"],"More rich text controls":["Davantage de contrôles de texte enrichi"],"Search Terms":["Rechercher des termes"],"Exit the Editor":["Sortir de l’éditeur"],"Block Manager":["Gestionnaire de blocs"],"Class name of the widget.":["Nom de classe du widget."],"Sorry, you are not allowed to access widgets on this site.":["Désolé, vous n’êtes pas autorisé à accéder aux widgets sur ce site."],"Widgets (beta)":["Widgets (bêta)"],"link":["lien"],"Embedded content from %s can't be previewed in the editor.":["Les contenus embarqués depuis %s ne peuvent être prévisualisés dans l’éditeur."],"Custom Color":["Couleur personnalisée"],"Prompt visitors to take action with a button-style link.":["Inviter les visiteurs à passer à l’action à l’aide d’un lien ressemblant à un bouton."],"Stick to the top of the blog":["Épingler en haut du blog"],"Read about permalinks":["Lire à propos des permaliens"],"The last part of the URL.":["La dernière partie de l’URL."],"URL Slug":["Slug de l’URL"],"A cloud of your most used tags.":["Un nuage de vos étiquettes les plus utilisées."],"Tag Cloud":["Nuage d’étiquettes"],"Taxonomy":["Taxonomie"],"Tag Cloud settings":[],"- Select -":["- Sélectionner -"],"Default":["Par défaut"],"find":["trouver"],"Help visitors find your content.":["Aider les visiteurs à trouver vos publications."],"Search":["Recherche"],"Add button text…":["Ajouter un texte au bouton…"],"Button text":["Texte du bouton"],"Optional placeholder…":["Texte indicatif facultatif…"],"Optional placeholder text":["Texte indicatif facultatif"],"Add label…":["Ajouter un libellé…"],"Label text":["Texte du libellé"],"image %1$d of %2$d in gallery":["image %1$d de %2$d dans la galerie"],"archive":["archive"],"posts":["publications"],"A calendar of your site’s posts.":["Un calendrier des publications de votre site."],"Calendar":["Calendrier"],"by":["par"],"An error has occurred, which probably means the feed is down. Try again later.":["Une erreur est survenue, ce qui signifie probablement que le flux est cassé. Réessayez plus tard."],"RSS Error:":["Erreur RSS :"],"block style\u0004Default":["Par défaut"],"Fullscreen mode deactivated":["Mode plein écran désactivé"],"Fullscreen mode activated":["Mode plein écran activé"],"Spotlight mode deactivated":["Mode mise en lumière désactivé"],"Spotlight mode activated":["Mode mise en lumière activé"],"Top toolbar deactivated":["Barre d’outils du haut désactivée"],"Top toolbar activated":["Barre d’outils du haut activée"],"Back":["Retour"],"Feature activated":["Fonctionnalité activée"],"Feature deactivated":["Fonctionnalité désactivée"],"Vertical Pos.":["Pos. verticale"],"Horizontal Pos.":["Pos. horizontale"],"feed":["flux"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Afficher des éléments depuis n’importe quel flux RSS ou Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Nombre maximum de mots dans l’extrait"],"Display excerpt":["Afficher l’extrait"],"Display date":["Afficher la date"],"Display author":["Afficher l’auteur"],"RSS settings":[],"Edit RSS URL":["Modifier l’URL du flux RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Le contenu avant ce bloc devrait être visible dans l’extrait sur vos pages d’archives."],"Hide the excerpt on the full content page":["Masquer l’extrait sur la page de contenu complet"],"The excerpt is visible.":["L’extrait est visible."],"The excerpt is hidden.":["L’extrait est masqué."],"Sorry, this content could not be embedded.":["Désolé, ce contenu ne peut pas être embarqué."],"Embed Amazon Kindle content.":["Contenu embarqué Amazon Kindle."],"ebook":["e-book"],"Embed Crowdsignal (formerly Polldaddy) content.":["Contenu embarqué Crowdsignal (anciennement Polldaddy)."],"Focal Point Picker":["Sélecteur de point de focalisation"],"Underline":["Souligner"],"Attempt Block Recovery":["Tentative de restauration du bloc"],"Word count type. Do not translate!\u0004words":["mots"],"content placeholder\u0004Content…":["Contenu…"],"button label\u0004Convert to link":["Convertir en lien"],"button label\u0004Try again":["Réessayer"],"Editor tips":["Conseils de rédaction"],"Block (selected)":["Bloc (sélectionné)"],"Document (selected)":["Document (sélectionné)"],"%d word":["%d mot","%d mots"],"Top toolbar":[],"Link Rel":["Relation du lien"],"Link CSS Class":["Classe CSS du lien"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Créez du contenu et enregistrez-le pour vous ou pour d’autres contributeurs et contributrices afin de le réutiliser ailleurs sur votre site, et appliquer les modifications partout où il est utilisé."],"To edit the featured image, you need permission to upload media.":["Pour modifier l’image mise en avant, vous devez avoir le droit de téléverser des médias."],"To edit this block, you need permission to upload media.":["Pour modifier ce bloc, vous devez avoir le droit de téléverser des médias."],"(selected block)":["(bloc sélectionné)"],"Block tools":["Outils du bloc"],"Permalink":["Permalien"],"This image has an empty alt attribute":["Cette image a un attribut alt vide"],"This image has an empty alt attribute; its file name is %s":["Cette image a un attribut alt vide ; le nom du fichier est %s"],"Block area reverted to draft.":["Zone de blocs redevenue brouillon."],"Block area published privately.":["Zone de blocs publiée en privé."],"No block areas found in Trash.":["Aucune zone de blocs trouvée à la corbeille."],"Block\u0004Add New":["Ajouter un nouveau"],"add new on admin bar\u0004Block Area":["Zone de blocs"],"Link inserted.":["Lien inséré."],"Warning: the link has been inserted but may have errors. Please test it.":["Avertissement : le lien a été inséré mais peut contenir des erreurs. Veuillez le tester."],"%s block selected.":["%s bloc sélectionné.","%s blocs sélectionnés."],"Thumbnail":["Miniature"],"Full Size":["Pleine taille"],"Link selected.":["Lien sélectionné."],"Start writing with text or HTML":["Commencez à écrire avec du texte ou du HTML"],"Type text or HTML":["Saisissez du texte ou su HTML"],"Block icon":["Icône de bloc"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Commencez à écrire ou saisissez « / » pour choisir un bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc vide ; commencez à écrire ou saisissez une barre oblique pour choisir un bloc"],"Paragraph block":["Bloc paragraphe"],"Page Break":["Saut de page"],"Stack on mobile":["Empiler sur mobile"],"Annotation":["Annotation"],"Drag images, upload new ones or select files from your library.":["Glisser des images, en téléverser de nouvelles ou sélectionner des fichiers dans votre bibliothèque."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Résoudre"],"font size name\u0004Huge":["Énorme"],"font size name\u0004Large":["Large"],"font size name\u0004Medium":["Médium"],"font size name\u0004Small":["Petite"],"font size name\u0004Normal":["Normale"],"keyboard button\u0004Enter":["Entrée"],"button label\u0004Import":["Importer"],"button label\u0004Download":["Télécharger"],"button label\u0004Embed":["Intégrer"],"block title\u0004Embed":["Contenu embarqué"],"block title\u0004Classic":["Classique"],"block style\u0004Large":["Large"],"block style\u0004Rounded":["Arrondi"],"%s (opens in a new tab)":["%s (ouverture dans un nouvel onglet)"],"Link edited.":["Lien modifié."],"Link removed.":["Lien retiré."],"media":["média"],"Double-check your settings before publishing.":["Revérifiez vos réglages avant de publier."],"Generating preview…":["Génération de l’aperçu…"],"Edit or update the image":["Modifier ou mettre à jour l’image"],"Media":["Média"],"Navigate to the nearest toolbar.":["Naviguer vers la barre d’outils la plus proche."],"Document tools":["Outils du document"],"Document and block tools":["Outils du document et des blocs"],"Embed a video from your media library or upload a new one.":["Intégrer une vidéo depuis votre bibliothèque de médias ou en téléverser une nouvelle."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insérer de la poésie en utilisant un format d’espacement spécifique, ou alors des paroles de chansons."],"Add white space between blocks and customize its height.":["Ajoutez un espace vide entre les blocs et personnalisez sa hauteur."],"Insert additional custom elements with a WordPress shortcode.":["Insérer un élément personnalisé additionnel avec un code court WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Créer un espacement entre des idées ou entre des section avec un séparateur horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Donner une emphase visuelle à vos textes de citations. « En citant les autres, nous nous citons nous mêmes » — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Donner une emphase visuelle à une citation depuis votre texte."],"Start with the building block of all narrative.":["Commencer par la pierre angulaire de tout récit."],"Separate your content into a multi-page experience.":["Séparer votre contenu sur plusieurs pages."],"Set media and words side-by-side for a richer layout.":["Mettre un média et du texte côte-à-côte pour une mise en page enrichie."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Créer une liste à puces ou une liste numérotée."],"Display a list of your most recent comments.":["Afficher une liste de vos commentaires les plus récents."],"Insert an image to make a visual statement.":["Insérer une image pour créer une déclaration visuelle."],"Add custom HTML code and preview it as you edit.":["Ajouter du code HTML personnalisé et le prévisualiser directement."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduire les nouvelles sections et organiser le contenu pour aider les visiteurs (et les moteurs de recherche) à comprendre la structure de votre contenu."],"Display multiple images in a rich gallery.":["Afficher de multiples images dans une galerie enrichie."],"Add a link to a downloadable file.":["Ajouter un lien vers un fichier téléchargeable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Intégrer des vidéos, des images, des tweets, des sons et d’autres contenus depuis des sources externes."],"Resize for smaller devices":["Redimensionner pour les petits appareils"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ce contenu intégré pourrait perdre son ratio si le navigateur est redimensionné."],"This embed will preserve its aspect ratio when the browser is resized.":["Ce contenu intégré conservera son ratio si le navigateur est redimensionné."],"Embed an Animoto video.":["Intégrer une vidéo Animoto."],"Embed a Vimeo video.":["Intégrer une vidéo Vimeo."],"Embed Flickr content.":["Intégrer un contenu Flickr."],"Embed Spotify content.":["Intégrer un contenu Spotify."],"Embed SoundCloud content.":["Intégrer un contenu SoundCloud."],"Embed a WordPress post.":["Intégrer une publication WordPress."],"Embed an Instagram post.":["Intégrer une publication Instagram."],"Embed a Facebook post.":["Intégrer une publication Facebook."],"Embed a WordPress.tv video.":["Intégrer une vidéo WordPress.tv."],"Embed a VideoPress video.":["Intégrer une vidéo VideoPress."],"Embed a Tumblr post.":["Intégrer une publication Tumblr."],"Embed a TED video.":["Intégrer une vidéo TED."],"Embed Speaker Deck content.":["Intégrer un contenu Speaker Deck."],"Embed a YouTube video.":["Intégrer une vidéo YouTube."],"Embed SmugMug content.":["Intégrer un contenu SmugMug."],"Embed Slideshare content.":["Intégrer un contenu Slideshare."],"Embed Scribd content.":["Intégrer un contenu Scribd."],"Embed Screencast content.":["Intégrer un contenu Screencast."],"Embed ReverbNation content.":["Intégrer un contenu ReverbNation."],"Embed a Reddit thread.":["Intégrer un fil de discussion Reddit."],"Embed Polldaddy content.":["Intégrer un contenu Polldaddy."],"Embed Mixcloud content.":["Intégrer un contenu Mixcloud."],"Embed a tweet.":["Intégrer un tweet."],"Embed Meetup.com content.":["Intégrer un contenu Meetup.com."],"Embed Kickstarter content.":["Intégrer un contenu Kickstarter."],"Embed Issuu content.":["Intégrer un contenu Issuu."],"Embed Imgur content.":["Intégrer un contenu Imgur."],"Embed Hulu content.":["Intégrer un contenu Hulu."],"Embed a Dailymotion video.":["Intégrer une vidéo Dailymotion."],"Embed CollegeHumor content.":["Intégrer un contenu CollegeHumor."],"Embed Cloudup content.":["Intégrer un contenu Cloudup."],"Add an image or video with a text overlay — great for headers.":["Ajouter une image ou une vidéo avec un texte par dessus – Parfait pour les en-têtes."],"Display code snippets that respect your spacing and tabs.":["Afficher des extraits de code qui respectent vos espacements et tabulations."],"Use the classic WordPress editor.":["Utiliser l’ancien éditeur WordPress."],"Display a list of all categories.":["Afficher une liste de toutes les catégories."],"Embed a simple audio player.":["Intégrer un simple lecteur audio."],"noun\u0004View":["Vue"],"editor button\u0004Left to right":["De gauche à droite"],"Save as Pending":["Enregistrer comme en attente"],"%s address":["adresse de %s"],"Paste or type URL":["Collez ou saisissez l’URL"],"Insert from URL":["Insérer à partir d’une URL"],"Block Navigator":["Navigateur de blocs"],"Styles":["Styles"],"Advanced panels":[],"Document panels":[],"General":["Général"],"Open the block navigation menu.":["Ouvrir le menu de navigation de bloc."],"Work without distraction":["Travailler sans distraction"],"Focus on one block at a time":["Se concentrer sur un bloc à la fois"],"Access all block and document tools in a single place":["Accéder à tous les blocs et au document à partir d’un endroit unique"],"Options":["Options"],"(opens in a new tab)":["(ouvre un nouvel onglet)"],"Minutes":["Minutes"],"Hours":["Heures"],"Time":["Heure"],"Year":["Année"],"Day":["Jour"],"December":["Décembre"],"November":["Novembre"],"October":["Octobre"],"September":["Septembre"],"August":["Août"],"July":["Juillet"],"June":["Juin"],"May":["Mai"],"April":["Avril"],"March":["Mars"],"February":["Février"],"January":["Janvier"],"Month":["Mois"],"Date":["Date"],"Go to the first (home) or last (end) day of a week.":["Aller au premier (accueil) ou dernier (fin) jour d’une semaine."],"Home/End":["Accueil/fin"],"Home and End":["Accueil et fin"],"Move backward (PgUp) or forward (PgDn) by one month.":["Revenir en arrière (PgUp) ou avancer (PgDn) d’un mois."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Paginer vers le haut et vers le bas"],"Move backward (up) or forward (down) by one week.":["Revenir en arrière (haut) ou avancer (bas) d’une semaine."],"Up and Down Arrows":["Flèches vers le haut et le bas"],"Move backward (left) or forward (right) by one day.":["Revenir en arrière (gauche) ou avancer (droite) d’un jour."],"Left and Right Arrows":["Flèches gauche et droite"],"Select the date in focus.":["Sélectionner la date courante."],"Navigating with a keyboard":["Navigation avec un clavier"],"Click the desired day to select it.":["Cliquez sur le jour désiré pour le sélectionner."],"Click the right or left arrows to select other months in the past or the future.":["Utilisez les flèches droite ou gauche pour sélectionner d’autres mois dans le passé ou le futur."],"Click to Select":["Cliquez pour sélectionner"],"Calendar Help":["Aide de calendrier"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utilisez les touches fléchées pour changer la couleur de base. Déplacez-vous vers le haut pour éclaircir la couleur, vers le bas pour assombrir, vers la gauche pour diminuer la saturation, et vers la droite pour l’augmenter."],"Choose a shade":["Choisir une teinte"],"Change color format":["Modifier le format de couleur"],"Color value in HSL":["Valeur de couleur en HSL"],"Color value in RGB":["Valeur de couleur en RGB"],"Color value in hexadecimal":["Valeur de la couleur en hexadécimal"],"RGB mode active":["Mode RVB actif"],"Hex color mode active":["Mode couleur héxadécimale actif"],"Hue/saturation/lightness mode active":["Mode teinte/saturation actif"],"Move the arrow left or right to change hue.":["Déplacer les flèches vers la gauche ou la droite pour modifier la teinte."],"Hue value in degrees, from 0 to 359.":["Valeur de la teinte en chiffres de 0 à 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valeur alpha de 0 (transparent) à 1 (complètement opaque)."],"Stripes":["Rayures"],"Your site doesn’t include support for this block.":["Votre site n’inclut pas de support pour ce bloc."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Votre site n’inclut pas le support pour le bloc « %s ». Vous pouvez laisser ce bloc intact ou le retirer complètement."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Votre site n’inclut pas le support du bloc « %s ». Vous pouvez laisser ce bloc tel quel, convertir son contenu en bloc HTML personnalisé ou le retirer complètement."],"Media area":["Zone de média"],"Media & Text":["Média & texte"],"Show media on right":["Afficher le média sur la droite"],"Show media on left":["Afficher le média sur la gauche"],"Open in New Tab":["Ouvrir dans un nouvel onglet"],"Cover":["Bannière"],"Border settings":[],"Medium":["Moyen"],"Paste URL or type to search":["Copier l’URL ou saisir une recherche"],"Terms":["Termes"],"Your work will be published at the specified date and time.":["Votre publication sera mise en ligne à la date et à l’heure spécifiées."],"Are you ready to schedule?":["Voulez-vous planifier ?"],"Always show pre-publish checks.":["Toujours afficher les vérifications de pré-publication."],"Take Over":["Prendre le contrôle"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Un autre utilisateur ou utilisatrice travaille actuellement sur cette publication, ce qui signifie que vous ne pouvez pas faire de modifications à moins que vous ne preniez le contrôle."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s travaille actuellement sur cette publication, ce qui signifie que vous ne pouvez pas faire de modifications à moins que vous ne preniez le contrôle."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Un autre utilisateur ou utilisatrice vient de prendre le contrôle d’édition sur cette publication. Ne vous inquiétez pas, les modifications faites avant que cela n’arrive ont été enregistrés."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s vient de prendre le contrôle d’édition sur cette publication. Ne vous inquiétez pas, les modifications faites avant que cela n’arrive ont été enregistrés."],"Avatar":["Avatar"],"This post is already being edited.":["Cette publication est déjà en cours de modification."],"Someone else has taken over this post.":["Quelqu’un d’autre a pris le contrôle sur cette publication."],"This block contains unexpected or invalid content.":["Ce bloc contient du contenu non valide ou inattendu."],"Resolve Block":["Résoudre les problèmes de ce bloc"],"Convert to HTML":["Convertir en HTML"],"This block can only be used once.":["Ce bloc ne peut être utilisé qu’une fois."],"Exit Code Editor":["Sortir de l’éditeur de code"],"Editing Code":["Édition de code"],"Solid Color":["Couleur unie"],"Main Color":["Couleur principale"],"HTML":["HTML"],"Write HTML…":["Écriture de HTML…"],"Media settings":[],"Overlay":["Masque"],"Insert Media":["Insérer un média"],"Reusable block imported successfully!":["Bloc réutilisable bien importé !"],"Invalid Reusable Block JSON file":["Fichier JSON de bloc réutilisable non valide"],"Invalid JSON file":["Fichier JSON non valide"],"Import from JSON":["Importer d’un JSON"],"Backtick":["Retour arrière"],"Period":["Période"],"Comma":["Virgule"],"Change type of %d block":["Modifier le type de %d bloc","Modifier le type de %d blocs"],"Current":["Actuel"],"After Conversion":["Après conversion"],"Change alignment":["Modifier l’alignement"],"Change text alignment":["Modifier l’alignement du texte"],"%d block":["%d bloc","%d blocs"],"Forward-slash":["Barre oblique (slash)"],"No archives to show.":["Aucune archive à afficher."],"This file is empty.":["Ce fichier est vide."],"Sorry, this file type is not supported here.":["Désolé ce type de fichier n’est pas pris en charge ici."],"Manage all reusable blocks":[],"Title":["Titre"],"Fullscreen mode":[],"Beautiful landscape":["Beau panorama"],"Close panel":["Fermer le panneau"],"Convert to Classic Block":["Convertir en bloc Classique"],"Remove Poster Image":["Retirer l’image de couverture"],"Select Poster Image":["Sélectionner une image de couverture"],"Poster Image":["Image de couverture"],"This block is deprecated. Please use the Columns block instead.":["Ce bloc est obsolète. Veuillez utiliser le bloc Colonnes à la place."],"Text Columns (deprecated)":["Colonnes de texte (obsolète)"],"Create":["Créer"],"Row Count":["Compteur de lignes"],"Column Count":["Compteur de colonnes"],"This block is deprecated. Please use the Paragraph block instead.":["Ce bloc est obsolète. Veuillez utiliser le bloc Paragraphe à la place."],"Subheading (deprecated)":["Sous-titre (obsolète)"],"blockquote":["citation"],"Change the block type after adding a new paragraph.":["Modifier le type de block après l’ajout d’un nouveau paragraphe."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Les étiquettes aident les utilisateur et utilisatrices ainsi que les moteurs de recherche à naviguer sur votre site et à trouver vos contenus. Ajoutez quelques étiquettes pour décrire votre publication."],"Add tags":["Ajouter des étiquettes"],"Apply the \"%1$s\" format.":["Appliquer le format « %1$s »."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Votre thème utilise les formats de publication pour mettre en avant différents types de contenus, comme les images ou les vidéos. Appliquez un format de publication pour utiliser cette mise en forme spécifique."],"Use a post format":["Utiliser un format de publication"],"Insert After":["Insérer après"],"Insert Before":["Insérer avant"],"Move %1$d block from position %2$d down by one place":["Déplacer le bloc %1$d d’une place en dessous de %2$d","Déplacer les blocs %1$d d’une place en dessous de %2$d"],"Move %1$d block from position %2$d up by one place":["Déplacer le bloc %1$d d’une place en dessus de %2$d","Déplacer les blocs %1$d d’une place en dessus de %2$d"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["vidéo"],"Insert a new block before the selected block(s).":["Insérer un nouveau block avant le ou les blocs sélectionnés."],"Remove the selected block(s).":["Retirer le ou les blocs sélectionnés."],"Duplicate the selected block(s).":["Dupliquer le ou les blocs sélectionnés."],"Block shortcuts":["Raccourcis pour les blocs"],"Clear selection.":["Effacer la sélection."],"Select all text when typing. Press again to select all blocks.":["Sélectionner tout le texte lors de la saisie. Appuyez à nouveau pour sélectionner tous les blocs."],"Selection shortcuts":["Raccourcis de sélection"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Naviguer vers la partie précédente de l’éditeur."],"Navigate to the next part of the editor.":["Naviguer vers la partie suivante de l’éditeur."],"Show or hide the settings sidebar.":["Afficher ou masquer la colonne latérale de réglages."],"Redo your last undo.":["Remettre en place votre dernière annulation."],"Undo your last changes.":["Annuler vos dernières modifications."],"Save your changes.":["Enregistrer vos modifications."],"Global shortcuts":["Raccourcis généraux"],"Remove a link.":["Retirer un lien."],"Convert the selected text into a link.":["Convertir le texte sélectionné en lien."],"Underline the selected text.":["Souligner le texte sélectionné."],"Make the selected text italic.":["Passer le texte sélectionné en italique."],"Make the selected text bold.":["Passer le texte sélectionné en gras."],"Text formatting":["Mise en forme du texte"],"Insert a new block after the selected block(s).":["Insérer un nouveau bloc après le ou les blocs sélectionnés."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Merci de tester Gutenberg !"],"Help build Gutenberg":["Aidez à construire Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Si vous voulez en savoir plus sur la façon de construire des blocs additionnels, ou si vous souhaitez aider sur ce projet, rendez-vous sur le dépôt GitHub."],"The WordPress community":["La communauté WordPress"],"Code is Poetry":["Le code est une poésie."],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Vous pouvez construire autant de blocs que vous voulez, statiques ou dynamiques, décoratifs ou ordinaires. Voici un bloc de citation en ligne :"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Tous les blocs proposent ce choix d’alignement. Le bloc de contenu embarqué le propose aussi, et cela est nativement responsive :"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Ci-dessus, une galerie avec seulement deux images. C’est une méthode simple pour créer des mises en page attractives, sans avoir à faire flotter les images l’une contre l’autre. Vous pouvez aussi convertir la galerie vers des images individuelles, en utilisant le basculement d’un type de bloc à un autre."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Bien sûr, l’image pleine largeur peut être assez imposante. Mais parfois l’image peut en valoir la peine."],"Accessibility is important — don’t forget image alt attribute":["L’accessibilité est importante : n’oubliez pas l’attribut alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Si vous combinez les nouveaux alignements large et pleine largeur avec des galeries, vous pouvez créer des mises en page enrichies très rapidement :"],"Media Rich":["Média enrichi"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Vous pouvez changer le nombre de colonnes de vos galeries en faisant glisser la barre dans l’inspecteur de blocs de la colonne latérale."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Les blocs peuvent être utilisé pour tout ce que vous voulez. Par exemple, vous pourriez ajouter une citation en regard de votre texte, ou alors afficher une énorme citation. Toutes ces options sont disponibles dans l’outil d’insertion."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["L’information correspondant à la source de la citation est un champ texte séparé, similaire aux légendes sous les images. Ainsi la structure de la citation est protégée même si vous sélectionnez, modifiez ou retirez la source. Il est toujours possible de la remettre en place rapidement."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["L’éditeur s’efforcera de créer une nouvelle expérience de construction des publications qui rendra plus simple l’écriture de publications enrichies. Les blocs rendront simple ce qui nécessite aujourd’hui des codes courts, du HTML personnalisé et autres manipulations mystérieuses."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un grand avantage des blocs réside dans le fait que vous pouvez les modifier en direct et ainsi manipuler votre contenu en direct. Au lieu d’avoir des champs pour éditer ne serait-ce que l’auteur d’une citation, ou le texte d’un bouton, vous pouvez changer ces contenus directement. Essayez de modifier la citation suivante :"],"Visual Editing":["Mode visuel"],"And Lists like this one of course :)":["Et des listes comme celle-ci bien entendu :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocs de mise en page, bouton « J’aime », bannières, séparateurs, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Contenus embarqués, depuis YouTube, Twitter, ou d’autres publications WordPress."],"Galleries":["Galeries"],"Images & Videos":["Images & Vidéos"],"Text & Headings":["Texte & Titres"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Essayez-donc, vous pourrez découvrir des choses que WordPress peut ajouter dans vos publications que vous ne soupçonniez pas. Voici une liste non exhaustive de ce que vous allez trouver :"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Rendez-vous compte de ce que WordPress vous permet de faire rapidement et à partir d’une seule et même interface. Inutile de vous embêter avec des balises HTML, des classes ou des codes courts à la syntaxe compliquée. C’est l’esprit qui anime l’éditeur – voir le bouton (+)
dans l’éditeur – qui vous permet de parcourir tous les blocs de contenu disponibles pour les ajouter à vos publications. Les extensions et les thèmes sont capables d’ajouter leurs propres blocs, ce qui ouvre la voie à toutes sortes de possibilités."],"The Inserter Tool":["L’outil d’insertion"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Essayez de sélectionner, de supprimer ou de modifier la légende. Maintenant vous n’avez plus besoin d’éviter de sélectionner l’image ou d’autres textes par erreur et de gâcher la mise en page."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Si votre thème le prend en charge, vous verrez le bouton « Large » dans la barre d’outils de l’image. Essayez."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["La prise en charge des images et des médias est un des objectifs principaux du nouvel éditeur. Nous espérons que vous découvrirez les avantages de l’ajout de légendes, de passer vos images en mode pleine largeur et de toute autre manipulation. De façon plus simple et robuste qu’auparavant."],"A Picture is Worth a Thousand Words":["Une image vaut mille mots"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Les niveaux de titres sont aussi des blocs spécifiques. Cela aide a organiser et mettre en valeur votre contenu."],"... like this one, which is right aligned.":["…comme celui-ci, qui est aligné à droite."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Ce que vous lisez actuellement est un bloc paragraphe, le bloc le plus basique de tous. Le bloc paragraphe possède ses propres commandes lui permettant d’être déplacé librement au sein de la publication."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Le but de ce nouvel éditeur est de rendre l’ajout de contenus riches simple et ludique. Cette publication toute entière est composée de morceaux de contenus – un peu comme des briques Lego – que vous pouvez déplacer et avec lesquels vous pouvez interagir. Déplacez votre curseur un peu partout et vous verrez les différents blocs se mettre en évidence. Appuyez sur les flèches pour repositionner rapidement les blocs, sans crainte de perdre des choses dans l’action de copier et coller."],"Of Mountains & Printing Presses":["À propos de montagnes & d’imprimerie"],"Welcome to the Gutenberg Editor":["Bienvenue dans l’éditeur Gutenberg"],"block name\u0004More":["Lire la suite"],"button to expand options\u0004More":["Plus"],"Are you sure you want to unschedule this post?":["Confirmez-vous la déplanification de cette publication ?"],"Alt Text (Alternative Text)":["Texte alternatif (texte alternatif)"],"Reusable Block":["Bloc réutilisable"],"Unique identifier for the object.":["Identifiant unique de cet objet."],"Untitled Reusable Block":["Bloc réutilisable sans titre"],"Small":["Petit"],"Reusable":["Réutilisables"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Conserver en HTML"],"Edit URL":["Modifier l’URL"],"Color settings":[],"The response is not a valid JSON response.":["La réponse n’est pas une réponse JSON valide."],"Editor publish":["Publication depuis l’éditeur"],"Muted":["En sourdine"],"Video settings":[],"recent comments":["commentaires récents"],"Latest Comments":["Derniers commentaires"],"Display Excerpt":["Afficher l’extrait"],"Display Date":["Afficher la date"],"Display Avatar":["Afficher l’avatar"],"Latest comments settings":[],"Number of Comments":["Nombre de commentaires"],"Background Opacity":["Opacité de l’arrière-plan"],"Auto":["Auto"],"Preload":["Préchargement"],"Audio settings":[],"Display a monthly archive of your posts.":["Affiche une archive mensuelle de vos articles."],"Display as Dropdown":["Afficher en tant que liste déroulante"],"Show Post Counts":["Afficher le nombre d’articles"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Support"],"No comments to show.":["Aucun commentaire à afficher."],"%1$s on %2$s":["%1$s dans %2$s"],"Select Post":["Sélectionner un article"],"Select Week":["Sélectionner une semaine"],"Select Day":["Sélectionner un jour"],"Select Month":["Sélectionner un mois"],"Select Year":["Sélectionner une année"],"Archives":["Archives"],"Very dark gray":["Gris très foncé"],"Cyan bluish gray":["Gris bleuté cyan"],"Very light gray":["Gris très clair"],"Vivid cyan blue":["Bleu cyan vif"],"Pale cyan blue":["Bleu cyan pâle"],"Vivid green cyan":["Cyan vert vif"],"Light green cyan":["Vert clair cyan"],"Luminous vivid amber":["Ambre lumineux et vif"],"Luminous vivid orange":["Orange vif lumineux"],"Vivid red":["Rouge vif"],"Pale pink":["Rose pâle"],"Inline image":["Image en ligne"],"Available block types":["Types de bloc disponibles"],"Transform To:":["Transformer en :"],"Remove Block":["Retirer le bloc"],"Open publish panel":["Ouvrir le panneau de publication"],"Dots":["Points"],"Wide Line":["Ligne large"],"Large":["Large"],"Show download button":["Afficher le bouton de téléchargement"],"Download button settings":["Réglages du bouton de téléchargement"],"Link To":["Lier vers"],"Text link settings":["Réglages du lien de texte"],"download":[],"pdf":["PDF"],"document":["document"],"Copy URL":["Copier l’URL"],"Write file name…":["Écrire le nom du fichier..."],"File":["Fichier"],"A single column within a columns block.":["Une colonne unique dans un bloc de colonnes."],"Column":["Colonne"],"Outline":["Contour"],"Loop":["Boucle"],"Autoplay":["Lecture auto"],"Playback Controls":["Commandes de lecture"],"Close dialog":["Fermer la boîte de dialogue"],"Sorry, this file type is not permitted for security reasons.":["Désolé, ce type de fichier n’est pas permis pour des raisons de sécurité."],"Disable tips":["Désactiver les astuces"],"Got it":["J’ai compris"],"See next tip":["Voir l’astuce suivante"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Lorsque vous serez prêt·e, envoyez votre travail en relecture, ainsi un éditeur pourra l’approuver pour vous."],"Are you ready to submit for review?":["Êtes-vous prêt·e à l’envoyer pour relecture ?"],"Replace image":["Remplacer l’image"],"Remove image":["Retirer l’image"],"Error while uploading file %s to the media library.":["Erreur lors du téléversement du fichier %s dans la bibliothèque de médias."],"This file exceeds the maximum upload size for this site.":["Ce fichier dépasse la taille maximum de téléversement de ce site."],"View the autosave":["Voir l’enregistrement automatique"],"There is an autosave of this post that is more recent than the version below.":["Il existe un enregistrement automatique plus récent pour ce contenu."],"Autosaving":["Enregistrement automatique"],"Enter URL here…":["Saisissez l’URL ici…"],"Pin to toolbar":["Épingler à la barre d’outils"],"Unpin from toolbar":["Décrocher de la barre d’outils"],"Insert a table — perfect for sharing charts and data.":["Insérer un tableau — parfait pour partager des graphiques et des données."],"Fixed width table cells":["Cellules de tableau à largeur fixe"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Ajoute du texte qui respecte les espacements et tabulation, et qui autorise également de la mise en forme."],"Display a list of your most recent posts.":["Affiche une liste de vos articles les plus récents."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Ajoute un bloc affichant du contenu récupéré d’autres sites, comme Twitter, Instagram ou YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Ajoute un bloc qui affiche le contenu en plusieurs colonnes, dans lesquelles vous pouvez placer n’importe quels blocs de contenus."],"Error loading block: %s":["Erreur de chargement du bloc : %s"],"Unknown error":["Erreur inconnue"],"Embed Handler":["Prise en charge des contenus embarqués"],"term\u0004Remove %s":["Retirer %s"],"Copy the permalink":["Copier le permalien"],"Permalink copied":["Permalien copié"],"Height in pixels":["Hauteur en pixels"],"Spacer settings":[],"Spacer":["Espacement"],"Toggle to show a large initial letter.":["Cliquer pour afficher une lettrine."],"Showing large initial letter.":["Affichage de la lettrine."],"Name:":["Nom :"],"%1$s (%2$s of %3$s)":["%1$s (%2$s sur %3$s)"],"Remove item":["Retirer l’élément"],"Color code: %s":["Code couleur : %s"],"Skip to the selected block":["Aller au bloc sélectionné."],"Publish…":["Publier…"],"Schedule…":["Planification…"],"Edit post permalink":["Modifier le permalien du contenu"],"Show Block Settings":["Afficher les réglages du bloc"],"Hide Block Settings":["Masquer les réglages du bloc"],"Block settings closed":["Réglages du bloc fermés"],"Close plugin":["Fermer l’extension"],"Editor settings":["Réglages de l’éditeur"],"Link settings":["Réglages de lien"],"Unlink":["Supprimer le lien"],"Page break":["Saut de page"],"pagination":["pagination"],"next page":["page suivante"],"Image Size":["Taille d’image"],"Height":["Hauteur"],"Width":["Largeur"],"Image Dimensions":["Dimensions de l’image"],"Thumbnails are not cropped.":["Les miniatures ne sont pas recadrées."],"Thumbnails are cropped to align.":["Les miniatures sont recadrées pour s’aligner."],"Media Library":["Bibliothèque de médias"],"Advanced":["Avancé"],"Add item":["Ajouter un élément"],"Reset the template":["Réinitialiser le modèle"],"Keep it as is":["Laisser tel quel"],"The content of your post doesn’t match the template assigned to your post type.":["Le contenu ne correspond pas au modèle assigné au type de contenus."],"Resetting the template may result in loss of content, do you want to continue?":["Réinitialiser le modèle peut résulter à la perte de contenus, voulez-vous continuer ?"],"Document Statistics":["Statistiques du document"],"is now scheduled. It will go live on":["est maintenant planifié. Il sera publié le"],"Scheduled":["Planifié"],"Scheduling…":["Planification…"],"Code editor selected":["Éditeur de code sélectionné"],"Visual editor selected":["Éditeur visuel sélectionné"],"Plugins":["Extensions"],"Custom Size":["Taille personnalisée"],"Layout elements":[],"term\u0004%s removed":["%s supprimé"],"term\u0004%s added":["%s ajouté"],"imperative verb\u0004Preview":["Prévisualiser"],"Block deleted.":["Bloc supprimé."],"Block updated.":["Bloc mis à jour."],"Block created.":["Bloc créé."],"Trashing failed":["Suppression échouée"],"Updating failed.":["Mise à jour échouée."],"Scheduling failed.":["Planification échouée."],"Publishing failed.":["Publication échouée."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Vous avez des changements non enregistrés. Si vous poursuivez, ils seront perdus."],"Document Outline":["Aperçu du document"],"Paragraphs":["Paragraphes"],"Headings":["Titres"],"Words":["Mots"],"Content structure":["Structure du contenu"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protégé avec le mot de passe choisi. Ce contenu ne peut être affiché que par les personnes disposant de ce mot de passe."],"Password Protected":["Protégé par mot de passe"],"Only visible to site admins and editors.":["Uniquement visible pour les administrateur·ices et les éditeur·ices."],"Private":["Privé"],"Visible to everyone.":["Visible pour tout le monde."],"Post Visibility":["Visibilité de la publication"],"Would you like to privately publish this post now?":["Voulez-vous passer cette publication en privé ?"],"Use a secure password":["Utiliser un mot de passe sécurisé"],"Create password":["Créer un mot de passe"],"Move to Trash":["Déplacer vers la corbeille"],"Parent Term":["Terme parent"],"Parent Category":["Catégorie parente"],"Add new term":["Ajouter un nouveau terme"],"Add new category":["Ajouter une nouvelle catégorie"],"Term":["Terme"],"Tag":["Étiquette"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Confirmez-vous la mise hors ligne de cette publication ?"],"Immediately":["Immédiatement"],"Save Draft":["Enregistrer le brouillon"],"Saving":["Enregistrement"],"Publish:":["Publier : "],"Visibility:":["Visibilité : "],"Are you ready to publish?":["Prêt⋅e à publier ?"],"Copy Link":["Copier le lien"],"What’s next?":["Que faire après ?"],"is now live.":["est maintenant en ligne."],"Published":["Publié"],"Schedule":["Planifier"],"Update":["Mettre à jour"],"Submit for Review":["Soumettre à la relecture"],"Updating…":["Mise à jour…"],"Publishing…":["Publication…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalien :"],"Pending review":[],"%d Revision":["%d révision","%d révisions"],"Suggestion:":["Suggestion :"],"Post Format":["Format de publication"],"Chat":["Discussion"],"Status":["État"],"Standard":["Standard"],"Aside":["En passant"],"Featured image":["Image mise en avant"],"Set featured image":[],"Learn more about manual excerpts":["En apprendre plus sur les extraits manuels"],"Write an excerpt (optional)":["Rédiger un extrait (facultatif)"],"Allow comments":[],"Template:":["Modèle :"],"no parent":["Aucun parent"],"no title":["aucun titre"],"Order":["Ordre"],"No blocks found.":["Aucun bloc trouvé."],"%d result found.":["%d résultat trouvé.","%d résultats trouvés."],"Saved":["Enregistré"],"Embeds":["Contenus embarqués"],"Blocks":["Blocs"],"Search for a block":["Rechercher un bloc"],"Add block":["Ajouter un bloc"],"Copy Error":["Copier l’erreur"],"Copy Post Text":["Copier le texte du contenu"],"Attempt Recovery":["Tentative de récupération"],"The editor has encountered an unexpected error.":["L’éditeur a rencontré une erreur inattendue."],"Undo":["Défaire"],"Redo":["Rétablir"],"(Multiple H1 headings are not recommended)":["(il est déconseillé d’utiliser plusieurs titres H1)"],"(Your theme may already use a H1 for the post title)":["(votre thème devrait avoir un H1 pour le titre de cette publication)"],"(Incorrect heading level)":["(niveau de titre erroné)"],"(Empty heading)":["(Titre vide)"],"Block Styles":["Styles de bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Confirmez-vous la suppression de ce bloc réutilisable ?\n\nIl sera retiré définitivement de tous les contenus qui l’utilisent."],"Convert to Regular Block":["Convertir en bloc Gutenberg normal"],"More options":["Plus d’options"],"Edit visually":["Modifier visuellement"],"Duplicate":["Dupliquer"],"Blocks cannot be moved down as they are already at the bottom":["Les blocs ne peuvent pas être déplacés vers le bas car ils sont déjà tout en bas."],"Blocks cannot be moved up as they are already at the top":["Les blocs ne peuvent pas être déplacés vers le haut car ils sont déjà tout en haut."],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Le bloc « %s » est le seul bloc et ne peut pas être déplacé"],"Edit as HTML":["Modifier en HTML"],"Convert to Blocks":["Convertir en blocs"],"Block: %s":["Bloc : %s"],"This block has encountered an error and cannot be previewed.":["Ce bloc a rencontré une erreur et ne peut pas être prévisualisé."],"No block selected.":["Aucun bloc sélectionné."],"Transform into:":["Transformer en :"],"Remove":["Retirer"],"Find original":["Trouver l’original"],"Copy all content":[],"Copied!":["Copié !"],"Additional settings are now available in the Editor block settings sidebar":["Des réglages supplémentaires sont maintenant disponibles dans la colonne latérale des réglages avancés de l’éditeur"],"Visibility":["Visibilité"],"Status & visibility":[],"Page attributes":[],"Block":["Bloc","%d Blocs"],"Document":["Document"],"Close settings":["Fermer les réglages"],"Editor content":["Contenu de l’éditeur"],"Tools":["Outils"],"Editor":["Éditeur"],"Code editor":[],"Visual editor":[],"Editor top bar":["Barre d’outils de l’éditeur"],"Settings":["Réglages"],"Reset":["Réinitialiser "],"Dismiss this notice":["Désactiver cette notification"],"Item removed.":["Élément retiré."],"Item added.":["Élément ajouté."],"Drop files to upload":["Glisser les fichier à téléverser"],"PM":["après-midi"],"AM":["matin"],"An unknown error occurred.":["Une erreur inconnue est survenue."],"No results.":["Aucun résultat."],"%d result found, use up and down arrow keys to navigate.":["%d résultat trouvé, vous pouvez naviguer avec les touches haut et bas.","%d résultats trouvés, vous pouvez naviguer avec les touches haut et bas."],"(no title)":["(aucun titre)"],"URL":["URL"],"Submit":["Envoyer"],"Close":["Fermer"],"Insert link":["Insérer un lien"],"Edit link":["Modifier le lien"],"Link":["Lien"],"Strikethrough":["Barrer"],"Italic":["Italique"],"Bold":["Gras"],"Remove link":["Retirer le lien"],"Number of items":["Nombre d’éléments"],"All":["Tout"],"Category":["Catégorie"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Des plus anciens aux plus récents"],"Newest to Oldest":["Des plus récents aux plus anciens"],"Order by":["Ordonner par"],"Select":["Sélectionner"],"Select or Upload Media":["Sélectionner ou téléverser un fichier"],"Video":["Vidéo"],"Write…":["Rédiger…"],"poetry":["poésie"],"Verse":["Couplet"],"New Column":["Ajouter une colonne"],"Delete Column":["Supprimer une colonne"],"Add Column After":["Ajouter une colonne à la suite"],"Add Column Before":["Ajouter une colonne avant"],"Delete Row":["Supprimer la ligne"],"Add Row After":["Ajouter une ligne après"],"Add Row Before":["Ajouter une ligne avant"],"Edit table":["Modifier le tableau"],"Table":["Tableau"],"Write subheading…":["Rédiger une exergue…"],"Write shortcode here…":["Placer le code court ici…"],"Shortcode":["Code court"],"divider":["Séparateur"],"horizontal-line":["Filet horizontal"],"Separator":["Séparateur"],"Quote":["Citation"],"Write citation…":["Rédiger une citation…"],"Write quote…":["Rédiger une citation…"],"Pullquote":["Citation en exergue"],"Write preformatted text…":["Rédiger un texte pré-formaté…"],"Preformatted":["Pré-formaté"],"text":["Texte"],"Paragraph":["Paragraphe"],"Font Size":["Taille de police"],"Drop Cap":["Lettrine"],"Text settings":[],"Read more":["Lire la suite"],"Write list…":["Rédiger une liste…"],"numbered list":["Liste numérotée"],"ordered list":["Liste ordonnée"],"bullet list":["Liste à puces"],"Indent list item":["Indenter l’élément de la liste"],"Outdent list item":["Désindenter l’élément de la liste"],"Convert to ordered list":["Convertir en liste ordonnée"],"Convert to unordered list":["Convertir en liste non-ordonnée"],"List":["Liste"],"recent posts":["contenus récents"],"No posts found.":["Aucun résultat."],"Latest Posts":["Derniers contenus"],"Display post date":["Affiche la date du contenu"],"Grid view":["Vue en grille"],"List view":["Vue en liste"],"photo":["photo"],"Image settings":[],"Image":["Image"],"Preview":["Aperçu"],"embed":["Contenu embarqué"],"Custom HTML":["HTML personnalisé"],"subtitle":["sous-titre"],"title":["titre"],"Heading":["Titre"],"Write heading…":["Rédiger un titre…"],"Heading %d":["Titrage %d"],"Level":["Niveau"],"Heading settings":[],"photos":["photos"],"images":["images"],"None":["Aucun"],"Media File":["Fichier média"],"Attachment Page":["Page du fichier joint"],"Link to ":[],"Crop Images":["Recadrer les images"],"Gallery settings":[],"Gallery":["Galerie"],"Classic":["Classique"],"video":["vidéo"],"audio":["son"],"music":["musique"],"image":["image"],"blog":["blog"],"post":["contenu"],"Embedded content from %s":["Contenu embarqué depuis %s"],"Enter URL to embed here…":["Saisir l’URL à embarquer…"],"%s URL":["%s URL"],"Embedding…":["Récupération…"],"Write title…":["Rédiger le titre…"],"Fixed Background":["Arrière-plan fixe"],"Edit image":["Modifier l’image"],"Columns":["Colonnes"],"Experiments":["Expérimentaux"],"Code":["Code"],"Write code…":["Rédiger du code…"],"Categories":["Catégories"],"Show Hierarchy":["Afficher la hiérarchie"],"Show post counts":["Afficher le nombre de contenus"],"Categories settings":[],"Add text…":["Ajout de texte…"],"Button":["Bouton"],"Apply":["Appliquer"],"Text Color":["Couleur du texte"],"Background Color":["Couleur d’arrière-plan"],"Block has been deleted or is unavailable.":["Le bloc a été supprimé ou n’est plus disponible."],"Reusable blocks":[],"Cancel":["Annuler"],"Edit":["Modifier"],"Write caption…":["Rédiger la légende…"],"Use URL":["Utiliser une URL"],"Audio":["Son"],"Upload":["Téléverser"],"Additional CSS Class(es)":["Classe(s) CSS additionnelle(s)"],"HTML Anchor":["Ancre HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Cette combinaison de couleurs peut être difficile a lire pour certaines personnes. Essayer une couleur d’arrière-plan plus claire et/ou une couleur de texte plus foncée."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Cette combinaison de couleurs est difficilement lisible. Essayez d’utiliser une couleur d’arrière-plan et/ou de texte plus sombre."],"Clear":["Effacer"],"Custom color picker":["Sélecteur de couleur personnalisée"],"Color: %s":["Couleur : %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Mise en forme"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["L’impression depuis 1440. L’extension en cours de développement pour le nouvel éditeur de blocs du cœur WP."],"Add title":["Ajout de titre"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Le mode développement de Gutenberg nécessite que des fichiers soient générés. Lancer npm install
pour installer les dépendances, et npm run dev
pour générer et vérifier les fichiers. Lire le fichier de contribution (en anglais) pour plus d’informations."],"Author":["Auteur·e"],"Slug":["Identifiant"],"Discussion":["Discussion"],"Custom fields":[],"Excerpt":["Extrait"],"Publish":["Publier"],"Metadata":["Métadonnée"],"Save":["Enregistrer"],"Documentation":["Documentation"],"Select Category":["Sélection de catégorie"],"(Untitled)":["(Sans titre)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg nécessite WordPress %s ou supérieur pour fonctionner correctement. Veuillez mettre à niveau WordPress avant d’activer Gutenberg."],"Gutenberg Team":["L’équipe de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Démo"],"%s ago":["Il y a %s"],"Block style name must be a string.":["Le nom de style de bloc doit être une chaîne."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_gl.json b/bundle/android/raw/i18ncache_data_gl.json
new file mode 100644
index 0000000000..e8442ace58
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_gl.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Mostrar icona do submenú nos elementos do nivel superior"],"Display settings":["Axustes de visualización"],"Choose variation":["Elixir variación"],"Angle":["Ángulo"],"%s Block":["Bloque %s"],"%1$s Block. %2$s":["Bloque %1$s. %2$s"],"%s Block. Column %d":["Bloque %s. Columna %d"],"%1$s Block. Column %2$d. %3$s":["Bloque %1$s. Columna %2$d. %3$s"],"%s Block. Row %d":["Bloque %s. Fila %d"],"%1$s Block. Row %2$d. %3$s":["Bloque %1$s. Fila %2$d. %3$s"],"Post Excerpt":["Extracto da entrada"],"Post Date":["Data de publicación"],"No Date":["Sen data"],"Post Author":["Autor da entrada"],"Choose":["Elixir"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":["Elixe unha parte do modelo por slug e tema ou crea unha nova."],"Error adding template.":["Erro ao engadir o modelo."],"Footer label":["Etiqueta do pé de páxina"],"Header label":["Etiqueta da cabeceira"],"Unsupported":["Non compatible"],"The description will be displayed in the menu if the current theme supports it.":["A descrición amosarase no menú se o tema actual o soporta."],"Level %1$s. %2$s":["Nivel %1$s. %2$s"],"Level %s. Empty.":["Nivel %s. Baleiro."],"Empty":["Baleiro"],"Search results for %s":["Resultados da procura de %s"],"Recently updated":["Recentemente actualizados"],"Multiple selected blocks":["Múltiples bloques seleccionados"],"By %s":["Por %s"],"Inspector":["Inspector"],"Site editor advanced settings.":["Axustes avanzados do editor do sitio."],"(beta)":["(beta)"],"Site Editor":["Editor do sitio"],"Site editor top bar.":["Barra superior do editor do sitio."],"Briefly describe the link to help screen reader users.":["Describe brevemente o enlace para axudar aos usuarios de lectores de pantalla."],"Link Label":["Etiqueta do enlace"],"%s label":["Etiqueta de %s"],"poem":["poema"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["MONTAÑA . EXTERIOR - NOITE\nA luz incerta que precede ao amencer debuxa con dificultade as rochas e matojos do monte. \nSobe néboa do val. "],"Full Post":["Entrada completa"],"Show:":["Amosar:"],"Create from all top-level pages":["Crear desde todas as páxinas pai"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Anima aos visitantes a que realicen algunha acción cun grupo de enlaces estilo botón."],"Buttons":["Botóns"],"Background":["Fondo"],"Background & Text Color":["Cor de fondo e cor de texto"],"Images Size":["Tamaño das imaxes"],"Remove multiple selected blocks.":["Elimina os múltiples bloques seleccionados."],"(%s: gradient %s)":["(%s: degradado %s)"],"(%s: color %s)":["(%s: cor %s)"],"(Gradient: %s)":["(Degradado: %s)"],"(Color: %s)":["(Cor: %s)"],"Here's a detailed guide.":["Aquí hai unha guía detallada."],"New to the Block Editor? Want to learn more about using it? ":["Novo no editor de bloques? Queres aprender máis sobre como usalo?"],"Learn how to use the Block Editor":["Aprende a usar o editor de bloques"],"Help":["Axuda"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["Icona do bloque %s"],"Submit for Review…":["Enviar a revisión…"],"Update…":["Actualizar…"],"Select items to save.":["Selecciona elementos para gardar."],"What do you want to save?":["Que queres gardar?"],"Untitled":["Sen título"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["O editor de bloques inclúe características experimentais que se poden usar mentres están en desenvolvemento. Selecciona as que desexas activar. É probable que estas características cambien, así que evita usalas en produción."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Activar a edición completa do sitio (Advertencia: isto remprazará o teu tema e causará cambios potencialmente irreversibles no teu sitio. Recomendamos usar isto só nun entorno de desenvolvemento)."],"Site Editor (beta)":["Editor do sitio (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Un «bloque» é o termo abstracto utilizado\n// para describir as unidades de marcado que\n// cando se compoñen xuntas, forman o\n// contido ou deseño dunha páxina.\nregisterBlockType( name, settings );"],"You are probably offline.":["Probablemente esteas desconectado."],"Justify items right":["Xustificar elementos á dereita"],"Justify items center":["Xustificar elementos ao centro"],"Justify items left":["Xustificar elementos á esquerda"],"Change items justification":["Cambiar o xustificado dos elementos"],"The media file has been replaced":["O arquivo de medios foi substituído"],"Replace":["Substituír"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Actualmente estás no modo de edición. Para volver ao modo de navegación, pulsa «Escape»."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Actualmente estás no modo de navegación. Navega entre bloques usando a tecla «Tab». Para saír do modo de navegación e editar o bloque seleccionado, pulsa «Intro»."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Usa as teclas de frecha esquerda ou dereita ou arrastra e solta co rato para cambiar a posición do degradado. Pulsa o botón para cambiar a cor ou eliminar o punto de control."],"Gradient control point at position %1$s with color code %2$s.":["Punto de control de degradado na posición %1$s con código de cor %2$s."],"Preset Size":["Tamaño por defecto"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["As ferramentas ofrecen diferentes interaccións para a selección e edición de bloques. Para seleccionar, pulsa «Escape», para volver á edición, pulsa «Intro»."],"Open Media Library":["Abrir biblioteca de medios"],"Next":["Seguinte"],"Previous":["Anterior"],"Finish":["Finalizar"],"Page %1$d of %2$d":["Páxina %1$d de %2$d"],"Guide controls":["Controis de guía"],"Remove Control Point":["Eliminar punto de control"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Cada bloque vén co seu propio conxunto de controis para cambiar cousas coma a cor, o ancho e a aliñación. Estes mostraranse e ocultaranse automaticamente cando selecciones un bloque."],"Make each block your own":["Fai que cada bloque sexa teu"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["No editor de WordPress, cada parágrafo, imaxe ou vídeo preséntase coma un «bloque» distinto de contido."],"ADD MEDIA":["ENGADIR MEDIOS"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Todos os bloques que tes dispoñibles están na biblioteca de bloques. Encontraralos onde sexa que vexas a icona "],"Get to know the Block Library":["Coñece a biblioteca de bloques"],"Welcome Guide":["Guía de benvida"],"Enable page templates":["Activar modelos de páxina"],"Page Templates":["Modelos de páxina"],"Enable Full Site Editing demo templates":["Activar os modelos de demostración de edición completa do sitio"],"Full Site Editing Demo Templates":["Modelos de demostración de edición completa do sitio"],"Welcome to the Block Editor":["Benvido ao editor de bloques"],"Get started":["Primeiros pasos"],"inserter":["insertador"],"Post Title":["Título da entrada"],"Add nofollow to link":["Engadir nofollow ao enlace"],"Add submenu":["Engadir submenú"],"Add link…":["Engadir enlace…"],"Dark":["Escuro"],"Light":["Claro"],"recording":["gravación"],"podcast":["podcast"],"sound":["son"],"Array of instance changes":["Array de cambios na instancia"],"Current widget instance":["Instancia actual do widget"],"Template parts to include in your templates.":["Partes do modelo a incluír nos teus modelos."],"Template parts list":["Lista de partes do modelo"],"Template parts list navigation":["Lista de navegación de partes do modelo"],"Filter template parts list":["Filtrar lista de partes do modelo"],"Uploaded to this template part":["Subiba a esta parte do modelo"],"Insert into template part":["Insertar na parte do modelo"],"Template part archives":["Arquivo de partes do modelo"],"No template parts found in Trash.":["Non se encontraron partes do modelo na papeleira."],"No template parts found.":["Non se encontraron partes do modelo."],"Parent Template Part:":["Parte do modelo pai:"],"Search Template Parts":["Buscar partes do modelo"],"All Template Parts":["Todas as partes do modelo"],"View Template Part":["Ver parte do modelo"],"Edit Template Part":["Editar parte do modelo"],"New Template Part":["Nova parte do modelo"],"Add New Template Part":["Engadir nova parte do modelo"],"Template Part\u0004Add New":["Engadir nova"],"Admin Menu text\u0004Template Parts":["Partes do modelo"],"Template Part":["Parte do modelo"],"Template Parts":["Partes do modelo"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Lingoa proletaria do meu pobo\neu fáloa porque si, \nporque me gosta,\nporque me peta e quero e dame a gaña\nporque me sai de dentro, alá do fondo\ndunha tristura aceda que me abrangue\nao ver tantos patufos desleigados…"],"Navigation":["Navegación"],"Loading Navigation…":["Cargando navegación..."],"Navigation Structure":["Estrutura de navegación"],"Create empty":["Crear baleiro"],"Create a Navigation from all existing pages, or create an empty one.":["Crea unha navegación con todas as páxinas existentes ou crea unha nova baleira."],"Navigation Link":["Enlace de navegación"],"(Note: many devices and browsers do not display this text.)":["(Nota: moitos dispositivos e navegadores non mostran este texto.)"],"Describe the role of this image on the page.":["Describe o rol desta imaxe na páxina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Alterna entre usar o mesmo valor en todos os tamaños de pantalla ou usar un único valor por tamaño de pantalla."],"Use the same %s on all screensizes.":["Utilizar o mesmo %s en todos os tamaños de pantalla."],"Large screens":["Pantallas grandes"],"Medium screens":["Pantallas medianas"],"Small screens":["Pantallas pequenas"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controla a propiedade %1$s para os «viewports» %2$s."],"Currently selected":["Seleccionado actualmente"],"Search or type url":["Busca ou escribe a URL"],"Press ENTER to add this link":["Presiona ENTER para engadir este enlace"],"Currently selected link settings":["Axustes do enlace seleccionado actualmente"],"Generic label for block inserter button\u0004Add block":["Engadir bloque"],"directly add the only allowed block\u0004Add %s":["Engadir %s"],"%s block added":["Bloque %s engadido"],"Move %s":["Mover %s"],"Extra Large":["Extra grande"],"Block breadcrumb":["Bloque de faragullas de pan"],"Editor footer":["Editor do pé de páxina"],"Site Title":["Título do sitio"],"Open Colors Selector":["Abrir o selector da cor"],"Templates list":["Lista de modelos"],"Templates list navigation":["Navegación da lista de modelos"],"Filter templates list":["Filtro da lista de modelos"],"Uploaded to this template":["Subido a este modelo"],"Insert into template":["Inserir no modelo"],"Template archives":["Arquivos de modelos"],"No templates found in Trash.":["Non se atoparon modelos na papeleira"],"No templates found.":["No se atoparon modelos."],"Parent Template:":["Modelo principal:"],"Search Templates":["Buscar modelos"],"All Templates":["Tódolos modelos"],"View Template":["Ver o modelo"],"Edit Template":["Editar o modelo"],"New Template":["Novo modelo"],"Add New Template":["Engadir un novo modelo"],"Template\u0004Add New":["Engadir novo"],"Admin Menu text\u0004Templates":["Modelos"],"Template":["Modelo"],"No matching template found":["No se atoparon modelos que coincidan"],"Gradient: %s":["Degradado: %s"],"Gradient code: %s":["Código de degradado: %s"],"All content copied.":["Copiado todo o contido."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Erro na subida de medios. Se isto é unha foto ou unha imaxe grande, por favor, reduce o seu tamaño e inténtao de novo."],"Gradient":["Degradado"],"Gradient Presets":["Axustes previos de degradado"],"No Preview Available.":["Vista previa non dispoñible."],"Midnight":["Medianoite"],"Electric grass":["Herba eléctrica"],"Pale ocean":["Océano pálido"],"Luminous dusk":["Atardecer luminoso"],"Blush bordeaux":["Rubor burdeos"],"Blush light purple":["Rubor púrpura claro"],"Cool to warm spectrum":["Espectro frío a quente"],"Very light gray to cyan bluish gray":["Gris moi claro a gris azulado cian"],"Luminous vivid orange to vivid red":["Laranxa vivo luminoso a roxo vivo"],"Luminous vivid amber to luminous vivid orange":["Ámbar vivo luminoso a laranxa vivo"],"Light green cyan to vivid green cyan":["Verde cian claro a verde cian vivo"],"Vivid cyan blue to vivid purple":["Cian azul vivo a púrpura vivo"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 de decembro de 2018"],"February 21, 2019":["21 de febreiro de 2019"],"May 7, 2019":["7 de maio de 2019"],"Release Date":["Data de lanzamento"],"Jazz Musician":["Músico de jazz"],"Version":["Versión"],"Six.":["Seis."],"Five.":["Cinco."],"Four.":["Catro."],"Three.":["Tres."],"Two.":["Dous."],"One.":["Un."],"One of the hardest things to do in technology is disrupt yourself.":["Unha das cousas máis difíciles de facer en tecnoloxía é interromperte a ti mesmo."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["O reiciño
Gáñase a vida
Sen facer ruído."],"Welcome to the wonderful world of blocks…":["Benvido ao marabilloso mundo dos bloques…"],"Snow Patrol":["Patrulla da neve"],"Dimensions":["Dimensións"],"Minimum height in pixels":["Altura mínima en píxeles"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["A peich amatomaa apetecan a wan da pradeira. Vai vostede moi cargadoo pola gloria da miña nai, que está a cousa moi maliñaaaar, Gayosooooooor"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Lévame ao sircoo non podoooor pola gloria da miña nai, pola gloria da miña nai. Vai vostede moi cargadiñooor diodenoo ao ataquerl, lévame ao sircoo non che digo trigo por non chamarte Rodrigor. "],"Call to Action":["Chamada á acción"],"In quoting others, we cite ourselves.":["O citar a outros, citámonos a nós mesmos."],"cite":["cita"],"Mont Blanc appears—still, snowy, and serene.":["O Mont Blanc parece–aínda, nevado, e calmo."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Nun lugar da Mancha, cuxo nome no quero recordar, non fai moito tempo que vivía un fidalgo dos de lanza en estaleiro, adarga antiga, cabalo fraco e galgo corredor."],"Block navigation":["Navegación de bloques"],"Full Site Editing":["Edición completa do sitio"],"Templates to include in your theme.":["Modelos a incluir no teu tema."],"Templates":["Modelos"],"Inserter help panel":["Panel de axuda do insertador"],"Pre-publish checks":["Comprobacións previas á publicación"],"Please contact your site administrator to install new blocks.":["Por favor, contacta co administrador do teu sitio para instalar novos bloques."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["No se atoparon bloques na túa biblioteca. Por favor, contacta co administrador do teu sitio para instalar novos bloques."],"No blocks found in your library.":["Non se atoparon bloques na túa biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["Non se atoparon bloques na túa biblioteca. Estes bloques poden ser descargados e instalados:"],"No blocks found in your library. We did find %d block available for download.":["Non se atoparon bloques na túa biblioteca. Atopamos %d bloque dispoñible para descargar.","Non se atoparon bloques na túa biblioteca. Atopamos %d bloques dispoñibles para descargar."],"Block previews can’t load.":["Non se poden cargar as vistas previas do bloque."],"Retry":["Reintentar"],"Block previews can't install.":["Non se poden instalar as vistas previas do bloque."],"Updated %s":["%s actualizado"],"%d active installation":["%d instalación activa","%d instalacións activas"],"This author has %d block, with an average rating of %d.":["Este autor ten %d bloque, cunha valoración media de %d.","Este autor ten %d bloques, cunha valoración media de %d."],"Authored by %s":["Creado por %s"],"%d total rating":["%d valoración en total","%d valoracións en total"],"%s out of 5 stars":["%s de 5 estrelas"],"Enter Address":["Engadir a dirección"],"Pill Shape":["Forma de pastilla"],"Logos Only":["Só logotipos"],"Create a block of links to your social media or external sites":["Crea un bloque de ligazóns aos teus medios sociais ou sitios externos"],"Social links":["Ligazóns sociais"],"Open block navigator":["Abrir o navegador de bloques"],"Attachment page":["Páxina de adxuntos"],"Fill":["Encher"],"Link rel":["«rel» daligazón"],"Border Radius":["Radio do borde"],"Write gallery caption…":["Escribe a lenda da galería..."],"Content blocks":["Bloques de contenido"],"Restore the backup":["Restaurar a copia de seguridade"],"The backup of this post in your browser is different from the version below.":["A copia de seguridade desta entrada no teu navegador é diferente da seguinte versión."],"Enable block directory search":["Activar a busca no directorio de bloques"],"Block Directory":["Directorio de bloques"],"Unable to connect to the filesystem. Please confirm your credentials.":["Non se puido conectar co sistema de arquivos. Por favor, confirma os teus credenciais."],"Sorry, you are not allowed to install blocks.":["Síntoo, non tes permiso para instalar bloques."],"%1$d block is disabled.":["%1$d bloque está desactivado.","%1$d bloques están desactivados."],"Reverse List Numbering":["Lista de numeración inversa"],"Start Value":["Valor inicial"],"Ordered list settings":["Axustes de listas ordenadas"],"Clear Media":["Baleirar os medios"],"Default Style":["Estilo por defecto"],"Not set":["Non establecido"],"While writing, you can press / to quickly insert new blocks.":["Ao escribir, podes pulsar / para insertar novos bloques rapidamente."],"Browse through the library to learn more about what each block does.":["Examina a biblioteca para aprender máis sobre que fai cada bloque."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Hai bloques dispoñibles para todo tipo de contidos: inserir texto, encabezados, imaxes, listas, vídeos, táboas e moito máis."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Benvido ao marabilloso mundo dos bloques! Os bloques son a base de todo contido dentro do editor."],"Version of the content block format used by the object.":["Versión do formato do bloque de contido usado polo obxecto."],"HTML content for the object, transformed for display.":["Contido HTML para o obxecto, transformado para a súa visualización."],"Content for the object, as it exists in the database.":["Contido para o obxecto, tal como existe na base de datos."],"The content for the object.":["O contido para o obxecto."],"Change column alignment":["Cambiar a aliñación da columna"],"Align Column Right":["Aliñar a columna á dereita"],"Align Column Center":["Aliñar a columna ao centro"],"Align Column Left":["Aliñar a columna á esquerda"],"Color":["Cor"],"Vivid purple":["Morado vivo"],"Disable & Reload":["Desactivar e recargar"],"Enable & Reload":["Activar e recargar"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Necesítase recargar a páxina para este cambio. Antes de recargar, asegúrate de que o teu contido está gardado."],"Display these keyboard shortcuts.":["Amosar estes atallos del teclado."],"Experiments Settings":["Axustes experimentais"],"Enable Widgets screen and Legacy Widgets block":["Activar a pantalla de widgets e o bloque de widgets heredados"],"Experimental settings":["Axustes experimentais"],"Block name name must be a string.":["O nome do bloque ten que ser unha cadea."],"Custom":["Personalizado"],"Draft":["Borrador"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["O bloque «%1$s» non ten un estilo chamado «%2$s»."],"Learn more about anchors":["Aprende máis sobre as anclaxes"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Engade unha palabra ou dúas – sen espazos – para crear unha dirección web única so para este encabezado, chamada «ancoraxe». Logo poderás enlazar directamente a esta sección da túa páxina."],"Widget Blocks (Experimental)":["Bloques de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Sube un arquivo de vídeo, elixe un da túa biblioteca de medios ou engade un con unha URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Sube un arquivo de imaxe, elixe un da túa biblioteca de medios ou engade un cunha URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Sube un arquivo de audio, elixe un da túa biblioteca de medios ou engade un cunha URL."],"Upload a media file or pick one from your media library.":["Sube un arquivo de medios ou elixe un da túa biblioteca de medios."],"Skip":["Saltar"],"Select a variation to start with.":["Elixe un deseño co que comezar."],"Add a page, link, or another item to your navigation.":["Engade unha páxina, ligazón ou outro elemento á túa navegación."],"What's this?":["Qué é isto?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Non permitir que os motores de búsqueda sigan esta ligazón."],"Provide more context about where the link goes.":["Ofrece máis contexto sobre onde vai a ligazón."],"Title Attribute":["Atributo do título"],"SEO settings":["Axustes SEO"],"Description":["Descrición"],"Open in new tab":["Abrir nunha nova pestana"],"links":["ligazóns"],"navigation":["navegación"],"menu":["menú"],"Add a navigation block to your site.":["Engade un bloque de navegación ao teu sitio."],"Upload a file or pick one from your media library.":["Sube un arquivo de medios ou elixe un da túa biblioteca de medios."],"Learn more about embeds":["Aprende máis sobre os incrustados"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Pega unha ligazón ao contido que queiras amosar no teu sitio."],"Upload an image or video file, or pick one from your media library.":["Sube un arquivo de imaxe ou vídeo ou elixe un da túa biblioteca de medios."],"Three columns; wide center column":["Tres columnas; columna ancha centrada"],"Three columns; equal split":["Tres columnas; igual separación"],"Two columns; two-thirds, one-third split":["Dúas columnas: separación de dous tercios, un tercio "],"Two columns; one-third, two-thirds split":["Dúas columnas; separación dun tercio, dous tercios"],"Two columns; equal split":["Dúas columnas; igual separación"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["O teu sitio non ten ningún %s, así que non hai nada que amosar aquí de momento."],"More tools & options":["Máis ferramentas e opcións"],"Create Table":["Crear tabla"],"Insert a table for sharing data.":["Engadir unha tabla para compartir datos."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Desagrupar"],"verb\u0004Group":["Agrupar"],"Separate with commas or the Enter key.":["Sepárao con comas ou coa tecla Intro."],"Separate with commas, spaces, or the Enter key.":["Sepárao con comas, espacios o la tecla Intro."],"Separate multiple classes with spaces.":["Separa múltiples clases con espazos."],"Move image forward":["Mover a imaxe cara adiante"],"Move image backward":["Mover a imaxe cara atrás"],"Sorry, you are not allowed to edit sidebars.":["Síntoo, non tes permisos para editar barras laterais."],"Sorry, you are not allowed to read sidebars.":["Síntoo, non tes permisos para ler barras laterais."],"The sidebar’s ID.":["ID da barra lateral"],"Displays a set of blocks":["Amosa un conxunto de bloques"],"Blocks Area":["Área de bloques"],"Block rendered as empty.":["Bloque amosado vacío."],"Inline Code":["Código en líña"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Aviso: A reprodución automática de vídeos pode provocarlle problemas de usabilidade a algúns visitantes."],"Footer section":["Sección do pé de páxina"],"Header section":["Sección de cabeceira"],"Sorting and filtering":["Ordenación e filtrado"],"Post meta settings":["Axustes de meta de entrada"],"Post Content":["Contido da entrada"],"Post content settings":["Axustes de contido da entrada"],"Percentage width":["Porcentaxe de ancho"],"Column settings":["Axustes de columna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Aviso: A reprodución automática de audio pode provocarlle conflitos de usabilidade a algúns visitantes."],"Block area updated.":["Área de bloques actualizada."],"Block area scheduled.":["Área de bloques programada."],"Block area published.":["Área de bloques publicada."],"Block areas list":["Lista de áreas de bloques "],"Block areas list navigation":["Navegación de áreas de bloques"],"Filter block areas list":["Filtrar lista de áreas de bloques"],"No block area found.":["Non se atopou ningún área de bloques."],"Search Block Areas":["Buscar áreas de bloques"],"All Block Areas":["Todas as áreas de bloques"],"View Block Area":["Ver área de bloques"],"Edit Block Area":["Editar área de bloques"],"New Block Area":["Nova área de bloques"],"Add New Block Area":["Engadir nova área de bloques"],"admin menu\u0004Block Areas":["Áreas de bloques"],"post type singular name\u0004Block Area (Experimental)":["Área de bloques (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Área de bloques (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de contido personalizado que almacena as áreas de bloques referenciadas polos temas."],"Widgets screen content":["Contido da pantalla de widgets."],"header":["Cabeceira"],"Widgets advanced settings":["Axustes avanzados de widgets"],"(experimental)":["(experimental)"],"Block Areas":["Áreas de bloques"],"Widgets screen top bar":["Barra superior da pantalla de widgets"],"This color combination may be hard for people to read.":["Esta combinación de cor pode ser difícil de ler para a xente."],"There is no poster image currently selected":["Non hai ningunha imaxe de póster seleccionada agora"],"The current poster image url is %s":["A URL da imaxe actual do póster é %s"],"section":["sección"],"row":["fila"],"wrapper":["envoltura"],"container":["contenedor"],"A block that groups other blocks.":["Un bloque que agrupa outros bloques."],"Group":["Grupo"],"Crop image to fill entire column":["Recortar imaxe para encher toda a columna"],"Play inline":["Reproducción integrada"],"Leave empty if the image is purely decorative.":["Déixao baleiro se a imaxe é soamente decorativa."],"Describe the purpose of the image":["Describe o propósito da imaxe"],"Add a block":["Engade un bloque"],"Block vertical alignment setting label\u0004Change vertical alignment":["Cambiar alineación"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Alineación vertical ao fondo"],"Block vertical alignment setting\u0004Vertically Align Middle":["Alineación vertical ao medio"],"Replace Image":["Substituir imaxe"],"Block vertical alignment setting\u0004Vertically Align Top":["Alineación vertical arriba"],"Display a legacy widget.":["Amosa un widget herdado."],"Legacy Widget (Experimental)":["Widget herdado (experimental)"],"Change widget":["Cambiar widget"],"Legacy Widget":["Widget herdado"],"You don't have permissions to use widgets on this site.":["Non tes permisos para usar widgets neste sitio."],"Select a legacy widget to display:":["Elixe un widget herdado a amosar:"],"There are no widgets available.":["Non hai widgets dispoñibles."],"Change block type or style":["Cambiar tipo ou estilo do bloque"],"keyboard key\u0004Space":["Espacio"],"keyboard key\u0004Backspace":["Retroceso"],"More rich text controls":["Máis controles de texto enriquecido"],"Search Terms":["Termos de busca"],"Exit the Editor":["Saír do editor"],"Block Manager":["Xestor de bloques"],"Class name of the widget.":["Nome da clase do widget."],"Sorry, you are not allowed to access widgets on this site.":["Síntoo, non tes permisos para acceder a widgets neste sitio."],"Widgets (beta)":["Widgets (beta)"],"link":["ligazón"],"Embedded content from %s can't be previewed in the editor.":["O contido incrustado dende %s non se pode previsualizar no editor."],"Custom Color":["Cor personalizado"],"Prompt visitors to take action with a button-style link.":["Anima aos visitantes a que fagan algunha acción cunha ligazón estilo botón."],"Stick to the top of the blog":["Fixar na parte superior do blog"],"Read about permalinks":["Ler acerca das ligazóns permanentes"],"The last part of the URL.":["A última parte da URL."],"URL Slug":["Slug da URL"],"A cloud of your most used tags.":["Una nube das etiquetas máis usadas."],"Tag Cloud":["Nube de etiquetas"],"Taxonomy":["Taxonomía"],"Tag Cloud settings":["Axustes da nube de etiquetas"],"- Select -":["- Selecciona -"],"Default":["Por defecto"],"find":["atopar"],"Help visitors find your content.":["Axuda aos visitantes a atopar o teu contido."],"Search":["Buscar"],"Add button text…":["Engadir texto ao botón"],"Button text":["Texto do botón"],"Optional placeholder…":["Marcador de posición opcional ..."],"Optional placeholder text":["Texto do marcador de posición opcional"],"Add label…":["Engadir etiqueta..."],"Label text":["Texto da etiqueta"],"image %1$d of %2$d in gallery":["imaxe %1$d de %2$d na galería"],"archive":["arquivo"],"posts":["entradas"],"A calendar of your site’s posts.":["Un calendario das entradas do teu sitio."],"Calendar":["Calendario"],"by":["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Houbo un erro, que seguramente fará que o feed non funcione. Proba de novo máis tarde."],"RSS Error:":["Erro de RSS:"],"block style\u0004Default":["Por defecto"],"Fullscreen mode deactivated":["Modo a pantalla completa desactivado"],"Fullscreen mode activated":["Modo a pantalla completa activado"],"Spotlight mode deactivated":["Modo de enfoque desactivado"],"Spotlight mode activated":["Modo de enfoque activado"],"Top toolbar deactivated":["Barra superior desactivada"],"Top toolbar activated":["Barra superior activada"],"Back":["Voltar"],"Feature activated":["Característica activada"],"Feature deactivated":["Característica desactivada"],"Vertical Pos.":["Pos. vertical."],"Horizontal Pos.":["Pos. horizontal."],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Amosa entradas de calquera feed RSS ou Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Número máximo de palabras no extracto"],"Display excerpt":["Amosar extracto"],"Display date":["Amosar data"],"Display author":["Amosar autor"],"RSS settings":["Axustes RSS"],"Edit RSS URL":["Editar URL do RSS"],"Content before this block will be shown in the excerpt on your archives page.":["O contido anterior a este bloque amosarase no extracto da túa páxina de inicio."],"Hide the excerpt on the full content page":["Ocultar o extracto na páxina co contido completo"],"The excerpt is visible.":["O extracto é visible."],"The excerpt is hidden.":["O extracto está oculto."],"Sorry, this content could not be embedded.":["Síntoo, este contido non se pode incrustar."],"Embed Amazon Kindle content.":["Incrustar contido de Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incrustar contido de Crowdsignal (antes Polldaddy)."],"Focal Point Picker":["Selector do punto focal"],"Underline":["subliñado"],"Attempt Block Recovery":["Intento de recuperación do bloque"],"Word count type. Do not translate!\u0004words":["palabras"],"content placeholder\u0004Content…":["Contido…"],"button label\u0004Convert to link":["Convertir a ligazón"],"button label\u0004Try again":["Proba de novo"],"Editor tips":["Trucos para o editor"],"Block (selected)":["Bloque (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d verba","%d verbas"],"Top toolbar":["Barra de ferramentas superior"],"Link Rel":["Relación de ligazón"],"Link CSS Class":["Clases CSS da ligazón"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crea contido e gárdao para ti e outros colaboradores para que se reutilice a través do teu sitio. Actualiza o bloque e os cambios aplicaranse en todos os lugares nos que se usan."],"To edit the featured image, you need permission to upload media.":["Para editar a imaxe destacada, necesitas permisos para subir arquivos de medios."],"To edit this block, you need permission to upload media.":["Para editar este bloque, necesitas permisos para subir arquivos de medios."],"(selected block)":["(bloques seleccionados)"],"Block tools":["Ferramentas do bloque"],"Permalink":["Ligazón permanente"],"This image has an empty alt attribute":["Esta imaxe ten o atributo alt baleiro"],"This image has an empty alt attribute; its file name is %s":["Esta imaxe ten o atributo alt baleiro; o se nome de arquivo é %s"],"Block area reverted to draft.":["Bloque cambiado a borrador."],"Block area published privately.":["Bloque publicado en privado."],"No block areas found in Trash.":["Non se atoparon bloques na papeleira."],"Block\u0004Add New":["Engadir novo"],"add new on admin bar\u0004Block Area":["Bloque"],"Link inserted.":["Ligazón engadida."],"Warning: the link has been inserted but may have errors. Please test it.":["Atención: a ligazón inseriuse pero pode ter erros. Por favor, compróbao. "],"%s block selected.":["%s bloque seleccionado.","%s bloques seleccionados."],"Thumbnail":["Miniatura"],"Full Size":["Tamaño completo"],"Link selected.":["Ligazón seleccionada."],"Start writing with text or HTML":["Comeza a escribir texto ou HTML"],"Type text or HTML":["Escribe texto ou HTML"],"Block icon":["Icono do bloque"],"Align text right":["Alinear texto á dereita"],"Align text center":["Alinear texto ó centro"],"Align text left":["Alinear texto á esquerda"],"Start writing or type / to choose a block":["Comeza a escribir ou escribe / para elexir un bloque"],"Empty block; start writing or type forward slash to choose a block":["Bloque vacío; comeza a escribir ou escribe unha barra inclinada hacia adiante para elexir un bloque"],"Paragraph block":["Bloque de párrafo"],"Page Break":["Salto de páxina"],"Stack on mobile":["Apilado en móbil"],"Annotation":["Notas"],"Drag images, upload new ones or select files from your library.":["Arrastra imaxes, sobe novas ou elixe arquivos desde a túa biblioteca."],"blocks\u0004Most used":["Máis utilizados"],"imperative verb\u0004Resolve":["Resolve"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Medio"],"font size name\u0004Small":["Pequeno\t"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Intro"],"button label\u0004Import":["Importar\t"],"button label\u0004Download":["Descarga\t "],"button label\u0004Embed":["Incrustar"],"block title\u0004Embed":["Incrustado"],"block title\u0004Classic":["Clásico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":["Redondeado"],"%s (opens in a new tab)":["%s (abre nunha pestaña nova)"],"Link edited.":["Ligazón editada."],"Link removed.":["Ligazón eliminada."],"media":["medios"],"Double-check your settings before publishing.":["Volve comprobar os teus axustes antes de publicar."],"Generating preview…":["Xerando vista previa…"],"Edit or update the image":["Edita ou actualiza a imaxe"],"Media":["Multimedia"],"Navigate to the nearest toolbar.":["Navega ata a barra de ferramentas máis preto."],"Document tools":["Ferramentas do documento"],"Document and block tools":["Ferramentas do documento e os bloques"],"Embed a video from your media library or upload a new one.":["Incrusta un vídeo dende a túa biblioteca de medios ou sube un novo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserte poesía. Utiliza formatos de espaciado especiais. Ou cita letras de cancións."],"Add white space between blocks and customize its height.":["Engade espazo en branco entre bloques e personaliza a súa altura."],"Insert additional custom elements with a WordPress shortcode.":["Engade elementos adicionais personalizados cun shortcode de WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea unha ruptura entre ideas ou seccións cun separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Da un énfasis visual o texto citado. \"Ó citar a outros, citamonos a nós mesmos\". — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Da un énfasis visual especial a unha cita do teu texto."],"Start with the building block of all narrative.":["Empeza co bloque que cimenta toda a narrativa."],"Separate your content into a multi-page experience.":["Separa o teu contido nunha experiencia multi-páxina."],"Set media and words side-by-side for a richer layout.":["Coloca as palabras e os medios un á beira do outro para ter un deseño máis rico."],"Media & Text settings":["Axustes de medios e texto"],"Create a bulleted or numbered list.":["Crea unha lista de viñetas ou numerada."],"Display a list of your most recent comments.":["Mostra unha lista dos teus comentarios máis recentes."],"Insert an image to make a visual statement.":["Insere unha imaxe para facer unha declaración visual"],"Add custom HTML code and preview it as you edit.":["Engade código personalizado HTML e previsualízalo mentres o editas."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduce novas seccións e organiza o contido para axudar aos visitantes (e aos motores de procura) a comprender a estrutura do teu contido."],"Display multiple images in a rich gallery.":["Mostra múltiples imaxes nunha galería enriquecida.\t "],"Add a link to a downloadable file.":["Engade unha ligazón a un arquivo descargable."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incrusta vídeos, imaxes, tweets, audios, e outros contidos desde fontes externas."],"Resize for smaller devices":["Cambia o tamaño para dispositivos máis pequenos."],"This embed may not preserve its aspect ratio when the browser is resized.":["Este incrustado podería non manter a súa relación de aspecto cando o navegador cambie de tamaño."],"This embed will preserve its aspect ratio when the browser is resized.":["Este incrustado manterá a súa relación de aspecto cando o navegador cambie de tamaño."],"Embed an Animoto video.":["Incrustar video de Animoto."],"Embed a Vimeo video.":["Incrustar video de Vimeo."],"Embed Flickr content.":["Incrustar contido de Flickr."],"Embed Spotify content.":["Incrustar contido de Spotify."],"Embed SoundCloud content.":["Incrustar contido de SoundCloud."],"Embed a WordPress post.":["Incrustar entrada de WordPress."],"Embed an Instagram post.":["Incrustar unha entrada de Instagram."],"Embed a Facebook post.":["Incrustar unha entrada de Facebook."],"Embed a WordPress.tv video.":["Incrustar un vídeo de WordPress.tv."],"Embed a VideoPress video.":["Incrustar un video de VideoPress."],"Embed a Tumblr post.":["Incrustar unha publicación de Tumblr."],"Embed a TED video.":["Incrustar un vídeo de TED."],"Embed Speaker Deck content.":["Incrustar contido de Speaker Deck."],"Embed a YouTube video.":["Incrustar un video de YouTube."],"Embed SmugMug content.":["Incrustar contido de SmugMug."],"Embed Slideshare content.":["Incrustar contido de Slideshare."],"Embed Scribd content.":["Incrustar contido de Scribd."],"Embed Screencast content.":["Incrustar contido de Screencast."],"Embed ReverbNation content.":["Incrustar contido de ReverbNation."],"Embed a Reddit thread.":["Incrustar contido de Reddit."],"Embed Polldaddy content.":["Incrustar contido de Polldaddy."],"Embed Mixcloud content.":["Incrustar contido de Mixcloud."],"Embed a tweet.":["Incrustar un tweet."],"Embed Meetup.com content.":["Incrustar contido de Meetup.com."],"Embed Kickstarter content.":["Incrustar contido de Kickstarter."],"Embed Issuu content.":["Incrustar contido de Issuu."],"Embed Imgur content.":["Incrustar contido de Imgur."],"Embed Hulu content.":["Incrustar contido de Hulu."],"Embed a Dailymotion video.":["Incrustar video de Dailymotion."],"Embed CollegeHumor content.":["Incrustar contido de CollegeHumor."],"Embed Cloudup content.":["Incrustar contido de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Engade unha imaxe ou un video cun texto superposto — xenial para cabeceiras."],"Display code snippets that respect your spacing and tabs.":["Mostra fragmentos de código que respetan os teus espazos e tabuladores."],"Use the classic WordPress editor.":["Usar o editor clásico de WordPress."],"Display a list of all categories.":["Mostra unha lista de todas as categorías."],"Embed a simple audio player.":["Incrusta un reprodutor sinxelo de audio.\t"],"noun\u0004View":["Ver"],"editor button\u0004Left to right":["De esquerda a dereita"],"Save as Pending":["Gardar como pendente"],"%s address":["%s dirección"],"Paste or type URL":["Pegar ou escribir URL"],"Insert from URL":["Inserir desde URL"],"Block Navigator":["Navegación de bloques"],"Styles":["Estilos"],"Advanced panels":["Paneis avanzados"],"Document panels":["Paneis de documentos"],"General":["Xeral"],"Open the block navigation menu.":["Abre o menú de navegación de bloques."],"Work without distraction":["Traballo sen distraccións"],"Focus on one block at a time":["Enfócache nun bloque cada vez"],"Access all block and document tools in a single place":["Accede a todos as ferramentas de bloques e documentos desde un só lugar"],"Options":["Opcións"],"(opens in a new tab)":["(abrir nunha nova pestana)"],"Minutes":["Minutos"],"Hours":["Horas"],"Time":["Hora"],"Year":["Ano"],"Day":["Día"],"December":["Decembro"],"November":["Novembro"],"October":["Outubro"],"September":["Setembro"],"August":["Agosto"],"July":["Xullo"],"June":["Xuño"],"May":["Maio"],"April":["Abril"],"March":["Marzo"],"February":["Febreiro"],"January":["Xaneiro"],"Month":["Mes"],"Date":["Data"],"Go to the first (home) or last (end) day of a week.":["Ir o primero (inicial) ou último (final) día da semana."],"Home/End":["Inicio/Fin"],"Home and End":["Inicio e final"],"Move backward (PgUp) or forward (PgDn) by one month.":["Moverse cara atrás ( PgUp) ou cara adiante ( PgDn) un mes."],"PgUp/PgDn":["PxUp/PxDn "],"Page Up and Page Down":["Páxina arriba e páxina abaixo"],"Move backward (up) or forward (down) by one week.":["Moverse cara atrás (arriba) ou cara adiante (abaixo) unha semana.\t "],"Up and Down Arrows":["Frechas arriba e abaixo"],"Move backward (left) or forward (right) by one day.":["Moverse cara atrás (esquerda) ou cara adiante (dereita) un día."],"Left and Right Arrows":["Frechas esquerda e dereita"],"Select the date in focus.":["Seleccionar a data con foco."],"Navigating with a keyboard":["Navegando co teclado"],"Click the desired day to select it.":["Fai clic no día desexado para seleccionalo."],"Click the right or left arrows to select other months in the past or the future.":["Fai clic nas frechas esquerda e dereita para seleccionar outros meses no pasado ou no futuro.\t "],"Click to Select":["Clic para seleccionar"],"Calendar Help":["Axuda do almanaque"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Usa as teclas do cursor para cambiar a cor base. Arriba para aclarar a cor, abaixo para escurecelo, esquerda para reducir a saturación e dereita para incrementar a saturación."],"Choose a shade":["Elixe unha sombra"],"Change color format":["Cambia o formato da cor"],"Color value in HSL":["Valor da cor en HSL"],"Color value in RGB":["Valor da cor en RGB"],"Color value in hexadecimal":["Valor da cor en hexadecimal"],"RGB mode active":["Modo RGB activo"],"Hex color mode active":["Modo cor HEX activo"],"Hue/saturation/lightness mode active":["Modo de tono/saturación/brillo activo"],"Move the arrow left or right to change hue.":["Move a frecha á esquerda ou á dereita para cambiar o matiz."],"Hue value in degrees, from 0 to 359.":["Valor da tonalidade en graos, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (opaco)."],"Stripes":["Raias"],"Your site doesn’t include support for this block.":["O teu sitio non inclúe soporte para este bloque."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["O teu sitio non é compatibilidade co bloque \"%s\". Podes deixar intacto este bloque ou borralo do todo."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["O teu sitio non é compatibilidade co bloque \"%s\". Podes deixar intacto este bloque, converter o seu contido a un bloque de HTML personalizado ou borralo do todo."],"Media area":["Área de medios"],"Media & Text":["Media e texto"],"Show media on right":["Mostrar medio na dereita"],"Show media on left":["Mostrar media na esquerda"],"Open in New Tab":["Abrir nunha nova pestaña"],"Cover":["Portada"],"Border settings":["Axustes de borde"],"Medium":["Medio"],"Paste URL or type to search":["Pega o URL ou teclea para buscar"],"Terms":["Termos"],"Your work will be published at the specified date and time.":["O teu traballo publicarase na data e hora establecidas."],"Are you ready to schedule?":["Estás listo para programar?"],"Always show pre-publish checks.":["Mostrar sempre as comprobacións previas."],"Take Over":["Tomar o control"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Hai outro usuario traballando agora mesmo nesta entrada, o que quere dicir que ti non podes facer cambios, a non ser que tomes o control."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s está a traballar agora mesmo nesta entrada, o que quere dicir que ti non podes facer cambios a non ser que tomes o control."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Outro usuario ten agora o control de edición desta entrada. Non te preocupes, gardáronse os teus cambios ata este momento."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s ten agora o control de edición desta entrada. Non te preocupes, gardáronse os teus cambios ata este momento."],"Avatar":["Avatar"],"This post is already being edited.":["Esta entrada está a ser editada."],"Someone else has taken over this post.":["Alguén tomou o control desta entrada."],"This block contains unexpected or invalid content.":["Este bloque contén contido inesperado ou non válido."],"Resolve Block":["Resolver bloque\t"],"Convert to HTML":["Convertir a HTML"],"This block can only be used once.":["Este bloque só se pode usar unha vez."],"Exit Code Editor":["Saíd do editor de código"],"Editing Code":["Editando código"],"Solid Color":["Cor sólida"],"Main Color":["Cor principal"],"HTML":["HTML"],"Write HTML…":["Escribir HTML"],"Media settings":["Axustes de medios"],"Overlay":["Superposición"],"Insert Media":["Inserir obxecto"],"Reusable block imported successfully!":["Bloque reutilizable importado correctamente!\t"],"Invalid Reusable Block JSON file":["Arquivo JSON de bloque reutilizable non válido"],"Invalid JSON file":["Arquivo JSON non válido"],"Import from JSON":["Importar dende JSON"],"Backtick":["Acento grave"],"Period":["Período"],"Comma":["Coma"],"Change type of %d block":["Cambiar o tipo de %d bloque","Cambiar o tipo de %d bloques"],"Current":["Actual"],"After Conversion":["Despóis da conversión"],"Change alignment":["Cambiar alineamento"],"Change text alignment":["Cambiar alineación do texto"],"%d block":["%d bloque","%d bloques"],"Forward-slash":["Barra"],"No archives to show.":["Non hai arquivos para mostrar."],"This file is empty.":["Este arquivo está baleiro."],"Sorry, this file type is not supported here.":["Sentímolo, este tipo de arquivo non é compatible aquí."],"Manage all reusable blocks":["Xestionar todos os bloques reutilizables"],"Title":["Título"],"Fullscreen mode":["Modo a pantalla completa"],"Beautiful landscape":["Preciosa paisaxe"],"Close panel":["Pechar panel\t"],"Convert to Classic Block":["Converter a bloque clásico"],"Remove Poster Image":["Eliminar imaxe do póster"],"Select Poster Image":["Seleccionar imaxe do cartel"],"Poster Image":["Imaxe de póster"],"This block is deprecated. Please use the Columns block instead.":["Este bloque está obsoleto. Por favor, utiliza o bloque de columnas no seu lugar."],"Text Columns (deprecated)":["Columnas de texto (obsoletas)"],"Create":["Crear"],"Row Count":["Reconto de filas"],"Column Count":["Reconto de columnas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloque está en desuso. Por favor, usa o bloque de parágrafo no seu lugar."],"Subheading (deprecated)":["Subtítulo (en desuso)"],"blockquote":["cita"],"Change the block type after adding a new paragraph.":["Cambia o tipo de bloque despois de agregar un novo parágrafo."],"Spotlight mode":["Modo de enfoque"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["As etiquetas axudan aos usuarios e aos motores de búsqueda a navegar polo teu sitio e atopar o teu contido. Engade algúnhas palabras clave que describan a túa entrada."],"Add tags":["Engadir etiquetas"],"Apply the \"%1$s\" format.":["Aplica o formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["O teu tema utiliza formatos de entrada para destacar os distintos tipos de contido, como imaxes ou vídeos. Aplica un formato de entrada para ver estes estilos especiais."],"Use a post format":["Usa un formato de entrada"],"Insert After":["Inserir despois"],"Insert Before":["Inserir antes"],"Move %1$d block from position %2$d down by one place":["Move %1$d bloque da posición %2$d a un sitio máis abaixo","Move %1$d bloques da posición %2$d a un sitio máis abaixo"],"Move %1$d block from position %2$d up by one place":["Move %1$d bloque da posición %2$d un sitio máis arriba","Move %1$d bloques da posición %2$d un sitio máis arriba"],"Move %1$s block from position %2$d right to position %3$d":["Move %1$s bloque da posición %2$d á posición %3$d"],"movie":["película"],"Insert a new block before the selected block(s).":["Inserta un novo bloque antes do/os bloque( s) seleccionado( s)."],"Remove the selected block(s).":["Elimina o/os bloque( s) seleccionado( s)."],"Duplicate the selected block(s).":["Duplica o/os bloque( s) seleccionado( s)."],"Block shortcuts":["Atallos de bloques"],"Clear selection.":["Limpar a selección"],"Select all text when typing. Press again to select all blocks.":["Selecciona todo o texto mentres tecleas. Pulsa de novo para seleccionar todolos bloques."],"Selection shortcuts":["Atallos de selección"],"Switch between Visual editor and Code editor.":["Cambiar entre o editor visual e o editor de código."],"Navigate to the previous part of the editor.":["Navega ata a parte anterior do editor."],"Navigate to the next part of the editor.":["Navega ata a parte seguinte do editor."],"Show or hide the settings sidebar.":["Mostra ou oculta a barra lateral de axustes."],"Redo your last undo.":["Refai o teu último desfacer."],"Undo your last changes.":["Desfai os teus últimos cambios."],"Save your changes.":["Garda os teus cambios."],"Global shortcuts":["Atallos globais"],"Remove a link.":["Elimina a ligazón"],"Convert the selected text into a link.":["Converte o texto seleccionado nunha ligazón."],"Underline the selected text.":["Subliña o texto seleccionado.\t"],"Make the selected text italic.":["Cambia o texto seleccionado a cursiva.\t"],"Make the selected text bold.":["Cambia o texto seleccionado a negrita."],"Text formatting":["Formatos de texto"],"Insert a new block after the selected block(s).":["Inserta un novo bloque despois do/os bloque( s) seleccionado( s)."],"Keyboard shortcuts":["Atallos de teclado"],"Thanks for testing Gutenberg!":["Grazas por probar Gutenberg!"],"Help build Gutenberg":["Axuda a construir Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Se quieres aprender máis sobre cómo crear bloques adicionais, ou se estás interesado en axudar co proxecto, pásate polo repositorio en GitHub."],"The WordPress community":["A comunidade de WordPress"],"Code is Poetry":["O código é poesía"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Podes crear calquera bloque que queras, estático e dinámico, decorativo ou plano. Aquí tes un bloque de cita:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Calquera bloque pode estar nalgunha destas alineacións. O bloque de incrustar tamén as ten, i é adaptable dende a base:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["O de enrriba é unha galería con só dúas imaxes. É un modo sinxelo de crear visualmente atractivos deseños, sin ter que lidiar con floats. Tamén podes convertir fácilmente a galería de novo a imaxes individuais, usando o cambiador de bloques."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Por suposto, a imaxe a ancho completo pode ser realmente grande. Pero a veces a imaxe é o importante."],"Accessibility is important — don’t forget image alt attribute":["A accesibilidade é importante. Non te esquzas do atributo de imaxe alt. "],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Se combinas as novas alineacións de galería ancha e ancho completo podes crear deseños ricos en medios moi rápidamente: "],"Media Rich":["Medios enriquecidos"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Podes cambiar a cantidade de columnas das túas galerías arrastrando un control deslizante no inspector de bloques da barra lateral. "],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Os bloques poden ser o que necesitas. Por exemplo, pode que queras engadir unha cita suave como parte da composición do teu texto, ou pode que prefiras mostrar unha estilizada e xigante. Todas estás opcións están no insertador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["A información correspondente á orixe da cita está nun campo de texto separado, parecido ás lendas baixo as imaxes, para que a estrutura da cita esté protexida ainda que a selecciones, modifiques ou quites da orixe. É sempre sinxelo engadila de novo. "],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["O editor tratará de crear unha nova experiencia de creación de páxinas e entradas que axuden a escribir publicacións enriquecidas sen esforzo, e ten “bloques” para facelo sinxelo o que levaría hoxe a usar shortcodes, HTML persoalizado ou esotéricos descubrimentos de incrustacións."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un gran beneficio dos bloques é que podes editalos onde estén e manipular directamente o teu contido. En vez de ter campos para editar cousas como o código ou unha cita, ou o texto dun botón, podes cambiar directamente o contido. Proba a modificar a seguinte cita: "],"Visual Editing":["Edición visual"],"And Lists like this one of course :)":["E listas coma esta por suposto :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloques de deseño, coma botóns, imaxes principais, separadores, etc. "],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incrustados, como YouTube, tuits ou entradas de outro WordPress. "],"Galleries":["Galerías"],"Images & Videos":["Imaxes e videos"],"Text & Headings":["Texto i encabezados"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Anímate a probalo, podes descubrir cousas que WordPress xa pode engadir nas túas entradas das que no tiñas nin idea. Aquí tes unha breve lista do que a día de hoxe podes atopar ahí: "],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imaxina que todo o que WordPress pode facer esté dispoñible para ti rápidamente e no mesmo sitio da interfaz. Non tes que descubrir etiquetas HTML, clases ou recordar sintaxis complicadas de shortcodes. Ese é o espíritu tra-lo inxertador — o botón (+)
que hai no editor — que che permite navegar por todolos bloques de contido dispoñibles e engadilos a túa entrada. Os plugins e temas poden rexistrar os seus propios, abrindo unha gran cantidade de posibilidades para a edición e a publicación enriquecida. "],"The Inserter Tool":["A ferramenta Insertador"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Proba a seleccionar ou quitar ou editar a lenda, agora xa non tes porque ser coidadoso á hora de seleccionar a imaxe ou textos por error e arruinar a presentación."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Se o teu tema é compatible verás o botón \"ancho\" na barra de ferramentas da imaxe. Próbao."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Xestionar imáxes e medios co máximo coidado é un enfoque principal do novo editor. Afortunadamente atoparás posibilidades para engadir lendas ou facer de ancho completo as túas fotos dun modo moito máis fácil e robusto que antes."],"A Picture is Worth a Thousand Words":["Unha imaxe vale máis que mil verbas"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Os encabezados tamén son bloques separados, o que axuda á estructura e organización do teu contido."],"... like this one, which is right aligned.":["... coma esta, que está alineada á dereita."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["O que estás lendo agora é un bloque de texto, o bloque máis básico de todos. O bloque de texto ten os seus propios controles para movelo libremente por tódala publicación… "],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["O obxectivo deste novo editor é facer que engadir contido enriquecido a WordPress sexa algo sinxelo e agradable. Toda esta entrada está creada con pezas de contido —algo parecido ós ladrillos LEGO — que podes mover e cos que podes interactuar. Move o teu cursor e verás que aparecen os distintos bloques con líñas e frechas. Pulsa nas frechas para recolocar rápidamente os bloques, sen medo a perder cousas sen o proceso de copiar e pegar. "],"Of Mountains & Printing Presses":["Falando de montañas e imprentas"],"Welcome to the Gutenberg Editor":["Benvido ao editor Gutenberg"],"block name\u0004More":["Máis"],"button to expand options\u0004More":["Máis"],"Are you sure you want to unschedule this post?":["Estás seguro de querer anular a programación desta entrada?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloque reutilizable"],"Unique identifier for the object.":["Identificador único para o obxecto."],"Untitled Reusable Block":["Bloque reutilizable sen título"],"Small":["Pequeno"],"Reusable":["Reutilizable"],"Remove from Reusable blocks":["Borrar dos bloques reutilizables"],"Add to Reusable blocks":["Engadir aos bloques reutilizables"],"Keep as HTML":["Manter como HTML"],"Edit URL":["Editar URL"],"Color settings":["Axustes de cor"],"The response is not a valid JSON response.":["As respostas non son unha resposta JSON válida."],"Editor publish":["Publicación do editor"],"Muted":["Apagado"],"Video settings":["Axustes de vídeo"],"recent comments":["comentarios recentes"],"Latest Comments":["Últimos comentarios"],"Display Excerpt":["Mostrar extracto"],"Display Date":["Mostrar data"],"Display Avatar":["Mostrar avatar"],"Latest comments settings":["Axustes de últimos comentarios"],"Number of Comments":["Número de comentarios"],"Background Opacity":["Opacidade do fondo"],"Auto":["Auto"],"Preload":["Precargar"],"Audio settings":["Axustes de audio"],"Display a monthly archive of your posts.":["Mostra un arquivo por meses das túas entradas.\t "],"Display as Dropdown":["Mostrar como un despregábel"],"Show Post Counts":["Mostrar contador de entradas"],"Archives settings":["Axustes de arquivos"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Soporte"],"No comments to show.":["Non hai comentarios para mostrar."],"%1$s on %2$s":["%1$s en %2$s"],"Select Post":["Seleccionar entrada"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar día"],"Select Month":["Seleccionar mes"],"Select Year":["Seleccionar ano"],"Archives":["Histórico"],"Very dark gray":["Gris moi escuro"],"Cyan bluish gray":["Gris azulado cian"],"Very light gray":["Gris moi claro"],"Vivid cyan blue":["Azul ciano vivo"],"Pale cyan blue":["Azul ciano pálido"],"Vivid green cyan":["Ciano verde vivo"],"Light green cyan":["Ciano verde claro"],"Luminous vivid amber":["Ambar vivo luminoso"],"Luminous vivid orange":["Laranxa vivo luminoso"],"Vivid red":["Vermello vivo"],"Pale pink":["Rosa pálido"],"Inline image":["Imaxe integrada"],"Available block types":["Tipos de bloques dispoñibles"],"Transform To:":["Transformar a:"],"Remove Block":["Quitar bloque"],"Open publish panel":["Abrir o panel de publicar"],"Dots":["Puntos"],"Wide Line":["Líña ancha"],"Large":["Grande"],"Show download button":["Amosar o botón de descarga"],"Download button settings":["Axustes do botón de descarga"],"Link To":["Ligazón a"],"Text link settings":["Axustes do texto da ligazón"],"download":["Descargar"],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escribe o nome do arquivo…"],"File":["Ficheiro "],"A single column within a columns block.":["Unha columna simple dentro dun bloque de columnas."],"Column":["Columna"],"Outline":["Contorno"],"Loop":["Bucle"],"Autoplay":["Reprodución automática"],"Playback Controls":["Controis de reprodución"],"Close dialog":["Pechar diálogo"],"Sorry, this file type is not permitted for security reasons.":["Sentímoscho, este tipo de ficheiro non está permitido por motivos de seguridade. "],"Disable tips":["Desactivar consellos"],"Got it":["Entendido"],"See next tip":["Ver seguinte consello"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Cando estés listo, envía o teu traballo para revisión, e un editor poderá aprobalo"],"Are you ready to submit for review?":["Estás listo para envialo a revisión?"],"Replace image":["Substituír imaxe"],"Remove image":["Eliminar a imaxe"],"Error while uploading file %s to the media library.":["Erro ao subir o arquivo %s a biblioteca de medios."],"This file exceeds the maximum upload size for this site.":["Este ficheiro é máis grande que o tamaño máximo de carga para este sitio."],"View the autosave":["Ver o gardado automático"],"There is an autosave of this post that is more recent than the version below.":["Hai un gardado automático desta entrada que é máis recente ca versión de abaixo."],"Autosaving":["Gardando automaticamente"],"Enter URL here…":["Introduce a URL aquí..."],"Pin to toolbar":["Fixar na barra de tarefas"],"Unpin from toolbar":["Soltar da barra de tarefas"],"Insert a table — perfect for sharing charts and data.":["Inserte unha táboa -- perfecto para compartir gráficos e datos.\t"],"Fixed width table cells":["Largo fixo de celas de táboa"],"Table settings":["Configuración da táboa"],"Add text that respects your spacing and tabs, and also allows styling.":["Engadir texto que respecte o teu espazado e lapelas, e tamén permite estilos."],"Display a list of your most recent posts.":["Presentar unha lista das túas publicacións máis recentes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Engade un bloque que presenta contido traído doutros sitios, como Twitter, Instagram ou Youtube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Engade un bloque que presenta o contido en múltiplas columnas, logo engade calquera dos bloques de contido que queiras."],"Error loading block: %s":["Produciuse un erro cargando o bloque: %s"],"Unknown error":["Erro descoñecido"],"Embed Handler":["Manipulador de incorporacións"],"term\u0004Remove %s":["Retirar %s"],"Copy the permalink":["Copiar a ligazón permanente"],"Permalink copied":["Ligazón permanente copiada"],"Height in pixels":["Altura en píxels"],"Spacer settings":["Configuración do espazador"],"Spacer":["Espazador"],"Toggle to show a large initial letter.":["Trocar para amosar unha gran letra inicial."],"Showing large initial letter.":["Amosanndo gran letra inicial."],"Name:":["Con nome"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Eliminar elemento"],"Color code: %s":["Cor do código: %s"],"Skip to the selected block":["Saltar o bloque seleccionado"],"Publish…":["Publicar…"],"Schedule…":["Programado"],"Edit post permalink":["Editar a ligazón permanente da publicación"],"Show Block Settings":["Amosar a configuración do bloque"],"Hide Block Settings":["Agochar a configuración do bloque"],"Block settings closed":["Configuración do bloque pechada"],"Close plugin":["Pechar complemento"],"Editor settings":["Configuración do editor"],"Link settings":["Axustes da ligazón"],"Unlink":["Desfacer a ligazón"],"Page break":["Salto de páxina"],"pagination":["Paxinación"],"next page":["Páxina seguinte"],"Image Size":["Tamaño da imaxe"],"Height":["Altura"],"Width":["Anchura"],"Image Dimensions":["Dimensións da imaxe"],"Thumbnails are not cropped.":["Non se recortan as miniaturas."],"Thumbnails are cropped to align.":["Recórtanse as miniaturas para aliñalas."],"Media Library":["Biblioteca multimedia"],"Advanced":["Avanzado"],"Add item":["Engadir ítem."],"Reset the template":["Reiniciar o modelo"],"Keep it as is":["Mantelo tal como é"],"The content of your post doesn’t match the template assigned to your post type.":["O contido da túa entrada non se axusta á plantilla asignada ao teu tipo de contido."],"Resetting the template may result in loss of content, do you want to continue?":["Restablecer a plantilla pode rematar coa perda do contido, Queres continuar?"],"Document Statistics":["Estadísticas do documento"],"is now scheduled. It will go live on":["está agora programada. Estará dispoñible o"],"Scheduled":["Programado"],"Scheduling…":["Programando…"],"Code editor selected":["Editor de código seleccionado"],"Visual editor selected":["Editor visual seleccionado"],"Plugins":["Plugins"],"Custom Size":["Tamaño personalizado"],"Layout elements":["Elementos de deseño"],"term\u0004%s removed":["%s borrada"],"term\u0004%s added":["%s engadida"],"imperative verb\u0004Preview":["Vista previa"],"Block deleted.":["Bloque eliminado."],"Block updated.":["Bloque actualizado."],"Block created.":["Bloque creado."],"Trashing failed":["Fallo ao enviar ó lixo"],"Updating failed.":["Erro ao actualizar"],"Scheduling failed.":["Erro ao programar"],"Publishing failed.":["Erro ao publicar"],"View post":["Ver entrada"],"You have unsaved changes. If you proceed, they will be lost.":["Tes cambios sen gardar. Se continúas, perderanse."],"Document Outline":["Esquema do documento"],"Paragraphs":["Párrafos"],"Headings":["Encabezados"],"Words":["Palabras:"],"Content structure":["Estructura do contido"],"Public":["Público"],"Protected with a password you choose. Only those with the password can view this post.":["Protexida coa contrasinal que ti elixas. So os que teñan a contrasinal poden ver esta entrada."],"Password Protected":["Protexido con contrasinal"],"Only visible to site admins and editors.":["Só visible para administradores e editores do sitio."],"Private":["Privado"],"Visible to everyone.":["Visible por todos"],"Post Visibility":["Visibilidade da entrada"],"Would you like to privately publish this post now?":["Gustaríache publicar agora en privado esta entrada?"],"Use a secure password":["Usa unha contrasinal segura"],"Create password":["Crear unha contrasinal"],"Move to Trash":["Mover á papeleira"],"Parent Term":["Termo superior"],"Parent Category":["Categoría nai"],"Add new term":["Engadir novo termo"],"Add new category":["Engadir nova categoría"],"Term":["Termo"],"Tag":["Etiqueta"],"Add new Term":["Engade un novo termo"],"Add new tag":["Engadir unha etiqueta nova"],"Switch to draft":["Cambiar a borrador"],"Are you sure you want to unpublish this post?":["Estás seguro de querer anular a publicación desta entrada?"],"Immediately":["Inmediatamente"],"Save Draft":["Gardar como borrador"],"Saving":["Gardando"],"Publish:":["Publicar:"],"Visibility:":["Visibilidade:"],"Are you ready to publish?":["Estás listo para publicar?"],"Copy Link":["Copiar ligazón"],"What’s next?":["E agora qué?"],"is now live.":["está agora visible"],"Published":["Publicado"],"Schedule":["Programar"],"Update":["Actualizar"],"Submit for Review":["Enviar a revisión"],"Updating…":["Actualizando..."],"Publishing…":["Publicando..."],"Allow pingbacks & trackbacks":["Permitir pingbacks e trackbacks"],"Permalink:":["Ligazón permanente:"],"Pending review":["Pendente de revisión"],"%d Revision":["%d Revision","%d Revisions"],"Suggestion:":["Suxestións"],"Post Format":["Formato de entrada"],"Chat":["Chat"],"Status":["Estado "],"Standard":["Estándar\t"],"Aside":["Minientrada"],"Featured image":["Imaxe destacada"],"Set featured image":["Establecer imaxe destacada"],"Learn more about manual excerpts":["Aprende máis sobre extractos manuais"],"Write an excerpt (optional)":["Escribe un extracto (opcional)\t"],"Allow comments":["Permitir comentarios"],"Template:":["Plantilla:"],"no parent":["sen superior"],"no title":["sen título"],"Order":["Orde"],"No blocks found.":["Non se atoparon bloques."],"%d result found.":["%d resultado atopado.","%d resultados atopados."],"Saved":["Gardado"],"Embeds":["Incrustados"],"Blocks":["Bloques"],"Search for a block":["Buscar un bloque"],"Add block":["Engadir bloque"],"Copy Error":["Copiar erro"],"Copy Post Text":["Copiar texto da entrada"],"Attempt Recovery":["Tentar recuperación"],"The editor has encountered an unexpected error.":["O editor atopou un erro inesperado."],"Undo":["Desfacer"],"Redo":["Refacer"],"(Multiple H1 headings are not recommended)":["(Non se recomendan varios H1)"],"(Your theme may already use a H1 for the post title)":["(O teu tema poida que xa use un H1 para o título da entrada)"],"(Incorrect heading level)":["(Nivel de encabezado incorrecto)"],"(Empty heading)":["(Encabezado baleiro)\t"],"Block Styles":["Estilos de bloque"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Estás seguro de querer borrar este bloque compartido? Eliminarase permanentemente de todalas entradas e páxinas que o usen. "],"Convert to Regular Block":["Converter a bloque normal"],"More options":["Máis opcións"],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Os bloques non se poden mover cara abaixo porque xa están no fondo"],"Blocks cannot be moved up as they are already at the top":["Os bloques non se poden mover arriba porque xa están ao principio"],"Block %1$s is at the beginning of the content and can’t be moved right":["O bloque %1$s está ao principio do contenido e non se pode mover "],"Block %1$s is at the end of the content and can’t be moved right":["O bloque %1$s está ao final do contido e non se pode mover "],"Block %s is the only block, and cannot be moved":["O bloque %s é o único bloque, e non pode moverse"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Converter a bloques"],"Block: %s":["Bloque: %s"],"This block has encountered an error and cannot be previewed.":["Este bloque atopou un erro e non pode previsualizarse."],"No block selected.":["Ningún bloque seleccionado."],"Transform into:":["Transformar a:"],"Remove":["Eliminar"],"Find original":["Atopar orixinal"],"Copy all content":["Copiar todo o contido"],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Agora hai axustes adicionais dispoñibles na barra de axustes do editor de bloques"],"Visibility":["Visibilidade"],"Status & visibility":["Estado e visibilidade"],"Page attributes":["Atributos de páxina"],"Block":["Bloque "],"Document":["Documento"],"Close settings":["Pechar axustes"],"Editor content":["Contido do editor"],"Tools":["Ferramentas "],"Editor":["Editor"],"Code editor":["Editor de código"],"Visual editor":["Editor visual"],"Editor top bar":["Barra superior do editor"],"Settings":["Configuración"],"Reset":["Restablecer"],"Dismiss this notice":["Ignorar este aviso"],"Item removed.":["Elemento eliminado."],"Item added.":["Elemento engadido."],"Drop files to upload":["Soltar ficheiros para enviar"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Houbo un erro descoñecido"],"No results.":["Non hai resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado atopado, utiliza as teclas arriba e abaixo para navegar.","%d resultados atopados, utiliza as teclas arriba e abaixo para navegar."],"(no title)":["(sen título)"],"URL":["URL"],"Submit":["Enviar"],"Close":["Pechar"],"Insert link":["Engadir Ligazón"],"Edit link":["Editar ligazón"],"Link":["Ligazón"],"Strikethrough":["Riscado"],"Italic":["Cursiva"],"Bold":["Negra"],"Remove link":["Eliminar a ligazón"],"Number of items":["Número de elementos"],"All":["Todos"],"Category":["Categoría"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["De antigas a novas"],"Newest to Oldest":["De novas a antigas"],"Order by":["Ordenar por "],"Select":["Seleccionar"],"Select or Upload Media":["Elixe ou sube medios"],"Video":["Vídeo"],"Write…":["Escribe…"],"poetry":["poesía"],"Verse":["Verso"],"New Column":["Nova columna"],"Delete Column":["Borrar columna"],"Add Column After":["Engadir columna despois"],"Add Column Before":["Engadir columna antes"],"Delete Row":["Borrar fila"],"Add Row After":["Engadir fila despois"],"Add Row Before":["Engadir fila antes"],"Edit table":["Editar táboa"],"Table":["Táboa "],"Write subheading…":["Escribe o subtítulo…"],"Write shortcode here…":["Escribe aquí o shortcode…"],"Shortcode":["Shortcode"],"divider":["separador"],"horizontal-line":["liña-horizontal"],"Separator":["Separador"],"Quote":["Cita"],"Write citation…":["Escribe a referencia…"],"Write quote…":["Escribe a cita…"],"Pullquote":["Cita"],"Write preformatted text…":["Escribe texto preformateado…"],"Preformatted":["Preformatado"],"text":["texto"],"Paragraph":["Parágrafo"],"Font Size":["Tamaño de letra"],"Drop Cap":["Capitalizar"],"Text settings":["Axustes do texto"],"Read more":["Ler máis"],"Write list…":["Escribe unha lista…"],"numbered list":["lista numerada"],"ordered list":["Lista ordenada"],"bullet list":["lista de viñetas"],"Indent list item":["Engadir sangría ao elemento da lista"],"Outdent list item":["Reducir sangría ao elemento da lista"],"Convert to ordered list":["Converter a lista ordenada"],"Convert to unordered list":["Converter a lista desordenada"],"List":["Lista"],"recent posts":["entradas recentes"],"No posts found.":["Non se atoparon artigos."],"Latest Posts":["Últimas entradas"],"Display post date":["Mostrar data da entrada"],"Grid view":["Vista de cuadrícula"],"List view":["Vista de listado"],"photo":["foto\t"],"Image settings":["Axustes de imaxe"],"Image":["Imaxe"],"Preview":["Previsualizar"],"embed":["incrustar\t"],"Custom HTML":["HTML personalizado"],"subtitle":["subtítulo\t"],"title":["título\t"],"Heading":["Encabezado"],"Write heading…":["Escribe o encabezado…"],"Heading %d":["Encabezado %d"],"Level":["Nivel"],"Heading settings":["Axustes de encabezado"],"photos":["fotos"],"images":["imaxes"],"None":["Ningún"],"Media File":["Ficheiro multimedia"],"Attachment Page":["Páxina de anexos"],"Link to ":["Enlazar a"],"Crop Images":["Recortar imaxes"],"Gallery settings":["Configuración de galería"],"Gallery":["Galeria"],"Classic":["Clásico\t "],"video":["vídeo"],"audio":["audio"],"music":["música"],"image":["imaxe"],"blog":["blog"],"post":["entrada"],"Embedded content from %s":["Contido incrustado dende %s"],"Enter URL to embed here…":["Engade aquí a URL a incrustar…"],"%s URL":["%s URL"],"Embedding…":["Incrustando…"],"Write title…":["Escribe o título…"],"Fixed Background":["Fondo fixo"],"Edit image":["Editar imaxe"],"Columns":["Columnas"],"Experiments":["Experimentos"],"Code":["Código"],"Write code…":["Escribe código…"],"Categories":["Categorías"],"Show Hierarchy":["Mostrar xerarquía"],"Show post counts":["Amosa o reconto das entradas"],"Categories settings":["Axustes de categorías"],"Add text…":["Engade texto…"],"Button":["Botón"],"Apply":["Aplicar"],"Text Color":["Cor do texto"],"Background Color":["Cor de fondo"],"Block has been deleted or is unavailable.":["O bloque borrouse ou non está dispoñible."],"Reusable blocks":["Bloque reutilizable"],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escribe a lenda…\t"],"Use URL":["Usa a URL"],"Audio":["Audio"],"Upload":["Cargar"],"Additional CSS Class(es)":["Clase(s) CSS adicional/adicionáis"],"HTML Anchor":["Anclaxe HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinación de cor pode ser difícil de ler para a xente. Trata de usar unha cor de fondo máis claro e/ou unha cor de texto máis escuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinación de cor pode ser difícil de ler para a xente. Trata de usar unha cor de fondo máis escuro e/ou unha cor de texto máis claro."],"Clear":["Limpar"],"Custom color picker":["Selector de cor personalizada"],"Color: %s":["Cor: %s"],"Full width":["Ancho completo"],"Wide width":["Ancho amplo"],"Widgets":["Widgets"],"Formatting":["Formatos\t "],"Common blocks":["Bloques comúns"],"Align right":["Aliñado dereito"],"Align center":["Aliñamento centrado"],"Align left":["Aliñamento á esquerda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimindo dende 1440. Este é o plugin en desenvolvemento do novo editor de bloques do núcleo."],"Add title":["Engade o título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["O modo de desenvolvemento de Gutenberg require crear unha serie de arquivos. Executa npm install
para instalar as dependencias, npm run build
para crear os arquivos ou npm run dev
para crear e ver os arquivos. Lee o arquivo colaborando para máis información. "],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Comentarios"],"Custom fields":["Campos personalizados"],"Excerpt":["Extracto"],"Publish":["Publicar"],"Metadata":["Metadatos"],"Save":["Gardar"],"Documentation":["Documentación"],"Select Category":["Seleccionar categoría"],"(Untitled)":["(Sen título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg necesita WordPress %s ou posterior para funcionar correctamente. Por favor, actualiza WordPress antes de activar Gutenberg."],"Gutenberg Team":["O equipo de Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["hai %s"],"Block style name must be a string.":["Os nomes de tipo de bloque deben ser cadeas."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_he.json b/bundle/android/raw/i18ncache_data_he.json
new file mode 100644
index 0000000000..d272bb8b8a
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_he.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":["בלוק (נבחר)"],"Document (selected)":["מסמך (נבחר)"],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["יצירת תוכן לשימוש חוזר ברחבי האתר. עדכונים לבלוק יחולו אוטומטית בכל מקום בו הוא מופיע. "],"To edit the featured image, you need permission to upload media.":["כדי לערוך את התמונה הראשית , נדרשת הרשאה להעלאת מדיה."],"To edit this block, you need permission to upload media.":["כדי לערוך את הבלוק הזה, נדרשת הרשאה להעלאת מדיה."],"(selected block)":["(הבלוק הנבחר)"],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":["חסר מאפיין alt לתמונה הזו"],"This image has an empty alt attribute; its file name is %s":["חסר מאפיין alt לתמונה הזו; שם הקובץ הוא %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":["לערום בתצוגה לניידים"],"Annotation":[],"Drag images, upload new ones or select files from your library.":["גרירת תמונות, העלאה של תמונות חדשות, או הוספה מספרית המדיה."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["לתקן"],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":["מומלץ לבדוק את ההגדרות לפני הפרסום."],"Generating preview…":["יוצר תצוגה מקדימה…"],"Edit or update the image":["לערוך או לעדכן את התמונה"],"Media":[],"Navigate to the nearest toolbar.":["ניווט אל סרגל הכלים הקרוב ביותר."],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":["הטמעה של וידאו מספריית המדיה של האתר, או העלאת וידאו חדש."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["לציטוט מילים של שירים, הטמעת שירה, או כשיש צורך בריווח מיוחד."],"Add white space between blocks and customize its height.":["להוספת רווח בגובה משתנה בין בלוקים."],"Insert additional custom elements with a WordPress shortcode.":["הוספת אלמנטים נוספים באמצעות שורטקודים של וורדפרס."],"Create a break between ideas or sections with a horizontal separator.":["הוספת מפריד אופקי כדי להפריד בין רעיונות או חלקים שונים."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["דגש ויזואלי לציטוטים. ״היכולת לצטט היא תחליף שימושי לשנינות.״ — ויליאם סומרסט מוהם"],"Give special visual emphasis to a quote from your text.":["הוסיפו דגש ויזואלי לציטוט מתוך הטקסט שלכם."],"Start with the building block of all narrative.":["הבסיס של כל תוכן."],"Separate your content into a multi-page experience.":["הפרדת התוכן למספר עמודים."],"Set media and words side-by-side for a richer layout.":["מיקום טקסט ומדיבה צד-אל-צד לתצוגה מרהיבה."],"Media & Text settings":[],"Create a bulleted or numbered list.":["יצירת רשימה עם תבליטים או רשימה ממוספרת."],"Display a list of your most recent comments.":["הצגת רשימה של התגובות האחרונת."],"Insert an image to make a visual statement.":["הוספת תמונה לדגש חזותי."],"Add custom HTML code and preview it as you edit.":["הוספת קוד HTML עם תצוגה מקדימה תוך כדי עריכה."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["ארגון וחלוקת התוכן למקטעים כדי לסייע למבקרים (ולמנועי החיפוש) להבין את מבנה התוכן שלך."],"Display multiple images in a rich gallery.":["הצגת מספר תמונות בגלריה עשירה."],"Add a link to a downloadable file.":["הוספת קישור לקובץ הניתן להורדה."],"Embed videos, images, tweets, audio, and other content from external sources.":["הטמעת קטעי וידאו, תמונות, ציוצים, שמע, ותוכן אחר ממקורות חיצוניים."],"Resize for smaller devices":["גודל משתנה למכשירים קטנים"],"This embed may not preserve its aspect ratio when the browser is resized.":["יתכן שהטמעה זו לא תשמור על יחס הגובה-רוחב שלה בעת שינוי גודל הדפדפן."],"This embed will preserve its aspect ratio when the browser is resized.":["הטמעה זו תשמור על יחס הגובה-רוחב שלה בעת שינוי גודל הדפדפן."],"Embed an Animoto video.":["הטמעה של וידאו מ-Animoto."],"Embed a Vimeo video.":["הטמעה של וידאו מ-Vimeo."],"Embed Flickr content.":["הטמעה של תוכן מ-Flicker."],"Embed Spotify content.":["הטמעה של תוכן מ-Spotify."],"Embed SoundCloud content.":["הטמעה של תוכן מ-SoundCloud."],"Embed a WordPress post.":[],"Embed an Instagram post.":["הטמעה של פוסט מ-Instagram."],"Embed a Facebook post.":["הטמעה של תוכן מ-Facebook."],"Embed a WordPress.tv video.":["הטמעה של וידאו מ-WordPress.tv"],"Embed a VideoPress video.":["הטמעה של וידאו מ-VideoPress"],"Embed a Tumblr post.":["הטמעה של פוסט מטאמבלר."],"Embed a TED video.":["הטמעה של וידאו מ-TED."],"Embed Speaker Deck content.":["הטמעה של תוכן מ-Speaker Deck."],"Embed a YouTube video.":["הטמעה של וידאו מ-Youtube."],"Embed SmugMug content.":["הטמעה של תוכן מ-SmugMug."],"Embed Slideshare content.":["הטמעה של תוכן מ-Slideshare."],"Embed Scribd content.":["הטמעה של תוכן מ-Scribd."],"Embed Screencast content.":["הטמעה של תוכן מ-Screencast."],"Embed ReverbNation content.":["הטמעה של תוכן מ-ReverbNation."],"Embed a Reddit thread.":["הטמעה של דיון מ-Reddit."],"Embed Polldaddy content.":["הטמעה של תוכן מ-Polldaddy."],"Embed Mixcloud content.":["הטמעה של תוכן מ-Mixcloud."],"Embed a tweet.":["הטמעה של ציוץ מטוויטר."],"Embed Meetup.com content.":["הטמעה של תוכן מ-Meetup.com."],"Embed Kickstarter content.":["הטמעה של תוכן מ-Kickstarter."],"Embed Issuu content.":["הטמעה של תוכן מ-Issuu."],"Embed Imgur content.":["הטמעה של תוכן מ-Imgur."],"Embed Hulu content.":["הטמעה של תוכן מ-Hulu."],"Embed a Dailymotion video.":["הטמעה של וידאו מ-Dailymotion"],"Embed CollegeHumor content.":["הטמעה של תוכן מ-CollegeHumor."],"Embed Cloudup content.":["הטמעה של תוכן מ-Cloudup."],"Add an image or video with a text overlay — great for headers.":["הוספת תמונה או וידאו ומעליהם טקסט — מצוין עבור כותרות ראשיות."],"Display code snippets that respect your spacing and tabs.":["הצגת מקטעי קוד תוך כדי שמירה על הריווח המקורי."],"Use the classic WordPress editor.":["להשתמש בעורך הקלאסי של WordPress."],"Display a list of all categories.":["הצגה של רשימת קטגוריות."],"Embed a simple audio player.":["הטמעה של נגן אודיו פשוט."],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":["להדביק או להקליד כתובת URL"],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":["לפתוח את תפריט הניווט של הבלוקים."],"Work without distraction":["עבודה ללא הסחות דעת"],"Focus on one block at a time":["התמקדות בבלוק אחד בכל פעם"],"Access all block and document tools in a single place":["גישה לכל הגדרות הבלוקים והמסמך במקום אחד."],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":["מעבר ליום הראשון (home) או האחרון (end) בשבוע."],"Home/End":[],"Home and End":["Home ו-End"],"Move backward (PgUp) or forward (PgDn) by one month.":["מעבר אחורה (PgUp) או קדימה (PgDn) בחודש אחד."],"PgUp/PgDn":[],"Page Up and Page Down":["Page Up ו-Page Down"],"Move backward (up) or forward (down) by one week.":["הזזה אחורה (למעלה) או קדימה (למטה) בשבוע אחד."],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":["מעבר יום אחד אחורה (שמאלה) או קדימה (ימינה)."],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":["אפשר ללחוץ על החצים ימינה או שמאלה כדי לבחור חודשים אחרים בעבר או בעתיד."],"Click to Select":[],"Calendar Help":["עזרה עבור לוח השנה"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":["ניתן להזיז את החץ שמאלה או ימינה כדי לשנות גוון."],"Hue value in degrees, from 0 to 359.":["ערך הגוון (Hue) במעלות, בין 0 ל-359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["ערך אלפא, מ-0 (שקוף) ל-1 (אטום לחלוטין)."],"Stripes":[],"Your site doesn’t include support for this block.":["האתר שלך אינו כולל תמיכה בבלוק זה."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["האתר שלך אינו כולל תמיכה בבלוק \"%s\". ניתן להשאיר את הבלוק כמו שהוא או להסירו לחלוטין."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["האתר שלך אינו כולל תומך בבלוק \"%s\". ניתן להשאיר את הבלוק כמות שהוא, להמיר את תוכנו לבלוק HTML מותאם אישית, או להסירו לחלוטין."],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":["העבודה שלך תפורסם בתאריך ובשעה שצוינו."],"Are you ready to schedule?":["האם לקבוע מועד לפרסום?"],"Always show pre-publish checks.":["להציג תמיד את הבדיקות לפני הפרסום."],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["משתמש אחר עורך כרגע את הפוסט הזה, מה שאומר שאין באפשרותך לבצע שינויים, אלא אם תבצע/י השתלטות על הפוסט."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["המשתמש %s עורך כרגע את הפוסט הזה, מה שאומר שאין באפשרותך לבצע שינויים, אלא אם תבצע/י השתלטות על הפוסט."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["השליטה בעריכת פוסט זה עברה כעת למשתמש אחר. אל דאגה, השינויים שלך עד לרגע זה נשמרו."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["השליטה בעריכת פוסט זה עברה כעת ל-%s. אל דאגה, השינויים שלך עד לרגע זה נשמרו."],"Avatar":[],"This post is already being edited.":["פוסט זה כבר נמצא במצב עריכה."],"Someone else has taken over this post.":["מישהו אחר השתלט על הפוסט הזה."],"This block contains unexpected or invalid content.":["בלוק זה מכיל תוכן לא צפוי או לא חוקי."],"Resolve Block":["לתקן בלוק"],"Convert to HTML":[],"This block can only be used once.":["ניתן להשתמש בבלוק זה רק פעם אחת."],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":["בלוק לשימוש חוזר יובא בהצלחה!"],"Invalid Reusable Block JSON file":["קובץ JSON של בלוקים לשימוש חוזר פגום"],"Invalid JSON file":["קובץ JSON לא תקני"],"Import from JSON":["יבוא מתוך JSON"],"Backtick":["גרש (Backtick)"],"Period":["נקודה"],"Comma":["פסיק"],"Change type of %d block":["שינוי הסוג של בלוק אחד","שינוי הסוג של %d בלוקים"],"Current":["נוכחי"],"After Conversion":["לאחר המרה"],"Change alignment":[],"Change text alignment":[],"%d block":["בלוק אחד","%d בלוקים"],"Forward-slash":["לוכסן"],"No archives to show.":["אין ארכיון לתצוגה."],"This file is empty.":["הקובץ הזה ריק."],"Sorry, this file type is not supported here.":["מצטערים, סוג הקובץ הזה אינו נתמך כאן."],"Manage all reusable blocks":[],"Title":["כותרת"],"Fullscreen mode":[],"Beautiful landscape":["נוף יפה"],"Close panel":["סגור פאנל"],"Convert to Classic Block":["המרה לבלוק קלאסי"],"Remove Poster Image":["הסר תמונת פוסטר"],"Select Poster Image":["בחירת תמונת פוסטר"],"Poster Image":["תמונת פוסטר"],"This block is deprecated. Please use the Columns block instead.":["בלוק זה הוצא משימוש. יש להשתמש בבלוק עמודות במקום."],"Text Columns (deprecated)":["עמודות טקסט (הוצא משימוש)"],"Create":["צור"],"Row Count":["מספר שורות"],"Column Count":["מספר עמודות"],"This block is deprecated. Please use the Paragraph block instead.":["בלוק זה הוצא משימוש. יש להשתמש בבלוק פיסקה במקום."],"Subheading (deprecated)":["כותרת משנה (הוצא משימוש)"],"blockquote":["ציטוט"],"Change the block type after adding a new paragraph.":["לשינוי סוג הבלוק לאחר הוספת פסקה חדשה."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["תגיות מסייעות למשתמשים ולמנועי חיפוש לנווט באתר שלך ולמצוא את התוכן שלך. מומלץ להוסיף כמה מילות מפתח כדי לתאר את תוכן הפוסט שלך."],"Add tags":["הוספת תגיות"],"Apply the \"%1$s\" format.":["החל פורמט \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["התבנית שלך עושה שימוש ב״סוגי תוכן״ כדי להדגיש סוגים שונים של תוכן, כמו תמונות או קבצי וידאו. ניתן לבחור סוג תוכן כדי להציג את העיצוב המיוחד."],"Use a post format":["השתמש בסוג תוכן"],"Insert After":["הוספה אחרי"],"Insert Before":["הוספה לפני"],"Move %1$d block from position %2$d down by one place":["העבר בלוק אחד מהמיקום %2 מדרגה אחת למטה","העבר %1$d בלוקים מהמיקום %2$d מדרגה אחת למטה"],"Move %1$d block from position %2$d up by one place":["העבר בלוק אחד מהמיקום %2$d מדרגה אחת למעלה","העבר %1$d בלוקים מהמיקום %2$d מדרגה אחת למעלה"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["סרט"],"Insert a new block before the selected block(s).":["הוספת בלוק חדש לפני הבלוקים הנבחרים."],"Remove the selected block(s).":["הסר בלוקים מסומנים."],"Duplicate the selected block(s).":["שיכפול הבלוקים המסומנים."],"Block shortcuts":["קיצורי דרך עבור בלוקים"],"Clear selection.":["ניקוי בחירה."],"Select all text when typing. Press again to select all blocks.":["בחירת כל הטקסט בזמן ההקלדה. לחצו שוב כדי לבחור את כל הבלוקים."],"Selection shortcuts":["קיצור דרך עבור תוכן מסומן"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["ניווט לחלק הקודם של העורך."],"Navigate to the next part of the editor.":["ניווט לחלק הבא של העורך."],"Show or hide the settings sidebar.":["הצג/הסתר סרגל הגדרות צדדי."],"Redo your last undo.":["בצע שוב את הפעולה האחרונה."],"Undo your last changes.":["בטל את השינויים האחרונים."],"Save your changes.":["שימרו את השינויים."],"Global shortcuts":["קיצורי דרך גלובלים"],"Remove a link.":["הסר לינק."],"Convert the selected text into a link.":["להמיר את הטקסט הנבחר ללינק."],"Underline the selected text.":["הוסף קו תחתון לטקסט שנבחר."],"Make the selected text italic.":["הפוך את הטקסט הנבחר לנטוי."],"Make the selected text bold.":["הדגש את הטקסט הנבחר."],"Text formatting":["עיצוב טקסט"],"Insert a new block after the selected block(s).":["הוספת בלוק חדש לאחר הבלוקים הנבחרים."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["תודה שבדיקת את גוטנברג."],"Help build Gutenberg":["עיזרו לבנות את גוטנברג"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["קהילת וורדפרס"],"Code is Poetry":["קוד הוא שירה"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["מדיה"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["מאט מולנווג, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["עיצוב ויזואלי"],"And Lists like this one of course :)":["ורשימה כמו זו, כמובן :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":["גלריות"],"Images & Videos":["תמונות וסרטים"],"Text & Headings":["טקסטים וכותרות"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["תמונה שווה אלף מילים"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":["... כמו זו, המיושרת לימין."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["ברוכים הבאים לעורך גוטנברג"],"block name\u0004More":["עוד"],"button to expand options\u0004More":["עוד"],"Are you sure you want to unschedule this post?":["האם אתה בטוח שברצונך לבטל את תזמון הפרסום של הפוסט הזה?"],"Alt Text (Alternative Text)":["טקסט אלטרנטיבי"],"Reusable Block":["בלוק לשימוש חוזר"],"Unique identifier for the object.":["מזהה יחודי לאובייקט."],"Untitled Reusable Block":["בלוק לשימוש חוזר ללא שם"],"Small":["קטן"],"Reusable":["לשימוש חוזר"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["שמור כ-HTML"],"Edit URL":["עריכת כתובת"],"Color settings":[],"The response is not a valid JSON response.":["התשובה שהתקבלה איננה בפורמט JSON תקין."],"Editor publish":["פרסום של העורך"],"Muted":["מושתק"],"Video settings":[],"recent comments":["תגובות אחרונות"],"Latest Comments":["תגובות אחרונות"],"Display Excerpt":["הצג תיאור"],"Display Date":["הצג תאריך"],"Display Avatar":["הצג צלמית מחבר"],"Latest comments settings":[],"Number of Comments":["מספר תגובות"],"Background Opacity":["שקיפות רקע"],"Auto":["אוטומטי"],"Preload":["טען מראש"],"Audio settings":[],"Display a monthly archive of your posts.":["מציג ארכיון חודשי של הפוסטים שלך."],"Display as Dropdown":["להציג כרשימה נפתחת"],"Show Post Counts":["הצג מספר פוסטים"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://he.wordpress.org/support/plugin/gutenberg"],"Support":["תמיכה"],"No comments to show.":["אין תגובות להציג."],"%1$s on %2$s":["%1$s על %2$s"],"Select Post":["בחירת פוסט"],"Select Week":["בחירת שבוע"],"Select Day":["בחירת יום"],"Select Month":["בחירת חודש"],"Select Year":["בחירת שנה"],"Archives":["ארכיון"],"Very dark gray":["אפור כהה מאוד"],"Cyan bluish gray":["ציאן אפור כחלחל"],"Very light gray":["אפור בהיר מאוד"],"Vivid cyan blue":[],"Pale cyan blue":["ציאן כחול בהיר"],"Vivid green cyan":[],"Light green cyan":["ציאן ירוק בהיר"],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":["אדום בהיר"],"Pale pink":["ורוד בהיר"],"Inline image":[],"Available block types":["סוגי בלוקים זמינים"],"Transform To:":["להפוך ל:"],"Remove Block":["הסר בלוק"],"Open publish panel":["פתח פאנל פרסום"],"Dots":["נקודות"],"Wide Line":["שורה רחבה"],"Large":["גדול"],"Show download button":[],"Download button settings":[],"Link To":["קישור אל"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["מסמך"],"Copy URL":["העתק כתובת"],"Write file name…":["כתבו שם קובץ…"],"File":["קובץ"],"A single column within a columns block.":["עמודה בודדת בתוך בלוק של מספר עמודות."],"Column":["עמודה"],"Outline":["מתאר"],"Loop":["לנגן בלי הפסקה"],"Autoplay":["הפעלה אוטומטית"],"Playback Controls":["כפתורי הפעלה"],"Close dialog":["סגור תיבת דו-שיח"],"Sorry, this file type is not permitted for security reasons.":["סוג הקובץ אינו מורשה מטעמי אבטחה."],"Disable tips":["בטל טיפים"],"Got it":["הבנתי"],"See next tip":["הטיפ הבא"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["אם התוכן מוכן, ניתן לשלוח אותו לביקורת, ועורך יוכל לאשר אותו עבורך."],"Are you ready to submit for review?":["מוכן לשלוח סקירה?"],"Replace image":["החלף תמונה"],"Remove image":["הסר תמונה"],"Error while uploading file %s to the media library.":["שגיאה במהלך העלאת קובץ %s לספריית המדיה."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["להציג את התוכן שנשמר אוטומטית"],"There is an autosave of this post that is more recent than the version below.":["קיימת שמירה אוטומטית של הפוסט הזה, והיא חדשה יותר מהגרסה המוצגת כעת."],"Autosaving":["שמירה אוטומטית"],"Enter URL here…":["הכנס כתובת כאן..."],"Pin to toolbar":["נעץ לסרגל כלים"],"Unpin from toolbar":["שחרר נעיצה מסרגל כלים"],"Insert a table — perfect for sharing charts and data.":["הוספת טבלה — להצגת מידע או תרשימים."],"Fixed width table cells":["תאי טבלה ברוחב קבוע"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["הוספת טקסט הכולל כבר רווחים וטאבים, ומאפשר שינויים בעיצוב."],"Display a list of your most recent posts.":["הצג רשימה של הפוסטים האחרונים."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["הוספת בלוק המציג תוכן שנמשך מאתרים אחרים, כמו טוויטר, Instagram או YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["הוספת בלוק המציג תוכן במספר עמודות - ניתן להוסיף בלוקים שונים לכל עמודה."],"Error loading block: %s":["שגיאה בטעינת בלוק: %s"],"Unknown error":["שגיאה לא ידועה"],"Embed Handler":[],"term\u0004Remove %s":["הסר %s"],"Copy the permalink":["העתק קישור"],"Permalink copied":["הקישור הועתק"],"Height in pixels":["גובה בפיקסלים"],"Spacer settings":[],"Spacer":["מרווח"],"Toggle to show a large initial letter.":["ליחצו על הכפתור כדי להציג אות ראשונה גדולה."],"Showing large initial letter.":["מציג אות ראשונה גדולה."],"Name:":["שם:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s מתוך %3$s)"],"Remove item":["הסר פריט"],"Color code: %s":["קוד צבע: %s"],"Skip to the selected block":["דילוג לבלוק הנבחר"],"Publish…":["פירסום"],"Schedule…":["תיזמון"],"Edit post permalink":["עריכת הקישור הישיר של הפוסט"],"Show Block Settings":["הצג הגדרות בלוק"],"Hide Block Settings":["הסתר הגדרות בלוק"],"Block settings closed":["הגדרות הבלוק נסגרו"],"Close plugin":["סגירת התוסף"],"Editor settings":["הגדרות העורך"],"Link settings":[],"Unlink":["הסר קישור"],"Page break":["מעבר דף"],"pagination":["דפדוף"],"next page":["הדף הבא"],"Image Size":["גודל תמונה"],"Height":["גובה"],"Width":["רוחב"],"Image Dimensions":["מימדי התמונה"],"Thumbnails are not cropped.":["תמונות מוקטנות לא חתוכות"],"Thumbnails are cropped to align.":["תמונות קטנות ייחתכו לטובת היישור"],"Media Library":["ספריית מדיה"],"Advanced":["אפשרויות נוספות"],"Add item":["הוספת פריט"],"Reset the template":["איפוס התבנית"],"Keep it as is":["שמירה ללא שינויים"],"The content of your post doesn’t match the template assigned to your post type.":["תוכן הפוסט לא תואם את התבנית של סוג התוכן."],"Resetting the template may result in loss of content, do you want to continue?":["איפוס התבנית יכול לגרום לאיבוד התוכן, האם להמשיך?"],"Document Statistics":["סטטיסטיקת המסמך"],"is now scheduled. It will go live on":["תוזמן. הוא יפורסם באתר ב"],"Scheduled":["מתוזמן לפרסום"],"Scheduling…":["מתזמן…"],"Code editor selected":["עורך קוד נבחר"],"Visual editor selected":["עורך ויזואלי נבחר"],"Plugins":["תוספים"],"Custom Size":["גודל מותאם"],"Layout elements":[],"term\u0004%s removed":["%s הוסר"],"term\u0004%s added":["%s נוסף"],"imperative verb\u0004Preview":["תצוגה מקדימה"],"Block deleted.":["הבלוק נמחק."],"Block updated.":["הבלוק עודכן."],"Block created.":["הבלוק נוצר."],"Trashing failed":["המחיקה נכשלה"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["ישנם שינויים שלא נשמרו והם ילכו לאיבוד."],"Document Outline":["מתאר המסמך"],"Paragraphs":["פיסקאות"],"Headings":["כותרות"],"Words":["מילים"],"Content structure":["מבנה התוכן"],"Public":["ציבורי"],"Protected with a password you choose. Only those with the password can view this post.":["מוגן עם סיסמה לבחירה. רק בעלי הסיסמה יוכלו לצפות בפוסט."],"Password Protected":["מוגן בסיסמה"],"Only visible to site admins and editors.":["זמין לצפייה רק למנהלי האתר ולעורכים."],"Private":["פרטי"],"Visible to everyone.":["זמין לצפייה לכולם."],"Post Visibility":["נראות הפוסט"],"Would you like to privately publish this post now?":["האם לפרסם עכשיו את הפוסט באופן פרטי?"],"Use a secure password":["מומלץ לבחור סיסמה חזקה"],"Create password":["יצירת סיסמה"],"Move to Trash":[],"Parent Term":["מונח אב"],"Parent Category":["קטגורית אב"],"Add new term":["מונח חדש"],"Add new category":["קטגוריה חדשה"],"Term":["מונח"],"Tag":["תגית"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["האם לבטל את פרסום הפוסט?"],"Immediately":["מייד"],"Save Draft":["שמירת טיוטה"],"Saving":["שומר"],"Publish:":["פרסום:"],"Visibility:":["תצוגה:"],"Are you ready to publish?":["הכל מוכן לפרסום?"],"Copy Link":["העתק קישור"],"What’s next?":["מה הלאה?"],"is now live.":["עכשיו זמין באתר"],"Published":["פורסם"],"Schedule":["תיזמון"],"Update":["עדכון"],"Submit for Review":["הגש לאישור"],"Updating…":["מעדכן…"],"Publishing…":["מפרסם…"],"Allow pingbacks & trackbacks":[],"Permalink:":["קישור ישיר:"],"Pending review":[],"%d Revision":["%d גירסה","%d גירסאות"],"Suggestion:":["הצעה:"],"Post Format":["סוג תוכן"],"Chat":["צ'אט"],"Status":["מצב"],"Standard":["סטנדרטי"],"Aside":["תוכן צדדי"],"Featured image":["תמונה ראשית"],"Set featured image":[],"Learn more about manual excerpts":["מידע נוסף אודות תקצירים"],"Write an excerpt (optional)":["כתיבת תקציר (אופצינאלי)"],"Allow comments":[],"Template:":["תבנית עמוד:"],"no parent":["ללא הורה"],"no title":["ללא כותרת"],"Order":["סדר"],"No blocks found.":["לא נמצאו בלוקים."],"%d result found.":["נמצאה תוצאה אחת.","נמצאו %d תוצאות."],"Saved":["נשמר"],"Embeds":["הטמעות"],"Blocks":["בלוקים"],"Search for a block":["חיפוש בלוק"],"Add block":["הוספת בלוק"],"Copy Error":["שגיאת העתקה"],"Copy Post Text":["העתק את הטקסט של הפוסט"],"Attempt Recovery":["לנסות לשחזר"],"The editor has encountered an unexpected error.":["העורך נתקל בשגיאה בלתי צפויה."],"Undo":["ביטול פעולה אחרונה"],"Redo":["בצע שוב"],"(Multiple H1 headings are not recommended)":["(מומלץ שלא להוסיף יותר מכותרת H1 אחת)"],"(Your theme may already use a H1 for the post title)":["(יתכן והתבנית שלך כבר משתמשת ב-H1 עבור כותרת הפוסט)"],"(Incorrect heading level)":["(רמת כותרת לא נכונה)"],"(Empty heading)":["(כותרת ריקה)"],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["האם אתה בטוח שברצונך למחוק את הבלוק המשותף?\n\nהוא ימחק לצמיתות מכל הפוסטים והדפים בהם הוא מופיע."],"Convert to Regular Block":["להמיר לבלוק רגיל"],"More options":["אפשרויות נוספות"],"Edit visually":["עריכה ויזואלית"],"Duplicate":["שכפל"],"Blocks cannot be moved down as they are already at the bottom":["לא ניתן להוריד את הבלוקים בגלל שהם כבר בתחתית"],"Blocks cannot be moved up as they are already at the top":["לא ניתן להעלות את הבלוקים בגלל שהם כבר בחלק העליון ביותר"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["בלוק %s הוא הבלוק היחיד ולא ניתן להזיזו"],"Edit as HTML":["עריכת HTML"],"Convert to Blocks":["להמיר לבלוקים"],"Block: %s":["בלוק: %s"],"This block has encountered an error and cannot be previewed.":["ארעה שגיאה עם הבלוק הזה, ולא ניתן להציג תצוגה מקדימה שלו."],"No block selected.":["לא נבחר בלוק."],"Transform into:":["להפוך ל:"],"Remove":["הסר"],"Find original":["למצוא את המקור"],"Copy all content":[],"Copied!":["הועתק!"],"Additional settings are now available in the Editor block settings sidebar":["אפשרויות נוספות ניתן לראות בסרגל הצדדי של הגדרות הבלוק"],"Visibility":["ניראות"],"Status & visibility":[],"Page attributes":[],"Block":["בלוק","%d בלוקים"],"Document":["מסמך"],"Close settings":["לסגור הגדרות"],"Editor content":["תוכן העורך"],"Tools":["כלים"],"Editor":["עורך"],"Code editor":[],"Visual editor":[],"Editor top bar":["סרגל כלים של העורך"],"Settings":["הגדרות"],"Reset":["איפוס"],"Dismiss this notice":["להסתיר הודעה זו"],"Item removed.":["הפריט הוסר."],"Item added.":["הפריט התווסף."],"Drop files to upload":["גרור לכאן קבצים כדי להעלותם לאתר"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["ארעה שגיאה לא ידועה."],"No results.":["אין תוצאות."],"%d result found, use up and down arrow keys to navigate.":["נמצאה תוצאה אחת. ניתן להשתמש בחיצים למעלה ולמטה במקלדת כדי לנווט.","נמצאו %d תוצאות. ניתן להשתמש בחיצים למעלה ולמטה במקלדת כדי לנווט."],"(no title)":["(ללא כותרת)"],"URL":["כתובת URL"],"Submit":["שלח"],"Close":["סגור"],"Insert link":[],"Edit link":[],"Link":["קישור"],"Strikethrough":["קו חוצה"],"Italic":["נטוי"],"Bold":["מודגש"],"Remove link":[],"Number of items":["מספר פריטים"],"All":["הכל"],"Category":["קטגוריה"],"Z → A":["ת ← א"],"A → Z":["א ← ת"],"Oldest to Newest":["מהישן לחדש"],"Newest to Oldest":["מהחדש לישן"],"Order by":["למיין על פי"],"Select":["בחירה"],"Select or Upload Media":["לבחור או להעלות מדיה"],"Video":["וידאו"],"Write…":["לכתוב…"],"poetry":["שירה"],"Verse":["פסוק"],"New Column":["עמודה חדשה"],"Delete Column":["למחוק עמודה"],"Add Column After":["הוספת עמודה אחרי"],"Add Column Before":["הוספת עמודה לפני"],"Delete Row":["למחוק שורה"],"Add Row After":["הוספת שורה אחרי"],"Add Row Before":["הוספת שורה לפני"],"Edit table":[],"Table":["טבלה"],"Write subheading…":["כתוב כותרת משנה…"],"Write shortcode here…":["ניתן להוסיף כאן שורטקוד…"],"Shortcode":["שורטקוד"],"divider":["מפריד"],"horizontal-line":["קו אופקי"],"Separator":["מפריד"],"Quote":["ציטוט"],"Write citation…":["כתיבת ציטטה…"],"Write quote…":["כתיבת ציטוט…"],"Pullquote":["ציטוט"],"Write preformatted text…":["כתיבת טקסט ללא תבנית"],"Preformatted":["מעוצב מראש"],"text":["טקסט"],"Paragraph":["פסקה רגילה"],"Font Size":["גודל גופן"],"Drop Cap":["אות פתיח"],"Text settings":[],"Read more":["לקרוא עוד"],"Write list…":["הופסת רשימה…"],"numbered list":["רשימה מספרית"],"ordered list":["רשימה מסודרת"],"bullet list":["רשימת תבליטים"],"Indent list item":["הזזה פנימה של הפריט"],"Outdent list item":["הזזה החוצה של הפריט"],"Convert to ordered list":["להמיר לרשימה ממוספרת"],"Convert to unordered list":["להמיר לרשימה לא ממוספרת"],"List":["רשימה"],"recent posts":["פוסטים אחרונים"],"No posts found.":["לא נמצאו פוסטים."],"Latest Posts":["פוסטים אחרונים"],"Display post date":["הצגת תאריך הפוסט"],"Grid view":[],"List view":[],"photo":["תמונה"],"Image settings":[],"Image":["תמונה"],"Preview":["תצוגה מקדימה"],"embed":["הטמעה"],"Custom HTML":["HTML מותאם"],"subtitle":["כותרת משנה"],"title":["כותרת"],"Heading":["כותרת"],"Write heading…":["כתיבת כותרת…"],"Heading %d":["כותרת %s"],"Level":["רמה"],"Heading settings":[],"photos":["צילומים"],"images":["תמונות"],"None":["ללא"],"Media File":["קובץ מדיה"],"Attachment Page":["עמוד הקובץ"],"Link to ":[],"Crop Images":["חיתוך תמונות"],"Gallery settings":[],"Gallery":["גלרייה"],"Classic":["קלאסי"],"video":["וידאו"],"audio":["אודיו"],"music":["מוסיקה"],"image":["תמונה"],"blog":["בלוג"],"post":["פוסט"],"Embedded content from %s":["תוכן מוטמע מ-%s"],"Enter URL to embed here…":["כתובת של התוכן להטמעה…"],"%s URL":["כתובות %s"],"Embedding…":["מטמיע…"],"Write title…":["כתיבת כותרת…"],"Fixed Background":["רקע קבוע"],"Edit image":["עריכת תמונה"],"Columns":["טורים"],"Experiments":[],"Code":["קוד"],"Write code…":["הוספת קוד…"],"Categories":["קטגוריות"],"Show Hierarchy":["הצג היררכיה"],"Show post counts":["הצגת מספר פוסטים בכל קטגוריה"],"Categories settings":[],"Add text…":["הוספת טקסט…"],"Button":["כפתור"],"Apply":["החל"],"Text Color":["צבע הטקסט"],"Background Color":["צבע רקע"],"Block has been deleted or is unavailable.":["הבלוק נמחק או לא זמין."],"Reusable blocks":[],"Cancel":["בטל"],"Edit":["עריכה"],"Write caption…":["הוספת תיאור…"],"Use URL":["שימוש בכתובת URL"],"Audio":["אודיו"],"Upload":["להעלות"],"Additional CSS Class(es)":[],"HTML Anchor":["עוגן HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["יתכן ושילוב הצבעים הזה יקשה על משתמשים לקרוא. נא להשתמש ברקע בהיר יותר ו/או צבע טקסט כהה יותר."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["יתכן ושילוב הצבעים הזה יקשה על משתמשים לקרוא. נא להשתמש ברקע כהה יותר ו/או צבע טקסט בהיר יותר."],"Clear":["נקה"],"Custom color picker":["בוחר צבע"],"Color: %s":["צבע: %s"],"Full width":[],"Wide width":[],"Widgets":["וידג'טים"],"Formatting":["עיצוב"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["מדפיסים משנת 1440. תוסף זה נמצא בפיתוח לטובת עורך התוכן החדש של וורדפרס."],"Add title":["הוספת כותרת"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["מאת"],"Slug":["מזהה לכתובת"],"Discussion":["דיון"],"Custom fields":[],"Excerpt":["תקציר"],"Publish":["פרסום"],"Metadata":["מטה דטה"],"Save":["שמירה"],"Documentation":["תיעוד"],"Select Category":["בחירת קטגוריה"],"(Untitled)":["(ללא כותרת)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["צוות גוטנברג"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["גוטנברג"],"Demo":["הדגמה"],"%s ago":["לפני %s"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_hr.json b/bundle/android/raw/i18ncache_data_hr.json
new file mode 100644
index 0000000000..f1084aa6fd
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_hr.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":["Prosinac 6, 2018"],"February 21, 2019":["Veljača 21, 2019"],"May 7, 2019":["Svibanj 7, 2019"],"Release Date":["Datum izdavanja"],"Jazz Musician":["Jazz glazbenik"],"Version":["Inačica"],"Six.":["Šest."],"Five.":["Pet."],"Four.":["Četiri."],"Three.":["Tri."],"Two.":["Dva."],"One.":["Jedan."],"One of the hardest things to do in technology is disrupt yourself.":["Jedna od naježih stvari u tehnologiji je disruptirati samog sebe."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Carić
se uzdržava
bešumno."],"Welcome to the wonderful world of blocks…":["Dobro došli u prekrasni svijet blokova..."],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimenzije"],"Minimum height in pixels":["Minimalna visina u pikselima"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Poziv na akciju"],"In quoting others, we cite ourselves.":["Navodeći druge, navodimo se."],"cite":["citat"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc izgleda—još uvijek, pod snijegom i spokojan."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["U nekom selu u Manchi, kojemu ne želim ime spominjati, živio je prije malo vremena plemić, od onih koji imaju koplje na stalku, starinski štit, kukavno kljuse i hitra hrta."],"Block navigation":["Navigacija blokova"],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":["Unesi Panel pomoći"],"Pre-publish checks":["Provjere prije objavljivanja"],"Please contact your site administrator to install new blocks.":["Kontaktirajte administratora web-stranice kako bi instalirali nove blokove."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Blokovi nisu pronađeni u vašoj zbirci. Kontaktirajte administratora web-stranice kako bi instalirali nove blokove."],"No blocks found in your library.":["Blokovi nisu pronađeni u vašoj zbirci."],"No blocks found in your library. These blocks can be downloaded and installed:":["Blokovi nisu pronađeni u vašoj zbirci. Ove blokove je moguće preuzeti i instalirati:"],"No blocks found in your library. We did find %d block available for download.":["Blokovi nisu pronađeni u vašoj zbirci. Pronađena su %d bloka dostupna za preuzimanje.","Blokovi nisu pronađeni u vašoj zbirci. Pronađena su %d bloka dostupna za preuzimanje.","Blokovi nisu pronađeni u vašoj zbirci. Pronađeno je %d blokova dostupnih za preuzimanje."],"Block previews can’t load.":["Pretpregled bloka nije moguće učitati."],"Retry":["Pokušajte ponovno"],"Block previews can't install.":["Pretpregled bloka nije moguće instalirati."],"Updated %s":["Ažurirano %s"],"%d active installation":["%d aktivne instalacije","%d aktivne instalacije","%d aktivnih instalacija"],"This author has %d block, with an average rating of %d.":["Ovaj autor ima %d blok, s prosječnom ocjenom od %d.","Ovaj autor ima %d bloka, s prosječnom ocjenom od %d.","Ovaj autor ima %d blokova, s prosječnom ocjenom od %d."],"Authored by %s":["Autor %s"],"%d total rating":["%d ukupna ocjena","%d ukupne ocjene","%d ukupne ocjene"],"%s out of 5 stars":["%s od 5 zvjezdica"],"Enter Address":["Unesite adresu"],"Pill Shape":["Oblik pilule"],"Logos Only":["Samo logotipi"],"Create a block of links to your social media or external sites":["Kreirajte blok poveznica za vaše društvene mreže ili vanjske web-stranice"],"Social links":["Društvene poveznice"],"Open block navigator":["Otvori blok navigator"],"Attachment page":["Stranica privitka"],"Fill":["Popuni"],"Link rel":["Poveznica rel"],"Border Radius":["Radijus obruba"],"Write gallery caption…":["Napišite opis galerije..."],"Content blocks":["Blokovi za sadržaj"],"Restore the backup":["Vrati sigurnosnu kopiju"],"The backup of this post in your browser is different from the version below.":["Sigurnosna kopija ove objave u vašem pregledniku je drugačija od inačice ispod."],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":["Nije se moguće povezati na sistem podataka. Potvrdite vaše akreditive."],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":["%1$d blok je onemogućen.","%1$d bloka su onemogućena.","%1$d blokova je onemogućeno."],"Reverse List Numbering":["Lista s obrnutim brojanjem"],"Start Value":["Početna vrijednost"],"Ordered list settings":["Postavke brojčane liste"],"Clear Media":["Obriši medije"],"Default Style":["Izvorni stil"],"Not set":["Nije postavljeno"],"While writing, you can press / to quickly insert new blocks.":["Dok pišete, možete pritisnuti / kako bi unijeli nove blokove."],"Browse through the library to learn more about what each block does.":["Pregledajte zbirku blokova kako bi saznali mogućnosti svakog bloka."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Postoje blokovi za svakakve vrste sadržaja: unos teksta, zaglavlja, slika, lista, videa, tablica, i još puno toga."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Dobro došli u prekrasni svijet blokova! Blokovi su osnova svog sadržaja unutar uređivača."],"Version of the content block format used by the object.":["Inačica formata blok sadržaja koju koristi objekt."],"HTML content for the object, transformed for display.":["HTML sadržaj za objekt, transformiran za prikaz."],"Content for the object, as it exists in the database.":["Sadržaj objekta, kakav postoji u bazi podataka."],"The content for the object.":["Sadržaj objekta."],"Change column alignment":["Promjeni poravnanje stupca"],"Align Column Right":["Poravnaj stupac desno"],"Align Column Center":["Centriraj stupac"],"Align Column Left":["Poravnaj stupac lijevo"],"Color":["Boja"],"Vivid purple":["Jasno ljubičasta"],"Disable & Reload":["Onemogući i ponovno učitaj"],"Enable & Reload":["Omogući i ponovno učitaj"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Potrebno je ponovno učitavanja stranice za ovu promjenu. Pobrinite se da je sadržaj sačuvan prije ponovnog učitavanja."],"Display these keyboard shortcuts.":["Prikaži ove tipkovne prečace."],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":["Ime bloka mora biti niz znakova (string)."],"Custom":["Prilagodljivo"],"Draft":["Skica"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blok \"%1$s\" ne sadržava stil pod nazivom \"%2$s.\"."],"Learn more about anchors":["Saznaj više o sidrima"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Unesite riječ, dvije — bez razmaka — kako bi napravili jedinstvenu web adresu koje se zove \"sidro\", samo za ovo zaglavlje. Nakon toga imati ćete direktnu poveznicu do ovog dijela sadržaja."],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":["Prenesite video, odaberite ga iz medijske zbirke, ili ga dodajte koristeći URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Prenesite sliku, odaberite ju iz medijske zbirke, ili ju dodajte koristeći URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Prenesite audio, odaberite ga iz medijske zbirke, ili ga dodajte koristeći URL."],"Upload a media file or pick one from your media library.":["Prenesite medijsku datoteku ili ju odaberite iz medijske zbirke."],"Skip":["Preskoči"],"Select a variation to start with.":["Odaberite varijaciju s kojom želite započeti."],"Add a page, link, or another item to your navigation.":["Dodajte stranicu, poveznicu, ili druge stavke u navigaciju"],"What's this?":["Što je ovo?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Nemoj dopustiti web tražilicama da prate ovu poveznicu."],"Provide more context about where the link goes.":["Pružite više konteksta o tome kuda vodi ova poveznica."],"Title Attribute":["Svojstva naslova"],"SEO settings":["SEO postavke"],"Description":["Opis"],"Open in new tab":["Otvori u novoj kartici"],"links":["poveznice"],"navigation":["navigacija"],"menu":["izbornik"],"Add a navigation block to your site.":["Dodaj navigacijski izbornik na web-stranicu."],"Upload a file or pick one from your media library.":["Prenesite datoteku ili odaberite neku iz medijske zbirke."],"Learn more about embeds":["Saznaj više o ugradbenim kodovima"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Zalijepite poveznicu do sadržaja koji želite prikazati na web-stranici."],"Upload an image or video file, or pick one from your media library.":["Prenesite sliku ili video, ili odaberite nešto iz medijske zbirke."],"Three columns; wide center column":["Tri stupca; široki srednji stupac"],"Three columns; equal split":["Tri stupca; jednake širine"],"Two columns; two-thirds, one-third split":["Dva stupca: podijeljeni na dvije trećine, jedna trećina "],"Two columns; one-third, two-thirds split":["Dva stupca: podijeljeni na jedna trećina, dvije trećine"],"Two columns; equal split":["Dva stupca; jednake širine"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Vaša web-stranica nema %s, stoga se nema ništa za prikazati ovdje."],"More tools & options":["Više alata i opcija"],"Create Table":["Kreiraj tablicu"],"Insert a table for sharing data.":["Unesite tablicu za dijeljenje podataka."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Degrupiraj"],"verb\u0004Group":["Grupiraj"],"Separate with commas or the Enter key.":["Razdvojite zarezom ili pritisnite Enter tipku."],"Separate with commas, spaces, or the Enter key.":["Razdvojite zarezima, razmacima ili Enter tipkom."],"Separate multiple classes with spaces.":["Razdvojite klase s razmakom."],"Move image forward":["Pomakni sliku naprijed"],"Move image backward":["Pomakni sliku nazad"],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":["Blok je iscrtan kao prazan."],"Inline Code":["Inline kod"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Napomena: Video koji se automatski pokreće može prouzročiti probleme za neke posjetitelje."],"Footer section":["Odjeljak podnožja"],"Header section":["Odjeljak zaglavlja"],"Sorting and filtering":["Sortiranje i filtriranje"],"Post meta settings":["Postavke meta podataka objave"],"Post Content":["Sadržaj objave"],"Post content settings":["Postavke sadržaja objave"],"Percentage width":["Širina u postotcima"],"Column settings":["Postavke stupaca"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Napomena: Audio koji se automatski pokreće može prouzročiti probleme za neke posjetitelje."],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":["Sadržaj widget zaslona"],"header":["zaglavlje"],"Widgets advanced settings":["Napredne postavke widgeta"],"(experimental)":["(eksperimentalno)"],"Block Areas":["Blok područja"],"Widgets screen top bar":["Gornja alatna traka widget zaslona"],"This color combination may be hard for people to read.":["Ova kombinacija boja umanjiti će čitljivost."],"There is no poster image currently selected":["Trenutno nije odabrana poster slika"],"The current poster image url is %s":["URL trenutne poster slike je %s"],"section":["sekcija"],"row":["redak"],"wrapper":["omotač"],"container":["kontejner"],"A block that groups other blocks.":["Blok koji grupira druge blokove"],"Group":["Grupa"],"Crop image to fill entire column":["Izreži sliku kako bi popunila cijeli stupac"],"Play inline":["Reproduciraj inline"],"Leave empty if the image is purely decorative.":["Ostavite prazno ako je slika samo dekorativna."],"Describe the purpose of the image":["Opišite svrhu slike"],"Add a block":["Dodaj blok"],"Block vertical alignment setting label\u0004Change vertical alignment":["Promijenite poravnanje"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertikalno poravnaj na dno"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertikalno poravnaj u sredinu"],"Replace Image":["Zamijeni sliku"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertikalno poravnaj na vrh"],"Display a legacy widget.":["Prikaži naslijeđeni widget."],"Legacy Widget (Experimental)":["Naslijeđeni widget (Eksperimentalno)"],"Change widget":["Promijeni widget"],"Legacy Widget":["Naslijeđeni widget"],"You don't have permissions to use widgets on this site.":["Nemate dopuštenje za korištenje widgeta na ovoj web-stranici."],"Select a legacy widget to display:":["Odaberite naslijeđeni widget za prikaz:"],"There are no widgets available.":["Nema dostupnih widgeta."],"Change block type or style":["Promijenite vrstu bloka ili stil"],"keyboard key\u0004Space":["Razmaknica"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Više kontrola obogaćenog teksta"],"Search Terms":["Pojmovi pretrage"],"Exit the Editor":["Izlazak iz uređivača"],"Block Manager":["Upravitelj blokova"],"Class name of the widget.":["Naziv klase widgeta."],"Sorry, you are not allowed to access widgets on this site.":["Nažalost, nemate dopuštenje za pristup widgetima na ovoj web-stranici."],"Widgets (beta)":["Widgeti (beta)"],"link":["poveznica"],"Embedded content from %s can't be previewed in the editor.":["Ugrađeni sadržaj s %s nije moguće pretpregledati u uređivaču."],"Custom Color":["Prilagođena boja"],"Prompt visitors to take action with a button-style link.":["Potaknite posjetitelje na akciju s poveznicom u obliku dugmeta."],"Stick to the top of the blog":["Zalijepi na vrh bloga"],"Read about permalinks":["Pročitajte više o stalnim vezama"],"The last part of the URL.":["Zadnji dio URL-a."],"URL Slug":["URL Slug"],"A cloud of your most used tags.":["Oblak vaših najkorištenijih oznaka."],"Tag Cloud":["Oblak oznaka"],"Taxonomy":["Taksonomija"],"Tag Cloud settings":["Postavke Oblaka oznaka"],"- Select -":["- Odaberite -"],"Default":["Izvorno"],"find":["pronađi"],"Help visitors find your content.":["Pomozite posjetiteljima da pronađu vaš sadržaj."],"Search":["Pretraga"],"Add button text…":["Dodaj tekst gumba..."],"Button text":["Tekst gumba"],"Optional placeholder…":["Opcionalni zamjenski tekst"],"Optional placeholder text":["Opcionalni zamjenski tekst"],"Add label…":["Dodaj natpis..."],"Label text":["Tekst natpisa"],"image %1$d of %2$d in gallery":["slika %1$d od %2$d u galeriji"],"archive":["arhiva"],"posts":["objave"],"A calendar of your site’s posts.":["Kalendar objava vaše web-stranice."],"Calendar":["Kalendar"],"by":["autora/ice"],"An error has occurred, which probably means the feed is down. Try again later.":["Došlo je do greške, što vjerojatno znači da je kanal onesposobljen. Pokušajte kasnije."],"RSS Error:":["RSS greška:"],"block style\u0004Default":["Izvorno"],"Fullscreen mode deactivated":["Prikaz punog zaslona je deaktiviran."],"Fullscreen mode activated":["Prikaz punog zaslona je aktiviran."],"Spotlight mode deactivated":["Mod Središte pažnje deaktiviran"],"Spotlight mode activated":["Mod Središte pažnje aktiviran"],"Top toolbar deactivated":["Gornja alatna traka deativirana"],"Top toolbar activated":["Gornja alatna traka ativirana"],"Back":["Povratak"],"Feature activated":["Značajka aktivirana"],"Feature deactivated":["Značajka deaktivirana"],"Vertical Pos.":["Vertikalna poz."],"Horizontal Pos.":["Horizontalna poz."],"feed":["kanal"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Prikažite unose s bilo kojeg RSS ili Atom kanala."],"RSS":["RSS"],"Max number of words in excerpt":["Maksimalni broj riječi u sažetku"],"Display excerpt":["Prikaži sažetak"],"Display date":["Prikaži datum"],"Display author":["Prikaži autora"],"RSS settings":["RSS postavke"],"Edit RSS URL":["Uredi RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Sadržaj ispred ovog bloka biti će prikazan u sažetku na stranicama arhiva."],"Hide the excerpt on the full content page":["Sakrij sažetak na stranici s prikazom cijelog sadržaja"],"The excerpt is visible.":["Sažetak je vidljiv"],"The excerpt is hidden.":["Sažetak je skriven"],"Sorry, this content could not be embedded.":["Nažalost ovaj sadržaj nije moguće ugraditi."],"Embed Amazon Kindle content.":["Ugradi Amazon Kindle sadržaj."],"ebook":["eknjiga"],"Embed Crowdsignal (formerly Polldaddy) content.":["Ugradi Crowdsignal (prijašnji Polldaddy) sadržaj."],"Focal Point Picker":["Odabir žarišne točke"],"Underline":["Podcrtano"],"Attempt Block Recovery":["Pokušaj oporavka bloka"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Sadržaj…"],"button label\u0004Convert to link":["Pretvori u poveznicu"],"button label\u0004Try again":["Pokušaj ponovo"],"Editor tips":["Savjeti uređivača"],"Block (selected)":["Blok (odabran)"],"Document (selected)":["Dokument (odabran)"],"%d word":["%d riječi","%d riječi","%d riječi"],"Top toolbar":["Gornja alatna traka"],"Link Rel":["Poveznica rel"],"Link CSS Class":["Poveži CSS klasu"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Izradite sadržaj i spremite ga za vas i ostale suradnike za ponovnu upotrebu na svojoj web-stranici. Ažurirajte blok i promjene se primjenjuju svugdje gdje se upotrebljava."],"To edit the featured image, you need permission to upload media.":["Kako bi izmijenili istaknutu sliku, treba vam dozvola za prijenos medija."],"To edit this block, you need permission to upload media.":["Da biste uredili ovaj blok, trebate dopuštenje za prijenos medija."],"(selected block)":["(odabrani blok)"],"Block tools":["Blok alati"],"Permalink":["Stalna veza"],"This image has an empty alt attribute":["Ova slika ima prazan alt atribut"],"This image has an empty alt attribute; its file name is %s":["Ova slika ima prazan alt atribut ; naziv datoteke je %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Dodaj novi"],"add new on admin bar\u0004Block Area":[],"Link inserted.":["Poveznica je unesena."],"Warning: the link has been inserted but may have errors. Please test it.":["Upozorenje: unesena je poveznica, ali možda sadrži greške. Testirajte ju."],"%s block selected.":["%s odabran blok.","%s odabrana bloka.","%s odabranih blokova."],"Thumbnail":["Minijatura"],"Full Size":["Puna veličina"],"Link selected.":["Poveznica je odabrana."],"Start writing with text or HTML":["Započnite pisati tekstom ili HTML-om"],"Type text or HTML":["Upišite tekst ili HTML"],"Block icon":["Ikona bloka"],"Align text right":["Poravnaj tekst desno"],"Align text center":["Centriraj tekst"],"Align text left":["Poravnaj tekst lijevo "],"Start writing or type / to choose a block":["Započnite pisati ili upišite / za odabir bloka"],"Empty block; start writing or type forward slash to choose a block":["Prazan blok; započnite pisati ili upišite uzlaznu kosu crtu kako biste odabrali blok"],"Paragraph block":["Paragraf blok"],"Page Break":["Prijelom stranice"],"Stack on mobile":["Posloži u niz na mobitelu"],"Annotation":["Anotacija"],"Drag images, upload new ones or select files from your library.":["Povucite slike, prenesite nove ili odaberite datoteke iz svoje biblioteke."],"blocks\u0004Most used":["Najčešće korišteni"],"imperative verb\u0004Resolve":["Razriješi"],"font size name\u0004Huge":["Ogroman"],"font size name\u0004Large":["Velik"],"font size name\u0004Medium":["Srednji"],"font size name\u0004Small":["Mali"],"font size name\u0004Normal":["Normalno"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Uvezi"],"button label\u0004Download":["Preuzmi"],"button label\u0004Embed":["Ugradi"],"block title\u0004Embed":["Ugradnja"],"block title\u0004Classic":["Klasični"],"block style\u0004Large":["Velik"],"block style\u0004Rounded":[],"%s (opens in a new tab)":["%s (otvara se u novoj kartici)"],"Link edited.":["Poveznica uređena."],"Link removed.":["Poveznica uklonjena."],"media":["medij"],"Double-check your settings before publishing.":["Dobro provjerite svoje postavke prije objave."],"Generating preview…":["Stvaranje pretpregleda..."],"Edit or update the image":["Uredi ili ažuriraj sliku"],"Media":["Medij"],"Navigate to the nearest toolbar.":["Kreni do najbliže alatne trake."],"Document tools":["Alati dokumenta"],"Document and block tools":["Alati dokumenta i bloka"],"Embed a video from your media library or upload a new one.":["Ugradite video iz zbirke medija ili prenesite novi."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Umetnite poeziju. Upotrijebite posebne oblike razmaka. Ili navedite tekstove pjesama."],"Add white space between blocks and customize its height.":["Dodajte bijeli prostor između blokova i prilagodite njegovu visinu."],"Insert additional custom elements with a WordPress shortcode.":["Umetnite dodatne prilagođene elemente pomoću WordPress kratkog koda."],"Create a break between ideas or sections with a horizontal separator.":["Kreirajte prekid između ideja ili odjeljaka s vodoravnim separatorom."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Dajte vizualni naglasak na citirani tekst. \"Navodeći druge, navodimo se.\" - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Pridodajte poseban vizualni naglasak citatu iz teksta."],"Start with the building block of all narrative.":["Počnite s građevnim blokom svake pripovijesti."],"Separate your content into a multi-page experience.":["Razdvojite sadržaj na više stranica."],"Set media and words side-by-side for a richer layout.":["Postavite medijske zapise i tekst jednu uz drugo za bogatiji izgled."],"Media & Text settings":["Postavke medija i teksta"],"Create a bulleted or numbered list.":["Stvori popis s grafičkim oznakama."],"Display a list of your most recent comments.":["Prikažite popis vaših najnovijih komentara."],"Insert an image to make a visual statement.":["Ubacite sliku kako bi napravili vizualnu izjavu."],"Add custom HTML code and preview it as you edit.":["Dodaj proizvoljni HTML kod i pregledaj ga prilikom unosa."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Predstavite nove sekcije i organizirajte sadržaj kako bi pomogli posjetiteljima (i tražilicama) da razumiju strukturu vašeg sadržaja."],"Display multiple images in a rich gallery.":["Prikaz više slika u bogatoj galeriji."],"Add a link to a downloadable file.":["Dodajte poveznicu na datoteku koja se može preuzeti."],"Embed videos, images, tweets, audio, and other content from external sources.":["Ugradite videozapise, slike, tweetove, audio i ostale sadržaje iz vanjskih izvora."],"Resize for smaller devices":["Promijenite veličinu za manje uređaje"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ovaj ugrađeni sadržaj možda neće sačuvati omjer proporcija kada se promijeni veličina preglednika."],"This embed will preserve its aspect ratio when the browser is resized.":["Ovaj ugrađeni sadržaj sačuvat će omjer proporcija prilikom mijenjanja veličine preglednika."],"Embed an Animoto video.":["Ugradi Animoto sadržaj."],"Embed a Vimeo video.":["Ugradi Vimeo video."],"Embed Flickr content.":["Ugradi Flickr sadržaj."],"Embed Spotify content.":["Ugradi Spotify sadržaj."],"Embed SoundCloud content.":["Ugradi SoundCloud sadržaj."],"Embed a WordPress post.":["Ugradi WordPress objavu."],"Embed an Instagram post.":["Ugradi Instagram objavu."],"Embed a Facebook post.":["Ugradi Facebook objavu."],"Embed a WordPress.tv video.":["Ugradi WordPress.tv video."],"Embed a VideoPress video.":["Ugradi VideoPress video."],"Embed a Tumblr post.":["Ugradi Tumblr objavu."],"Embed a TED video.":["Ugradi TED video."],"Embed Speaker Deck content.":["Ugradi Speaker Deck sadržaj."],"Embed a YouTube video.":["Ugradi YouTube video."],"Embed SmugMug content.":["Ugradi SmugMug sadržaj."],"Embed Slideshare content.":["Ugradi Slideshare sadržaj."],"Embed Scribd content.":["Ugradi Scribd sadržaj."],"Embed Screencast content.":["Ugradi Screencast sadržaj."],"Embed ReverbNation content.":["Ugradi ReverbNation sadržaj."],"Embed a Reddit thread.":["Ugradi Reddit nit."],"Embed Polldaddy content.":["Ugradi Polldaddy sadržaj."],"Embed Mixcloud content.":["Ugradi Mixcloud sadržaj."],"Embed a tweet.":["Ugradi tweet."],"Embed Meetup.com content.":["Ugradi Meetup.com sadržaj."],"Embed Kickstarter content.":["Ugradi Kickstarter sadržaj."],"Embed Issuu content.":["Ugradi Issuu sadržaj."],"Embed Imgur content.":["Ugradi Imgur sadržaj."],"Embed Hulu content.":["Ugradi Hulu sadržaj."],"Embed a Dailymotion video.":["Ugradi Dailymotion video."],"Embed CollegeHumor content.":["Ugradi CollegeHumor sadržaj."],"Embed Cloudup content.":["Ugradi Cloudup sadržaj."],"Add an image or video with a text overlay — great for headers.":["Dodaj sliku ili video s tekstom koji ga prekriva — izvrsno za zaglavlje."],"Display code snippets that respect your spacing and tabs.":["Prikaži isječak koda koji poštuje vaše razmake i tabulatore."],"Use the classic WordPress editor.":["Upotrijebite klasični WordPress uređivač."],"Display a list of all categories.":["Prikažite popis svih kategorija."],"Embed a simple audio player.":["Ugradi jednostavan svirač zvuka."],"noun\u0004View":["Pregled"],"editor button\u0004Left to right":["S lijeva na desno"],"Save as Pending":["Spremi pod Na čekanju"],"%s address":["%s adresa"],"Paste or type URL":["Zalijepite ili upišite URL"],"Insert from URL":["Dodaj s URL-a"],"Block Navigator":["Navigacija blokova"],"Styles":["Stilovi"],"Advanced panels":["Napredni paneli"],"Document panels":["Dokument paneli"],"General":["Općenito"],"Open the block navigation menu.":["Otvori navigacijski izbornik bloka."],"Work without distraction":["Radi bez ometanja"],"Focus on one block at a time":["Fokusiraj se na jedan po jedan blok"],"Access all block and document tools in a single place":["Na jednom mjestu pristupite svim alatima bloka i dokumenta."],"Options":["Opcije"],"(opens in a new tab)":["(otvara se u novoj kartici)"],"Minutes":["Minute"],"Hours":["Sati"],"Time":["Vrijeme"],"Year":["Godina"],"Day":["Dan"],"December":["prosinac"],"November":["studeni"],"October":["listopad"],"September":["rujan"],"August":["kolovoz"],"July":["srpanj"],"June":["lipanj"],"May":["svibanj"],"April":["travanj"],"March":["ožujak"],"February":["veljača"],"January":["siječanj"],"Month":["Mjesec"],"Date":["Datum"],"Go to the first (home) or last (end) day of a week.":["Idite na prvi (home) ili zadnji (end) dan u tjednu."],"Home/End":["Home/End"],"Home and End":["Home i End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Pomakni se unazad (PgUp) ili unaprijed (PgDn) za jedan mjesec."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up i Page Down"],"Move backward (up) or forward (down) by one week.":["Idite nazad (up) ili naprijed (down) za jedan tjedan."],"Up and Down Arrows":["Strelice gore i dolje. "],"Move backward (left) or forward (right) by one day.":["Idite nazad (lijevo) ili naprijed (desno) po jedan dan."],"Left and Right Arrows":["Lijeva i desna strelica"],"Select the date in focus.":["Odaberite datum u fokusu."],"Navigating with a keyboard":["Kretanje pomoću tipkovnice"],"Click the desired day to select it.":["Klikom odaberite željeni datum."],"Click the right or left arrows to select other months in the past or the future.":["Kliknite na desnu ili lijevu strelicu kako bi odabrali neki prošli ili budući mjesec."],"Click to Select":["Kliknite za odabir."],"Calendar Help":["Pomoć za kalendar"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Upotrijebite strelice na tipkovnici kako bi odabrali osnovnu boju. Pomaknite gore kako bi posvijetlili boju, dolje kako bi ju potamnili, lijevo da smanjite zasićenost i desno kako bi povećali zasićenost."],"Choose a shade":["Odaberite nijansu"],"Change color format":["Promijenite format boje"],"Color value in HSL":["HSL vrijednost boje"],"Color value in RGB":["RGB vrijednost boje"],"Color value in hexadecimal":["Heksadecimalna vrijednost boje"],"RGB mode active":["RGB način aktivan"],"Hex color mode active":["Heksadecimalni način boja aktivan "],"Hue/saturation/lightness mode active":["Hue/saturation/lightness način aktivan"],"Move the arrow left or right to change hue.":["Pomaknite strelicu lijevo ili desno kako bi promijenili ton boje."],"Hue value in degrees, from 0 to 359.":["Vrijednost tona boje u stupnjevima, od 0 do 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa vrijednost, od 0 (prozirno) do 1 (potpuno neprozirno)."],"Stripes":["Prugice"],"Your site doesn’t include support for this block.":["Vaša web-stranica ne uključuje podršku za ovaj blok."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Vaša web-stranica ne sadrži podršku za \"%s\" blok. Možete ostaviti ovaj blok nedirnutim ili ga ukloniti u potpunosti."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Vaša web-stranica ne sadrži podršku za \"%s\" blok. Možete ostaviti ovaj blok nedirnutim, pretvoriti njegov sadržaj u Prilagođeni HTML blok, ili ga ukloniti u potpunosti."],"Media area":["Područje za medij"],"Media & Text":["Medij i tekst"],"Show media on right":["Prikaži medij na desnoj strani."],"Show media on left":["Prikaži medij na lijevoj strani."],"Open in New Tab":["Otvori u novoj kartici"],"Cover":["Naslovna slika"],"Border settings":["Postavke obruba"],"Medium":["Srednja veličina"],"Paste URL or type to search":["Zalijepite URL ili utipkajte za pretragu."],"Terms":["Pojmovi"],"Your work will be published at the specified date and time.":["Vaše djelo bit će objavljeno na dan i u vrijeme koje ste odredili."],"Are you ready to schedule?":["Jeste li spremni za zakazivanje?"],"Always show pre-publish checks.":["Uvijek prikaži provjere prije objavljivanja."],"Take Over":["Preuzmi"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Drugi korisnik trenutno radi na ovoj objavi. To znači da ne možete raditi izmjene osim ako ne preuzmete uređivanje."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s trenutno radi na ovoj objavi. To znači da ne možete raditi izmjene osim ako ne preuzmete uređivanje."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Drugi korisnik sada ima kontrolu nad uređivanjem ove objave. Ne brinite, vaše promjene koje ste napravili do ovog trenutka su spremljene."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s sada ima kontrolu nad uređivanjem ove objave. Ne brinite, vaše promjene koje ste napravili do ovog trenutka su spremljene."],"Avatar":["Avatar"],"This post is already being edited.":["Objava se već uređuje."],"Someone else has taken over this post.":["Netko drugi je preuzeo ovu objavu."],"This block contains unexpected or invalid content.":["Ovaj blok ima u sebi neočekivani ili neispravni sadržaj."],"Resolve Block":["Razriješi blok"],"Convert to HTML":["Pretvori u HTML"],"This block can only be used once.":["Ovaj blok se može iskoristiti samo jednom."],"Exit Code Editor":["Izađi iz uređivača koda"],"Editing Code":["Uređivanje koda"],"Solid Color":["Puna boja"],"Main Color":["Glavna boja"],"HTML":["HTML"],"Write HTML…":["Napišite HTML..."],"Media settings":["Postavke medija"],"Overlay":["Prekrivajući element"],"Insert Media":["Unesi medijski zapis"],"Reusable block imported successfully!":["Višekratno upotrebljivi blok je uspješno uvezen!"],"Invalid Reusable Block JSON file":["Neispravna JSON datoteka višekratno upotrebljivog bloka"],"Invalid JSON file":["Neispravna JSON datoteka"],"Import from JSON":["Uvezi iz JSON-a"],"Backtick":["Backtick"],"Period":["Točka"],"Comma":["Zarez"],"Change type of %d block":["Promijenite vrstu za %d blok. ","Promijenite vrstu za %d bloka. ","Promijenite vrstu za %d blokova. "],"Current":["Trenutni"],"After Conversion":["Nakon pretvorbe"],"Change alignment":["Promjeni poravnanje"],"Change text alignment":["Promjeni poravnanje teksta"],"%d block":["%d blok","%d bloka","%d blokova"],"Forward-slash":["Prednja kosa crta"],"No archives to show.":["Nema arhiva za prikazati."],"This file is empty.":["Ova datoteka je prazna."],"Sorry, this file type is not supported here.":["Nažalost, ova vrsta datoteke nije podržana ovdje."],"Manage all reusable blocks":["Upravljanje svim višekratno upotrebljivim blokovima"],"Title":["Naslov"],"Fullscreen mode":["Režim punog zaslona"],"Beautiful landscape":["Prekrasni krajolik"],"Close panel":["Zatvori panel"],"Convert to Classic Block":["Pretvori u Klasični blok"],"Remove Poster Image":["Ukloni Poster sliku"],"Select Poster Image":["Odaberi poster sliku"],"Poster Image":["Poster slika"],"This block is deprecated. Please use the Columns block instead.":["Ovaj blok je zastario. Umjesto njega upotrijebite blok Stupce."],"Text Columns (deprecated)":["Tekstualni stupac (zastarjelo)"],"Create":["Kreiraj"],"Row Count":["Broj redova"],"Column Count":["Broj stupaca"],"This block is deprecated. Please use the Paragraph block instead.":["Ovaj blok je zastario. Umjesto njega upotrijebite blok Paragraf."],"Subheading (deprecated)":["Podnaslov (zastarjelo)"],"blockquote":["citat"],"Change the block type after adding a new paragraph.":["Promijenite vrstu bloka nakon dodavanja novog paragrafa."],"Spotlight mode":["Istakni aktivni blok"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Oznake pomažu korisnicima i tražilicama s korištenjem vaše web-stranice i pronalaskom sadržaja. Dodajte nekoliko ključnih riječi kako bi opisali objavu."],"Add tags":["Dodaj oznake"],"Apply the \"%1$s\" format.":["Primjeni \"%1$s\" format."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Vaš tema koristi formate objava kako bi istaknula različite vrste sadržaja, kao što su slike ili video. Primijenite formate objave kako bi vidjeli posebni stil."],"Use a post format":["Upotrijebit format objave"],"Insert After":["Ubaci nakon"],"Insert Before":["Ubaci prije"],"Move %1$d block from position %2$d down by one place":["Pomakni %1$d blok iz pozicije %2$d dolje za jedno mjesto.","Pomakni %1$d bloka iz pozicije %2$d dolje za jedno mjesto.","Pomakni %1$d blokova iz pozicije %2$d dolje za jedno mjesto."],"Move %1$d block from position %2$d up by one place":["Pomakni %1$d blok iz pozicije %2$d gore za jedno mjesto.","Pomakni %1$d bloka iz pozicije %2$d gore za jedno mjesto.","Pomakni %1$d blokova iz pozicije %2$d gore za jedno mjesto."],"Move %1$s block from position %2$d right to position %3$d":["Pomakni %1$s blok iz pozicije %2$d desno na poziciju %3$d"],"movie":["film"],"Insert a new block before the selected block(s).":["Ubaci novi blok ispred odabranog bloka/blokova."],"Remove the selected block(s).":["Ukloni odabrani blok/blokove."],"Duplicate the selected block(s).":["Dupliciraj odabrani blok/blokove."],"Block shortcuts":["Blok prečaci"],"Clear selection.":["Obriši selekciju."],"Select all text when typing. Press again to select all blocks.":["Odaberite cijeli tekst tijekom tipkanja. Kliknite ponovno za odabir svih blokova."],"Selection shortcuts":["Prečaci odabira"],"Switch between Visual editor and Code editor.":["Prebaci između Vizualnog uređivača i Uređivača koda."],"Navigate to the previous part of the editor.":["Kreni na prethodni dio uređivača."],"Navigate to the next part of the editor.":["Kreni na sljedeći dio uređivača."],"Show or hide the settings sidebar.":["Sakrij ili prikaži postavke bočne trake."],"Redo your last undo.":["Vrati zadnje poništavanje."],"Undo your last changes.":["Poništi zadnje promjene."],"Save your changes.":["Spremi promjene."],"Global shortcuts":["Globalne prečice"],"Remove a link.":["Ukloni poveznicu."],"Convert the selected text into a link.":["Pretvori odabrani tekst u poveznicu."],"Underline the selected text.":["Podcrtaj odabrani tekst."],"Make the selected text italic.":["Modificiraj odabrani tekst kao kurziv."],"Make the selected text bold.":["Modificiraj odabrani tekst kao podebljan."],"Text formatting":["Formatiranje teksta"],"Insert a new block after the selected block(s).":["Ubaci novi blok nakon odabranog bloka/blokova."],"Keyboard shortcuts":["Tipke prečaca"],"Thanks for testing Gutenberg!":["Hvala što testirate Gutenberg!"],"Help build Gutenberg":["Pomozite izgraditi Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Ako želite naučiti više kako izgraditi dodatne blokove, ili ste zainteresirani pomoći s projektom, pođite na GitHub repozitorij."],"The WordPress community":["WordPress zajednica"],"Code is Poetry":["Kod je poezija"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Možete izgraditi bilo kakav blok, statični ili dinamični, dekorativni ili obični. Ovo je blok citata:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Svaki blok se može podesiti poravnanjima. Blok ugradbenog koda također ih ima, i prilagodljiv je:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Iznad se nalazi galerija s dvije slike. To je jednostavniji način kako kreirati vizualno privlačne prijelome, bez da se morate brinuti o CSS float. Također jednostavno možete pretvoriti galeriju nazad u individualne slike, koristeći prebacivač bloka."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Da, ponekad slika pune širine može biti velika. Ali ponekad slika je vrijedna toga."],"Accessibility is important — don’t forget image alt attribute":["Pristupačnost je važna — ne zaboravite alt atribute slike"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Ako kombinirate nove poravnanja široko i pune širine s galerijama, možete kreirati prijelom vrlo bogat medijskim zapisima, vrlo brzo:"],"Media Rich":["Bogato medijima"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Možete promijeniti broj stupaca u vašim galerijama povlačeći klizač u inspektoru bloka u bočnoj traci."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokovi mogu biti sve što trebate. Na primjer, možda želite dodati mali citat kao dio kompozicije vašeg teksta, ili možda ga želite prikazati kao veliki. Sve ove opcije su dostupne."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informacije o izvoru citata nalazi se u posebnom tekstualnom polju, slično opisima ispod slika, tako da je struktura citata zaštićena čak i ako odaberete, modificirate ili uklonite izvor. Uvijek je lako vratiti to nazad."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Uređivač je namijenjen da postigne ugodno iskustvo kreiranja novih stranica i objava, i sadrži “blokove” koji će olakšati posao za koji su trebali kratki kodovi, korisnički HTML ili “zagonetne” ugradbene kodove. "],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Velika prednost blokova je da ih možete urediti na licu mjesta i manipulirati sadržajem direktno. Umjesto da morate imate polja za uređivanje stvari poput izvora citata, ili teksta dugmeta, možete direktno promijeniti sadržaj. Pokušajte urediti sljedeći citat:"],"Visual Editing":["Vizualno uređivanje"],"And Lists like this one of course :)":["I Lista popute ove :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blok prijeloma, poput Dugme, Naslovna slika, Razdjelnici, itd."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Ugradbeni kodovi poput YouTube, Tweetovi, ili druge WordPress objave."],"Galleries":["Galerije"],"Images & Videos":["Slike i video"],"Text & Headings":["Tekst i naslovi"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Isprobajte i možda otkrijete stvari koje WordPress već sad može dodati u vaše objave a za koje niste znali. Ovo je kratki popis što trenutno možete pronaći:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Zamislite da je sve što WordPress može učiniti jednostavno dostupno i na istom mjestu u sučelju. Ne trebate znati HTML oznake, klase ili pamtiti komplicirane kratke kodove. To je ideja koja stoji iza dugmeta umetanja sadržaja — (+)
dugme koje ćete vidjeti u uređivaču—koje vam omogućuje pregledavanje svih dostupnih blokova sadržaja i dodavanje u objave. Dodaci i teme mogu registrirati svoje blokove, što otvara svakakve mogućnosti za bogato uređivanje i izdavaštvo."],"The Inserter Tool":["Alat umetanja sadržaja"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Pokušajte odabrati i ukloniti opis slike, sada više ne morate biti brinuti o slučajnom odabiru slike ili teksta i da upropastite prezentaciju."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Ako vaša tema podržava, vidjeti ćete \"dugačko\" dugme u alatnoj traci slike. Isprobajte."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Rukovanje slikama i medijskim zapisima s najvećom brigom, primarni je fokus novog uređivača. Nadamo se da će vam novi način dodavanja opisa slike ili prikaza slike pune širine biti puno jednostavniji i robusniji nego prije."],"A Picture is Worth a Thousand Words":["Slika govori više nego tisuću riječi"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Naslovi su također odovojeni blok, što pomaže s strukturom i organizacijom vašeg sadržaja."],"... like this one, which is right aligned.":["... poput ove, koje je poravnata desno."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Ovo što čitate je tekstualni blok najosnovniji blok od svih. Tekstualni blok ima svoje kontrole za slobodno pomicanje po objavi…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Cilj ovog novog uređivača je učiniti dodavanje bogatog sadržaja u WordPress jednostavnim i ugodnim. Ova cijela objava je sastavljena od dijelova sadržaja—slično LEGO kockama—koje možete pomicati okolo i podešavati. Pomaknite kursor miša i vidjeti ćete kako različiti blokovi osvijetle s obrubom i strelicama. Kliknite na strelice kako bi brzo premjestili blokove, bez bojazni da ćete izgubiti stvari u procesu."],"Of Mountains & Printing Presses":["O planinama i tiskarskim strojevima"],"Welcome to the Gutenberg Editor":["Dobro došli u Gutenberg uređivač"],"block name\u0004More":["Više"],"button to expand options\u0004More":["Više"],"Are you sure you want to unschedule this post?":["Sigurno želite ukloniti zakazno vrijeme objave?"],"Alt Text (Alternative Text)":["Alt tekst (Alternativni tekst)"],"Reusable Block":["Višekratno upotrebljivi blok"],"Unique identifier for the object.":["Unikatni identifikator objekta."],"Untitled Reusable Block":["Višekratno upotrebljivi blok bez naslova"],"Small":["Malo"],"Reusable":["Višekratno upotrebljivi"],"Remove from Reusable blocks":["Ukloni iz višekratno upotrebljivih blokova"],"Add to Reusable blocks":["Dodaj u višekratno upotrebljive blokove"],"Keep as HTML":["Zadrži kao HTML"],"Edit URL":["Uredi URL"],"Color settings":["Postavke boje"],"The response is not a valid JSON response.":["Odgovor nije ispravni JSON odgovor."],"Editor publish":["Objava uređivača"],"Muted":["Isključen zvuk"],"Video settings":["Video postavke"],"recent comments":["nedavni komentari"],"Latest Comments":["Najnoviji komentari"],"Display Excerpt":["Prikaži sažetak"],"Display Date":["Prikaži datum"],"Display Avatar":["Prikaži avatar"],"Latest comments settings":["Postavke najnovijih komentara"],"Number of Comments":["Broj komentara"],"Background Opacity":["Neprozirnost pozadine"],"Auto":["Auto"],"Preload":["Predučitavanje"],"Audio settings":["Audio postavke"],"Display a monthly archive of your posts.":["Prikažite mjesečni arhiv vaših objava."],"Display as Dropdown":["Prikaži kao padajući popis"],"Show Post Counts":["Prikaži broj objava"],"Archives settings":["Postavke arhiva"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Podrška"],"No comments to show.":["Nema komentara za prikaz."],"%1$s on %2$s":["%1$s o %2$s"],"Select Post":["Odaberite objavu"],"Select Week":["Odaberite tjedan"],"Select Day":["Odaberite dan"],"Select Month":["Odaberi mjesec"],"Select Year":["Odaberite godinu"],"Archives":["Arhiva"],"Very dark gray":["Vrlo tamno siva"],"Cyan bluish gray":["Cijan plavkasto siva"],"Very light gray":["Jako svjetlo siva"],"Vivid cyan blue":["Jasno cijan plava"],"Pale cyan blue":["Blijeda cijan plava"],"Vivid green cyan":["Jasno zeleno cijan"],"Light green cyan":["Svijetlo zeleno cijan"],"Luminous vivid amber":["Luminozno jasna žuta"],"Luminous vivid orange":["Luminozno jasna narančasta"],"Vivid red":["Jasno crvena"],"Pale pink":["Blijedo roza"],"Inline image":["Umetnuta slika"],"Available block types":["Dostupne vrste blokova"],"Transform To:":["Transformiraj u:"],"Remove Block":["Ukloni blok"],"Open publish panel":["Otvori panel objave"],"Dots":["Točke"],"Wide Line":["Široka linija"],"Large":["Velika"],"Show download button":["Prikaži dugme Preuzimanje"],"Download button settings":["Postavke dugmeta Preuzimanje"],"Link To":["Poveznica za"],"Text link settings":["Postavke teksta poveznice"],"download":["preuzimanje"],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopiraj URL"],"Write file name…":["Upišite ime datoteke…"],"File":["Datoteka"],"A single column within a columns block.":["Jedan stupac unutar bloka stupci."],"Column":["Stupac"],"Outline":["Struktura"],"Loop":["Petlja"],"Autoplay":["Autoplay"],"Playback Controls":["Kontrole reprodukcije"],"Close dialog":["Zatvori dialog"],"Sorry, this file type is not permitted for security reasons.":["Nažalost, ova vrsta datoteka nije dozvoljena iz sigurnosnih razloga."],"Disable tips":["Isključi savjete"],"Got it":["Shvaćam"],"See next tip":["Prikaži sljedeći savjet"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Kada ste spremni, predajte svoje djelo na recenziju i Urednik će moći to odobriti za vas."],"Are you ready to submit for review?":["Jeste li spremni predati za recenziju?"],"Replace image":["Zamijeni sliku"],"Remove image":["Ukloni sliku"],"Error while uploading file %s to the media library.":["Greška pri prijenosu datoteke %s u medijsku zbirku."],"This file exceeds the maximum upload size for this site.":["Ova datoteka je premašila maksimalno dozvoljenu veličinu za prijenos za ovu web stranicu."],"View the autosave":["Pregledaj automatsku snimku."],"There is an autosave of this post that is more recent than the version below.":["Postoji automatska snimka ove objave koja je ažurnija od inačice ispod."],"Autosaving":["Automatsko spremanje"],"Enter URL here…":["Ovdje unesite URL..."],"Pin to toolbar":["Pribodi u alatnu traku"],"Unpin from toolbar":["Makni iz alatne trake"],"Insert a table — perfect for sharing charts and data.":["Ubacite tablicu -- savršeno za dijeljenje dijagrama i podataka."],"Fixed width table cells":["Fiksna širina ćelija tablice"],"Table settings":["Postavke tablice"],"Add text that respects your spacing and tabs, and also allows styling.":["Dodajte tekst koji poštuje razmak i tabove, i dozvoljava stiliziranje."],"Display a list of your most recent posts.":["Prikažite listu najnovijih objava."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Dodajte blok koji prikazuje sadržaj sa drugih web-stranica, poput Twittera, Instagrama ili YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Dodajte blok koji prikazuje sadržaj organiziran u stupce, a zatim dodajte blokove s željenim sadržajem."],"Error loading block: %s":["Greška pri učitavanju bloka: %s"],"Unknown error":["Nepoznata greška."],"Embed Handler":["Upravljački sklop ugradbenog koda"],"term\u0004Remove %s":["Ukloni %s"],"Copy the permalink":["Kopiraj stalnu vezu"],"Permalink copied":["Stalna veza je kopirana"],"Height in pixels":["Visina u pikselima"],"Spacer settings":["Postavke razmaka"],"Spacer":["Razmak"],"Toggle to show a large initial letter.":["Prebacite kako bi prikazali veće početno slovo."],"Showing large initial letter.":["Prikazuje se veće početno slovo."],"Name:":["Ime:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Ukloni stavku"],"Color code: %s":["Kod boje: %s"],"Skip to the selected block":["Preskoči do odabranog bloka."],"Publish…":["Objavi..."],"Schedule…":["Tempiranje..."],"Edit post permalink":["Uredi stalnu vezu objave"],"Show Block Settings":["Prikaži postavke bloka"],"Hide Block Settings":["Sakrij postavke bloka"],"Block settings closed":["Postavke bloka su zatvorene"],"Close plugin":["Zatvori dodatak"],"Editor settings":["Postavke uređivača"],"Link settings":["Postavke poveznice"],"Unlink":["Ukloni poveznicu"],"Page break":["Prijelom stranice"],"pagination":["numeriranje stranica"],"next page":["slijedeća stranica"],"Image Size":["Veličina slike"],"Height":["Visina"],"Width":["Širina"],"Image Dimensions":["Dimenzije slike"],"Thumbnails are not cropped.":["Sličice nisu izrezane."],"Thumbnails are cropped to align.":["Sličice su izrezane kako bi se poravnale."],"Media Library":["Zbirka medija"],"Advanced":["Napredno"],"Add item":["Dodaj stavku."],"Reset the template":["Ponovno postavi predložak."],"Keep it as is":["Zadrži kako je trenutno."],"The content of your post doesn’t match the template assigned to your post type.":["Sadržaj vaše objave ne podudara se s predloškom koji je dodijeljen vrsti objave."],"Resetting the template may result in loss of content, do you want to continue?":["Ponovno postavljanje predloška može rezultirati s gubitkom sadržaja, želite li nastaviti?"],"Document Statistics":["Statistika dokumenta"],"is now scheduled. It will go live on":["sad je tempirana. Postat će javna u"],"Scheduled":["Tempirano"],"Scheduling…":["Tempiranje..."],"Code editor selected":["Odabrani uređivač koda"],"Visual editor selected":["Odabrani vizualni uređivač"],"Plugins":["Dodaci"],"Custom Size":["Prilagođena veličina"],"Layout elements":["Elementi konstrukcije"],"term\u0004%s removed":["%s uklonjeno"],"term\u0004%s added":["%s dodano"],"imperative verb\u0004Preview":["Pretpregled"],"Block deleted.":["Blok obrisan."],"Block updated.":["Blok ažuriran."],"Block created.":["Blok kreiran."],"Trashing failed":["Premještanje u smeće nije uspjelo."],"Updating failed.":["Ažuriranje nije uspjelo."],"Scheduling failed.":["Tempiranje nije uspjelo."],"Publishing failed.":["Objavljivanje nije uspjelo."],"View post":["Pregledaj objavu"],"You have unsaved changes. If you proceed, they will be lost.":["Imate nespremljene promjene. Ako nastavite, bit će izgubljene."],"Document Outline":["Konture dokumenta"],"Paragraphs":["Paragrafi"],"Headings":["Naslovi"],"Words":["Riječi"],"Content structure":["Struktura sadržaja"],"Public":["Javno"],"Protected with a password you choose. Only those with the password can view this post.":["Zaštićeno s odabranom lozinkom. Samo oni koji znaju lozinku mogu vidjeti ovu objavu."],"Password Protected":["Zaštićeno lozinkom"],"Only visible to site admins and editors.":["Vidljivo samo administratorima i urednicima."],"Private":["Privatno"],"Visible to everyone.":["Vidljivo svima."],"Post Visibility":["Vidljivost objave"],"Would you like to privately publish this post now?":["Želite li sada privatno objaviti ovu objavu?"],"Use a secure password":["Upotrijebite sigurnu lozinku"],"Create password":["Kreiraj lozinku"],"Move to Trash":["Premjesti u smeće"],"Parent Term":["Matični pojam"],"Parent Category":["Matična kategorija"],"Add new term":["Dodaj novi pojam"],"Add new category":["Dodaj novu kategoriju"],"Term":["Pojam"],"Tag":["Oznaka"],"Add new Term":["Dodaj novi pojam"],"Add new tag":["Dodaj novu oznaku"],"Switch to draft":["Promijeni u skicu"],"Are you sure you want to unpublish this post?":["Sigurno želite postaviti ovu objavu kao neobjavljenu?"],"Immediately":["Odmah"],"Save Draft":["Spremi skicu"],"Saving":["Spremanje"],"Publish:":["Objavi:"],"Visibility:":["Vidljivost:"],"Are you ready to publish?":["Jeste li spremni objaviti?"],"Copy Link":["Kopiraj poveznicu"],"What’s next?":["Što je slijedeće?"],"is now live.":["sada je objavljeno."],"Published":["Objavljeno"],"Schedule":["Tempiraj"],"Update":["Ažuriraj"],"Submit for Review":["Podnesi na recenziju"],"Updating…":["Ažuriranje..."],"Publishing…":["Objavljivanje..."],"Allow pingbacks & trackbacks":["Dopusti povratne pingove i povratne veze"],"Permalink:":["Stalna veza:"],"Pending review":["Čeka recenziju"],"%d Revision":["%d revizija","%d revizije","%d revizija"],"Suggestion:":["Prijedlozi:"],"Post Format":["Vrsta objave"],"Chat":["Čavrljanje"],"Status":["Status"],"Standard":["Standardno"],"Aside":["Crtica"],"Featured image":["Istaknuta slika"],"Set featured image":["Postavi istaknutu sliku"],"Learn more about manual excerpts":["Saznajte više o ručnim sažecima"],"Write an excerpt (optional)":["Napišite sažetak (opcionalno)"],"Allow comments":["Dopusti komentare"],"Template:":["Predložak:"],"no parent":["bez matičnog"],"no title":["nema naslova"],"Order":["Redoslijed"],"No blocks found.":["Blokovi nisu pronađeni."],"%d result found.":["%d pronađen rezultat.","%d pronađena rezultata.","%d pronađenih rezultata."],"Saved":["Spremljeno"],"Embeds":["Ugradnje"],"Blocks":["Blokovi"],"Search for a block":["Pretraga za blokom"],"Add block":["Dodaj blok"],"Copy Error":["Greška kopiranja"],"Copy Post Text":["Kopiraj tekst objave"],"Attempt Recovery":["Pokušaj oporavka"],"The editor has encountered an unexpected error.":["Uređivač se suočio s neočekivanom greškom."],"Undo":["Poništi"],"Redo":["Vrati poništenu radnju"],"(Multiple H1 headings are not recommended)":["(Nije preporučeno imati više H1 naslova)"],"(Your theme may already use a H1 for the post title)":["(Moguće je da vaša tema već koristi H1 za naslov objave)"],"(Incorrect heading level)":["(Neispravni nivo naslova)"],"(Empty heading)":["(Prazan naslov)"],"Block Styles":["Stilovi blokova"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Sigurno želite obrisati ovaj Višekratno upotrebljivi blok?\n\nBiti će trajno uklonjen iz svih objava i stranica koje ga koriste."],"Convert to Regular Block":["Pretvori u Regularni blok"],"More options":["Više opcija"],"Edit visually":["Uredi vizualno"],"Duplicate":["Dupliciraj"],"Blocks cannot be moved down as they are already at the bottom":["Blokovi se ne mogu pomaknuti dolje jer se već nalaze na dnu"],"Blocks cannot be moved up as they are already at the top":["Blokovi se ne mogu pomaknuti gore jer se već nalaze na vrhu"],"Block %1$s is at the beginning of the content and can’t be moved right":["Blok %1$s je na početku sadržaja i ne može se pomaknuti desno"],"Block %1$s is at the end of the content and can’t be moved right":["Blok %1$s je na kraju sadržaja i ne može se pomaknuti desno"],"Block %s is the only block, and cannot be moved":["Blok %s je jedini blok, i ne može se pomaknuti"],"Edit as HTML":["Uredi kao HTML"],"Convert to Blocks":["Pretvori u Blokove"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Ovaj blok je suočen s greškom i ne može se pretpregledati."],"No block selected.":["Nijedan blok nije odabran."],"Transform into:":["Pretvori u:"],"Remove":["Ukloni"],"Find original":["Pronađi original"],"Copy all content":["Kopiraj sav sadržaj"],"Copied!":["Kopirano!"],"Additional settings are now available in the Editor block settings sidebar":["Sad su dostupne dodatne postavke u bočnoj traci postavki uređivača bloka."],"Visibility":["Vidljivost"],"Status & visibility":["Status i vidljivost"],"Page attributes":["Atributi stranice"],"Block":["Blok"],"Document":["Dokument"],"Close settings":["Zatvori postavke"],"Editor content":["Uređivač sadržaja"],"Tools":["Alati"],"Editor":["Uređivač"],"Code editor":["Uređivač koda"],"Visual editor":["Vizualni uređivač"],"Editor top bar":["Alatna traka uređivača"],"Settings":["Postavke"],"Reset":["Ponovno postavi"],"Dismiss this notice":["Zatvori ovu obavijest "],"Item removed.":["Stavka je uklonjena."],"Item added.":["Stavka dodana."],"Drop files to upload":["Ispustite zapise za prijenos"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Pojavila se nepoznata greška"],"No results.":["Nema rezultata."],"%d result found, use up and down arrow keys to navigate.":["%d rezultat pronađen, za navigaciju upotrijebite tipke sa strelicama za pomicanje prema gore i dolje.","%d rezultata pronađeno, za navigaciju upotrijebite tipke ss strelicama za pomicanje prema gore i dolje.","%d rezultata pronađeno, za navigaciju upotrijebite tipke ss strelicama za pomicanje prema gore i dolje."],"(no title)":["(bez naslova)"],"URL":["URL"],"Submit":["Pošalji"],"Close":["Zatvori"],"Insert link":["Unesi poveznicu"],"Edit link":["Uredi poveznicu"],"Link":["Poveznica"],"Strikethrough":["Precrtano"],"Italic":["Kurziv"],"Bold":["Podebljano"],"Remove link":["Ukloni poveznicu"],"Number of items":["Broj stavki"],"All":["Svi"],"Category":["Kategorija"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Od starijeg prema novijem"],"Newest to Oldest":["Od novijeg prema starijem"],"Order by":["Rasporedi po"],"Select":["Odaberi"],"Select or Upload Media":["Odaberite ili prenesite medijski zapis"],"Video":["Video"],"Write…":["Pišite..."],"poetry":["poeziju"],"Verse":["Stih"],"New Column":["Novi stupac"],"Delete Column":["Obriši stupac"],"Add Column After":["Dodaj stupac nakon"],"Add Column Before":["Dodaj stupac prije"],"Delete Row":["Obriši red"],"Add Row After":["Dodaj red nakon"],"Add Row Before":["Dodaj red prije"],"Edit table":["Uredi tablicu"],"Table":["Tablica"],"Write subheading…":["Napišite podnaslov..."],"Write shortcode here…":["Ovdje napišite kratki kod..."],"Shortcode":["Kratki kod"],"divider":["razdjelnik"],"horizontal-line":["horizontalna-linija"],"Separator":["Separator"],"Quote":["Citat"],"Write citation…":["Napišite citiranje..."],"Write quote…":["Napišite citat..."],"Pullquote":["Uvučeni citat"],"Write preformatted text…":["Napišite pred-formatirani tekst..."],"Preformatted":["Predoblikovano"],"text":["tekst"],"Paragraph":["Odlomak"],"Font Size":["Veličina slova"],"Drop Cap":["Veliko početno slovo"],"Text settings":["Postavke teksta"],"Read more":["Više informacija"],"Write list…":["Napišite listu..."],"numbered list":["brojčanu listu"],"ordered list":["Brojčani popis"],"bullet list":["lista s oznakama"],"Indent list item":["Uvuci stavku liste"],"Outdent list item":["Izvuci stavku liste"],"Convert to ordered list":["Pretvori u poredanu listu"],"Convert to unordered list":["Pretvori u neporedanu listu"],"List":["Popis"],"recent posts":["nedavne objave"],"No posts found.":["Nije pronađena nijedna objava."],"Latest Posts":["Najnovije objave"],"Display post date":["Prikaži datum objave"],"Grid view":["Prikaz u rešetki"],"List view":["Prikaz u listi"],"photo":["slika"],"Image settings":["Postavke slike"],"Image":["Slika"],"Preview":["Pretpregled"],"embed":["ugradnja"],"Custom HTML":["Prilagođeni HTML"],"subtitle":["podnaslov"],"title":["naslov"],"Heading":["Naslov"],"Write heading…":["Napišite naslov..."],"Heading %d":["Naslov %d"],"Level":["Nivo"],"Heading settings":["Postavke naslova"],"photos":["slike"],"images":["Slike"],"None":["Nijedno"],"Media File":["Medijski zapis"],"Attachment Page":["Stranica privitka"],"Link to ":["Poveznica do"],"Crop Images":["Izreži sliku"],"Gallery settings":["Postavke galerije"],"Gallery":["Galerija"],"Classic":["Klasični"],"video":["video"],"audio":["audio"],"music":["glazba"],"image":["slika"],"blog":["blog"],"post":["objava"],"Embedded content from %s":["Ugradi sadržaj sa %s"],"Enter URL to embed here…":["Ovdje unesite URL za ugradnju..."],"%s URL":["%s URL"],"Embedding…":["Ugrađivanje..."],"Write title…":["Napišite naslov"],"Fixed Background":["Statična pozadina"],"Edit image":["Uredi sliku"],"Columns":["Stupci"],"Experiments":[],"Code":["Kod"],"Write code…":["Napišite kod..."],"Categories":["Kategorije"],"Show Hierarchy":["Prikaži hijerarhiju"],"Show post counts":["Prikaži broj objava"],"Categories settings":["Postavke kategorija"],"Add text…":["Dodaj tekst..."],"Button":["Dugme"],"Apply":["Primijeni"],"Text Color":["Boja teksta"],"Background Color":["Pozadinska boja"],"Block has been deleted or is unavailable.":["Blok je obrisan ili nedostupan."],"Reusable blocks":["Višekratno upotrebljivi blokovi"],"Cancel":["Odustani"],"Edit":["Uredi"],"Write caption…":["Napišite opis..."],"Use URL":["Upotrijebi URL"],"Audio":["Audio"],"Upload":["Prijenos"],"Additional CSS Class(es)":["Dodatne CSS klase"],"HTML Anchor":["HTML sidro"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Moguće je da će ova kombinacija boja biti teška za čitanje. Pokušajte koristiti svjetliju pozadinsku boju i/ili tamniju boju teksta."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Moguće je da će ova kombinacija boja biti teška za čitanje. Pokušajte koristiti tamniju pozadinsku boju i/ili svjetliju boju teksta."],"Clear":["Obriši"],"Custom color picker":["Korisnički birač boje"],"Color: %s":["Boja: %s"],"Full width":["Pune širine"],"Wide width":["Povećane širine"],"Widgets":["Widgeti"],"Formatting":["Formatiranje"],"Common blocks":["Uobičajeni blokovi"],"Align right":["Poravnaj desno"],"Align center":["Centriraj"],"Align left":["Poravnaj lijevo"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Tiska od 1440. Ovo je razvojni dodatak za novi blok uređivač u jezgri."],"Add title":["Dodajte naslov"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg razvojni režim rada zahtijeva da se datoteke izgrade. Pokrenite npm install
kako bi instalirali ovisnosti, npm run build
kako bi izgradili datoteke ili npm run dev
kako bi izgradili datoteke i nadzirali promjene. Pročitajte contributing datoteku za više informacija."],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Rasprava"],"Custom fields":["Dodatni podaci"],"Excerpt":["Sažetak"],"Publish":["Objavi"],"Metadata":["Metapodaci"],"Save":["Spremi"],"Documentation":["Dokumentacija"],"Select Category":["Odaberi kategoriju"],"(Untitled)":["(Bez naslova)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg zahtjeva WordPress %s ili noviji kako bi ispravno funkcionirao. Nadogradite WordPress prije aktiviranja Gutenberga."],"Gutenberg Team":["Gutenberg Tim"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["prije %s"],"Block style name must be a string.":["Ime stila bloka mora biti niz znakova (string)."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_hu.json b/bundle/android/raw/i18ncache_data_hu.json
new file mode 100644
index 0000000000..f41168b2dd
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_hu.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],"Backtick":[],"Period":[],"Comma":[],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":[],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":["Névtelen újrafelhasználható blokk"],"Small":[],"Reusable":["Újra felhasználható"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":[],"Edit URL":["URL szerkesztése"],"Color settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],"Muted":[],"Video settings":[],"recent comments":["legutóbbi hozzászólás"],"Latest Comments":["Legutóbbi hozzászólások"],"Display Excerpt":["Kivonat megjelenítése"],"Display Date":["Dátum megjelenítése"],"Display Avatar":["Avatar megjelenítése"],"Latest comments settings":[],"Number of Comments":["Hozzászólások száma"],"Background Opacity":["Háttér átlátszóság"],"Auto":["Automatikus"],"Preload":[],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":[],"Support":[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],"Archives":[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],"Dots":[],"Wide Line":[],"Large":[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["dokument"],"Copy URL":["URL másolása"],"Write file name…":[],"File":[],"A single column within a columns block.":[],"Column":[],"Outline":[],"Loop":[],"Autoplay":[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":[],"Enter URL here…":[],"Pin to toolbar":["Rögzítés az eszköztárra"],"Unpin from toolbar":["Eltávolítás az eszköztárról"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":["Fix szélességű táblázatcellák"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":["A legutóbbi bejegyzések listájának mutatása."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":["Blokkbetöltési hiba: %s"],"Unknown error":["Ismeretlen hiba"],"Embed Handler":[],"term\u0004Remove %s":["%s eltávolítása"],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish…":[],"Schedule…":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Editor settings":[],"Link settings":[],"Unlink":[],"Page break":[],"pagination":[],"next page":[],"Image Size":[],"Height":[],"Width":[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],"Advanced":[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],"Scheduled":[],"Scheduling…":[],"Code editor selected":[],"Visual editor selected":[],"Plugins":[],"Custom Size":[],"Layout elements":[],"term\u0004%s removed":[],"term\u0004%s added":[],"imperative verb\u0004Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],"Paragraphs":[],"Headings":[],"Words":[],"Content structure":[],"Public":[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],"Private":[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],"Term":[],"Tag":[],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":[],"Immediately":[],"Save Draft":[],"Saving":[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What’s next?":[],"is now live.":[],"Published":[],"Schedule":[],"Update":[],"Submit for Review":[],"Updating…":[],"Publishing…":[],"Allow pingbacks & trackbacks":[],"Permalink:":[],"Pending review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],"Chat":[],"Status":[],"Standard":[],"Aside":[],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow comments":[],"Template:":[],"no parent":[],"no title":[],"Order":[],"No blocks found.":[],"%d result found.":[],"Saved":[],"Embeds":[],"Blocks":[],"Search for a block":[],"Add block":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],"Undo":[],"Redo":[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],"Remove":[],"Find original":[],"Copy all content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":[],"Status & visibility":[],"Page attributes":[],"Block":[],"Document":[],"Close settings":[],"Editor content":[],"Tools":[],"Editor":[],"Code editor":[],"Visual editor":[],"Editor top bar":[],"Settings":[],"Reset":[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],"PM":[],"AM":[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],"URL":[],"Submit":[],"Close":[],"Insert link":[],"Edit link":[],"Link":[],"Strikethrough":[],"Italic":[],"Bold":[],"Remove link":[],"Number of items":[],"All":[],"Category":[],"Z → A":[],"A → Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],"Select":[],"Select or Upload Media":[],"Video":[],"Write…":[],"poetry":[],"Verse":[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],"Table":[],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":[],"horizontal-line":[],"Separator":[],"Quote":[],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":[],"Preformatted":[],"text":[],"Paragraph":[],"Font Size":[],"Drop Cap":[],"Text settings":[],"Read more":[],"Write list…":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],"List":[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],"photo":[],"Image settings":[],"Image":[],"Preview":[],"embed":[],"Custom HTML":[],"subtitle":[],"title":[],"Heading":[],"Write heading…":[],"Heading %d":[],"Level":[],"Heading settings":[],"photos":[],"images":[],"None":[],"Media File":[],"Attachment Page":[],"Link to ":[],"Crop Images":[],"Gallery settings":[],"Gallery":[],"Classic":[],"video":[],"audio":[],"music":[],"image":[],"blog":[],"post":[],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":[],"Embedding…":[],"Write title…":[],"Fixed Background":[],"Edit image":[],"Columns":[],"Experiments":[],"Code":[],"Write code…":[],"Categories":[],"Show Hierarchy":[],"Show post counts":[],"Categories settings":[],"Add text…":[],"Button":[],"Apply":[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable blocks":[],"Cancel":[],"Edit":[],"Write caption…":[],"Use URL":[],"Audio":[],"Upload":[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":[],"Custom color picker":[],"Color: %s":[],"Full width":[],"Wide width":[],"Widgets":[],"Formatting":[],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Cím hozzáadása"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Szerző"],"Slug":["Slug"],"Discussion":["Beszélgetés"],"Custom fields":[],"Excerpt":["Kivonat"],"Publish":["Közzététel"],"Metadata":["Meta adat"],"Save":["Mentés"],"Documentation":["Dokumentáció"],"Select Category":["Kategória választása"],"(Untitled)":["(Névtelen)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg csapat."],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demó"],"%s ago":["%s óta"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_id.json b/bundle/android/raw/i18ncache_data_id.json
new file mode 100644
index 0000000000..a21f791714
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_id.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],"Backtick":[],"Period":[],"Comma":[],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":[],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],"Small":[],"Reusable":[],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":[],"Edit URL":[],"Color settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],"Muted":[],"Video settings":[],"recent comments":[],"Latest Comments":[],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest comments settings":[],"Number of Comments":[],"Background Opacity":[],"Auto":[],"Preload":[],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":[],"Support":[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],"Archives":[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],"Dots":[],"Wide Line":[],"Large":[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],"download":[],"pdf":[],"document":[],"Copy URL":[],"Write file name…":[],"File":[],"A single column within a columns block.":[],"Column":[],"Outline":[],"Loop":[],"Autoplay":[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":[],"Enter URL here…":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish…":[],"Schedule…":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Editor settings":[],"Link settings":[],"Unlink":[],"Page break":[],"pagination":[],"next page":[],"Image Size":[],"Height":[],"Width":[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],"Advanced":[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],"Scheduled":[],"Scheduling…":[],"Code editor selected":[],"Visual editor selected":[],"Plugins":[],"Custom Size":[],"Layout elements":[],"term\u0004%s removed":[],"term\u0004%s added":[],"imperative verb\u0004Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],"Paragraphs":[],"Headings":[],"Words":[],"Content structure":[],"Public":[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],"Private":[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],"Term":[],"Tag":[],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":[],"Immediately":[],"Save Draft":[],"Saving":[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What’s next?":[],"is now live.":[],"Published":[],"Schedule":[],"Update":[],"Submit for Review":[],"Updating…":[],"Publishing…":[],"Allow pingbacks & trackbacks":[],"Permalink:":[],"Pending review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],"Chat":[],"Status":[],"Standard":[],"Aside":[],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow comments":[],"Template:":[],"no parent":[],"no title":[],"Order":[],"No blocks found.":[],"%d result found.":[],"Saved":[],"Embeds":[],"Blocks":[],"Search for a block":[],"Add block":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],"Undo":[],"Redo":[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],"Remove":[],"Find original":[],"Copy all content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":[],"Status & visibility":[],"Page attributes":[],"Block":[],"Document":[],"Close settings":[],"Editor content":[],"Tools":[],"Editor":[],"Code editor":[],"Visual editor":[],"Editor top bar":[],"Settings":[],"Reset":[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],"PM":[],"AM":[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],"URL":[],"Submit":[],"Close":[],"Insert link":[],"Edit link":[],"Link":[],"Strikethrough":[],"Italic":[],"Bold":[],"Remove link":[],"Number of items":[],"All":[],"Category":[],"Z → A":[],"A → Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],"Select":[],"Select or Upload Media":[],"Video":[],"Write…":[],"poetry":[],"Verse":[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],"Table":[],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":[],"horizontal-line":[],"Separator":[],"Quote":[],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":[],"Preformatted":[],"text":[],"Paragraph":[],"Font Size":[],"Drop Cap":[],"Text settings":[],"Read more":[],"Write list…":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],"List":[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],"photo":[],"Image settings":[],"Image":[],"Preview":[],"embed":[],"Custom HTML":[],"subtitle":[],"title":[],"Heading":[],"Write heading…":[],"Heading %d":[],"Level":[],"Heading settings":[],"photos":[],"images":[],"None":[],"Media File":[],"Attachment Page":[],"Link to ":[],"Crop Images":[],"Gallery settings":[],"Gallery":[],"Classic":[],"video":[],"audio":[],"music":[],"image":[],"blog":[],"post":[],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":[],"Embedding…":[],"Write title…":[],"Fixed Background":[],"Edit image":[],"Columns":[],"Experiments":[],"Code":[],"Write code…":[],"Categories":[],"Show Hierarchy":[],"Show post counts":[],"Categories settings":[],"Add text…":[],"Button":[],"Apply":[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable blocks":[],"Cancel":[],"Edit":[],"Write caption…":[],"Use URL":[],"Audio":[],"Upload":[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":[],"Custom color picker":[],"Color: %s":[],"Full width":[],"Wide width":[],"Widgets":[],"Formatting":[],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":[],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":[],"Slug":[],"Discussion":[],"Custom fields":[],"Excerpt":[],"Publish":[],"Metadata":[],"Save":[],"Documentation":[],"Select Category":[],"(Untitled)":[],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":[],"https://github.com/WordPress/gutenberg":[],"Gutenberg":[],"Demo":[],"%s ago":[],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_is.json b/bundle/android/raw/i18ncache_data_is.json
new file mode 100644
index 0000000000..a21f791714
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_is.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],"Backtick":[],"Period":[],"Comma":[],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":[],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],"Small":[],"Reusable":[],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":[],"Edit URL":[],"Color settings":[],"The response is not a valid JSON response.":[],"Editor publish":[],"Muted":[],"Video settings":[],"recent comments":[],"Latest Comments":[],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest comments settings":[],"Number of Comments":[],"Background Opacity":[],"Auto":[],"Preload":[],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":[],"Show Post Counts":[],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":[],"Support":[],"No comments to show.":[],"%1$s on %2$s":[],"Select Post":[],"Select Week":[],"Select Day":[],"Select Month":[],"Select Year":[],"Archives":[],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":[],"Transform To:":[],"Remove Block":[],"Open publish panel":[],"Dots":[],"Wide Line":[],"Large":[],"Show download button":[],"Download button settings":[],"Link To":[],"Text link settings":[],"download":[],"pdf":[],"document":[],"Copy URL":[],"Write file name…":[],"File":[],"A single column within a columns block.":[],"Column":[],"Outline":[],"Loop":[],"Autoplay":[],"Playback Controls":[],"Close dialog":[],"Sorry, this file type is not permitted for security reasons.":[],"Disable tips":[],"Got it":[],"See next tip":[],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":[],"Remove image":[],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":[],"View the autosave":[],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":[],"Enter URL here…":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish…":[],"Schedule…":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Editor settings":[],"Link settings":[],"Unlink":[],"Page break":[],"pagination":[],"next page":[],"Image Size":[],"Height":[],"Width":[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],"Advanced":[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],"Scheduled":[],"Scheduling…":[],"Code editor selected":[],"Visual editor selected":[],"Plugins":[],"Custom Size":[],"Layout elements":[],"term\u0004%s removed":[],"term\u0004%s added":[],"imperative verb\u0004Preview":[],"Block deleted.":[],"Block updated.":[],"Block created.":[],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":[],"Document Outline":[],"Paragraphs":[],"Headings":[],"Words":[],"Content structure":[],"Public":[],"Protected with a password you choose. Only those with the password can view this post.":[],"Password Protected":[],"Only visible to site admins and editors.":[],"Private":[],"Visible to everyone.":[],"Post Visibility":[],"Would you like to privately publish this post now?":[],"Use a secure password":[],"Create password":[],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":[],"Term":[],"Tag":[],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":[],"Immediately":[],"Save Draft":[],"Saving":[],"Publish:":[],"Visibility:":[],"Are you ready to publish?":[],"Copy Link":[],"What’s next?":[],"is now live.":[],"Published":[],"Schedule":[],"Update":[],"Submit for Review":[],"Updating…":[],"Publishing…":[],"Allow pingbacks & trackbacks":[],"Permalink:":[],"Pending review":[],"%d Revision":[],"Suggestion:":[],"Post Format":[],"Chat":[],"Status":[],"Standard":[],"Aside":[],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow comments":[],"Template:":[],"no parent":[],"no title":[],"Order":[],"No blocks found.":[],"%d result found.":[],"Saved":[],"Embeds":[],"Blocks":[],"Search for a block":[],"Add block":[],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],"Undo":[],"Redo":[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":[],"Edit visually":[],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":[],"Convert to Blocks":[],"Block: %s":[],"This block has encountered an error and cannot be previewed.":[],"No block selected.":[],"Transform into:":[],"Remove":[],"Find original":[],"Copy all content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":[],"Status & visibility":[],"Page attributes":[],"Block":[],"Document":[],"Close settings":[],"Editor content":[],"Tools":[],"Editor":[],"Code editor":[],"Visual editor":[],"Editor top bar":[],"Settings":[],"Reset":[],"Dismiss this notice":[],"Item removed.":[],"Item added.":[],"Drop files to upload":[],"PM":[],"AM":[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],"URL":[],"Submit":[],"Close":[],"Insert link":[],"Edit link":[],"Link":[],"Strikethrough":[],"Italic":[],"Bold":[],"Remove link":[],"Number of items":[],"All":[],"Category":[],"Z → A":[],"A → Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],"Select":[],"Select or Upload Media":[],"Video":[],"Write…":[],"poetry":[],"Verse":[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],"Table":[],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":[],"horizontal-line":[],"Separator":[],"Quote":[],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":[],"Preformatted":[],"text":[],"Paragraph":[],"Font Size":[],"Drop Cap":[],"Text settings":[],"Read more":[],"Write list…":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],"List":[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],"photo":[],"Image settings":[],"Image":[],"Preview":[],"embed":[],"Custom HTML":[],"subtitle":[],"title":[],"Heading":[],"Write heading…":[],"Heading %d":[],"Level":[],"Heading settings":[],"photos":[],"images":[],"None":[],"Media File":[],"Attachment Page":[],"Link to ":[],"Crop Images":[],"Gallery settings":[],"Gallery":[],"Classic":[],"video":[],"audio":[],"music":[],"image":[],"blog":[],"post":[],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":[],"Embedding…":[],"Write title…":[],"Fixed Background":[],"Edit image":[],"Columns":[],"Experiments":[],"Code":[],"Write code…":[],"Categories":[],"Show Hierarchy":[],"Show post counts":[],"Categories settings":[],"Add text…":[],"Button":[],"Apply":[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable blocks":[],"Cancel":[],"Edit":[],"Write caption…":[],"Use URL":[],"Audio":[],"Upload":[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":[],"Custom color picker":[],"Color: %s":[],"Full width":[],"Wide width":[],"Widgets":[],"Formatting":[],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":[],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":[],"Slug":[],"Discussion":[],"Custom fields":[],"Excerpt":[],"Publish":[],"Metadata":[],"Save":[],"Documentation":[],"Select Category":[],"(Untitled)":[],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":[],"https://github.com/WordPress/gutenberg":[],"Gutenberg":[],"Demo":[],"%s ago":[],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_it.json b/bundle/android/raw/i18ncache_data_it.json
new file mode 100644
index 0000000000..63cf1e7156
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_it.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Mostra l'icona del submenu per gli elementi del livello superiore"],"Display settings":["Visualizza le impostazioni"],"Choose variation":["Scegli la variante"],"Angle":["Angolo"],"%s Block":["Blocco %s"],"%1$s Block. %2$s":["Blocco %1$s. %2$s"],"%s Block. Column %d":["Blocco %s. Colonna %d"],"%1$s Block. Column %2$d. %3$s":["Blocco %1$s. Colonna %2$d. %3$s"],"%s Block. Row %d":["Blocco %s. Riga %d"],"%1$s Block. Row %2$d. %3$s":["Blocco %1$s . Riga %2$d. %3$s"],"Post Excerpt":["Riassunto dell'articolo"],"Post Date":["Data dell'articolo"],"No Date":["Nessuna data"],"Post Author":["Autore dell'articolo"],"Choose":["Scegli"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":["Scegli una parte del template per slug e tema, o creane uno nuovo."],"Error adding template.":["Errore nell'aggiunta del template."],"Footer label":["Etichetta del footer"],"Header label":["Etichetta dell'header"],"Unsupported":["Non supportato"],"The description will be displayed in the menu if the current theme supports it.":["La descrizione sarà visualizzata nel menu se il tema selezionato supporta questa funzionalità."],"Level %1$s. %2$s":["Livello %1$s. %2$s"],"Level %s. Empty.":["Livello %s. Vuoto."],"Empty":["Vuoto"],"Search results for %s":["Risultati della ricerca per %s"],"Recently updated":["Aggiornati di recente"],"Multiple selected blocks":["Blocchi multipli selezionati"],"By %s":["Di: %s"],"Inspector":["Inspector"],"Site editor advanced settings.":["Impostazioni avanzate dell'editor del sito."],"(beta)":["(beta)"],"Site Editor":["Editor del sito"],"Site editor top bar.":["Barra in alto dell'editor del sito."],"Briefly describe the link to help screen reader users.":["Descrivi brevemente il link per aiutare gli utenti di screen reader."],"Link Label":["Etichetta del link"],"%s label":["etichetta %s"],"poem":["poesia"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;"],"Full Post":["Articolo completo"],"Show:":["Mostra:"],"Create from all top-level pages":["Crea da tutte le pagine superiori"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Invita gli utenti ad effettuare un'azione con dei link che hanno l'aspetto di un pulsante."],"Buttons":["Pulsanti"],"Background":["Sfondo"],"Background & Text Color":["Colore dello sfondo e del testo"],"Images Size":["Dimensione dell'immagine"],"Remove multiple selected blocks.":["Elimina i blocchi multipli selezionati."],"(%s: gradient %s)":["(%s: gradiente %s)"],"(%s: color %s)":["(%s: colore %s)"],"(Gradient: %s)":["(Gradiente: %s)"],"(Color: %s)":["(Colore: %s)"],"Here's a detailed guide.":["QUi hai una guida dettagliata."],"New to the Block Editor? Want to learn more about using it? ":["Nuovo per l'editor a blocchi? Vuoi approfondire sul suo utilizzo?"],"Learn how to use the Block Editor":["Scopri come usare l'editor a blocchi"],"Help":["Aiuto"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["Icona del blocco %s"],"Submit for Review…":["Invia per la revisione…"],"Update…":["Aggiornamento…"],"Select items to save.":["Seleziona gli elementi da salvare."],"What do you want to save?":["Che cosa vuoi salvare?"],"Untitled":["Senza titolo"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["L'editor a blocchi include funzionalità sperimentali utilizzabili mentre sono in fase di sviluppo. Seleziona quelli che desideri abilitare. È probabile che queste funzioni cambino, quindi evita di usarle in produzione."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Abilita la Modifica Completa del Sito (Attenzione: questo sostituirà il tema e causerà modifiche potenzialmente irreversibili al tuo sito. Si consiglia di utilizzarlo solo in un ambiente di sviluppo.)"],"Site Editor (beta)":["Editor del sito (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Un \"blocco\" è il termine astratto usato\n// per descrivere le unità di markup che,\n// quando combinate insieme, formano il\n// contenuto o il layout di una pagina.\nregisterBlockType( nome, impostazioni );"],"You are probably offline.":["Sei probabilmente offline."],"Justify items right":["Giustifica gli elementi a destra"],"Justify items center":["Giustifica gli elementi al centro"],"Justify items left":["Giustifica gli elementi a sinistra"],"Change items justification":["Cambia la giustificazione degli elementi"],"The media file has been replaced":["Questo file media è stato sostituito"],"Replace":["Sostituisci"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Sei attualmente in modalità modifica. Per tornare alla modalità di navigazione, premere Esc."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Sei attualmente in modalità navigazione. Naviga nei blocchi usando il tasto Tab. Per uscire dalla modalità di navigazione e modificare il blocco selezionato, premere Invio."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Utilizzare i tasti freccia sinistra o destra o trascina e rilascia con il mouse per modificare la posizione del gradiente. Premere il pulsante per cambiare il colore o rimuovere il punto di controllo."],"Gradient control point at position %1$s with color code %2$s.":["Punto di controllo del gradiente alla posizione %1$s con codice colore %2$s."],"Preset Size":["Dimensione predefinita"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Gli strumenti offrono diverse interazioni per la selezione e la modifica dei blocchi. Per selezionare, premere Esc, per tornare alla modifica, premere Invio."],"Open Media Library":["Apri la libreria dei media"],"Next":["Prossimo"],"Previous":["Precedente"],"Finish":["Finito"],"Page %1$d of %2$d":["Pagina %1$d di %2$d"],"Guide controls":["Controlli della guida"],"Remove Control Point":["Rimuovi punto di controllo"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Ogni blocco viene fornito con un proprio set di controlli per cambiare cose come colore, larghezza e allineamento. Questi saranno visualizzati e nascosti automaticamente quando si seleziona un blocco."],"Make each block your own":["Rendi tuo ogni blocco"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["Nell'editor di WordPress, ogni paragrafo, immagine o video è presentato come un \"blocco\" di contenuto distinto."],"ADD MEDIA":["AGGIUNGI MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Tutti i blocchi disponibili sono nella Libreria Blocchi. La troverai ovunque vedi l'icona ."],"Get to know the Block Library":["Conosci la libreria dei blocchi"],"Welcome Guide":["Guida di benvenuto"],"Enable page templates":["Abilita i template della pagina"],"Page Templates":["Template della pagina"],"Enable Full Site Editing demo templates":["Abilita i template demo di modifica completa del sito"],"Full Site Editing Demo Templates":["Template demo di modifica completa del sito"],"Welcome to the Block Editor":["Benvenuto nell'editor a blocchi"],"Get started":["Come iniziare"],"inserter":["inserter"],"Post Title":["Titolo dell'articolo"],"Add nofollow to link":["Aggiungi nofollow al link"],"Add submenu":["Aggiungi un sottomenu"],"Add link…":["Aggiungi link..."],"Dark":["Scuro"],"Light":["Chiaro"],"recording":["registrazione"],"podcast":["podcast"],"sound":["suono"],"Array of instance changes":["Array delle modifiche all'istanza"],"Current widget instance":["Istanza corrente del widget"],"Template parts to include in your templates.":["Parti di template da includere nei tuoi template."],"Template parts list":["Elenco delle parti del template"],"Template parts list navigation":["Navigazione nell'elenco delle parti di template"],"Filter template parts list":["Filtra l'elenco delle parti di template"],"Uploaded to this template part":["Caricato in questa parte di template"],"Insert into template part":["Inserisci nelle parti di template"],"Template part archives":["Archivi delle parti di template"],"No template parts found in Trash.":["Non è stata trovata nessuna parte di template nel Cestino."],"No template parts found.":["Non è stata trovata nessuna parte di template."],"Parent Template Part:":["Parte di template genitore:"],"Search Template Parts":["Cerca tra le parti di template"],"All Template Parts":["Tutte le parti del template"],"View Template Part":["Visualizza parte del template"],"Edit Template Part":["Modifica parte del template"],"New Template Part":["Nuova parte del template"],"Add New Template Part":["Aggiungi una nuova parte del template"],"Template Part\u0004Add New":["Aggiungi nuova"],"Admin Menu text\u0004Template Parts":["Parti del template"],"Template Part":["Parte del template"],"Template Parts":["Parti del template"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Che cosa stava facendo, il grande dio Pan,\n\tGiù tra le canne vicino al fiume?\nDiffondere la rovina e disperdere il divieto,\nSpruzzare e remare con gli zoccoli di una capra,\nE rompere i gigli d'oro a galla\n Con la libellula sul fiume."],"Navigation":["Navigazione"],"Loading Navigation…":["Caricamento navigazione"],"Navigation Structure":["Struttura navigazione"],"Create empty":["Crea vuoto"],"Create a Navigation from all existing pages, or create an empty one.":["Crea una navigazione da tutte le pagine esistenti oppure creane una vuota."],"Navigation Link":["Link di navigazione"],"(Note: many devices and browsers do not display this text.)":["(Nota: molti dispositivi e browser non visualizzano questo testo.)"],"Describe the role of this image on the page.":["Descrivi il ruolo di questa immagine nella pagina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Passa dall'uso dello stesso valore per tutte le dimensioni dello schermo o dall'uso di un singolo valore per dimensione dello schermo."],"Use the same %s on all screensizes.":["Usa la stessa %s su tutte le dimensioni dello schermo."],"Large screens":["Schermi grandi"],"Medium screens":["Schermi medi"],"Small screens":["Schermi piccoli"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controlla la proprietà %1$s per i viewport %2$s."],"Currently selected":["Attualmente selezionato"],"Search or type url":["Cerca o digita l'url"],"Press ENTER to add this link":["Premi INVIO per aggiungere questo link"],"Currently selected link settings":["Impostazioni del link attualmente selezionato"],"Generic label for block inserter button\u0004Add block":["Aggiungi blocco"],"directly add the only allowed block\u0004Add %s":["Aggiungi %s"],"%s block added":["%s blocc aggiunto"],"Move %s":["Sposta %s"],"Extra Large":["Molto grande"],"Block breadcrumb":["Blocco dei breadcrumb"],"Editor footer":["Editor del footer"],"Site Title":["Titolo del sito"],"Open Colors Selector":["Apri il selettore dei colori"],"Templates list":["Elenco dei template"],"Templates list navigation":["Navigazione elenco dei template"],"Filter templates list":["Filtro elenco dei template"],"Uploaded to this template":["Caricato in questo template"],"Insert into template":["Inserisci nel template"],"Template archives":["Archivi template"],"No templates found in Trash.":["Nessun template trovato nel Cestino."],"No templates found.":["Nessun template trovato."],"Parent Template:":["Template genitore:"],"Search Templates":["Ricerca template"],"All Templates":["Tutti i template"],"View Template":["Visualizza template"],"Edit Template":["Modifica il template"],"New Template":["Nuovo template"],"Add New Template":["Aggiungi un nuovo template"],"Template\u0004Add New":["Aggiungi nuovo"],"Admin Menu text\u0004Templates":["Template"],"Template":["Template"],"No matching template found":["Non è stato trovato alcun template corrispondente"],"Gradient: %s":["Gradiente: %s"],"Gradient code: %s":["Codice gradiente: %s"],"All content copied.":["Tutto il contenuto è stato copiato."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Upload dei media falliti. Se questa è una foto o un'immagine grande, riduci le dimensioni e riprova."],"Gradient":["Gradiente"],"Gradient Presets":["Gradienti preimpostati"],"No Preview Available.":["Nessuna anteprima disponibile."],"Midnight":["Mezzanotte"],"Electric grass":["Verde erba elettrico"],"Pale ocean":["Azzurro oceano tenue"],"Luminous dusk":["Tramonto luminoso"],"Blush bordeaux":["Bordeaux pastello"],"Blush light purple":["Viola tenue pastello"],"Cool to warm spectrum":["Gamma dai colori freddi ai colori caldi"],"Very light gray to cyan bluish gray":["Dal grigio molto chiaro al ciano bluastro grigio"],"Luminous vivid orange to vivid red":["Da arancione intenso luminoso a rosso vivo"],"Luminous vivid amber to luminous vivid orange":["Da ambra intenso luminoso ad arancione intenso luminoso"],"Light green cyan to vivid green cyan":["Da ciano verde chiaro a ciano verde intenso"],"Vivid cyan blue to vivid purple":["Da blu ciano intenso a viola intenso"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 dicembre 2018"],"February 21, 2019":["21 febbraio 2019"],"May 7, 2019":["7 maggio 2019"],"Release Date":["Data di pubblicazione"],"Jazz Musician":["Musicista jazz"],"Version":["Versione"],"Six.":["Sei."],"Five.":["Cinque."],"Four.":["Quattro."],"Three.":["Tre."],"Two.":["Due."],"One.":["Uno."],"One of the hardest things to do in technology is disrupt yourself.":["Una delle cose più difficili da fare con la tecnologia è fermare sé stessi."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Lo scricciolo
Si guadagna da vivere
Silenziosamente."],"Welcome to the wonderful world of blocks…":["Benvenuti nel meraviglioso mondo dei blocchi…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimensioni"],"Minimum height in pixels":["Altezza minima in pixel"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Invito all'azione"],"In quoting others, we cite ourselves.":["Citando altri, citiamo noi stessi."],"cite":["citazione"],"Mont Blanc appears—still, snowy, and serene.":["Appare il Monte Bianco - immobile, innevato e sereno."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In un villaggio della Mancia, il cui nome non desidero ricordare, non molto tempo fa viveva uno di quei gentiluomini che possiedono una lancia nella rastrelliera, un vecchio brocchiere, un ronzino magro e un levriero da caccia."],"Block navigation":["Navigazione tra i blocchi"],"Full Site Editing":["Modalità di modifica dell'intero sito"],"Templates to include in your theme.":["Template da includere nel tuo tema."],"Templates":["Template"],"Inserter help panel":["Pannello di aiuto dello strumento di inserimento"],"Pre-publish checks":["Controlli pre-pubblicazione"],"Please contact your site administrator to install new blocks.":["Contatta l'amministratore del sito per installare i nuovi blocchi."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Nessun blocco trovato nella tua libreria. Contatta l'amministratore del sito per installare i nuovi blocchi."],"No blocks found in your library.":["Nessun blocco trovato nella tua libreria."],"No blocks found in your library. These blocks can be downloaded and installed:":["Nessun blocco trovato nella tua libreria. Questi blocchi possono essere scaricati e installati:"],"No blocks found in your library. We did find %d block available for download.":["Nessun blocco trovato nella tua libreria. Abbiamo trovato %d blocco disponibile per lo scaricamento.","Nessun blocco trovato nella tua libreria. Abbiamo trovato %d blocchi disponibili per lo scaricamento."],"Block previews can’t load.":["L'anteprima del blocco non può essere scaricata."],"Retry":["Riprova"],"Block previews can't install.":["L'anteprima del blocco non può essere installata."],"Updated %s":["Aggiornato %s."],"%d active installation":["%d installazione attiva","%d installazioni attive"],"This author has %d block, with an average rating of %d.":["Questo autore ha %d blocco, con una valutazione media di %d.","Questo autore ha %d blocchi, con una valutazione media di %d."],"Authored by %s":["Scritto da %s"],"%d total rating":["%d valutazione totale","%d valutazioni totali"],"%s out of 5 stars":["%s su 5 stelle"],"Enter Address":["Inserisci indirizzo"],"Pill Shape":["Forma di pillola"],"Logos Only":["Solo loghi"],"Create a block of links to your social media or external sites":["Crea un blocco di link ai tuoi social media o siti esterni"],"Social links":["Link social"],"Open block navigator":["Apri la navigazione tra i blocchi"],"Attachment page":["Pagina dell’allegato"],"Fill":["Riempi"],"Link rel":["Link Rel"],"Border Radius":["Raggio del bordo"],"Write gallery caption…":["Scrivi la didascalia della galleria…"],"Content blocks":["Blocchi di contenuto"],"Restore the backup":["Ripristina il backup"],"The backup of this post in your browser is different from the version below.":["Il backup di questo articolo nel tuo browser è diverso dalla versione sotto."],"Enable block directory search":["Abilita la ricerca nella directory dei blocchi"],"Block Directory":["Directory dei blocchi"],"Unable to connect to the filesystem. Please confirm your credentials.":["Impossibilitato al collegamento al filesystem. Controlla le tue credenziali."],"Sorry, you are not allowed to install blocks.":["Non hai il permesso per installare i blocchi."],"%1$d block is disabled.":["%1$d blocco è disabiliato.","%1$d blocchi sono disabilitati."],"Reverse List Numbering":["Ordine inverso di numerazione"],"Start Value":["Valore di partenza"],"Ordered list settings":["Impostazioni degli elenchi ordinati"],"Clear Media":["Cancella media"],"Default Style":["Stile predefinito"],"Not set":["Non impostato"],"While writing, you can press / to quickly insert new blocks.":["Mentre scrivi, puoi premere / per inserire velocemente un nuovo blocco."],"Browse through the library to learn more about what each block does.":["Esplora la libreria per conoscere cosa fa ogni blocco."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Sono disponibili blocchi per ogni tipo di contenuto: testo, titoli, immagini, elenchi, video, tabelle e molto altro."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Ti diamo il benvenuto nel meraviglioso mondo dei blocchi! I blocchi sono la base di tutti i contenuti con questo editor. "],"Version of the content block format used by the object.":["Versione del formato del blocco di contenuto utilizzata dall'oggetto."],"HTML content for the object, transformed for display.":["Contenuto HTML dell'oggetto, trasformato per essere visualizzato."],"Content for the object, as it exists in the database.":["Il contenuto dell'oggetto, come riportato nel database."],"The content for the object.":["Il contenuto dell'oggetto."],"Change column alignment":["Cambia l'allineamento della colonna"],"Align Column Right":["Allineamento della colonna a destra"],"Align Column Center":["Allineamento della colonna al centro"],"Align Column Left":["Allineamento della colonna a sinistra"],"Color":["Colore"],"Vivid purple":["Viola intenso"],"Disable & Reload":["Disabilita e ricarica"],"Enable & Reload":["Abilita e ricarica"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Per applicare questa modifica è necessario ricaricare la pagina. Assicurati di aver salvato il contenuto prima di ricaricare."],"Display these keyboard shortcuts.":["Visualizza queste scorciatoie da tastiera."],"Experiments Settings":["Impostazioni degli esperimenti"],"Enable Widgets screen and Legacy Widgets block":["Abilita la schermata Widget e il blocco Widget legacy"],"Experimental settings":["Impostazioni delle funzionalità sperimentali"],"Block name name must be a string.":["Il nome del blocco deve essere una stringa."],"Custom":["Personalizzato"],"Draft":["Bozza"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Il blocco \"%1$s\" non contiene uno stile con nome \"%2$s.\"."],"Learn more about anchors":["Ulteriori informazioni sulle ancore"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Inserisci una parola o due — senza spazi — per creare un unico indirizzo web proprio per questo titolo, chiamato “ancora”. Poi, sari in grado di collegare direttamente a questa sezione della tua pagina."],"Widget Blocks (Experimental)":["Blocchi del widget (Sperimentale)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Carica un file video, scegline uno dalla tua libreria dei media o aggiungine uno con un URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Carica una immagine, scegline una dalla tua libreria dei media o aggiungine una con un URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Carica un file audio, scegline uno dalla tua libreria dei media o aggiungine uno con un URL."],"Upload a media file or pick one from your media library.":["Carica un file media o scegline uno dalla tua libreria dei media."],"Skip":["Salta"],"Select a variation to start with.":["Seleziona una variante con cui iniziare."],"Add a page, link, or another item to your navigation.":["Aggiungi una pagina, un link o un altro elemento ala tua navigazione."],"What's this?":["Che cos'è questo?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Non lasciare che i motori di ricerca seguano questo link."],"Provide more context about where the link goes.":["Fornire più contesto su dove va il link."],"Title Attribute":["Attributo del titolo"],"SEO settings":["Impostazioni SEO"],"Description":["Descrizione"],"Open in new tab":["Apri in una nuova scheda"],"links":["link"],"navigation":["navigazione"],"menu":["menu"],"Add a navigation block to your site.":["Aggiungi un blocco di navigazione al tuo sito."],"Upload a file or pick one from your media library.":["Carica un file o sceglierne uno dalla tua libreria dei media."],"Learn more about embeds":["Ulteriori informazioni sugli incorporamenti"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Incolla un link al contenuto che vuoi visualizzare sul tuo sito."],"Upload an image or video file, or pick one from your media library.":["Carica un file immagine o video, o scegline uno dalla tua libreria dei media."],"Three columns; wide center column":["Tre colonne; ampia colonna centrale"],"Three columns; equal split":["Tre colonne; suddivise equamente"],"Two columns; two-thirds, one-third split":["Due colonne; suddivise in due terzi e un terzo"],"Two columns; one-third, two-thirds split":["Due colonne; suddivise in un terzo e due terzi"],"Two columns; equal split":["Due colonne; suddivise equamente"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Il tuo sito non ha %s, quindi non c'è nulla da mostrare qui al momento."],"More tools & options":["Più strumenti & opzioni"],"Create Table":["Crea tabella"],"Insert a table for sharing data.":["Inserisci una tabella per condividere i dati."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Separa"],"verb\u0004Group":["Raggruppa"],"Separate with commas or the Enter key.":["Separa con virgole o premendo il tasto Invio."],"Separate with commas, spaces, or the Enter key.":["Separa con virgole, con spazi o premendo il tasto Invio."],"Separate multiple classes with spaces.":["Separa classi multiple con gli spazi."],"Move image forward":["Muovi l'immagine avanti"],"Move image backward":["Muovi l'immagine indietro"],"Sorry, you are not allowed to edit sidebars.":["Non hai i permessi di edit la barra laterale."],"Sorry, you are not allowed to read sidebars.":["Non hai i permessi in read per la barra laterale."],"The sidebar’s ID.":["L'ID della barra laterale."],"Displays a set of blocks":["Visualizza un insieme di blocchi"],"Blocks Area":["Area dei blocchi "],"Block rendered as empty.":["Il blocco è stato reso come blocco vuoto."],"Inline Code":["Codice inline"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Nota: l'autoplay per i video può causare problemi di usabilità per alcuni visitatori."],"Footer section":["Sezione footer"],"Header section":["Sezione header"],"Sorting and filtering":["Ordinamento e filtro"],"Post meta settings":["Impostazioni dei metadati dell'articolo"],"Post Content":["Contenuto dell'articolo"],"Post content settings":["Impostazioni del contenuto dell'articolo"],"Percentage width":["Percentuale della larghezza"],"Column settings":["Impostazioni della colonna"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Nota: l'autoplay per gli audio può causare problemi di usabilità per alcuni visitatori."],"Block area updated.":["Area del blocco aggiornata."],"Block area scheduled.":["Area di blocco programmata."],"Block area published.":["Area del blocco pubblicata."],"Block areas list":["Elenco delle aree del blocco"],"Block areas list navigation":["Navigazione nell'elenco delle aree dei blocchi"],"Filter block areas list":["Filtra l'elenco delle aree dei blocchi"],"No block area found.":["Nessuna area del blocco trovata."],"Search Block Areas":["Cerca nelle aree dei blocchi"],"All Block Areas":["Tutte le aree del blocco"],"View Block Area":["Visualizza l'area del blocco"],"Edit Block Area":["Modifica l'area del blocco"],"New Block Area":["Nuova area del blocco"],"Add New Block Area":["Aggiungi una nuova area del blocco"],"admin menu\u0004Block Areas":["Aree dei blocchi"],"post type singular name\u0004Block Area (Experimental)":["Area del blocco (sperimentale)"],"post type general name\u0004Block Area (Experimental)":["Area del blocco (sperimentale)"],"Experimental custom post type that will store block areas referenced by themes.":["Post type personalizzati e sperimentali che memorizzeranno le aree dei blocchi referenziate dai temi."],"Widgets screen content":["Contenuto della schermata dei widget"],"header":["header"],"Widgets advanced settings":["Impostazioni avanzate dei widget"],"(experimental)":["(sperimentale)"],"Block Areas":["Aree per i blocchi"],"Widgets screen top bar":["Barra superiore della schermata dei widget"],"This color combination may be hard for people to read.":["Questa combinazione di colori può essere difficile da leggere per le persone."],"There is no poster image currently selected":["Nessuna immagine di anteprima è selezionata"],"The current poster image url is %s":["L'url attuale dell'immagine di anteprima è %s"],"section":["sezione"],"row":["riga"],"wrapper":["wrapper"],"container":["contenitore"],"A block that groups other blocks.":["Un blocco che raggruppa altri blocchi."],"Group":["Gruppo"],"Crop image to fill entire column":["Ritaglia l'immagine per riempire l'intera colonna"],"Play inline":["Riproduci all'interno"],"Leave empty if the image is purely decorative.":["Lascia vuoto se l'immagine è solamente decorativa"],"Describe the purpose of the image":["Descrivi l'immagine o il motivo per cui c'è"],"Add a block":["Aggiungi un blocco"],"Block vertical alignment setting label\u0004Change vertical alignment":["Cambia l'allineamento verticale"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Allinea verticalmente in basso"],"Block vertical alignment setting\u0004Vertically Align Middle":["Allinea verticalmente al centro"],"Replace Image":["Sostituisci l'immagine"],"Block vertical alignment setting\u0004Vertically Align Top":["Allinea verticalmente in alto"],"Display a legacy widget.":["Visualizza un widget legacy."],"Legacy Widget (Experimental)":["Widget legacy (sperimentale)"],"Change widget":["Cambia widget"],"Legacy Widget":["Widget legacy"],"You don't have permissions to use widgets on this site.":["Non hai i permessi per utilizzare i widget su questo sito."],"Select a legacy widget to display:":["Seleziona un widget legacy da visualizzare:"],"There are no widgets available.":["Non ci sono widget disponibili."],"Change block type or style":["Cambia tipo o stile del blocco"],"keyboard key\u0004Space":["Spazio"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Ulteriori controlli rich text"],"Search Terms":["Cerca termini"],"Exit the Editor":["Esci dall'editor"],"Block Manager":["Gestore dei blocchi"],"Class name of the widget.":["Class name of the widget."],"Sorry, you are not allowed to access widgets on this site.":["Non hai i permessi per accedere ai widget su questo sito."],"Widgets (beta)":["Widget (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["L'anteprima del contenuto incorporato da %s non può essere visualizzata nell'editor."],"Custom Color":["Colore personalizzato"],"Prompt visitors to take action with a button-style link.":["Invita gli utenti ad effettuare un'azione con un link che ha l'aspetto di un pulsante."],"Stick to the top of the blog":["Metti in evidenza nella parte alta del blog"],"Read about permalinks":["Leggi riguardo i permalink"],"The last part of the URL.":["L'ultima parte dell'URL."],"URL Slug":["Slug dell'URL"],"A cloud of your most used tags.":["Un cloud dei tuoi tag più utilizzati."],"Tag Cloud":["Tag Cloud"],"Taxonomy":["Tassonomia"],"Tag Cloud settings":["Impostazioni Tag Cloud"],"- Select -":["- Seleziona -"],"Default":["Predefinito"],"find":["trova"],"Help visitors find your content.":["Aiuta i visitatori a trovare i tuoi contenuti."],"Search":["Cerca"],"Add button text…":["Aggiungi il testo del pulsante..."],"Button text":["Testo del pulsante"],"Optional placeholder…":["Placeholder opzionale…"],"Optional placeholder text":["Testo placeholder opzionale"],"Add label…":["Aggiungi una etichetta..."],"Label text":["Testo dell'etichetta"],"image %1$d of %2$d in gallery":["immagine %1$d of %2$d nella galleria"],"archive":["archivio"],"posts":["articoli"],"A calendar of your site’s posts.":["Un calendario degli articoli del tuo sito."],"Calendar":["Calendario"],"by":["di"],"An error has occurred, which probably means the feed is down. Try again later.":["Si è verificato un errore; probabilmente il feed non è attivo. Riprova più tardi."],"RSS Error:":["Errore RSS:"],"block style\u0004Default":["Predefinito"],"Fullscreen mode deactivated":["Modalità a schermo intero disattivata"],"Fullscreen mode activated":["Modalità a schermo intero attivata"],"Spotlight mode deactivated":["Modalità in risalto disattivata"],"Spotlight mode activated":["Modalità in risalto attivata"],"Top toolbar deactivated":["Barra degli strumenti in alto disattivata"],"Top toolbar activated":["Barra degli strumenti in alto attivata"],"Back":["Indietro"],"Feature activated":["Caratteristica attivata"],"Feature deactivated":["Caratteristica disattivata"],"Vertical Pos.":["Pos. verticale"],"Horizontal Pos.":["Pos. orizzontale"],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Visualizza gli elementi di un qualunque feed RSS o Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Numero massimo di parole nel riassunto"],"Display excerpt":["Visualizza il riassunto"],"Display date":["Visualizza la data"],"Display author":["Visualizza l'autore"],"RSS settings":["Impostazioni RSS"],"Edit RSS URL":["Modifica l'URL dell'RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Il contenuto prima di questo blocco verrà mostrato nel riassunto della pagina degli archivi."],"Hide the excerpt on the full content page":["Nascondi il riassunto sulla pagina con il contenuto completo"],"The excerpt is visible.":["Il riassunto è visibile."],"The excerpt is hidden.":["Il riassunto è nascosto."],"Sorry, this content could not be embedded.":["Questo contenuto non può essere incorporato."],"Embed Amazon Kindle content.":["Incorpora il contenuto di Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incorpora il contenuto di Crowdsignal (precedentemente Polldaddy)."],"Focal Point Picker":["Selettore del punto focale"],"Underline":["Sottolineato"],"Attempt Block Recovery":["Tentativo di recupero del blocco"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Contenuto…"],"button label\u0004Convert to link":["Converti in link"],"button label\u0004Try again":["Riprova"],"Editor tips":["Suggerimenti sull'editor"],"Block (selected)":["Blocco (selezionato)"],"Document (selected)":["Documento (selezionato)"],"%d word":["%d parola","%d parole"],"Top toolbar":["Barra degli strumenti in alto"],"Link Rel":["Link Rel"],"Link CSS Class":["Classe CSS del link"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crea contenuti e salvali per te e per glialtri contributori per riutilizzarli sul tuo sito. Aggiorna il blocco, e le modifiche si applicano ovunque siano state utilizzate."],"To edit the featured image, you need permission to upload media.":["Per modificare l'immagine in evidenza, ti occorre l'autorizzazione al caricamento dei media."],"To edit this block, you need permission to upload media.":["Per modificare questo blocco devi avere il permesso di caricare file media."],"(selected block)":["(blocco selezionato)"],"Block tools":["Strumenti blocco"],"Permalink":["Permalink"],"This image has an empty alt attribute":["Questa immagine ha l'attributo alt vuoto"],"This image has an empty alt attribute; its file name is %s":["Questa immagine ha l'attributo alt vuoto; il nome del file è %s"],"Block area reverted to draft.":["Area del blocco ripristinata come bozza."],"Block area published privately.":["Area del blocco pubblicata privatamente."],"No block areas found in Trash.":["Nessuna area del blocco trovata nel cestino."],"Block\u0004Add New":["Aggiungi nuovo"],"add new on admin bar\u0004Block Area":["Area del blocco"],"Link inserted.":["Link inserito."],"Warning: the link has been inserted but may have errors. Please test it.":["Attenzione: hai inserito il link ma ci potrebbero essere degli errori. Provalo."],"%s block selected.":["%s blocchi selezionati."],"Thumbnail":["Miniatura"],"Full Size":["Dimensione reale"],"Link selected.":["Link selezionato."],"Start writing with text or HTML":["Inizia a scrivere con testo o HTML"],"Type text or HTML":["Digita testo o HTML"],"Block icon":["Icona del blocco"],"Align text right":["Allinea il testo a destra"],"Align text center":["Allinea il testo al centro"],"Align text left":["Allinea il testo a sinistra"],"Start writing or type / to choose a block":["Inizia a scrivere o digita / per scegliere un blocco"],"Empty block; start writing or type forward slash to choose a block":["Blocco vuoto; inizia a scrivere o digita la barra in avanti per scegliere un blocco"],"Paragraph block":["Blocco del paragrafo"],"Page Break":["Interruzione di pagina"],"Stack on mobile":["Stack su mobile"],"Annotation":["Annotazione"],"Drag images, upload new ones or select files from your library.":["Trascina le immagini, caricane di nuove o seleziona i file dalla tua libreria."],"blocks\u0004Most used":["Più utilizzati"],"imperative verb\u0004Resolve":["Correggi"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Medio"],"font size name\u0004Small":["Piccolo"],"font size name\u0004Normal":["Normale"],"keyboard button\u0004Enter":["Invio"],"button label\u0004Import":["Importa"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Incorpora"],"block title\u0004Embed":["Incorpora"],"block title\u0004Classic":["Editor classico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":["Arrotondato"],"%s (opens in a new tab)":["%s (apre in una nuova scheda)"],"Link edited.":["Link modificato."],"Link removed.":["Link rimosso."],"media":["media"],"Double-check your settings before publishing.":["Controlla nuovamente le tue impostazioni prima di pubblicare."],"Generating preview…":["Generazione dell'anteprima ..."],"Edit or update the image":["Modifica o aggiorna l'immagine"],"Media":["Media"],"Navigate to the nearest toolbar.":["Passare alla barra degli strumenti più vicina."],"Document tools":["Strumenti del documento"],"Document and block tools":["Strumenti del documento e dei blocchi"],"Embed a video from your media library or upload a new one.":["Incorpora un video dalla tua libreria dei media o caricane uno nuovo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserisci una poesia. Utilizza formati di spaziatura speciali. O cita i testi."],"Add white space between blocks and customize its height.":["Aggiungi uno spazio bianco tra i blocchi e personalizza la sua altezza."],"Insert additional custom elements with a WordPress shortcode.":["Inserisci elementi personalizzati aggiuntivi con uno shortcode di WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crea una interruzione tra idee o sezioni con un separatore orizzontale."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Dai un'enfasi visiva al testo citato. \"Citando gli altri, citiamo noi stessi.\" - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Dai un'enfasi visiva speciale ad una citazione dal tuo testo."],"Start with the building block of all narrative.":["Comincia con la pietra angolare di tutta la storia."],"Separate your content into a multi-page experience.":["Suddividi il tuo contenuto in una esperienza multi-pagina."],"Set media and words side-by-side for a richer layout.":["Imposta supporti e parole media affiancati per un layout più ricco."],"Media & Text settings":["Impostazioni di media e testo"],"Create a bulleted or numbered list.":["Crea un elenco puntato o numerato."],"Display a list of your most recent comments.":["Visualizza una lista dei tuoi commenti più recenti."],"Insert an image to make a visual statement.":["Inserisci una immagine e cattura l'attenzione."],"Add custom HTML code and preview it as you edit.":["Aggiungi codice HTML personalizzato e visualizzalo in anteprima mentre lo modifichi."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduci nuove sezioni e organizza i contenuti per aiutare i visitatori (e i motori di ricerca) a comprenderne la struttura."],"Display multiple images in a rich gallery.":["Visualizza più immagini in una ricca galleria."],"Add a link to a downloadable file.":["Aggiungi un link a un file che può essere scaricato."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incorpora video, immagini, tweet, audio, e altro contenuto da sorgenti esterne."],"Resize for smaller devices":["Ridimensiona per dispositivi più piccoli"],"This embed may not preserve its aspect ratio when the browser is resized.":["Questo incorporamento potrebbe non conservare le proporzioni quando il browser è ridimensionato."],"This embed will preserve its aspect ratio when the browser is resized.":["Questo incorporamento manterrà le proporzioni quando viene ridimensionato il browser."],"Embed an Animoto video.":["Incorpora un video da Animoto."],"Embed a Vimeo video.":["Incorpora un video da Vimeo."],"Embed Flickr content.":["Incorpora un contenuto di Flickr."],"Embed Spotify content.":["Incorpora un contenuto di Spotify."],"Embed SoundCloud content.":["Incorpora un contenuto di SoundCloud."],"Embed a WordPress post.":["Incorpora un articolo WordPress."],"Embed an Instagram post.":["Incorpora un post di Instagram."],"Embed a Facebook post.":["Incorpora un post di Facebook."],"Embed a WordPress.tv video.":["Incorpora un video di WordPress.tv."],"Embed a VideoPress video.":["Incorpora un video di VideoPress."],"Embed a Tumblr post.":["Incorpora un articolo di Tumblr."],"Embed a TED video.":["Incorpora un video TED."],"Embed Speaker Deck content.":["Incorpora un contenuto di Speaker Deck."],"Embed a YouTube video.":["Incorpora un video di YouTube."],"Embed SmugMug content.":["Incorpora un contenuto di SmugMug."],"Embed Slideshare content.":["Incorpora un contenuto di Slideshare."],"Embed Scribd content.":["Incorpora un contenuto di Scribd."],"Embed Screencast content.":["Incorpora un contenuto di Screencast."],"Embed ReverbNation content.":["Incorpora un contenuto di ReverbNation."],"Embed a Reddit thread.":["Incorpora un thread di Reddit."],"Embed Polldaddy content.":["Incorpora un contenuto di Polldaddy."],"Embed Mixcloud content.":["Incorpora un contenuto di Mixcloud."],"Embed a tweet.":["Incorpora un tweet."],"Embed Meetup.com content.":["Incorpora un contenuto di Meetup.com."],"Embed Kickstarter content.":["Incorpora un contenuto di Kickstarter."],"Embed Issuu content.":["Incorpora un contenuto di Issuu."],"Embed Imgur content.":["Incorpora un contenuto di Imgur."],"Embed Hulu content.":["Incorpora un contenuto di Hulu."],"Embed a Dailymotion video.":["Incorpora un video da Dailymotion."],"Embed CollegeHumor content.":["Incorpora un contenuto di CollegeHumor."],"Embed Cloudup content.":["Incorpora un contenuto di Cloudup."],"Add an image or video with a text overlay — great for headers.":["Aggiungi un'immagine o un video con un testo sovrapposto — ottimi per gli header."],"Display code snippets that respect your spacing and tabs.":["Mostra frammenti di codice che rispettano spazi e tabulazioni."],"Use the classic WordPress editor.":["Utilizza l'editor classico di WordPress."],"Display a list of all categories.":["Visualizza un elenco di tutte le categorie."],"Embed a simple audio player.":["Incorpora un player audio semplice."],"noun\u0004View":["Visualizzazione"],"editor button\u0004Left to right":["Da sinistra a destra"],"Save as Pending":["Salva come In attesa"],"%s address":["%s indirizzo"],"Paste or type URL":["Incolla o digita l'URL"],"Insert from URL":["Inserisci dall'URL"],"Block Navigator":["Navigazione tra i blocchi"],"Styles":["Stili"],"Advanced panels":["Pannelli avanzati"],"Document panels":["Pannelli del documento"],"General":["Generale"],"Open the block navigation menu.":["Apre il menu per navigare tra i blocchi"],"Work without distraction":["Lavora senza distrazioni"],"Focus on one block at a time":["Concentrati su un blocco alla volta"],"Access all block and document tools in a single place":["Accedi a tutti gli strumenti di blocco e documento in un unico posto"],"Options":["Opzioni"],"(opens in a new tab)":["(si apre in una nuova scheda)"],"Minutes":["Minuti"],"Hours":["Ore"],"Time":["Data"],"Year":["Anno"],"Day":["Giorno"],"December":["Dicembre"],"November":["Novembre"],"October":["Ottobre"],"September":["Settembre"],"August":["Agosto"],"July":["Luglio"],"June":["Giugno"],"May":["Maggio"],"April":["Aprile"],"March":["Marzo"],"February":["Febbraio"],"January":["Gennaio"],"Month":["Mese"],"Date":["Data"],"Go to the first (home) or last (end) day of a week.":["Vai al primo (inizio) o all'ultimo (fine) giorno della settimana."],"Home/End":["Inizio/Fine"],"Home and End":["Inizio e Fine"],"Move backward (PgUp) or forward (PgDn) by one month.":["Vai indietro (PagSu) o avanti (PagGiù) di un mese."],"PgUp/PgDn":["PagSu/PagGiù"],"Page Up and Page Down":["Pagina Su e Pagina Giù"],"Move backward (up) or forward (down) by one week.":["Vai indietro (su) o avanti (giù) di una settimana."],"Up and Down Arrows":["Frecce su e giù"],"Move backward (left) or forward (right) by one day.":["Vai indietro (sinistra) o avanti (destra) di un giorno."],"Left and Right Arrows":["Frecce sinistra e destra"],"Select the date in focus.":["Selezioni la data col focus."],"Navigating with a keyboard":["Navigazione tramite tastiera"],"Click the desired day to select it.":["Fai clic sul giorno desiderato per selezionarlo."],"Click the right or left arrows to select other months in the past or the future.":["Fai clic sulle frecce sinistra e destra per selezionare un mese precedente o successivo."],"Click to Select":["Fai clic per selezionare"],"Calendar Help":["Aiuto per il calendario"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utilizza i tasti freccia per cambiare il colore di base. Muovi in su per rendere il colore più chiaro, in giù per renderlo più scuro, a sinistra per diminuire la saturazione e a destra per aumentare la saturazione."],"Choose a shade":["Scegli un'ombra"],"Change color format":["Cambia formato colore"],"Color value in HSL":["Colore in valore HSL"],"Color value in RGB":["Colore in valore RGB"],"Color value in hexadecimal":["Colore in valore esadecimale"],"RGB mode active":["Modalità RGB attiva"],"Hex color mode active":["Modalità colore esadecimale attiva "],"Hue/saturation/lightness mode active":["Modalità tonalità/saturazione/luminosità attiva "],"Move the arrow left or right to change hue.":["Utilizza le frecce sinistra o destra per cambiare la tonalità."],"Hue value in degrees, from 0 to 359.":["Valore della tonalità in gradi, da 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valore alfa, da 0 (trasparente) a 1 (completamente opaco)."],"Stripes":["Strisce"],"Your site doesn’t include support for this block.":["Il tuo sito non include il supporto per questo blocco."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Il tuo sito non include il supporto per il blocco \"%s\". Puoi lasciare questo blocco intatto o rimuoverlo completamente."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Il tuo sito non include il supporto per il blocco \"%s\". Puoi lasciare questo blocco intatto, convertire il suo contenuto in un blocco HTML personalizzato o rimuoverlo completamente."],"Media area":["area Media"],"Media & Text":["Media e testo"],"Show media on right":["Mostra i media a destra"],"Show media on left":["Mostra i media a sinistra"],"Open in New Tab":["Apri in una nuova scheda"],"Cover":["Copertina"],"Border settings":["Impostazioni bordi"],"Medium":["Medio"],"Paste URL or type to search":["Incolla l'URL oppure digita per cercare"],"Terms":["Termini"],"Your work will be published at the specified date and time.":["Il tuo articolo sarà pubblicato alla data e ora specificata."],"Are you ready to schedule?":["Sei pronto per la pianificazione?"],"Always show pre-publish checks.":["Mostra sempre le verifiche pre-pubblicazione."],"Take Over":["Prendi il controllo"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Un altro utente sta lavorando ora su questo articolo, significa che non puoi effettuare modifiche, a meno che tu non ne prenda il controllo."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s sta lavorando ora su questo articolo, significa che non puoi effettuare modifiche, a meno che tu non ne prenda il controllo."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Ora un altro utente ha preso il controllo sulla modifica di questo articolo. Non ti preoccupare, le tue modifiche fatte finora sono state salvate."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Ora %s ha preso il controllo sulla modifica di questo articolo. Non ti preoccupare, le tue modifiche fatte finora sono state salvate."],"Avatar":["Avatar"],"This post is already being edited.":["Questo articolo è già in fase di modifica."],"Someone else has taken over this post.":["Qualcun altro ha preso il controllo di questo articolo."],"This block contains unexpected or invalid content.":["Questo blocco contiene contenuto inaspettato o non valido."],"Resolve Block":["Correggi blocco"],"Convert to HTML":["Converti in HTML"],"This block can only be used once.":["Questo blocco può essere utilizzato una sola volta."],"Exit Code Editor":["Esci dall'editor del codice"],"Editing Code":["Modalità editor del codice attiva"],"Solid Color":["Tinta unita"],"Main Color":["Colore principale"],"HTML":["HTML"],"Write HTML…":["Scrivi HTML…"],"Media settings":["Impostazioni media"],"Overlay":["Sovrapposizione"],"Insert Media":["Inserisci media"],"Reusable block imported successfully!":["Blocco riutilizzabile importato con successo!"],"Invalid Reusable Block JSON file":["File JSON del blocco riutilizzabile non valido"],"Invalid JSON file":["File JSON non valido"],"Import from JSON":["Importa da JSON"],"Backtick":["Accento grave"],"Period":["Punto"],"Comma":["Virgola"],"Change type of %d block":["Cambia tipo di %d blocco","Cambia tipo di %d blocchi"],"Current":["Attuale"],"After Conversion":["Dopo la conversione"],"Change alignment":["Cambia l'allineamento"],"Change text alignment":["Cambia l'allineamento del testo"],"%d block":["%d blocco","%d blocchi"],"Forward-slash":["Barra obliqua"],"No archives to show.":["Nessun archivio da mostrare."],"This file is empty.":["Questo file è vuoto."],"Sorry, this file type is not supported here.":["Questo tipo di file non è supportato."],"Manage all reusable blocks":["Gestisci tutti i blocchi riutilizzabili"],"Title":["Titolo"],"Fullscreen mode":["Modalità a schermo intero"],"Beautiful landscape":["Panorama stupendo"],"Close panel":["Chiudi il pannello"],"Convert to Classic Block":["Converti in blocco classico"],"Remove Poster Image":["Rimuovi Immagine di anteprima"],"Select Poster Image":["Seleziona l'immagine di anteprima"],"Poster Image":["Immagine di anteprima"],"This block is deprecated. Please use the Columns block instead.":["Questo blocco è deprecato. Al suo posto utilizza il blocco Colonne."],"Text Columns (deprecated)":["Testo in colonne (deprecato)"],"Create":["Crea"],"Row Count":["Numero di righe"],"Column Count":["Numero di colonne"],"This block is deprecated. Please use the Paragraph block instead.":["Questo blocco è deprecato. Al suo posto utilizza il blocco Paragrafo."],"Subheading (deprecated)":["Sottotitolo (deprecato)"],"blockquote":["citazione"],"Change the block type after adding a new paragraph.":["Cambia il tipo di blocco dopo aver aggiunto un nuovo paragrafo."],"Spotlight mode":["Modalità in risalto"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["I tag aiutano gli utenti e i motori di ricerca a visitare il tuo sito e trovare i contenuti. Aggiungi qualche parola per descrivere il tuo articolo."],"Add tags":["Aggiungi tag"],"Apply the \"%1$s\" format.":["Applica il formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Il tuo tema utilizza i formati articolo per evidenziare diversi tipi di contenuti, come immagini o video. Applica un formato articolo per vedere queste formattazioni speciali."],"Use a post format":["Utilizza un formato articolo"],"Insert After":["Inserisci dopo"],"Insert Before":["Inserisci prima"],"Move %1$d block from position %2$d down by one place":["Muovi %1$d blocco dalla posizione %2$d in giù di un posto","Muovi i %1$d blocchi dalla posizione %2$d in giù di un posto"],"Move %1$d block from position %2$d up by one place":["Muovi %1$d blocco dalla posizione %2$d in su di un posto","Muovi i %1$d blocchi dalla posizione %2$d in su di un posto"],"Move %1$s block from position %2$d right to position %3$d":["Muovi il blocco %1$s dalla posizione %2$d destra alla posizione %3$d"],"movie":["film"],"Insert a new block before the selected block(s).":["Inserisce un nuovo blocco prima dei blocchi selezionati."],"Remove the selected block(s).":["Rimuove i blocchi selezionati."],"Duplicate the selected block(s).":["Duplica i blocchi selezionati."],"Block shortcuts":["Scorciatoie per il blocco"],"Clear selection.":["Annulla la selezione."],"Select all text when typing. Press again to select all blocks.":["Seleziona tutto il testo mentre digiti. Premere di nuovo per selezionare tutti i blocchi."],"Selection shortcuts":["Scorciatoie per la selezione"],"Switch between Visual editor and Code editor.":["Passa da Editor visuale a Editor del codice e viceversa."],"Navigate to the previous part of the editor.":["Vai alla sezione precedente dell'editor."],"Navigate to the next part of the editor.":["Vai alla sezione successiva dell'editor."],"Show or hide the settings sidebar.":["Mostra o nasconde la barra laterale delle impostazioni."],"Redo your last undo.":["Ripristina la modifica annullata."],"Undo your last changes.":["Annulla l'ultima modifica."],"Save your changes.":["Salva le tue modifiche."],"Global shortcuts":["Scorciatoie globali"],"Remove a link.":["Rimuove un link."],"Convert the selected text into a link.":["Converte il testo selezionato in un link."],"Underline the selected text.":["Sottolinea il testo selezionato."],"Make the selected text italic.":["Rende il testo selezionato in corsivo."],"Make the selected text bold.":["Rende il testo selezionato in grassetto."],"Text formatting":["Formattazione del testo"],"Insert a new block after the selected block(s).":["Inserisce un nuovo blocco dopo i blocchi selezionati."],"Keyboard shortcuts":["Scorciatoie da tastiera"],"Thanks for testing Gutenberg!":["Grazie per aver testato Gutenberg!"],"Help build Gutenberg":["Aiuta a costruire Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Se vuoi imparare di più su come sviluppare blocchi aggiuntivi o sei interessato a dare una mano al progetto, vai al repository su GitHub."],"The WordPress community":["La comunità di WordPress"],"Code is Poetry":["Il codice è poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Puoi sviluppare qualsiasi blocco tu voglia, statico o dinamico, decorativo o semplice. Ecco il blocco di una citazione in evidenza:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Qualsiasi blocco può usufruire di questi allineamenti. Anche i blocchi incorporati hanno i loro e sono già predisposti per essere responsivi:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Quella sopra è una galleria con sole due immagini. È un modo facile di creare layout ad impatto visivo, senza dover combattere con i float. Puoi anche riconvertire facilmente la galleria in immagini individuali, utilizzando la funzione di cambio blocco."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Certo, l'immagine a larghezza piena può essere molto grande. Ma qualche volta l'immagine lo merita."],"Accessibility is important — don’t forget image alt attribute":["L'accessibilità è importante — non dimenticare l'attributo alt dell'immagine"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Se combini i nuovi allineamenti a larghezza ampia e a larghezza piena con le gallerie, puoi creare un layout multimediale molto avanzato, molto velocemente:"],"Media Rich":["Formattazione avanzata dei media"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Puoi cambiare la quantità di colonne delle tue gallerie trascinando un selettore nel blocco inspector della barra laterale."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["I blocchi possono essere qualsiasi cosa di cui hai bisogno. Per esempio potresti voler aggiungere una citazione non invasiva come parte della composizione del tuo testo, oppure potresti preferire visualizzarne una gigante. Tutte queste opzioni sono disponibili con lo strumento di inserimento."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["L'informazione corrispondente alla fonte della citazione è un campo di testo separato, simile alle didascalie sotto le immagini, così la struttura della citazione è protetta anche se selezioni, modifichi o rimuovi la fonte. È sempre facile aggiungerla di nuovo."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["L'editor proverà a creare una nuova esperienza di costruzione di pagine e articoli che agevolerà la scrittura di articoli con formattazione avanzata, e con i “blocchi” renderà semplice quello che oggi è ottenuto con shortcode, HTML personalizzato ed embed discovery di “provenienza incerta”."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Un enorme beneficio dei blocchi è che puoi modificarli dove sono e modificare il tuo contenuto direttamente. Invece di avere campi per modificare cose come la fonte di una citazione o il testo di un pulsante, puoi cambiare direttamente il contenuto. Prova a modificare la citazione seguente:"],"Visual Editing":["Modifiche visuali"],"And Lists like this one of course :)":["Ed elenchi come questo naturalmente :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocchi di layout come pulsanti, immagini a tutto schermo (hero), separatori, ecc ecc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Oggetti da incorporare come YouTube, Tweet o altri articoli di WordPress."],"Galleries":["Gallerie"],"Images & Videos":["Immagini e video"],"Text & Headings":["Testi e titoli"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Provalo, potresti scoprire cosa WordPress può già aggiungere nei tuoi articoli che non ti aspetti. Ecco un elenco di cosa puoi trovare in questo momento:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Immagina che tutto quello che WordPress può fare sia disponibile velocemente e nella stessa posizione dell'interfaccia. Nessuna necessità di capire tag HTML e classi o ricordare le complicate sintassi dei shortcode. È l'anima che sta dietro allo strumento di inserimento —il pulsante (+)
che vedi vicino all'editor— che ti permette di scorrere tutti i blocchi di contenuto disponibili e aggiungerli nel tuo articolo. Plugin e temi possono registrare i loro propri blocchi, offrendo così ogni tipo di possibilità per formattazioni avanzate e pubblicazione."],"The Inserter Tool":["Lo strumento di inserimento"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prova a selezionare e rimuovere o modificare la didascalia, ora non devi più stare attento nel selezionare l'immagine o altro testo per errore e rovinarne la presentazione."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Se il tuo tema lo supporta vedrai un pulsante \"larghezza ampia\" nella barra degli strumenti dell'immagine. Provalo."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Gestire immagini e media con la massima attenzione è un obiettivo primario del nuovo editor. Speriamo che troverai gli aspetti di aggiungere didascalie o di rendere le tue foto a larghezza piena più facili e solidi di prima."],"A Picture is Worth a Thousand Words":["Un'immagine vale più di mille parole"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Anche i titoli sono blocchi separati, i quali aiutano a strutturare e organizzare il tuo contenuto."],"... like this one, which is right aligned.":["... come questo, allineato a destra."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Quello che stai leggendo adesso è un blocco di testo il più semplice di tutti i blocchi. Il blocco di testo ha le sue opzioni per essere liberamente mosso nell'articolo..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["L'obiettivo di questo nuovo editor è di rendere l'aggiunta di contenuto con formattazione avanzata in WordPress semplice e piacevole. L'intero articolo è composto da pezzi di contenuto —un po' simili ai mattoncini LEGO— che puoi muovere e con cui puoi interagire. Muovi il puntatore e noterai i vari blocchi evidenziarsi con bordi e frecce. Premi le frecce per riposizionare velocemente i blocchi, evitando la paura di perdere qualcosa durante il copia e incolla."],"Of Mountains & Printing Presses":["Di montagne e macchine da stampa"],"Welcome to the Gutenberg Editor":["Benvenuto nell'editor Gutenberg"],"block name\u0004More":["Leggi tutto"],"button to expand options\u0004More":["Altre opzioni"],"Are you sure you want to unschedule this post?":["Desideri rimuovere la pianificazione di questo articolo?"],"Alt Text (Alternative Text)":["Alt Text (testo alternativo)"],"Reusable Block":["Blocco riutilizzabile"],"Unique identifier for the object.":["Identificatore univoco per l'oggetto."],"Untitled Reusable Block":["Blocco riutilizzabile senza nome"],"Small":["piccolo"],"Reusable":["Riutilizzabile"],"Remove from Reusable blocks":["Togli dai blocchi riutilizzabili"],"Add to Reusable blocks":["Aggiungi ai blocchi riutilizzabili"],"Keep as HTML":["Mantieni come HTML"],"Edit URL":["Modifica l'URL"],"Color settings":["Impostazioni colore"],"The response is not a valid JSON response.":["La risposta non è una risposta JSON valida."],"Editor publish":["Pannello di pubblicazione dell'editor"],"Muted":["Silenzioso"],"Video settings":["Impostazioni video"],"recent comments":["Commenti recenti"],"Latest Comments":["Ultimi commenti"],"Display Excerpt":["Visualizza il riassunto"],"Display Date":["Visualizza la data"],"Display Avatar":["Visualizza l'avatar"],"Latest comments settings":["Impostazioni ultimi commenti"],"Number of Comments":["Numero di commenti"],"Background Opacity":["Opacità dello sfondo"],"Auto":["Auto"],"Preload":["Precaricamento"],"Audio settings":["Impostazioni audio"],"Display a monthly archive of your posts.":["Visualizza gli archivi mensili dei tuoi articoli."],"Display as Dropdown":["Visualizza come menu a discesa"],"Show Post Counts":["Mostra conteggio articoli"],"Archives settings":["Impostazioni degli archivi"],"https://wordpress.org/support/plugin/gutenberg":["https://it.wordpress.org/support/plugin/gutenberg"],"Support":["Supporto"],"No comments to show.":["Nessun commento da mostrare."],"%1$s on %2$s":["%1$s su %2$s"],"Select Post":["Seleziona un articolo"],"Select Week":["Seleziona la settimana"],"Select Day":["Seleziona il giorno"],"Select Month":["Seleziona il mese"],"Select Year":["Seleziona l'anno"],"Archives":["Archivi"],"Very dark gray":["Grigio molto scuro"],"Cyan bluish gray":["Ciano bluastro grigio"],"Very light gray":["Grigio molto chiaro"],"Vivid cyan blue":["Blu ciano intenso"],"Pale cyan blue":["Blu ciano pallido"],"Vivid green cyan":["Ciano verde intenso"],"Light green cyan":["Ciano verde chiaro"],"Luminous vivid amber":["Ambra intenso luminoso"],"Luminous vivid orange":["Arancione intenso luminoso"],"Vivid red":["Rosso vivo"],"Pale pink":["Rosa pallido"],"Inline image":["Immagine in linea"],"Available block types":["Tipologie di blocchi disponibili"],"Transform To:":["Trasforma in:"],"Remove Block":["Rimuovi blocco"],"Open publish panel":["Apri il pannello di pubblicazione"],"Dots":["Punti"],"Wide Line":["Linea ampia"],"Large":["Grande"],"Show download button":["Mostra il pulsante download"],"Download button settings":["Impostazioni del pulsante download"],"Link To":["Link a"],"Text link settings":["Impostazioni testo del link"],"download":["download"],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copia l'URL"],"Write file name…":["Scrivi il nome del file..."],"File":["File"],"A single column within a columns block.":["Una singola colonna all'interno di un blocco di colonne."],"Column":["Colonna"],"Outline":["Bordo in evidenza"],"Loop":["Ciclo"],"Autoplay":["Autoplay"],"Playback Controls":["Controlli di riproduzione"],"Close dialog":["Chiudi la finestra di dialogo"],"Sorry, this file type is not permitted for security reasons.":["Questo tipo di file non è permesso per ragioni di sicurezza."],"Disable tips":["Disabilita i suggerimenti"],"Got it":["Fatto"],"See next tip":["Vedi il prossimo suggerimento"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quando sei pronto, invia il tuo lavoro per la revisione e un editore sarà in grado di approvarlo per te."],"Are you ready to submit for review?":["Sei pronto a inviare per la revisione?"],"Replace image":["Sostituisci immagine"],"Remove image":["Rimuovi immagine"],"Error while uploading file %s to the media library.":["Errore durante il caricamento del file %s nella libreria dei media."],"This file exceeds the maximum upload size for this site.":["Questo file supera la dimensione massima di caricamento per questo sito."],"View the autosave":["Visualizza salvataggio automatico"],"There is an autosave of this post that is more recent than the version below.":["C'è un salvataggio automatico di questo articolo che è più recente della versione qui sotto."],"Autosaving":["Salvataggio automatico in corso"],"Enter URL here…":["Inserisci URL qui…"],"Pin to toolbar":["Aggiungi alla barra degli strumenti"],"Unpin from toolbar":["Rimuovi dalla barra degli strumenti"],"Insert a table — perfect for sharing charts and data.":["Inserisci una tabella — perfetto per condividere grafici e dati."],"Fixed width table cells":["Celle tabella a larghezza fissa"],"Table settings":["Impostazioni tabella"],"Add text that respects your spacing and tabs, and also allows styling.":["Aggiungi testo che rispetta spazi e tabulazioni e ti permette anche di formattare."],"Display a list of your most recent posts.":["Visualizza un elenco dei tuoi articoli più recenti."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Aggiungi un blocco che visualizza il contenuto estratto da altri siti, come Twitter, Instagram o YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Aggiungi un blocco che visualizza il contenuto in colonne multiple, quindi aggiungi qualunque blocco di contenuto a tuo piacere."],"Error loading block: %s":["Errore durante il caricamento del blocco: %s"],"Unknown error":["Errore sconosciuto"],"Embed Handler":["Handler dell'oggetto incorporato"],"term\u0004Remove %s":["Rimuovi %s"],"Copy the permalink":["Copia il permalink"],"Permalink copied":["Permalink copiato"],"Height in pixels":["Altezza in pixel"],"Spacer settings":["Impostazioni spazio vuoto"],"Spacer":["Spazio vuoto"],"Toggle to show a large initial letter.":["Attiva per mostrare una grande lettera iniziale."],"Showing large initial letter.":["Lettera iniziale più grande visualizzata."],"Name:":["Nome:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s di %3$s)"],"Remove item":["Rimuovi elemento"],"Color code: %s":["Codice colore: %s"],"Skip to the selected block":["Vai al blocco selezionato"],"Publish…":["Pubblica…"],"Schedule…":["Pianifica…"],"Edit post permalink":["Modifica il permalink dell'articolo"],"Show Block Settings":["Mostra impostazioni blocco"],"Hide Block Settings":["Nascondi impostazioni blocco"],"Block settings closed":["Impostazioni blocco chiuse"],"Close plugin":["Chiudi il plugin"],"Editor settings":["Impostazioni dell'editor"],"Link settings":["Impostazioni link"],"Unlink":["Rimuovi link"],"Page break":["Interruzione di pagina"],"pagination":["paginazione"],"next page":["pagina successiva"],"Image Size":["Dimensione dell'immagine"],"Height":["Altezza"],"Width":["Larghezza"],"Image Dimensions":["Dimensioni immagine"],"Thumbnails are not cropped.":["Le miniature non sono ritagliate."],"Thumbnails are cropped to align.":["Le miniature sono ritagliate per uniformare le dimensioni."],"Media Library":["Libreria media"],"Advanced":["Avanzate"],"Add item":["Aggiungi elemento"],"Reset the template":["Reimposta il template"],"Keep it as is":["Conservalo così com'è"],"The content of your post doesn’t match the template assigned to your post type.":["Il contenuto del tuo articolo non corrisponde al template assegnato al tuo post type."],"Resetting the template may result in loss of content, do you want to continue?":["Reimpostare il template può portare alla perdita del contenuto, vuoi continuare?"],"Document Statistics":["Statistiche del documento"],"is now scheduled. It will go live on":["è ora pianificato. Sarà pubblicato il"],"Scheduled":["Pianificato"],"Scheduling…":["Pianificazione in corso…"],"Code editor selected":["Editor del codice selezionato"],"Visual editor selected":["Editor visuale selezionato"],"Plugins":["Plugin"],"Custom Size":["Dimensioni personalizzate"],"Layout elements":["Elementi del layout"],"term\u0004%s removed":["%s eliminati"],"term\u0004%s added":["%s aggiunti"],"imperative verb\u0004Preview":["Anteprima"],"Block deleted.":["Blocco eliminato."],"Block updated.":["Blocco aggiornato."],"Block created.":["Blocco creato."],"Trashing failed":["Eliminazione fallita"],"Updating failed.":["Aggiornamento fallito."],"Scheduling failed.":["Programmazione fallita."],"Publishing failed.":["Pubblicazione fallita."],"View post":["Visualizza articolo"],"You have unsaved changes. If you proceed, they will be lost.":["Hai delle modifiche non salvate. Se continui, verranno perse."],"Document Outline":["Struttura del documento"],"Paragraphs":["Paragrafi"],"Headings":["Titoli"],"Words":["Parole"],"Content structure":["Struttura del contenuto"],"Public":["Pubblico"],"Protected with a password you choose. Only those with the password can view this post.":["Protetto da una password di tua scelta. Solo chi possiede la password può visualizzare questo articolo."],"Password Protected":["Protetto da password"],"Only visible to site admins and editors.":["Visibile solo agli amministratori e agli editori del sito."],"Private":["Privato"],"Visible to everyone.":["Visibile a tutti."],"Post Visibility":["Visibilità articolo"],"Would you like to privately publish this post now?":["Vorresti pubblicare adesso questo articolo in privato?"],"Use a secure password":["Usa una password sicura"],"Create password":["Crea la password"],"Move to Trash":["Sposta nel cestino"],"Parent Term":["Termine genitore"],"Parent Category":["Categoria genitore"],"Add new term":["Aggiungi nuovo termine"],"Add new category":["Aggiungi una nuova categoria"],"Term":["Termine"],"Tag":["Tag"],"Add new Term":["Aggiungi nuovo termine"],"Add new tag":["Aggiungi nuovo tag"],"Switch to draft":["Converti in bozza"],"Are you sure you want to unpublish this post?":["Desideri annullare la pubblicazione di questo articolo?"],"Immediately":["Immediatamente"],"Save Draft":["Salva bozza"],"Saving":["Salvataggio in corso"],"Publish:":["Pubblica:"],"Visibility:":["Visibilità:"],"Are you ready to publish?":["Sei pronto per pubblicare?"],"Copy Link":["Copia il link"],"What’s next?":["Cos'altro puoi fare?"],"is now live.":["è ora pubblicato."],"Published":["Pubblicato"],"Schedule":["Pianifica"],"Update":["Aggiorna"],"Submit for Review":["Invia per la revisione"],"Updating…":["Aggiornamento in corso…"],"Publishing…":["Stai pubblicando…"],"Allow pingbacks & trackbacks":["Permetti pingbacks e trackbacks"],"Permalink:":["Permalink:"],"Pending review":["In attesa di revisione"],"%d Revision":["%d revisione","%d revisioni"],"Suggestion:":["Suggerimento:"],"Post Format":["Formato articolo"],"Chat":["Chat"],"Status":["Stato"],"Standard":["Standard"],"Aside":["Digressione"],"Featured image":["Immagine in evidenza"],"Set featured image":["Imposta immagine in evidenza"],"Learn more about manual excerpts":["Per saperne di più sui riassunti manuali"],"Write an excerpt (optional)":["Scrivi un riassunto (facoltativo)"],"Allow comments":["Permetti di commentare"],"Template:":["Template:"],"no parent":["Nessun genitore"],"no title":["Nessun titolo"],"Order":["Ordinamento"],"No blocks found.":["Nessun blocco trovato."],"%d result found.":["%d risultato trovato.","%d risultati trovati."],"Saved":["Salvato"],"Embeds":["Incorporamenti"],"Blocks":["Blocchi"],"Search for a block":["Cerca un blocco"],"Add block":["Aggiungi blocco"],"Copy Error":["Copia l'errore"],"Copy Post Text":["Copia il testo dell'articolo"],"Attempt Recovery":["Tentativo di recupero"],"The editor has encountered an unexpected error.":["L'editor ha riscontrato un errore inaspettato."],"Undo":["Annulla"],"Redo":["Ripeti"],"(Multiple H1 headings are not recommended)":["(molteplici intestazioni H1 sono sconsigliate)"],"(Your theme may already use a H1 for the post title)":["(il tuo tema utilizza già un H1 per il titolo dell'articolo)"],"(Incorrect heading level)":["(livello di intestazione non corretto)"],"(Empty heading)":["(titolo vuoto)"],"Block Styles":["Stili dei blocchi"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Sei sicuro di voler eliminare questo blocco riutilizzabile?\n\nSarà rimosso definitivamente da tutti i post e dalle pagine che lo utilizzano."],"Convert to Regular Block":["Converti in blocco regolare"],"More options":["Altre opzioni"],"Edit visually":["Modifica visivamente"],"Duplicate":["Duplica"],"Blocks cannot be moved down as they are already at the bottom":["I blocchi non possono essere spostati verso il basso poiché sono già in fondo"],"Blocks cannot be moved up as they are already at the top":["I blocchi non possono essere spostati verso l'alto perché sono già all'inizio"],"Block %1$s is at the beginning of the content and can’t be moved right":["Il blocco %1$s è all'inizio del contenuto e non può essere spostato a destra"],"Block %1$s is at the end of the content and can’t be moved right":["Il blocco %1$s è alla fine del contenuto e non può essere spostato a destra"],"Block %s is the only block, and cannot be moved":["Il blocco %s è unico, e non può essere mosso"],"Edit as HTML":["Modifica come HTML"],"Convert to Blocks":["Converti in blocchi"],"Block: %s":["Blocco: %s"],"This block has encountered an error and cannot be previewed.":["Questo blocco ha causato un errore e non può essere visualizzato in anteprima."],"No block selected.":["Nessun blocco selezionato."],"Transform into:":["Trasforma in:"],"Remove":["Rimuovi"],"Find original":["Trova l'originale"],"Copy all content":["Copia tutto il contenuto"],"Copied!":["Copiato!"],"Additional settings are now available in the Editor block settings sidebar":["Impostazioni aggiuntive sono ora disponibili nella barra laterale delle impostazioni del blocco"],"Visibility":["Visibilità"],"Status & visibility":["Stato e visibilità"],"Page attributes":["Attributi della pagina"],"Block":["Blocco","%d Blocchi"],"Document":["Documento"],"Close settings":["Chiudi le impostazioni"],"Editor content":["Contenuto dell'editor"],"Tools":["Strumenti"],"Editor":["Editor"],"Code editor":["Editor del codice"],"Visual editor":["Editor visuale"],"Editor top bar":["Barra unificata degli strumenti dell'editor"],"Settings":["Impostazioni"],"Reset":["Reimpostare"],"Dismiss this notice":["Ignora questo avviso"],"Item removed.":["Termine rimosso."],"Item added.":["Elemento aggiunto."],"Drop files to upload":["Trascina file per caricare"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Si è verificato un errore sconosciuto."],"No results.":["Nessun risultato."],"%d result found, use up and down arrow keys to navigate.":["%d risultato trovato, utilizza i tasti freccia su e giù per navigare.","%d risultati trovati, utilizza i tasti freccia su e giù per navigare."],"(no title)":["(senza titolo)"],"URL":["URL"],"Submit":["Invia"],"Close":["Chiudi"],"Insert link":["Inserisci link"],"Edit link":["Modifica link"],"Link":["Link"],"Strikethrough":["Barrato"],"Italic":["Corsivo"],"Bold":["Grassetto"],"Remove link":["Rimuovi link"],"Number of items":["Numero di elementi"],"All":["Tutto"],"Category":["Categoria"],"Z → A":["Z ⟶ A"],"A → Z":["A ⟶ Z"],"Oldest to Newest":["Dal meno recente al più recente"],"Newest to Oldest":["Dal più recente al meno recente"],"Order by":["Ordina per"],"Select":["Seleziona"],"Select or Upload Media":["Seleziona o carica media"],"Video":["Video"],"Write…":["Scrivi..."],"poetry":["poesia"],"Verse":["Verso"],"New Column":["Nuova colonna"],"Delete Column":["Elimina colonna"],"Add Column After":["Aggiungi colonna dopo"],"Add Column Before":["Aggiungi colonna prima"],"Delete Row":["Elimina riga"],"Add Row After":["Aggiungi riga dopo"],"Add Row Before":["Aggiungi riga prima"],"Edit table":["Modifica tabella"],"Table":["Tabella"],"Write subheading…":["Scrivi un sottotitolo..."],"Write shortcode here…":["Scrivi qui lo shortcode..."],"Shortcode":["Shortcode"],"divider":["divisore"],"horizontal-line":["linea orizzontale"],"Separator":["Separatore"],"Quote":["Citazione"],"Write citation…":["Scrivi citazione..."],"Write quote…":["Scrivi una citazione..."],"Pullquote":["Citazione evidenziata"],"Write preformatted text…":["Scrivi testo preformattato..."],"Preformatted":["Preformattato"],"text":["testo"],"Paragraph":["Paragrafo"],"Font Size":["Dimensione del font"],"Drop Cap":["Capolettera"],"Text settings":["Impostazioni del testo"],"Read more":["Leggi tutto"],"Write list…":["Scrivi elenco…"],"numbered list":["lista numerata"],"ordered list":["lista ordinata"],"bullet list":["lista puntata"],"Indent list item":["Aumenta rientro voci elenco"],"Outdent list item":["Riduci rientro voci elenco"],"Convert to ordered list":["Converti in lista ordinata"],"Convert to unordered list":["Converti in lista non ordinata"],"List":["Elenco"],"recent posts":["articoli recenti"],"No posts found.":["Nessun articolo trovato."],"Latest Posts":["Articoli recenti"],"Display post date":["Visualizza data articolo"],"Grid view":["Visualizzazione in modalità griglia"],"List view":["Visualizzazione in modalità elenco"],"photo":["foto"],"Image settings":["Impostazioni immagine"],"Image":["Immagine"],"Preview":["Anteprima"],"embed":["incorporato"],"Custom HTML":["HTML personalizzato"],"subtitle":["sottotitolo"],"title":["titolo"],"Heading":["Titolo"],"Write heading…":["Scrivi titolo…"],"Heading %d":["Titolo %d"],"Level":["Livello"],"Heading settings":["Impostazioni titolo"],"photos":["Foto"],"images":["Immagini"],"None":["Nessuna"],"Media File":["File media"],"Attachment Page":["Pagina dell’allegato"],"Link to ":["Collegamento a"],"Crop Images":["Ritaglia immagini"],"Gallery settings":["Impostazioni galleria"],"Gallery":["Galleria"],"Classic":["Editor classico"],"video":["video"],"audio":["audio"],"music":["musica"],"image":["immagine"],"blog":["blog"],"post":["articolo"],"Embedded content from %s":["Contenuto incorporato da %s"],"Enter URL to embed here…":["Inserisci qui l'URL da incorporare..."],"%s URL":["%s URL"],"Embedding…":["Incorporamento in corso…"],"Write title…":["Scrivi il titolo..."],"Fixed Background":["Sfondo fisso"],"Edit image":["Modifica immagine"],"Columns":["Colonne"],"Experiments":["Esperimenti"],"Code":["Codice"],"Write code…":["Scrivi codice..."],"Categories":["Categorie"],"Show Hierarchy":["Visualizza la gerarchia"],"Show post counts":["Mostra conteggio articoli"],"Categories settings":["Impostazioni delle categorie"],"Add text…":["Aggiungi testo..."],"Button":["Pulsante"],"Apply":["Applica"],"Text Color":["Colore del testo"],"Background Color":["Colore di sfondo"],"Block has been deleted or is unavailable.":["Il blocco è stato eliminato o non è disponibile."],"Reusable blocks":["Blocchi riutilizzabili"],"Cancel":["Annulla"],"Edit":["Modifica"],"Write caption…":["Scrivi una didascalia..."],"Use URL":["Usa l'URL"],"Audio":["Audio"],"Upload":["Carica"],"Additional CSS Class(es)":["Classe/i CSS aggiuntiva/e"],"HTML Anchor":["Ancora HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Questa combinazione di colori può essere difficile da leggere per le persone. Prova a utilizzare un colore di sfondo più chiaro e / o un colore di testo più scuro."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Questa combinazione di colori può essere difficile da leggere per le persone. Prova a utilizzare un colore di sfondo più scuro e / o un colore di testo più brillante."],"Clear":["Pulisci"],"Custom color picker":["Selettore colore personalizzato"],"Color: %s":["Colore: %s"],"Full width":["Larghezza piena"],"Wide width":["Larghezza ampia"],"Widgets":["Widget"],"Formatting":["Formattazione"],"Common blocks":["Blocchi comuni"],"Align right":["Allinea a destra"],"Align center":["Allinea al centro"],"Align left":["Allinea a sinistra"],"Printing since 1440. This is the development plugin for the new block editor in core.":["La stampa dal 1440. Questo è il plugin di sviluppo per il nuovo editor a blocchi del core."],"Add title":["Aggiungi titolo"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["La modalità di sviluppo Gutenberg richiede la creazione di file. Esegui npm install
per installare le dipendenze, npm run build
per creare i file e npm run dev
per creare i file e visualizzare i cambiamenti. Leggi il file contributo per maggiori informazioni."],"Author":["Autore"],"Slug":["Slug"],"Discussion":["Discussione"],"Custom fields":["Campi personalizzati"],"Excerpt":["Riassunto"],"Publish":["Pubblica"],"Metadata":["Metadati"],"Save":["Salva"],"Documentation":["Documentazione"],"Select Category":["Seleziona una categoria"],"(Untitled)":["(senza titolo)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg richiede WordPress %s o successivo per funzionare correttamente. Aggiorna WordPress prima di attivare Gutenberg."],"Gutenberg Team":["Team Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s fa"],"Block style name must be a string.":["I nomi degli stili dei blocchi devono essere stringhe."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ja.json b/bundle/android/raw/i18ncache_data_ja.json
new file mode 100644
index 0000000000..96cc879bac
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ja.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":["%sブロック"],"%1$s Block. %2$s":["%1$sブロック。%2$s"],"%s Block. Column %d":["%sブロック。%d行目"],"%1$s Block. Column %2$d. %3$s":["%1$sブロック。%2$d列目。%3$s"],"%s Block. Row %d":["%sブロック。%d列目"],"%1$s Block. Row %2$d. %3$s":["%1$sブロック。%2$d行目。%3$s"],"Post Excerpt":["投稿の抜粋"],"Post Date":["投稿日"],"No Date":["日付なし"],"Post Author":["投稿者"],"Choose":["選択"],"twentytwenty":["twentytwenty"],"Theme":["テーマ"],"Choose a template part by slug and theme, or create a new one.":["スラッグやテーマでテンプレートパーツを選択するか、新しいパーツを作成してください。"],"Error adding template.":["テンプレートの追加エラー。"],"Footer label":["フッターラベル"],"Header label":["ヘッダーラベル"],"Unsupported":["非サポート"],"The description will be displayed in the menu if the current theme supports it.":["現在のテーマが対応している場合、説明がメニューに表示されます。"],"Level %1$s. %2$s":["レベル %1$s。%2$s"],"Level %s. Empty.":["レベル %s。空。"],"Empty":["空"],"Search results for %s":["「%s」の検索結果"],"Recently updated":["最近更新"],"Multiple selected blocks":["複数の選択ブロック"],"By %s":[],"Inspector":["インスペクター"],"Site editor advanced settings.":["サイトエディターの詳細設定。"],"(beta)":["(ベータ)"],"Site Editor":["サイトエディター"],"Site editor top bar.":["サイトエディターのトップバー。"],"Briefly describe the link to help screen reader users.":["スクリーンリーダーのユーザーを支援するため、リンクを簡潔に説明しましょう。"],"Link Label":["リンクラベル"],"%s label":[],"poem":[],"Matt Mullenweg":["マット・マレンウェッグ"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":["投稿全文"],"Show:":["表示:"],"Create from all top-level pages":["すべてのトップレベルのページから生成する"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["住みにくさが高じると、安い所へ引き越したくなる。"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["山路を登りながら、こう考えた。智に働けば角が立つ。情に棹させば流される。意地を通せば窮屈だ。とかくに人の世は住みにくい。"],"Prompt visitors to take action with a group of button-style links.":["ボタンスタイルのリンクで、訪問者に行動を喚起しましょう。"],"Buttons":[],"Background":["背景"],"Background & Text Color":["背景とテキストの色"],"Images Size":["画像サイズ"],"Remove multiple selected blocks.":["選択された複数のブロックを削除する。"],"(%s: gradient %s)":["(%s: %s のグラデーション)"],"(%s: color %s)":["(%s: 色 %s)"],"(Gradient: %s)":["(グラデーション: %s)"],"(Color: %s)":["(色: %s)"],"Here's a detailed guide.":["こちらが詳細ガイドです。"],"New to the Block Editor? Want to learn more about using it? ":["ブロックエディターを使うのは初めてで、使い方を詳しく知りたい場合。"],"Learn how to use the Block Editor":["ブロックエディターの使い方を学ぶ"],"Help":["ヘルプ"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%sブロックのアイコン"],"Submit for Review…":["レビュー待ちとして送信…"],"Update…":["更新…"],"Select items to save.":["保存する項目を選択してください。"],"What do you want to save?":["何を保存しますか。"],"Untitled":["無題"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":["サイトエディター (ベータ)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// 「ブロック」とは、マークアップのまとまりを\n// 説明するのに使っている抽象的な用語です。\n// このまとまりを一緒に組み立てると、ページの\n// コンテンツまたはレイアウトを形作れます。\nregisterBlockType( name, settings );"],"You are probably offline.":["現在オフラインのようです。"],"Justify items right":["右揃え"],"Justify items center":["中央揃え"],"Justify items left":["左揃え"],"Change items justification":["揃え位置の変更"],"The media file has been replaced":["メディアファイルを置き換えました。"],"Replace":["置換"],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":["プリセットサイズ"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":["メディアライブラリを開く"],"Next":["次"],"Previous":["前"],"Finish":["完了"],"Page %1$d of %2$d":["%1$dページ目 (%2$dページ中)"],"Guide controls":["ガイドコントロール"],"Remove Control Point":["コントロールポイントを削除"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":["各ブロックをカスタマイズ"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":["メディアを追加"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":["ブロックライブラリをもっと知る"],"Welcome Guide":["ウェルカムガイド"],"Enable page templates":["ページテンプレートを有効化"],"Page Templates":["ページテンプレート"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":["ブロックエディターにようこそ"],"Get started":["始めてみよう"],"inserter":["挿入ツール"],"Post Title":["投稿タイトル"],"Add nofollow to link":["リンクに nofollow を追加"],"Add submenu":["サブメニューを追加"],"Add link…":["リンクを追加…"],"Dark":["ダーク"],"Light":["ライト"],"recording":[],"podcast":["ポッドキャスト"],"sound":[],"Array of instance changes":[],"Current widget instance":["現在のウィジェットインスタンス"],"Template parts to include in your templates.":["テンプレートに含めるテンプレートパーツ。"],"Template parts list":["テンプレートパート一覧"],"Template parts list navigation":["テンプレートパーツ一覧のナビゲーション"],"Filter template parts list":[],"Uploaded to this template part":["このテンプレートパーツにアップロードされました"],"Insert into template part":["テンプレートパーツに挿入"],"Template part archives":["テンプレートパーツアーカイブ"],"No template parts found in Trash.":["ゴミ箱にテンプレートパーツが見つかりません。"],"No template parts found.":["テンプレートパーツが見つかりません。"],"Parent Template Part:":["親テンプレートパーツ:"],"Search Template Parts":["テンプレートパーツを検索"],"All Template Parts":["テンプレートパーツ一覧"],"View Template Part":["テンプレートパーツを表示"],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":["新規テンプレートパーツを追加"],"Template Part\u0004Add New":["新規追加"],"Admin Menu text\u0004Template Parts":["テンプレートパーツ"],"Template Part":["テンプレートパーツ"],"Template Parts":["テンプレートパーツ"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":["ナビゲーション"],"Loading Navigation…":["ナビゲーションを読み込み中…"],"Navigation Structure":["ナビゲーション構造"],"Create empty":["空の状態で作成"],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":["ナビゲーションリンク"],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":["ページでのこの画像の役割を説明してください。"],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["すべての画面サイズで同じ値を使用するか、画面サイズごとに個別の値を使用するかを切り替えます。"],"Use the same %s on all screensizes.":["すべての画面サイズで同じ%sを使用する。"],"Large screens":["大サイズの画面"],"Medium screens":["中サイズの画面"],"Small screens":["小サイズの画面"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":["現在選択中"],"Search or type url":["検索または URL を入力"],"Press ENTER to add this link":["このリンクを追加するには Enter キーを押してください"],"Currently selected link settings":["選択中のリンクの設定"],"Generic label for block inserter button\u0004Add block":["ブロックの追加"],"directly add the only allowed block\u0004Add %s":["%sの追加"],"%s block added":["%sブロックが追加されました"],"Move %s":["%sへ移動"],"Extra Large":["特大"],"Block breadcrumb":["パンくずリストブロック"],"Editor footer":["エディターのフッター"],"Site Title":["サイトのタイトル"],"Open Colors Selector":["カラーセレクターを開く"],"Templates list":["テンプレート一覧"],"Templates list navigation":["テンプレート一覧のナビゲーション"],"Filter templates list":["テンプレート一覧を絞り込み"],"Uploaded to this template":["このテンプレートにアップロードされました"],"Insert into template":["テンプレートに挿入"],"Template archives":["テンプレートアーカイブ"],"No templates found in Trash.":["ゴミ箱にテンプレートが見つかりません。"],"No templates found.":["テンプレートが見つかりません。"],"Parent Template:":["親テンプレート:"],"Search Templates":["テンプレートを検索"],"All Templates":["テンプレート一覧"],"View Template":["テンプレートを表示"],"Edit Template":["テンプレートを編集"],"New Template":["新規テンプレート"],"Add New Template":["新規テンプレートを追加"],"Template\u0004Add New":["新規追加"],"Admin Menu text\u0004Templates":["テンプレート"],"Template":["テンプレート"],"No matching template found":["一致するテンプレートが見つかりません"],"Gradient: %s":["グラデーション: %s"],"Gradient code: %s":["グラデーションコード: %s"],"All content copied.":["すべてのコンテンツをコピーしました。"],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["メディアのアップロードに失敗しました。 写真または大きな画像の場合は、縮小してもう一度お試しください。"],"Gradient":["グラデーション"],"Gradient Presets":["グラデーションプリセット"],"No Preview Available.":["プレビューが利用できません。"],"Midnight":["ミッドナイト"],"Electric grass":["エレクトリックグラス"],"Pale ocean":["淡い海"],"Luminous dusk":["明るい夕暮れ"],"Blush bordeaux":["赤みのあるボルドー"],"Blush light purple":["赤みのある明るいパープル"],"Cool to warm spectrum":["寒色から暖色へのスペクトラム"],"Very light gray to cyan bluish gray":["非常に薄いグレーからシアンブルー系グレー"],"Luminous vivid orange to vivid red":["明るく鮮やかなオレンジ色から鮮やかな赤"],"Luminous vivid amber to luminous vivid orange":["明るく鮮やかな琥珀色から明るく鮮やかなオレンジ色"],"Light green cyan to vivid green cyan":["明るいグリーンシアンから鮮やかなグリーンシアン"],"Vivid cyan blue to vivid purple":["鮮やかなシアンブルーから鮮やかなパープル"],"https://wordpress.org/support/article/excerpt/":["https://ja.wordpress.org/support/article/excerpt/"],"December 6, 2018":["2018年12月6日"],"February 21, 2019":["2019年2月21日"],"May 7, 2019":["2019年5月7日"],"Release Date":["リリース日"],"Jazz Musician":["ジャズ音楽家"],"Version":["バージョン"],"Six.":["6."],"Five.":["5."],"Four.":["4."],"Three.":["3."],"Two.":["2."],"One.":["1."],"One of the hardest things to do in technology is disrupt yourself.":["テクノロジーにおいて最も難しいことのひとつは、自身を破壊することだ。"],"— Kobayashi Issa (一茶)":["— 小林一茶"],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":["ブロックの世界へようこそ。"],"Snow Patrol":[],"Dimensions":["サイズ"],"Minimum height in pixels":["ピクセル単位での最小の高さ"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["人の世を作ったものは神でもなければ鬼でもない。やはり向う三軒両隣にちらちらするただの人である。"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["どこへ越しても住みにくいと悟った時、詩が生れて、画が出来る。"],"Call to Action":["行動喚起"],"In quoting others, we cite ourselves.":["他者の引用は、我々自身への引用である。"],"cite":["引用"],"Mont Blanc appears—still, snowy, and serene.":["モンブランが現れます。静粛で雪に覆われた、穏やかな山が。"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["それほど昔のことではありません。その名は思い出せませんが、ラ・マンチャ地方のある村に、槍かけ台に槍をかけ、古い盾を持ち、痩せた馬と足の速い猟犬と住む型どおりの騎士が住んでいました。"],"Block navigation":["ブロックナビゲーション"],"Full Site Editing":["サイト全体の編集"],"Templates to include in your theme.":["テーマに含めるテンプレート。"],"Templates":["テンプレート"],"Inserter help panel":["挿入ツールヘルプパネル"],"Pre-publish checks":["公開前チェック"],"Please contact your site administrator to install new blocks.":["新しいブロックをインストールするには、サイト管理者に連絡してください。"],"No blocks found in your library. Please contact your site administrator to install new blocks.":["ライブラリにブロックが見つかりません。サイト管理者に連絡し、新しいブロックをインストールしてください。"],"No blocks found in your library.":["ライブラリにブロックが見つかりません。"],"No blocks found in your library. These blocks can be downloaded and installed:":["ライブラリにブロックが見つかりません。ブロックは以下からダウンロードとインストールできます:"],"No blocks found in your library. We did find %d block available for download.":["ライブラリにブロックが見つかりません。%d件のブロックがダウンロード可能です。"],"Block previews can’t load.":["ブロックプレビューが読み込めません。"],"Retry":["再試行"],"Block previews can't install.":["ブロックプレビューがインストールできません。"],"Updated %s":["%s を更新しました"],"%d active installation":["%d個の有効なインストール"],"This author has %d block, with an average rating of %d.":["この作者はブロック%d個を登録していて、評価平均は%dです。"],"Authored by %s":["作者: %s"],"%d total rating":["合計%d件の評価"],"%s out of 5 stars":["5つ星中%sつ星"],"Enter Address":["アドレスを入力"],"Pill Shape":["カプセル形"],"Logos Only":["ロゴのみ"],"Create a block of links to your social media or external sites":["ソーシャルメディアまたは外部サイトへのリンクのブロックを作成します"],"Social links":["ソーシャルリンク"],"Open block navigator":["ブロックナビゲーターを開く"],"Attachment page":["添付ファイルのページ"],"Fill":["塗りつぶし"],"Link rel":["リンク rel 属性"],"Border Radius":["角丸半径"],"Write gallery caption…":["ギャラリーのキャプションを入力…"],"Content blocks":["コンテンツブロック"],"Restore the backup":["バックアップから復元"],"The backup of this post in your browser is different from the version below.":["ブラウザー内のこの投稿の下書きが以下のバージョンと異なっているようです。"],"Enable block directory search":["ブロックディレクトリ検索を有効化"],"Block Directory":["ブロックディレクトリ"],"Unable to connect to the filesystem. Please confirm your credentials.":["ファイルシステムに接続できませんでした。アクセス情報を確認してください。"],"Sorry, you are not allowed to install blocks.":["ブロックをインストールする権限がありません。"],"%1$d block is disabled.":["%1$d個のブロックが無効になっています。"],"Reverse List Numbering":["リストの数字を逆順にする"],"Start Value":["初期値"],"Ordered list settings":[],"Clear Media":["メディアをクリア"],"Default Style":["デフォルトスタイル"],"Not set":["未設定"],"While writing, you can press / to quickly insert new blocks.":["執筆中に / を押すと、新しいブロックを素早く挿入できます。"],"Browse through the library to learn more about what each block does.":["ライブラリでは、それぞれのブロックで何ができるかさらに詳しく学べます。"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["テキスト、見出し、画像、リスト、動画、表など、あらゆる種類のコンテンツに使用できるブロックがあります。"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["ブロックの世界へようこそ。ブロックは、このエディター内にあるすべてのコンテンツのベースとなります。"],"Version of the content block format used by the object.":["オブジェクトが使用するコンテンツブロック形式のバージョン。"],"HTML content for the object, transformed for display.":["表示用に整形済みの、オブジェクトの HTML コンテンツ。"],"Content for the object, as it exists in the database.":["データベースに存在する状態のオブジェクトのコンテンツ。"],"The content for the object.":["オブジェクトのコンテンツ。"],"Change column alignment":["カラムの配置を変更"],"Align Column Right":["カラムを右寄せ"],"Align Column Center":["カラムを中央配置"],"Align Column Left":["カラムを左寄せ"],"Color":["色"],"Vivid purple":["鮮やかなパープル"],"Disable & Reload":["無効化してリロード"],"Enable & Reload":["有効化してリロード"],"A page reload is required for this change. Make sure your content is saved before reloading.":["この変更にはページの再読み込みが必要です。再読み込みする前に必ずコンテンツを保存してください。"],"Display these keyboard shortcuts.":["これらのキーボードショートカットを表示する。"],"Experiments Settings":["実験的設定"],"Enable Widgets screen and Legacy Widgets block":["ウィジェット画面と旧ウィジェットブロックを有効化"],"Experimental settings":["実験的な設定"],"Block name name must be a string.":["ブロック名は文字列で指定する必要があります。"],"Custom":["カスタム"],"Draft":["下書き"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["ブロック \"%1$s\" は、スタイル名 \"%2$s\" を含んでいません。"],"Learn more about anchors":["アンカーの詳細"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["この見出しのみに「アンカー」と呼ばれる固有の Web アドレスを作成するには、1〜2単語を空白スペースなしで入力します。そうすると、固定ページのこのセクションに直接リンクできるようになります。"],"Widget Blocks (Experimental)":["ウィジェットブロック (テスト機能)"],"Upload a video file, pick one from your media library, or add one with a URL.":["動画ファイルをアップロードするか、メディアライブラリから選択、または URL を追加してください。"],"Upload an image file, pick one from your media library, or add one with a URL.":["画像ファイルをアップロードするか、メディアライブラリから選択、または URL を追加してください。"],"Upload an audio file, pick one from your media library, or add one with a URL.":["音声ファイルをアップロードするか、メディアライブラリから選択、または URL を追加してください。"],"Upload a media file or pick one from your media library.":["メディアファイルをアップロードするか、メディアライブラリから選択してください。"],"Skip":["スキップ"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":["固定ページやリンク、その他の項目をナビゲーションメニューに追加します。"],"What's this?":["これは何 ?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["検索エンジンにこのリンクをフォローさせないようにします。"],"Provide more context about where the link goes.":["リンク先について、さらなるコンテキストを提供します。"],"Title Attribute":["タイトル属性"],"SEO settings":[],"Description":["概要"],"Open in new tab":["新しいタブで開く"],"links":["リンク"],"navigation":["ナビゲーション"],"menu":["メニュー"],"Add a navigation block to your site.":["サイトにナビゲーションブロックを追加します。"],"Upload a file or pick one from your media library.":["ファイルをアップロード、またはメディアライブラリから選択して下さい。"],"Learn more about embeds":["埋め込みの詳細"],"https://wordpress.org/support/article/embeds/":["https://wpdocs.osdn.jp/oEmbed"],"Paste a link to the content you want to display on your site.":["サイトに表示したいコンテンツのリンクを貼り付けます。"],"Upload an image or video file, or pick one from your media library.":["画像や動画をアップロードするか、メディアライブラリから選択して下さい。"],"Three columns; wide center column":["3カラム: 中央を広く"],"Three columns; equal split":["3カラム: 均等割"],"Two columns; two-thirds, one-third split":["2カラム: 2/3、1/3に分割"],"Two columns; one-third, two-thirds split":["2カラム: 1/3、2/3に分割"],"Two columns; equal split":["2カラム: 均等割"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["サイトに%sがないため、現在ここに表示するものはありません。"],"More tools & options":["ツールと設定をさらに表示"],"Create Table":["表を作成"],"Insert a table for sharing data.":["表形式のデータを挿入します。"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["グループ解除"],"verb\u0004Group":["グループ化"],"Separate with commas or the Enter key.":["半角コンマまたはエンターキーで区切ります。"],"Separate with commas, spaces, or the Enter key.":["半角コンマ、スペースまたはエンターキーで区切ります。"],"Separate multiple classes with spaces.":["複数クラスを半角スペースで区切ります。"],"Move image forward":["画像を前に移動"],"Move image backward":["画像を後ろに移動"],"Sorry, you are not allowed to edit sidebars.":["サイドバーを編集する権限がありません。"],"Sorry, you are not allowed to read sidebars.":["サイドバーを読み込む権限がありません。"],"The sidebar’s ID.":["サイドバーの ID。"],"Displays a set of blocks":["ブロックのセットを表示します。"],"Blocks Area":["ブロックエリア"],"Block rendered as empty.":["ブロックを空白としてレンダリングします。"],"Inline Code":["インラインコード"],"Note: Autoplaying videos may cause usability issues for some visitors.":["注: 動画の自動再生は、ビジターによってはユーザビリティの問題を引き起こす可能性があります。"],"Footer section":["フッターセクション"],"Header section":["ヘッダーセクション"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["投稿コンテンツ"],"Post content settings":[],"Percentage width":["パーセント指定幅"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["注: 音声の自動再生は、ビジターによってはユーザビリティの問題を引き起こす可能性があります。"],"Block area updated.":["ブロックエリアを更新しました。"],"Block area scheduled.":["ブロックエリアを予約投稿しました。"],"Block area published.":["ブロックエリアを公開しました。"],"Block areas list":["ブロックエリアリスト"],"Block areas list navigation":["ブロックエリアリストナビゲーション"],"Filter block areas list":["ブロックエリアリストを絞り込む"],"No block area found.":["ブロックエリアが見つかりません。"],"Search Block Areas":["ブロックエリアを検索"],"All Block Areas":["すべてのブロックエリア"],"View Block Area":["ブロックエリアを表示"],"Edit Block Area":["ブロックエリアを編集"],"New Block Area":["新規ブロックエリア"],"Add New Block Area":["新しいブロックエリアを追加"],"admin menu\u0004Block Areas":["ブロックエリア"],"post type singular name\u0004Block Area (Experimental)":["ブロックエリア (テスト機能)"],"post type general name\u0004Block Area (Experimental)":["ブロックエリア (テスト機能)"],"Experimental custom post type that will store block areas referenced by themes.":["テーマが参照可能なブロックエリアを格納する、テスト中のカスタム投稿タイプです。"],"Widgets screen content":["ウィジェット画面コンテンツ"],"header":["ヘッダー"],"Widgets advanced settings":["ウィジェットの高度な設定"],"(experimental)":["(テスト機能)"],"Block Areas":["ブロックエリア"],"Widgets screen top bar":["ウィジェット画面の上部バー"],"This color combination may be hard for people to read.":["この色の組み合わせは、読みづらい可能性があります。"],"There is no poster image currently selected":["現在選択中のポスター画像はありません"],"The current poster image url is %s":["現在のポスター画像 URL は %s です"],"section":["セクション"],"row":["行"],"wrapper":["ラッパー"],"container":["コンテナー"],"A block that groups other blocks.":["他のブロックをグループ化したブロック。"],"Group":["グループ"],"Crop image to fill entire column":["カラム全体を塗りつぶすように画像を切り抜く"],"Play inline":["インラインで再生"],"Leave empty if the image is purely decorative.":["画像が単なる装飾の場合、空欄にします。"],"Describe the purpose of the image":["画像の目的を説明"],"Add a block":["ブロックを追加"],"Block vertical alignment setting label\u0004Change vertical alignment":["垂直配置を変更"],"Block vertical alignment setting\u0004Vertically Align Bottom":["縦位置を下に"],"Block vertical alignment setting\u0004Vertically Align Middle":["縦位置を中央に"],"Replace Image":["画像を置換"],"Block vertical alignment setting\u0004Vertically Align Top":["縦位置を上に"],"Display a legacy widget.":["従来のウィジェットを表示します。"],"Legacy Widget (Experimental)":["従来のウィジェット (テスト機能)"],"Change widget":["ウィジェットを変更"],"Legacy Widget":["従来のウィジェット"],"You don't have permissions to use widgets on this site.":["サイトでウィジェットを使用する権限がありません。"],"Select a legacy widget to display:":["従来のウィジェットを選択して表示:"],"There are no widgets available.":["利用可能なウィジェットがありません。"],"Change block type or style":["ブロックタイプまたはスタイルを変更"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["よりリッチなテキスト制御"],"Search Terms":["検索ワード"],"Exit the Editor":["エディターを終了"],"Block Manager":["ブロックマネージャー"],"Class name of the widget.":["ウィジェットのクラス名。"],"Sorry, you are not allowed to access widgets on this site.":["サイトのウィジェットにアクセスする権限がありません。"],"Widgets (beta)":["ウィジェット (ベータ)"],"link":["リンク"],"Embedded content from %s can't be previewed in the editor.":["%s からの埋め込みコンテンツはエディター内でプレビューできません。"],"Custom Color":["カスタムカラー"],"Prompt visitors to take action with a button-style link.":["ボタンスタイルのリンクで、訪問者に行動を喚起しましょう。"],"Stick to the top of the blog":["ブログのトップに固定"],"Read about permalinks":["パーマリンクの詳細"],"The last part of the URL.":["URL の最後の部分。"],"URL Slug":["URL スラッグ"],"A cloud of your most used tags.":["よく使用されているタグの羅列。"],"Tag Cloud":["タグクラウド"],"Taxonomy":["タクソノミー"],"Tag Cloud settings":[],"- Select -":["- 選択 -"],"Default":["デフォルト"],"find":["見つける"],"Help visitors find your content.":["訪問者がコンテンツを見つけられるよう手助けしましょう。"],"Search":["検索"],"Add button text…":["ボタンのテキストを追加..."],"Button text":["ボタンのテキスト"],"Optional placeholder…":["任意のプレースホルダー…"],"Optional placeholder text":["任意のプレースホルダーテキスト"],"Add label…":["ラベルを追加…"],"Label text":["ラベルテキスト"],"image %1$d of %2$d in gallery":["ギャラリー内の画像%1$d件中%2$d件"],"archive":["アーカイブ"],"posts":["投稿"],"A calendar of your site’s posts.":["サイトの投稿カレンダー。"],"Calendar":["カレンダー"],"by":["by"],"An error has occurred, which probably means the feed is down. Try again later.":["エラーが発生しました。フィードの配信が停止している可能性があります。再度お試しください。"],"RSS Error:":["RSS エラー:"],"block style\u0004Default":["デフォルト"],"Fullscreen mode deactivated":["フルスクリーンモードを停止しました"],"Fullscreen mode activated":["フルスクリーンモードを有効化しました"],"Spotlight mode deactivated":["スポットライトモードを停止しました"],"Spotlight mode activated":["スポットライトモードを有効化しました"],"Top toolbar deactivated":["トップツールバーを停止しました"],"Top toolbar activated":["トップツールバーを有効化しました"],"Back":["戻る"],"Feature activated":["機能を有効化しました"],"Feature deactivated":["機能を停止しました"],"Vertical Pos.":["縦位置"],"Horizontal Pos.":["横位置"],"feed":["フィード"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["RSS または Atom フィードからの投稿を表示します。"],"RSS":["RSS"],"Max number of words in excerpt":["抜粋内の最大単語数"],"Display excerpt":["抜粋を表示"],"Display date":["日付を表示"],"Display author":["投稿者を表示"],"RSS settings":[],"Edit RSS URL":["RSS の URL を編集"],"Content before this block will be shown in the excerpt on your archives page.":["このブロックより前のコンテンツを、アーカイブページの抜粋に表示します。"],"Hide the excerpt on the full content page":["コンテンツ全文ページで抜粋を非表示"],"The excerpt is visible.":["抜粋を表示中です。"],"The excerpt is hidden.":["抜粋は表示されません。"],"Sorry, this content could not be embedded.":["このコンテンツを埋め込めませんでした。"],"Embed Amazon Kindle content.":["Amazon Kindle のコンテンツを埋め込みます。"],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (旧 Polldaddy) コンテンツを埋め込みます。"],"Focal Point Picker":["焦点ピッカー"],"Underline":["下線"],"Attempt Block Recovery":["ブロックのリカバリーを試行"],"Word count type. Do not translate!\u0004words":["characters_including_spaces"],"content placeholder\u0004Content…":["コンテンツ…"],"button label\u0004Convert to link":["リンクへ変換"],"button label\u0004Try again":["再試行"],"Editor tips":["エディターのヒント"],"Block (selected)":["ブロック (選択済み)"],"Document (selected)":["文書 (選択済み)"],"%d word":["%d単語"],"Top toolbar":["トップツールバー"],"Link Rel":["リンク rel 属性"],"Link CSS Class":["リンク CSS クラス"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["コンテンツを作成し、自分や他の投稿者がサイトで再利用できるよう保存しましょう。ブロックを更新すると、再利用しているすべての場所で更新が適用されます。 "],"To edit the featured image, you need permission to upload media.":["アイキャッチ画像を編集するには、メディアのアップロード権限が必要です。"],"To edit this block, you need permission to upload media.":["このブロックを編集するには、メディアのアップロード権限が必要です。"],"(selected block)":["(選択済みブロック)"],"Block tools":["ブロックのツールバー"],"Permalink":["パーマリンク"],"This image has an empty alt attribute":["この画像には alt 属性が指定されていません"],"This image has an empty alt attribute; its file name is %s":["画像に alt 属性が指定されていません。ファイル名: %s"],"Block area reverted to draft.":["ブロックエリアを下書きに戻しました。 "],"Block area published privately.":["ブロックエリアを限定公開しました。 "],"No block areas found in Trash.":["ゴミ箱内にブロックエリアはありません。 "],"Block\u0004Add New":["新規追加"],"add new on admin bar\u0004Block Area":["ブロックエリア"],"Link inserted.":["リンクを挿入しました。"],"Warning: the link has been inserted but may have errors. Please test it.":["警告: リンクを挿入しましたが、エラーがある可能性があります。テストしてください。"],"%s block selected.":["%s個のブロックを選択しました。"],"Thumbnail":["サムネイル"],"Full Size":["フルサイズ"],"Link selected.":["リンクを選択しました。"],"Start writing with text or HTML":["テキストまたは HTML を入力して開始"],"Type text or HTML":["テキストまたは HTML を入力"],"Block icon":["ブロックアイコン"],"Align text right":["テキスト右寄せ"],"Align text center":["テキスト中央寄せ"],"Align text left":["テキスト左寄せ"],"Start writing or type / to choose a block":["文章を入力、または / でブロックを選択"],"Empty block; start writing or type forward slash to choose a block":["空のブロックです - 文章を入力、または / でブロックを選択 "],"Paragraph block":["段落ブロック"],"Page Break":["ページ区切り"],"Stack on mobile":["モバイルでは縦に並べる"],"Annotation":["注釈"],"Drag images, upload new ones or select files from your library.":["画像をドラッグして新しくアップロードするか、ライブラリからファイルを選択してください。 "],"blocks\u0004Most used":["よく使うもの"],"imperative verb\u0004Resolve":["解決"],"font size name\u0004Huge":["特大"],"font size name\u0004Large":["大"],"font size name\u0004Medium":["中"],"font size name\u0004Small":["小"],"font size name\u0004Normal":["標準"],"keyboard button\u0004Enter":["入力"],"button label\u0004Import":["インポート"],"button label\u0004Download":["ダウンロード"],"button label\u0004Embed":["埋め込み"],"block title\u0004Embed":["埋め込み"],"block title\u0004Classic":["クラシック"],"block style\u0004Large":["大"],"block style\u0004Rounded":["角丸"],"%s (opens in a new tab)":["%s (新しいタブで開く)"],"Link edited.":["リンクを編集しました。"],"Link removed.":["リンクを削除しました。"],"media":["メディア"],"Double-check your settings before publishing.":["公開する前に、設定を再確認しましょう。"],"Generating preview…":["プレビューを生成中..."],"Edit or update the image":["画像の編集または更新"],"Media":["メディア"],"Navigate to the nearest toolbar.":["一番近くにあるツールバーに移動する。"],"Document tools":["文書ツール"],"Document and block tools":["文書・ブロックツール"],"Embed a video from your media library or upload a new one.":["動画をメディアライブラリから、または新しくアップロードして埋め込みます。"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["詩を挿入します。特別な余白形式を使ったり、歌詞を引用したりできます。"],"Add white space between blocks and customize its height.":["ブロックの間に、高さをカスタマイズ可能な余白を追加します。"],"Insert additional custom elements with a WordPress shortcode.":["WordPress ショートコードで追加のカスタム要素を挿入します。"],"Create a break between ideas or sections with a horizontal separator.":["水平の区切りを使って、アイデアやセクションの間で改行します。"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["引用テキストを視覚的に強調します。「他者の引用は、我々自身への引用である」—フリオ・コルタサル"],"Give special visual emphasis to a quote from your text.":["文章からの引用に特別な視覚的強調を与えます。"],"Start with the building block of all narrative.":["ブロックを使って、いろいろな物語を組み立ててください。"],"Separate your content into a multi-page experience.":["コンテンツを複数のページに分けて表示します。"],"Set media and words side-by-side for a richer layout.":["画像と文章を横並びのリッチなレイアウトにします。"],"Media & Text settings":[],"Create a bulleted or numbered list.":["番号なし、または番号付きのリストを作成します。"],"Display a list of your most recent comments.":["最新のコメントを表示します。"],"Insert an image to make a visual statement.":["画像を挿入し、視覚に訴えます。"],"Add custom HTML code and preview it as you edit.":["カスタム HTML コードを追加します。編集しながらプレビューが可能です。"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["新しいセクションを紹介しコンテンツを整理することで、ビジター (および検索エンジン) のコンテンツ構造理解の手助けをしましょう。"],"Display multiple images in a rich gallery.":["複数の画像をリッチなギャラリーで表示します。"],"Add a link to a downloadable file.":["ファイルをダウンロードするリンクを追加します。"],"Embed videos, images, tweets, audio, and other content from external sources.":["動画、画像、ツイート、音声、およびその他のコンテンツを外部ソースから埋め込みます。"],"Resize for smaller devices":["小さい端末でリサイズ"],"This embed may not preserve its aspect ratio when the browser is resized.":["この埋め込みは、ブラウザのサイズ変更時にアスペクト比を保持しない場合があります。"],"This embed will preserve its aspect ratio when the browser is resized.":["この埋め込みは、ブラウザのサイズ変更時にアスペクト比を保持します。"],"Embed an Animoto video.":["Animoto 動画を埋め込みます。"],"Embed a Vimeo video.":["Vimeo 動画を埋め込みます。"],"Embed Flickr content.":["Flickr コンテンツを埋め込みます。"],"Embed Spotify content.":["Spotify コンテンツを埋め込みます。"],"Embed SoundCloud content.":["SoundCloud コンテンツを埋め込みます。"],"Embed a WordPress post.":["WordPress 投稿を埋め込みます。"],"Embed an Instagram post.":["Instagram 投稿を埋め込みます。"],"Embed a Facebook post.":["Facebook 投稿を埋め込みます。"],"Embed a WordPress.tv video.":["WordPress.tv 動画を埋め込みます。"],"Embed a VideoPress video.":["VideoPress 動画を埋め込みます。"],"Embed a Tumblr post.":["Tumblr 投稿を埋め込みます。"],"Embed a TED video.":["TED 動画を埋め込みます。"],"Embed Speaker Deck content.":["Speaker Deck スライドを埋め込みます。"],"Embed a YouTube video.":["YouTube 動画を埋め込みます。"],"Embed SmugMug content.":["SmugMug コンテンツを埋め込みます。"],"Embed Slideshare content.":["Slideshare スライドを埋め込みます。"],"Embed Scribd content.":["Scribd コンテンツを埋め込みます。"],"Embed Screencast content.":["Screencast コンテンツを埋め込みます。"],"Embed ReverbNation content.":["ReverbNation コンテンツを埋め込みます。"],"Embed a Reddit thread.":["Reddit スレッドを埋め込みます。"],"Embed Polldaddy content.":["Polldaddy コンテンツを埋め込みます。"],"Embed Mixcloud content.":["Mixcloud コンテンツを埋め込みます。"],"Embed a tweet.":["ツイートを埋め込みます。"],"Embed Meetup.com content.":["Meetup.com コンテンツを埋め込みます。"],"Embed Kickstarter content.":["Kickstarter コンテンツを埋め込みます。"],"Embed Issuu content.":["Issuu コンテンツを埋め込みます。"],"Embed Imgur content.":["Imgur コンテンツを埋め込みます。"],"Embed Hulu content.":["Hulu コンテンツを埋め込みます。"],"Embed a Dailymotion video.":["Dailymotion 動画を埋め込みます。"],"Embed CollegeHumor content.":["CollegeHumor コンテンツを埋め込みます。"],"Embed Cloudup content.":["Cloudup コンテンツを埋め込みます。"],"Add an image or video with a text overlay — great for headers.":["テキストオーバーレイを含む画像または動画を追加します。ヘッダーに最適です。"],"Display code snippets that respect your spacing and tabs.":["余白やタグを考慮したコードスニペットを表示します。"],"Use the classic WordPress editor.":["WordPress クラシックエディターを使用します。"],"Display a list of all categories.":["すべてのカテゴリーをリスト表示します。"],"Embed a simple audio player.":["シンプルな音声プレイヤーを埋め込みます。"],"noun\u0004View":["表示"],"editor button\u0004Left to right":["左から右"],"Save as Pending":["レビュー待ちとして保存"],"%s address":["%sのアドレス"],"Paste or type URL":["URL を入力または貼り付け"],"Insert from URL":["URL から挿入"],"Block Navigator":["ブロックナビゲーター"],"Styles":["スタイル"],"Advanced panels":["詳細パネル"],"Document panels":["文書パネル"],"General":["一般"],"Open the block navigation menu.":["ブロックナビゲーションメニューを開く。"],"Work without distraction":["気が散る要素を隠す"],"Focus on one block at a time":["ひとつのブロックに集中"],"Access all block and document tools in a single place":["ブロック・文書ツールを同じ場所にまとめる"],"Options":["オプション"],"(opens in a new tab)":["(新しいタブで開く)"],"Minutes":["分"],"Hours":["時"],"Time":["時間"],"Year":["年"],"Day":["日"],"December":["12月"],"November":["11月"],"October":["10月"],"September":["9月"],"August":[" 8月"],"July":["7月"],"June":["6月"],"May":["5月"],"April":["4月"],"March":["3月"],"February":["2月"],"January":["1月"],"Month":["月"],"Date":["日付"],"Go to the first (home) or last (end) day of a week.":["1週間の初日 (home) または最終日 (end) に移動します。"],"Home/End":["Home/End"],"Home and End":["Home と End"],"Move backward (PgUp) or forward (PgDn) by one month.":["1ヶ月ずつ後ろ (PgUp) および前 (PgDn) に移動します。"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up と Page Down"],"Move backward (up) or forward (down) by one week.":["1週間ずつ後ろ (上) および前 (下) に移動します。"],"Up and Down Arrows":["十字キーの上下"],"Move backward (left) or forward (right) by one day.":["1日ずつ後ろ (左) および前 (右) に移動します。"],"Left and Right Arrows":["十字キーの左右"],"Select the date in focus.":["フォーカスする日にちを選択します。"],"Navigating with a keyboard":["キーボードでの操作"],"Click the desired day to select it.":["希望日をクリックして選択します。"],"Click the right or left arrows to select other months in the past or the future.":["左右の矢印をクリックして、未来または過去の月を選択します。"],"Click to Select":["クリックして選択"],"Calendar Help":["カレンダーのヘルプ"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["矢印キーを使用して基本色を変更します。色を明るくするには上に、暗くするには下に、彩度を上げるには左に、彩度を下げるには右に動かしてください。"],"Choose a shade":["影を選択"],"Change color format":["色の形式を変更"],"Color value in HSL":["HSL 値での色指定"],"Color value in RGB":["RGB 値での色指定"],"Color value in hexadecimal":["16進数での色指定"],"RGB mode active":["RGB モードを使用中"],"Hex color mode active":["16進数カラーモードを使用中"],"Hue/saturation/lightness mode active":["色相 / 彩度 / 明度モードを使用中"],"Move the arrow left or right to change hue.":["矢印を左右に移動して色相を変更します。"],"Hue value in degrees, from 0 to 359.":["0から369までの度数による色相値。"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["0 (透明) から1 (完全に不透明) までのアルファ値。"],"Stripes":["ストライプ"],"Your site doesn’t include support for this block.":["このブロックはサイトで未対応です。"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["\"%s\" ブロックはサイトでサポートされていません。そのまま残すか、完全に削除してください。"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["\"%s\" ブロックはサイトでサポートされていません。そのまま残すか、カスタム HTML ブロックへ変換、または完全に削除してください。"],"Media area":["メディアエリア"],"Media & Text":["メディアと文章"],"Show media on right":["メディアを右に表示"],"Show media on left":["メディアを左に表示"],"Open in New Tab":["新しいタブで開く"],"Cover":["カバー"],"Border settings":[],"Medium":["中"],"Paste URL or type to search":["URL をペーストまたは入力して検索"],"Terms":["項目"],"Your work will be published at the specified date and time.":["この投稿は設定日時に公開されます。"],"Are you ready to schedule?":["投稿を予約しますか ?"],"Always show pre-publish checks.":["公開前チェックを常に表示する。"],"Take Over":["引き継ぐ"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["他のユーザーが現在この投稿を編集中です。引き継ぎの操作を行わない限り、変更を加えることはできません。"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s さんが現在この投稿を編集中です。引き継ぎの操作を行わない限り、変更を加えることはできません。"],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["他のユーザーが現在この投稿のコントロールを編集中ですが、ご心配なく。これまでに加えた変更は保存されています。"],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s さんが現在この投稿のコントロールを編集中ですが、ご心配なく。これまでに加えた変更は保存されています。"],"Avatar":["アバター"],"This post is already being edited.":["この投稿は現在編集中です。"],"Someone else has taken over this post.":["他の人がこの投稿の編集を引き継ぎました。"],"This block contains unexpected or invalid content.":["このブロックには、想定されていないか無効なコンテンツが含まれています。"],"Resolve Block":["ブロックの問題を解決"],"Convert to HTML":["HTML に変換"],"This block can only be used once.":["このブロックは一度のみ使用できます。"],"Exit Code Editor":["コードエディターを終了"],"Editing Code":["コードの編集"],"Solid Color":["無地"],"Main Color":["メインカラー"],"HTML":["HTML"],"Write HTML…":["HTML を入力…"],"Media settings":[],"Overlay":["オーバーレイ"],"Insert Media":["メディアを挿入"],"Reusable block imported successfully!":["再利用ブロックは正常にインポートされました。"],"Invalid Reusable Block JSON file":["無効な再利用ブロックの JSON ファイル"],"Invalid JSON file":["無効な JSON ファイル"],"Import from JSON":["JSON からインポート"],"Backtick":["バックティック"],"Period":["ピリオド"],"Comma":["カンマ"],"Change type of %d block":["%d個のブロックのタイプを変更する"],"Current":["現在"],"After Conversion":["変換後"],"Change alignment":["配置を変更"],"Change text alignment":["テキストの配置を変更"],"%d block":["%d個のブロック"],"Forward-slash":["前方スラッシュ"],"No archives to show.":["表示するアーカイブはありません。"],"This file is empty.":["このファイルは空です。"],"Sorry, this file type is not supported here.":["このファイル形式はこの箇所で非対応です。"],"Manage all reusable blocks":["すべての再利用ブロックを管理"],"Title":["タイトル"],"Fullscreen mode":["フルスクリーンモード"],"Beautiful landscape":["美しい風景"],"Close panel":["パネルを閉じる"],"Convert to Classic Block":["クラシックブロックに変換"],"Remove Poster Image":["ポスター画像を削除"],"Select Poster Image":["ポスター画像を選択"],"Poster Image":["ポスター画像"],"This block is deprecated. Please use the Columns block instead.":["このブロックは非推奨です。代わりにカラムブロックを使用してください。"],"Text Columns (deprecated)":["テキストカラム (非推奨)"],"Create":["生成"],"Row Count":["行数"],"Column Count":["列数"],"This block is deprecated. Please use the Paragraph block instead.":["このブロックは非推奨です。代わりに段落ブロックを使用してください。"],"Subheading (deprecated)":["小見出し (非推奨)"],"blockquote":["引用"],"Change the block type after adding a new paragraph.":["新規段落の追加後、ブロックタイプを変更します。"],"Spotlight mode":["スポットライトモード"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["タグは、サーチエンジンがユーザーをあなたのサイトへ誘導したり、ユーザーがコンテンツを探す際の助けになります。いくつかのキーワードを足して投稿の説明をしてみましょう。"],"Add tags":["タグを追加"],"Apply the \"%1$s\" format.":["「%1$s」形式を適用。"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["ご利用中のテーマでは投稿フォーマットを使用し、画像や動画といった異なる種類のコンテンツをハイライトしています。投稿フォーマットを適用し、独自のスタイルを確認してください。"],"Use a post format":["投稿フォーマットを使用"],"Insert After":["後に挿入"],"Insert Before":["前に挿入"],"Move %1$d block from position %2$d down by one place":["%1$d個のブロックを%2$dの位置から1つ下に移動する"],"Move %1$d block from position %2$d up by one place":["%1$d個のブロックを%2$dの位置から1つ上に移動する"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["動画"],"Insert a new block before the selected block(s).":["選択したブロックの前に新しいブロックを挿入する。"],"Remove the selected block(s).":["選択したブロックを削除する。"],"Duplicate the selected block(s).":["選択したブロックを複製する。"],"Block shortcuts":["ブロックショートカット"],"Clear selection.":["選択肢をクリアする。"],"Select all text when typing. Press again to select all blocks.":["入力中にすべてのテキストを選択します。すべてのブロックを選択するにはもう一度押してください。"],"Selection shortcuts":["選択ショートカット"],"Switch between Visual editor and Code editor.":["ビジュアルエディターとコードエディターを切り替える。"],"Navigate to the previous part of the editor.":["エディターの前の部分に移動する。"],"Navigate to the next part of the editor.":["エディターの後の部分に移動する。"],"Show or hide the settings sidebar.":["設定サイドバーの表示/非表示を切り替える。"],"Redo your last undo.":["前回の取り消しをやり直す。"],"Undo your last changes.":["直前の変更を取り消す。"],"Save your changes.":["変更を保存する。"],"Global shortcuts":["グローバルショートカット"],"Remove a link.":["リンクを削除する。"],"Convert the selected text into a link.":["選択したテキストをリンクに変換する。"],"Underline the selected text.":["選択したテキストに下線を付ける。"],"Make the selected text italic.":["選択したテキストを斜体にする。"],"Make the selected text bold.":["選択したテキストを太字にする。"],"Text formatting":["書式設定"],"Insert a new block after the selected block(s).":["選択したブロックの後に新しいブロックを挿入する。"],"Keyboard shortcuts":["キーボードショートカット"],"Thanks for testing Gutenberg!":["Gutenberg をテストしていただき、ありがとうございます !"],"Help build Gutenberg":["Gutenberg の開発を手伝う"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["追加ブロックを作成する方法を学んだり、プロジェクトに協力したりすることに興味がある場合は、GitHubリポジトリへ移動してください。"],"The WordPress community":["WordPress コミュニティ"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["静的または動的、装飾的またはプレーンなものなど、お好みのブロックを構築できます。こちらがプルクオートブロックです。"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["あらゆるブロックでこれらの配置を選択できます。埋め込みブロックでも利用でき、ボックス外でもレスポンシブ対応しています:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["上は2つの画像のみのギャラリーです。フロート調整を行うことなく、魅力的な見た目のレイアウトを簡単に作成することができます。またブロックを切り替えて、ギャラリーを個別の画像へ簡単に戻すこともできます。"],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["全幅画像はかなり大きくなる場合もありますが、画像によってはそうする価値があることもあります。"],"Accessibility is important — don’t forget image alt attribute":["アクセシビリティは重要です — 画像の Alt 属性をお忘れなく。"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["新しい幅広と全幅配置をギャラリーと組み合わせると、非常にメディアリッチなレイアウトをすばやく作成できます。"],"Media Rich":["メディア重視"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["サイドバーのブロックインスペクターでスライダーをドラッグすると、ギャラリーのカラム数を変更できます。"],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["ブロックは、必要なもの何でもかまいません。たとえば、テキスト構成の一部として目立たない引用符を追加してもよいでしょう。または、巨大で装飾的なものを表示させることもできます。これらのオプションはすべて挿入ツール内で利用できます。"],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["引用のソースに対応する情報は、画像下のキャプションに似た別のテキストフィールドです。このため、ソースを選択、変更、または削除しても、引用自体の構造は保護されます。いつでも簡単に戻すことができます。"],"Matt Mullenweg, 2017":["マット・マレンウェッグ、2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["このエディターは、リッチな投稿や固定ページの作成を簡単にする、新しい執筆体験を生み出そうとしています。また「ブロック」によって、現在はショートコード、カスタム HTML、外部埋め込みコード自動ディスカバリー機能が実現していることをより簡単にします。"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["ブロックの大きな利点は、それぞれの場所で編集し、コンテンツを直接操作できることです。引用ソースやボタン内テキストなどを編集するためのフィールドを持つのではなく、コンテンツを直接変更できます。以下の引用を編集してみてください:"],"Visual Editing":["ビジュアル編集"],"And Lists like this one of course :)":["もちろん、このようなリストも ^^"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["ボタンやヒーロー画像、区切りなどのレイアウトブロック。"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["YouTube、ツイート、他の WordPress 投稿などの埋め込み。"],"Galleries":["ギャラリー"],"Images & Videos":["画像と動画"],"Text & Headings":["テキストと見出し"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["お試しいただくと、WordPress が投稿に追加可能でありながら、ご存知ではなかったものを見つけていただけるでしょう、以下はこの投稿が使用しているブロックの簡単なリストです。"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["WordPress ができるすべてのことが、すばやく、同じ場所・インターフェイスで可能であると想像してみてください。HTML タグやクラスを理解したり、複雑なショートコード構文を覚える必要はありません。これこそが「挿入」ツール—エディター中にある (+)
ボタン—の真髄で、すべての利用可能なコンテンツブロックを閲覧し、投稿に追加することができます。プラグインとテーマは独自のブロックを登録することができ、リッチな編集や公開の可能性を広げます。"],"The Inserter Tool":["「挿入」ツール"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["キャプションを選択、削除、編集してみてください。画像や他のテキストを間違って選択して、表示を台無しにしないよう気を使わずに済むようになりました。"],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["テーマでサポートされていれば、画像ツールバーに「幅広」ボタンが表示されます。お試しください。"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["画像とメディア取り扱いへの高い気遣いは、新しいエディターのメインフォーカスです。キャプションを追加したり、全幅にするのがより簡単で協力になっているのにお気づきいただけるでしょう。"],"A Picture is Worth a Thousand Words":["百聞は一画像にしかず"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["見出しは別ブロックとなっており、コンテンツのアウトラインと構成に役立ちます。"],"... like this one, which is right aligned.":["…例えば、右揃えのこれのようなものです。"],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["現在ご覧いただいているのがテキストブロックで、すべてのブロックのうち一番基本のブロックです。テキストブロックは、投稿内を自由に移動できる独自のコントロールがついています。"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["この新しいエディターのゴールは、WordPress へのリッチコンテンツの追加をシンプルで楽しくすることです。この投稿全体がコンテンツのパーツ—LEGO ブロックのようなもの—により構成されており、動かしたり操作できるようになっています。カーソルを動かすと、様々なブロックが枠線と矢印とともにフォーカスされます。矢印を押すとブロックをすばやく並び替えることができ、コピー & ペーストしているうちに内容が消えてしまう恐れがありません。"],"Of Mountains & Printing Presses":["Gutenberg を試してみよう"],"Welcome to the Gutenberg Editor":["Gutenberg エディターにようこそ"],"block name\u0004More":["続きを読む"],"button to expand options\u0004More":["さらに表示"],"Are you sure you want to unschedule this post?":["本当にこの投稿の予約を取り消しますか ?"],"Alt Text (Alternative Text)":["Alt テキスト (代替テキスト)"],"Reusable Block":["再利用ブロック"],"Unique identifier for the object.":["オブジェクトの独自識別子。"],"Untitled Reusable Block":["無題の再利用ブロック"],"Small":["小さい"],"Reusable":["再利用可能"],"Remove from Reusable blocks":["再利用ブロックから削除"],"Add to Reusable blocks":["再利用ブロックに追加"],"Keep as HTML":["HTML として保持"],"Edit URL":["URL を編集"],"Color settings":[],"The response is not a valid JSON response.":["返答が正しい JSON レスポンスではありません。"],"Editor publish":["エディターの投稿パネル"],"Muted":["ミュート (消音)"],"Video settings":[],"recent comments":["最近のコメント"],"Latest Comments":["最新のコメント"],"Display Excerpt":["抜粋を表示"],"Display Date":["日付を表示"],"Display Avatar":["アバターを表示"],"Latest comments settings":[],"Number of Comments":["コメント数"],"Background Opacity":["背景の透過率"],"Auto":["自動"],"Preload":["先読み"],"Audio settings":[],"Display a monthly archive of your posts.":["記事の月別アーカイブを表示します。"],"Display as Dropdown":["ドロップダウンで表示"],"Show Post Counts":["投稿数を表示"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://ja.wordpress.org/support/plugin/gutenberg"],"Support":["サポート"],"No comments to show.":["表示できるコメントはありません。"],"%1$s on %2$s":["%2$s に %1$s より"],"Select Post":["投稿を選択"],"Select Week":["週を選択"],"Select Day":["日を選択"],"Select Month":["月を選択"],"Select Year":["年を選択"],"Archives":["アーカイブ"],"Very dark gray":["ダーク・グレー"],"Cyan bluish gray":["シアンブルーグレー"],"Very light gray":["ライト・グレー"],"Vivid cyan blue":["鮮やかなシアンブルー"],"Pale cyan blue":["淡いシアンブルー"],"Vivid green cyan":["鮮やかなグリーンシアン"],"Light green cyan":["薄いグリーンシアン"],"Luminous vivid amber":["琥珀"],"Luminous vivid orange":["オレンジ"],"Vivid red":["レッド"],"Pale pink":["ピンク"],"Inline image":["インライン画像"],"Available block types":["利用可能なブロックタイプ"],"Transform To:":["変換:"],"Remove Block":["ブロックを削除"],"Open publish panel":["公開パネルを開く"],"Dots":["ドット"],"Wide Line":["幅広線"],"Large":["大"],"Show download button":["ダウンロードボタンを表示"],"Download button settings":["ダウンロードボタン設定"],"Link To":["リンク先"],"Text link settings":["テキストリンク設定"],"download":["ダウンロード"],"pdf":["pdf"],"document":["文書"],"Copy URL":["URL をコピー"],"Write file name…":["ファイル名を入力..."],"File":["ファイル"],"A single column within a columns block.":["カラムブロック内の1つのカラム。"],"Column":["カラム"],"Outline":["アウトライン"],"Loop":["ループ"],"Autoplay":["自動再生"],"Playback Controls":["プレイバックコントロール"],"Close dialog":["ダイアログを閉じる"],"Sorry, this file type is not permitted for security reasons.":["このファイルタイプはセキュリティ上の理由から、許可されていません。"],"Disable tips":["ヒントを無効化"],"Got it":["OK"],"See next tip":["次のヒントを見る"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["準備ができたらレビューをリクエストしましょう。編集者が承認して公開できます。"],"Are you ready to submit for review?":["レビューをリクエストする準備ができましたか ?"],"Replace image":["画像の置き換え"],"Remove image":["画像の削除"],"Error while uploading file %s to the media library.":["ファイル %s をメディアライブラリへアップロード中にエラーが発生しました。"],"This file exceeds the maximum upload size for this site.":["このファイルはサイトの最大アップロードサイズを超えています。"],"View the autosave":["自動保存を表示"],"There is an autosave of this post that is more recent than the version below.":["以下のバージョンよりも新しい自動保存された投稿があります。"],"Autosaving":["自動保存中"],"Enter URL here…":["URLをここに入力..."],"Pin to toolbar":["ツールバーに固定"],"Unpin from toolbar":["ツールバーへの固定解除"],"Insert a table — perfect for sharing charts and data.":["表の挿入。チャートとデータの共有に最適です。"],"Fixed width table cells":["表のセル幅を固定"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["スペースやタブを含むテキストを追加し、スタイリングして表示します。"],"Display a list of your most recent posts.":["最近の投稿の一覧を表示します。"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Twitter、Instagram、YouTube など他サイトからコンテンツを引用表示するブロックを追加します。"],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["複数カラム表示のブロックを追加して、お好みのブロックを配置しましょう。"],"Error loading block: %s":["ブロック読み込みエラー: %s"],"Unknown error":["不明なエラー"],"Embed Handler":["埋め込みハンドラー"],"term\u0004Remove %s":["%sを削除"],"Copy the permalink":["パーマリンクをコピー"],"Permalink copied":["パーマリンクをコピーしました"],"Height in pixels":["ピクセル値での高さ "],"Spacer settings":[],"Spacer":["スペーサー"],"Toggle to show a large initial letter.":["先頭文字を大きな表示に切り替えます。"],"Showing large initial letter.":["先頭文字を大きく表示しています。"],"Name:":["名前:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s/%3$s)"],"Remove item":["項目を削除"],"Color code: %s":["カラーコード: %s"],"Skip to the selected block":["選択したブロックをスキップ"],"Publish…":["公開する"],"Schedule…":["予約する"],"Edit post permalink":["投稿パーマリンクの編集"],"Show Block Settings":["ブロック設定を表示"],"Hide Block Settings":["ブロック設定を非表示"],"Block settings closed":["ブロック設定の非表示中"],"Close plugin":["プラグインを閉じる"],"Editor settings":["エディター設定"],"Link settings":["リンク設定"],"Unlink":["リンクを解除"],"Page break":["ページ区切り"],"pagination":["ページネーション"],"next page":["次のページ"],"Image Size":["画像サイズ"],"Height":["高さ"],"Width":["幅"],"Image Dimensions":["画像の寸法"],"Thumbnails are not cropped.":["サムネイルがクロップされていません。"],"Thumbnails are cropped to align.":["サムネイルを整列にあわせてクロップしました。"],"Media Library":["メディアライブラリ"],"Advanced":["高度な設定"],"Add item":["項目を追加"],"Reset the template":["テンプレートのリセット"],"Keep it as is":["変更しない"],"The content of your post doesn’t match the template assigned to your post type.":["投稿の本文は投稿タイプに割り当てられたテンプレートと一致しません。"],"Resetting the template may result in loss of content, do you want to continue?":["テンプレートをリセットするとコンテンツが失われる可能性があります。続行しますか ?"],"Document Statistics":["文書の統計情報"],"is now scheduled. It will go live on":["を予約しました。公開予定日:"],"Scheduled":["予約済み"],"Scheduling…":["予約中…"],"Code editor selected":["コードエディターを選択しました"],"Visual editor selected":["ビジュアルエディターを選択しました"],"Plugins":["プラグイン"],"Custom Size":["カスタムサイズ"],"Layout elements":["レイアウト要素"],"term\u0004%s removed":["%sを削除しました"],"term\u0004%s added":["%sを追加しました"],"imperative verb\u0004Preview":["プレビュー"],"Block deleted.":["ブロックを削除しました。"],"Block updated.":["ブロックを更新しました。"],"Block created.":["ブロックを作成しました。"],"Trashing failed":["ゴミ箱に入れられません"],"Updating failed.":["更新に失敗しました。"],"Scheduling failed.":["予約投稿に失敗しました。"],"Publishing failed.":["公開に失敗しました。"],"View post":["投稿の表示"],"You have unsaved changes. If you proceed, they will be lost.":["未保存の変更があります。続行すると失われます。"],"Document Outline":["文書の概要"],"Paragraphs":["段落"],"Headings":["見出し"],"Words":["語"],"Content structure":["コンテンツ構造"],"Public":["公開"],"Protected with a password you choose. Only those with the password can view this post.":["任意のパスワードで保護します。パスワードを知っている閲覧者のみがこの記事を表示できます。"],"Password Protected":["パスワード保護"],"Only visible to site admins and editors.":["サイト管理者と編集者にだけ表示されます。"],"Private":["非公開"],"Visible to everyone.":["すべての人に表示されます。"],"Post Visibility":["公開状態"],"Would you like to privately publish this post now?":["今すぐ非公開で投稿しますか ?"],"Use a secure password":["安全なパスワードを使用"],"Create password":["パスワードを作成"],"Move to Trash":["ゴミ箱へ移動"],"Parent Term":["親項目"],"Parent Category":["親カテゴリー"],"Add new term":["新規項目を追加"],"Add new category":["新規カテゴリーを追加"],"Term":["項目"],"Tag":["タグ"],"Add new Term":["新規項目を追加"],"Add new tag":["新規タグを追加"],"Switch to draft":["下書きへ切り替え"],"Are you sure you want to unpublish this post?":["本当にこの投稿を未公開にしますか ?"],"Immediately":["今すぐ"],"Save Draft":["下書き保存"],"Saving":["保存中"],"Publish:":["公開:"],"Visibility:":["公開状態:"],"Are you ready to publish?":["公開してもよいですか ?"],"Copy Link":["リンクをコピー"],"What’s next?":["次の操作"],"is now live.":["を公開しました。"],"Published":["公開済み"],"Schedule":["予約投稿"],"Update":["更新"],"Submit for Review":["レビュー待ちとして送信"],"Updating…":["更新中…"],"Publishing…":["公開中…"],"Allow pingbacks & trackbacks":["ピンバックとトラックバックを許可"],"Permalink:":["パーマリンク:"],"Pending review":["レビュー待ち"],"%d Revision":["%d件のリビジョン"],"Suggestion:":["提案:"],"Post Format":["投稿フォーマット"],"Chat":["チャット"],"Status":["ステータス"],"Standard":["標準"],"Aside":["アサイド"],"Featured image":["アイキャッチ画像"],"Set featured image":["アイキャッチ画像を設定"],"Learn more about manual excerpts":["手動抜粋の詳細"],"Write an excerpt (optional)":["抜粋を入力 (任意)"],"Allow comments":["コメントを許可"],"Template:":["テンプレート:"],"no parent":["親はありません"],"no title":["タイトルはありません"],"Order":["並び順"],"No blocks found.":["ブロックが見つかりません。"],"%d result found.":["%d件見つかりました。"],"Saved":["保存しました"],"Embeds":["埋め込み"],"Blocks":["ブロック"],"Search for a block":["ブロックの検索"],"Add block":["ブロックの追加"],"Copy Error":["エラー文をコピー"],"Copy Post Text":["投稿内容をコピー"],"Attempt Recovery":["復旧を試みる"],"The editor has encountered an unexpected error.":["エディターで予期しないエラーが発生しました。"],"Undo":["元に戻す"],"Redo":["やり直す"],"(Multiple H1 headings are not recommended)":["(複数の H1 見出しは非推奨です)"],"(Your theme may already use a H1 for the post title)":["(テーマによって H1 が投稿タイトルに使用されている可能性があります)"],"(Incorrect heading level)":["(見出しレベルに間違いがあります)"],"(Empty heading)":["(空白見出し)"],"Block Styles":["ブロックスタイル"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["本当にこの再利用ブロックを削除しますか ?\n\n再利用ブロックを使用していたすべての投稿や固定ページから完全に削除されます。"],"Convert to Regular Block":["通常のブロックへ変換"],"More options":["詳細設定"],"Edit visually":["ビジュアル編集"],"Duplicate":["複製"],"Blocks cannot be moved down as they are already at the bottom":["ブロックはすでに一番下にあるため、下に移動できません"],"Blocks cannot be moved up as they are already at the top":["ブロックはすでに一番上にあるため、上に移動できません"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["ブロック「%s」は唯一のブロックなので削除できません。"],"Edit as HTML":["HTML として編集"],"Convert to Blocks":["ブロックへ変換"],"Block: %s":["ブロック: %s"],"This block has encountered an error and cannot be previewed.":["このブロックでエラーが発生したためプレビューできません。"],"No block selected.":["ブロックが選択されていません。"],"Transform into:":["変換先:"],"Remove":["削除"],"Find original":["オリジナルの検索"],"Copy all content":["すべてのコンテンツをコピー"],"Copied!":["コピーしました。"],"Additional settings are now available in the Editor block settings sidebar":["エディター詳細設定サイドバーから追加オプションを設定できます。"],"Visibility":["公開状態"],"Status & visibility":["ステータスと公開状態"],"Page attributes":["ページ属性"],"Block":["ブロック"],"Document":["文書"],"Close settings":["設定を閉じる"],"Editor content":["エディターコンテンツ"],"Tools":["ツール"],"Editor":["エディター"],"Code editor":["コードエディター"],"Visual editor":["ビジュアルエディター"],"Editor top bar":["エディタートップバー"],"Settings":["設定"],"Reset":["リセット"],"Dismiss this notice":["通知を無視"],"Item removed.":["項目を削除しました。"],"Item added.":["項目を追加しました。"],"Drop files to upload":["アップロードするファイルをドロップ"],"PM":["午後"],"AM":["午前"],"An unknown error occurred.":["不明なエラーが発生しました。"],"No results.":["結果はありません。"],"%d result found, use up and down arrow keys to navigate.":["%d件の結果が見つかりました。上下の矢印キーを使って操作できます。"],"(no title)":["(タイトルなし)"],"URL":["URL"],"Submit":["送信"],"Close":["閉じる"],"Insert link":["リンクを挿入"],"Edit link":["リンクを編集"],"Link":["リンク"],"Strikethrough":["取り消し線"],"Italic":["イタリック"],"Bold":["太字"],"Remove link":["リンクの削除"],"Number of items":["項目数"],"All":["すべて"],"Category":["カテゴリー"],"Z → A":["タイトル"],"A → Z":["タイトル (逆順)"],"Oldest to Newest":["投稿日時 (古い記事を優先)"],"Newest to Oldest":["投稿日時 (新しい記事を優先)"],"Order by":["並び順"],"Select":["選択"],"Select or Upload Media":["メディアの選択またはアップロード"],"Video":["動画"],"Write…":["入力..."],"poetry":["詩"],"Verse":["詩"],"New Column":["新規カラム"],"Delete Column":["列の削除"],"Add Column After":["右に列を追加"],"Add Column Before":["左に列を追加"],"Delete Row":["行の削除"],"Add Row After":["下に行を追加"],"Add Row Before":["上に行を追加"],"Edit table":["表の編集"],"Table":["表"],"Write subheading…":["小見出しを入力…"],"Write shortcode here…":["ショートコードをここに入力…"],"Shortcode":["ショートコード"],"divider":["区切り線"],"horizontal-line":["水平線"],"Separator":["区切り"],"Quote":["引用"],"Write citation…":["引用元を入力..."],"Write quote…":["引用を入力..."],"Pullquote":["プルクオート"],"Write preformatted text…":["整形済みテキストを入力..."],"Preformatted":["整形済みテキスト"],"text":["テキスト"],"Paragraph":["段落"],"Font Size":["文字サイズ"],"Drop Cap":["ドロップキャップ"],"Text settings":[],"Read more":["続きを読む"],"Write list…":["リストを入力..."],"numbered list":["番号付きリスト"],"ordered list":["番号付きリスト"],"bullet list":["箇条書きリスト"],"Indent list item":["リスト項目をインデント"],"Outdent list item":["リスト項目のインデントを戻す"],"Convert to ordered list":["番号付きリストに変換"],"Convert to unordered list":["箇条書きリストに変換"],"List":["リスト"],"recent posts":["最近の投稿"],"No posts found.":["投稿が見つかりませんでした。"],"Latest Posts":["最新の記事"],"Display post date":["投稿日を表示"],"Grid view":["グリッド表示"],"List view":["リスト表示"],"photo":["写真"],"Image settings":[],"Image":["画像"],"Preview":["プレビュー"],"embed":["埋め込み"],"Custom HTML":["カスタム HTML"],"subtitle":["サブタイトル"],"title":["タイトル"],"Heading":["見出し"],"Write heading…":["見出しを入力..."],"Heading %d":["見出し%d"],"Level":["レベル"],"Heading settings":[],"photos":["写真"],"images":["画像"],"None":["なし"],"Media File":["メディアファイル"],"Attachment Page":["添付ページ"],"Link to ":["リンク先:"],"Crop Images":["画像の切り抜き"],"Gallery settings":[],"Gallery":["ギャラリー"],"Classic":["クラシック"],"video":["動画"],"audio":["音声"],"music":["音楽"],"image":["画像"],"blog":["ブログ"],"post":["投稿"],"Embedded content from %s":["%s からの埋め込みコンテンツ"],"Enter URL to embed here…":["埋め込む URL をここに入力..."],"%s URL":["%s URL"],"Embedding…":["埋め込み中..."],"Write title…":["タイトルを入力..."],"Fixed Background":["固定背景"],"Edit image":["画像を編集"],"Columns":["カラム"],"Experiments":["実験中"],"Code":["コード"],"Write code…":["コードを入力..."],"Categories":["カテゴリー"],"Show Hierarchy":["階層を表示"],"Show post counts":["投稿数を表示"],"Categories settings":[],"Add text…":["テキストを追加…"],"Button":["ボタン"],"Apply":["適用"],"Text Color":["テキスト色"],"Background Color":["背景色"],"Block has been deleted or is unavailable.":["ブロックは削除されたか、利用できません。"],"Reusable blocks":["再利用ブロック"],"Cancel":["キャンセル"],"Edit":["編集"],"Write caption…":["キャプションを入力..."],"Use URL":["URL を使用"],"Audio":["音声"],"Upload":["アップロード"],"Additional CSS Class(es)":["追加 CSS クラス"],"HTML Anchor":["HTML アンカー"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["この色の組み合わせは読みにくいため、より明るい背景色、より暗い文字色を試してください。"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["この色の組み合わせは読みにくいため、より暗い背景色、より明るい文字色を試してください。"],"Clear":["クリア"],"Custom color picker":["カスタムカラーピッカー"],"Color: %s":["色: %s"],"Full width":["全幅"],"Wide width":["幅広"],"Widgets":["ウィジェット"],"Formatting":["フォーマット"],"Common blocks":["一般ブロック"],"Align right":["右寄せ"],"Align center":["中央寄せ"],"Align left":["左寄せ"],"Printing since 1440. This is the development plugin for the new block editor in core.":["印刷技術は、1440年に誕生。コアに採用される新しいブロックエディターの開発プラグイン。"],"Add title":["タイトルを追加"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg 開発モードは、ファイルのビルドが必要です。npm install
を実行して依存のインストール後、npm run build
でファイルをビルドするか、または npm run dev
でファイルをビルドして差分を監視してください。詳しくは contributing を参照してください。"],"Author":["投稿者"],"Slug":["スラッグ "],"Discussion":["ディスカッション"],"Custom fields":["カスタムフィールド "],"Excerpt":["抜粋"],"Publish":["公開"],"Metadata":["メタデータ"],"Save":["保存"],"Documentation":["ドキュメント"],"Select Category":["カテゴリーを選択"],"(Untitled)":["(無題)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg が正しく動作するには WordPress %s以降が必要です。Gutenberg を有効化する前に WordPress をアップグレードしてください。"],"Gutenberg Team":["Gutenberg チーム"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["デモ"],"%s ago":["%s前"],"Block style name must be a string.":["ブロックスタイル名は文字列でなければなりません。"]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ka.json b/bundle/android/raw/i18ncache_data_ka.json
new file mode 100644
index 0000000000..fa40368234
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ka.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":["სიტყვები"],"content placeholder\u0004Content…":["შიგთავსი…"],"button label\u0004Convert to link":["ბმულად გარდაქმნა"],"button label\u0004Try again":["ცადეთ კიდევ"],"Editor tips":["რედაქტორის ტიპები"],"Block (selected)":["ბლოკი (არჩეული)"],"Document (selected)":["დოკუმენტი (არჩეული)"],"%d word":["%d სიტყვა"],"Top toolbar":[],"Link Rel":["ურთიერთმდგომარეობა"],"Link CSS Class":["ბმულის CSS-კლასი"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["შექმენით შიგთავსი და შეინახეთ ის თქვენთვის და სხვა ავტორებისატვის ხელმეორედ გამოსაყენებლად. განაახლეთ ბლოკი და ცვლილება მოხდება ყველგან, სადაც ის გამოყენებულია."],"To edit the featured image, you need permission to upload media.":["ჩანაწერის სურათის ჩასწორებისათვის თქვენ გჭირდებათ ამ მედიაფაილის ჩატვირთვის ნებართვა."],"To edit this block, you need permission to upload media.":["ამ ბლოკის ჩასწორებისას თქვენ გესაჭიროებათ ნებართვა მედიაფაილის ატვირთვაზე."],"(selected block)":["(არჩეული ბლოკი)"],"Block tools":["ბლოკების ხელსაწყოები"],"Permalink":["მუდმივი ბმული"],"This image has an empty alt attribute":["ამ სურათს აქვს ცარიელი alt ატრიბუტი"],"This image has an empty alt attribute; its file name is %s":["ამ სურათს აქვს ცარიელი alt ატრიბუტი; ფაილის სახელი: %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["ახლის დამატება"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["ყურადღება: ბმული დამატებულია, მაგრამ შესაძლოა შეიცავდეს შეცდომებს. გთხოვთ გადაამოწმოთ."],"%s block selected.":["%s ბლოკი არჩეულია."],"Thumbnail":["ესკიზი"],"Full Size":["სრული ზომა"],"Link selected.":[],"Start writing with text or HTML":["დაწყეთ ტექსტის, ან HTML-კოდის წერა"],"Type text or HTML":["ტექსტის, ან HTML-კოდის წერა"],"Block icon":["ბლოკის ხატულა"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["დაიწყეთ წერა, ან დააჭირეთ კლავიშზე (/) ბლოკის ასარჩევად"],"Empty block; start writing or type forward slash to choose a block":["ცარიელი ბლოკი; დაიწყეთ წერა, ან დააჭირეთ კლავიშზე (/) ბლოკის არჩევისათვის"],"Paragraph block":["პარაგრაფის ბლოკი"],"Page Break":["გვერდის გაწყვეტა"],"Stack on mobile":["დაჯგუფება მობილურ რეჟიმში"],"Annotation":["ანოტაცია"],"Drag images, upload new ones or select files from your library.":["გადაათრიეთ სურათი, ატვირთეთ ახალი, ან აირჩიეთ სასურველი ბიბლიოთეკიდან."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["გასწორება"],"font size name\u0004Huge":["უზარმაზარი"],"font size name\u0004Large":["დიდი"],"font size name\u0004Medium":["საშუალო"],"font size name\u0004Small":["პატარა"],"font size name\u0004Normal":["ჩვეულებრივი"],"keyboard button\u0004Enter":["შეტანა"],"button label\u0004Import":["იმპორტი"],"button label\u0004Download":["ჩამოტვირთვა"],"button label\u0004Embed":["ჩაშენებული"],"block title\u0004Embed":["ჩაშენებული"],"block title\u0004Classic":["კლასიკური"],"block style\u0004Large":["დიდი"],"block style\u0004Rounded":["მომრგვალებული"],"%s (opens in a new tab)":["%s (გაიხსნება ახალ ჩანართში)"],"Link edited.":["ბმული ჩასწორებულია."],"Link removed.":["ბმული წაშილია."],"media":["მედია"],"Double-check your settings before publishing.":["ორჯერ გადაამოწმეთ პარამეტრები, სანამ გამოაქვეყნებთ."],"Generating preview…":["გადახედვის გენერირება…"],"Edit or update the image":["სურათის განახლება, ან ჩასწორება"],"Media":["მედია"],"Navigate to the nearest toolbar.":["გადასვლა ხელსაწყოთა უახლოეს პანელზე."],"Document tools":["დოკუმენტის ხელსაწყოები"],"Document and block tools":["დოკუმენტის და ბლოკის ინსტრუმენტები"],"Embed a video from your media library or upload a new one.":["ჩასვით ვიდეო თქვენი მედია-ბიბლიოთეკიდან, ან ატვირთეთ ახალი."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["ლექსის სტროფების ჩასმა. შესაძლებელია ინტერვალების სპეციალური ფორმატის გამოყენება, ანდა სიმღერის ტექსტის ციტირება."],"Add white space between blocks and customize its height.":["დაამატეთ დაშორება ბლოკებს შორის და მოარგეთ მისი სიმაღლე."],"Insert additional custom elements with a WordPress shortcode.":["დამატებითი სამომხმარებლო ელემენტების ჩასმა მალსახმობის საშუალებით."],"Create a break between ideas or sections with a horizontal separator.":["შექმენით შუალედი იდეებსა და სექციებს შორის ჰორიზონტალური გამყოფის მეშვეობით."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["გამოყავით ვიზუალურად ციტატა. „სხვისი ციტირებით, ჩვენ საკუთარ თავს ვციტირებთ.“ — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["გამოყავით ვიზუალურად ციტატა თქვენი ტექსტიდან."],"Start with the building block of all narrative.":["დაიწყეთ თხრობითი ბლოკის შექმნით."],"Separate your content into a multi-page experience.":["დაყავით შიგთავსი რამდენიმე გვერდათ."],"Set media and words side-by-side for a richer layout.":["დააყენეთ მულტიმედია ელემენტი და შემოსაზღვრეთ ის ტექსტით ლამაზი მაკეტისათვის."],"Media & Text settings":[],"Create a bulleted or numbered list.":["ბურთულებიანი, ან დამონრილი სიის შექმნა."],"Display a list of your most recent comments.":["საიტის ბოლო კომენტარები."],"Insert an image to make a visual statement.":["დაამატეთ სურათი ვიზუალური განაცხადისათვის."],"Add custom HTML code and preview it as you edit.":["დაამატეთ მორგებული HTML კოდი და ნახეთ შედეგი ჩასწორების პროცესში."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["გამოაცხადეთ ახალი სექციები და მოარგეთ შიგთავსი მომხმაერებელთა დასახმარებლად (აგრეთვე, საძიებო სისტემებისათვის) გაიგონ მისი სტრუქტურა."],"Display multiple images in a rich gallery.":["რამოდენიმე სურათის გაერთიანება გალაერეაში."],"Add a link to a downloadable file.":["ბმულის დამატება ჩამოსატვირთ ფაილზე."],"Embed videos, images, tweets, audio, and other content from external sources.":["ვიდეოს, სურათების, ტვიტების, აუდიოს და სხვა შიგთავსის ჩაშენება გარე წყაროებიდან."],"Resize for smaller devices":["ზომის შეცვლა პატარა მოწყობილობებისათვის"],"This embed may not preserve its aspect ratio when the browser is resized.":["ამ ჩაშენებულმა ობიექტმა შესაძლოა ვერ შეინარჩუნოს მხარეთა თანაფარდობა ბრაუზერის ფანჯრის ცვლილებისას."],"This embed will preserve its aspect ratio when the browser is resized.":["ეს ჩაშენებული ობიექტი შეინარჩუნებს მხარეთა თანაფარდობას ბრაუზერის ფანჯრის ცვლილებისას."],"Embed an Animoto video.":["Animoto ვიდეოს ჩაშენება."],"Embed a Vimeo video.":["Vimeo ვიდეოს ჩაშენება."],"Embed Flickr content.":["Flickr შიგთავსის ჩაშენება."],"Embed Spotify content.":["Spotify შიგთავსის ჩაშენება."],"Embed SoundCloud content.":["SoundCloud შიგთავსის ჩაშენება."],"Embed a WordPress post.":["WordPress-ის ჩანაწერის ჩასმა."],"Embed an Instagram post.":["Instagram ჩანაწერის ჩაშენება."],"Embed a Facebook post.":["Facebook ჩანაწერის ჩაშენება."],"Embed a WordPress.tv video.":["WordPress.tv ვიდეოს ჩაშენება."],"Embed a VideoPress video.":["VideoPress ვიდეოს ჩაშენება."],"Embed a Tumblr post.":["Tumblr სტატიის ჩაშენება."],"Embed a TED video.":["TED ვიდეოს ჩაშენება."],"Embed Speaker Deck content.":["Speaker Deck შიგთავსის ჩაშენება."],"Embed a YouTube video.":["YouTube ვიდეოს ჩაშენება."],"Embed SmugMug content.":["SmugMug შიგთავსის ჩაშენება."],"Embed Slideshare content.":["Slideshare შიგთავსის ჩაშენება."],"Embed Scribd content.":["Scribd შიგთავსის ჩაშენება."],"Embed Screencast content.":["Screencast შიგთავსის ჩაშენება."],"Embed ReverbNation content.":["ReverbNation შიგთავსის ჩაშენება."],"Embed a Reddit thread.":["Reddit შიგთავსის ჩაშენება."],"Embed Polldaddy content.":["Polldaddy შიგთავსის ჩაშენება."],"Embed Mixcloud content.":["Mixcloud შიგთავსის ჩაშენება."],"Embed a tweet.":["ტვიტის ჩაშენება."],"Embed Meetup.com content.":["Meetup.com შიგთავსის ჩაშენება."],"Embed Kickstarter content.":["Kickstarter შიგთავსის ჩაშენება."],"Embed Issuu content.":["Issuu შიგთავსის ჩაშენება."],"Embed Imgur content.":["Imgur შიგთავსის ჩაშენება."],"Embed Hulu content.":["Hulu შიგთავსის ჩაშენება."],"Embed a Dailymotion video.":["Dailymotion ვიდეოს ჩაშენება."],"Embed CollegeHumor content.":["CollegeHumor შიგთავსის ჩაშენება."],"Embed Cloudup content.":["Cloudup შიგთავსის ჩაშენება."],"Add an image or video with a text overlay — great for headers.":["დაამატეთ სურათი ან ვიდეო ტექსტის გადაფარვით — არაჩვეულებრივია სათაურებისათვის."],"Display code snippets that respect your spacing and tabs.":["აჩვენეთ კოდის ფრაგმენტი დაშორებებით და ტაბულაციით."],"Use the classic WordPress editor.":["WordPress-ის კლასიკური რედაქტორის გამოყენება."],"Display a list of all categories.":["ყველა კატეგორიის სიის ჩვენება."],"Embed a simple audio player.":["მარტივი აუდიო დამკვრელის ჩაშენება."],"noun\u0004View":["ხედი"],"editor button\u0004Left to right":["მარცხნიდან მარჯვნივ"],"Save as Pending":["შენახვა დასამტკიცებლად"],"%s address":["%s მისამართი"],"Paste or type URL":["ჩასვით, ან შეიტანეთ URL"],"Insert from URL":["საიტიდან ჩასმა"],"Block Navigator":[],"Styles":["სტილები"],"Advanced panels":[],"Document panels":[],"General":["საერთო"],"Open the block navigation menu.":["ბლოკებში გადასვლის მენიუს გახსნა."],"Work without distraction":["მუშაობა ყურადღების გაფანტვის გარეშე"],"Focus on one block at a time":["ყურადᲦᲔᲑᲐ ერთ კონკრეტულ ბლოკზე"],"Access all block and document tools in a single place":["წვდომა ყველა ბლოკზე და ხელსაწყოზე ერთ ადგილას"],"Options":["პარამეტრები"],"(opens in a new tab)":["(ხსნის ახალი ჩანართში)"],"Minutes":["წუთი"],"Hours":["საათი"],"Time":["დრო"],"Year":["წელი"],"Day":["დღე"],"December":["დეკემბერი"],"November":["ნოემბერი"],"October":["ოქტომბერი"],"September":["სექტემბერი"],"August":["აგვისტო"],"July":["ივლისი"],"June":["ივნისი"],"May":["მაი"],"April":["აპრ"],"March":["მარტი"],"February":["თებერვალი"],"January":["იანვარი"],"Month":["თვე"],"Date":["თარიღი"],"Go to the first (home) or last (end) day of a week.":["გადადით კვირის პირველ (home), ან ბოლო (end) დღეზე."],"Home/End":["Home/End"],"Home and End":["Home და End"],"Move backward (PgUp) or forward (PgDn) by one month.":["უკან (PgUp), ან წინ (PgDn) გადასვლა ერთი თვით."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up და Page Down"],"Move backward (up) or forward (down) by one week.":["უკან (PgUp), ან წინ (PgDn) გადასვლა ერთი კვირით."],"Up and Down Arrows":["ისრები ზემოთ და ქვემოთ"],"Move backward (left) or forward (right) by one day.":["უკან (PgUp), ან წინ (PgDn) გადასვლა ერთი დღით."],"Left and Right Arrows":["ისრები მარცხნივ და მარჯვნივ"],"Select the date in focus.":["აირჩიეთ თარიღი."],"Navigating with a keyboard":["გადაადგილება კლავიატურით"],"Click the desired day to select it.":["დააწკაპუნეთ საჭირო დრეზე მის მოსანიშნად."],"Click the right or left arrows to select other months in the past or the future.":["გამოიყენეთ მარცხენა, ან მარჯვენა ისარი სხვა თვეების მოსანიშნად წარსულში, ან მომავალში."],"Click to Select":["დააწკაპუნეთ მოსანიშნად"],"Calendar Help":["კალენდრის დახმარება"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["აირჩიეთ შეფერილობა"],"Change color format":["ფერის ფორმატის შეცვლა"],"Color value in HSL":["ფერის მნიშვნელობა HSL-ფორმატში"],"Color value in RGB":["ფერის მნიშვნელობა RGB-ფორმატში"],"Color value in hexadecimal":["ფერის მნიშვნელობა HEX-ფორმატში"],"RGB mode active":["RGB რეჟიმი აქტიურია"],"Hex color mode active":["Hex რეჟიმი აქტიურია"],"Hue/saturation/lightness mode active":["HSL რეჟიმი აქტიურია"],"Move the arrow left or right to change hue.":["გადაადგილეთ ისარი მარცხნივ, ან მარჯვნივ შეფერილობის შესაცვლელად."],"Hue value in degrees, from 0 to 359.":["შეფერილობის მნიშვნელობა გრადუსებში, 0-დან 359-მდე."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["ალფას მნიშვნელობა, 0-დან (გამჭვირვალე) 1-მდე (გაუმჭვირვალე)."],"Stripes":["ზოლები"],"Your site doesn’t include support for this block.":["თქვენი საიტი მხარს არ უჭერს ამ ბლოკს."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["თქვენი საიტი მხარს არ უჭერს \"%s\" ბლოკს. შეგიძლიათ ხელუხლებლად დატოვოთ ეს ბლოკი, ან წაშალოთ."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["თქვენი საიტი მხარს არ უჭერს “%s” ბლოკს. შეგიძლიათ ხელუხლებლად დატოვოთ ეს ბლოკი, გარდაქმნათ HTML-კოდად, ან წაშალოთ."],"Media area":["მულტიმედიას არე"],"Media & Text":["მედია და ტექსტი"],"Show media on right":["მედიის ჩვენება მარჯვნივ"],"Show media on left":["მედიის ჩვენება მარცხნივ"],"Open in New Tab":["ახალ ჩანართში გახსნა"],"Cover":["გარეკანი"],"Border settings":[],"Medium":["საშუალო"],"Paste URL or type to search":["ჩასვით მისამართი, ან აკრიფეთ ძებნისათვის"],"Terms":["პირობები"],"Your work will be published at the specified date and time.":["თქვენი შრომა გამოქვეყნდება მითითებულ თარიღსა და დროს."],"Are you ready to schedule?":["მზად ხართ დაგეგმოთ გამოქვეყნება?"],"Always show pre-publish checks.":["ყოველთვის გამოჩნდეს შემოწმება გამოქვეყნებამდე."],"Take Over":["კონტროლის აღება"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["სხვა მომხმარებელი უკვე მუშაობს ამ ჩანაწერზე, რაც ნიშნავს, რომ ვერ შეიტანთ ცვლილებებს, სანამ კონტროლს არ აიღებთ."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s ამჟამად მუშაობს ამ ჩანაწერზე, რაც იმას ნიშნავს, რომ ცვლილებების შეტანა ვერ ხერხდება, თუ კონტროლის არ აიღებთ."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["სხვა მომხმარებელი ამჟამად მუშაობს ამ ჩანაწერზე. არ იდარდოთ, თქვენი ცვლილებები ამ ეტაპზე შენახულია."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s ამჟამად მუშაობს ამ ჩანაწერზე. არ იდარდოთ, თქვენი ცვლილებები ამ ეტაპზე შენახულია."],"Avatar":["ავატარი"],"This post is already being edited.":["ჩანაწერი უკვე რედაქტირდება."],"Someone else has taken over this post.":["ვიღაცამ კონტროლი აიღო ამ ჩანაწერზე."],"This block contains unexpected or invalid content.":["ბლოკი შეიცავს მოულოდნელ, ან არასწორ შიგთავსს."],"Resolve Block":["ბლოკის გასწორება"],"Convert to HTML":["HTML-ად გარდაქმნა"],"This block can only be used once.":["ამ ბლოკის გამოყენება მხოლოდ ერთხელ შეიძლება."],"Exit Code Editor":["კოდის რედაქტორიდან გამოსვლა"],"Editing Code":["კოდის რედაქტორი"],"Solid Color":["ერთფეროვანი"],"Main Color":["მთავარი ფერი"],"HTML":["HTML"],"Write HTML…":["დაწერეთ HTML…"],"Media settings":[],"Overlay":["გადაფარვა"],"Insert Media":["მედიას ჩასმა"],"Reusable block imported successfully!":["კვლავგამოყენებადი წარმატებით დაიმპორტდა!"],"Invalid Reusable Block JSON file":["არასწორი JSON ფაილი კვლავგამოყენებადი ბლოკისათვის"],"Invalid JSON file":["არასწორი JSON ფაილი"],"Import from JSON":["იმპორტი JSON ფაილიდან"],"Backtick":["ბრჭყალი"],"Period":["წერტილი"],"Comma":["მძიმე"],"Change type of %d block":["%d ბლოკის ტიპის შეცვლა"],"Current":["მიმდინარე"],"After Conversion":["გარდაქმნის შემდეგ"],"Change alignment":[],"Change text alignment":[],"%d block":["%d ბლოკი"],"Forward-slash":["უკუ დახრილი ხაზი"],"No archives to show.":["არ არის არქივი, რომ გაჩვენოთ."],"This file is empty.":["ფაილი ცარიელია."],"Sorry, this file type is not supported here.":["უკაცრავად, ამ ტიპის ფაილი არ არის მხარდაჭერილი."],"Manage all reusable blocks":[],"Title":["სათაური"],"Fullscreen mode":[],"Beautiful landscape":["შესანიშნავი პეიზაჟი"],"Close panel":["პანელის დახურვა"],"Convert to Classic Block":["კლასიკურ ბლოკად გარდაქმნა"],"Remove Poster Image":["მინიატურის წაშლა"],"Select Poster Image":["აფიშის გამოსახულების არჩევა"],"Poster Image":["პოსტერის სურათი"],"This block is deprecated. Please use the Columns block instead.":["ეს ბლოკი მოძველდა. მის ნაცვლად გამოიყენეთ ბლოკი „სვეტები“."],"Text Columns (deprecated)":["ტექსტური სვეტები (მოძველებული)"],"Create":["შექმნა"],"Row Count":["სტრიქონების რაოდენობა"],"Column Count":["სვეტების რაოდენობა"],"This block is deprecated. Please use the Paragraph block instead.":["ეს ბლოკი მოძველდა. მის ნაცვლად გამოიყენეთ ბლოკი „აბზაცი“."],"Subheading (deprecated)":["ქვესათაური (მოძველებული)"],"blockquote":["ციტატა"],"Change the block type after adding a new paragraph.":["ბლოკის ტიპის შეცვლა ახალი აბზაცის დამატების შემდეგ."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["ჭდეები მომხმარებელსა და საძიებო სისტემას ეხმარება გადაადგილდნენ თქვენს საიტზე და მოიძიონ შიგთავსი. დაამატეთ რამდენიმე საკვანძო სიტყვა თქვენს ჩანაწერს."],"Add tags":["ჭდეების დამატება"],"Apply the \"%1$s\" format.":["\"%1$s\" ფორმატის მისადაგება."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["თქვენს თემაში გამოიყენება ჩანაწერის ფორმატი, შიგთავსის სხვადასხვა ტიპის საჩვენებლად. გამოიყენეთ ჩანაწერის ფორმატი, ამ განსაკუთრებული სტილის სანახავად."],"Use a post format":["ჩანაწერის ფორმატის გამოყენება"],"Insert After":["ჩასმა ქვემოთ"],"Insert Before":["ჩასმა ზემოთ"],"Move %1$d block from position %2$d down by one place":["%1$d ბლოკის გადაადგილება %2$d პოზიციიდან ქვევით ერთი პოზიციით"],"Move %1$d block from position %2$d up by one place":["%1$d ბლოკის გადაადგილება %2$d პოზიციიდან ზევით ერთი პოზიციით"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["ფილმი"],"Insert a new block before the selected block(s).":["ახალი ბლოკის ჩასმა მონიშნულ ბლოკ(ებ)ამდე."],"Remove the selected block(s).":["მონიშნული ბლოკ(ებ)ის ამოღება."],"Duplicate the selected block(s).":["მონიშნული ბლოკ(ებ)ის დუბლირება."],"Block shortcuts":["ბლოკის მალსახმობი კლავიშები"],"Clear selection.":["არჩეულის გასუფთავება."],"Select all text when typing. Press again to select all blocks.":["ყველაფრის მონიშვნა. დააჭირეთ კიდევ ერთხელ, ყველა ბლოკის მონიშვნისათვის."],"Selection shortcuts":["არჩევის მალსახმობი კლავშები"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["გადასვლა რედაქტორის წინა სექციაში."],"Navigate to the next part of the editor.":["გადასვლა რედაქტორის შემდეგ სექციაში."],"Show or hide the settings sidebar.":["პარამეტრების გვერდითა ზოლის ჩვენება, ან დამალვა."],"Redo your last undo.":["ბოლო გაუქმების გამეორება."],"Undo your last changes.":["ბოლო ცვლილებების გაუქმება."],"Save your changes.":["ცვლილებების შენახვა."],"Global shortcuts":["გლობალური მალსახმობები"],"Remove a link.":["ბმულის ამოღება."],"Convert the selected text into a link.":["მონიშნული ტექსტის ბმულად გარდაქმნა."],"Underline the selected text.":["მონიშნული ტექსტის ხაზგასმა."],"Make the selected text italic.":["მონიშნული ტექსტის დახრა."],"Make the selected text bold.":["მონიშნული ტექსტის გამუქება."],"Text formatting":["ტექსტის დაფორმატება"],"Insert a new block after the selected block(s).":["ახალი ბლოკის ჩასმა მონიშნული ბლოკ(ებ)ის შემდეგ."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["გმადლობთ, რომ გამოსცადეთ Gutenberg!"],"Help build Gutenberg":["დაგვეხმარეთ შევქმნათ Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["თუ გსურთ გაიგოთ მეტი, თუ როგორ შექმნათ დამატებითი ბლოკები, ან თუ გსურთ დაეხმაროთ პროექტს, გადადით GitHub რეპოში."],"The WordPress community":["WordPress-ის გუნდი"],"Code is Poetry":["კოდი პოეზიაა"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["შეგიძლიათ შექმნათ ნებისმიერი ბლოკი, სტატიკური, ან დინამიური, დეკორატიული, ან უბრალო. აი ციტირების ბლოკი:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["შესაძლებელია ნებისმიერი ბლოკის გასწორება. ჩაშენებული ბლოკი ასევე სწორდება და ნაგულისხმევად ადაპტიურია:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["ზემოთ მოცემულია გალერეა ორი სურათით. ეს ხერხი უფრო მარტივია ვიზუალურად სასიამოვნო მაკეტების შესაქმნელად. თქვენ ასევე შეგიძლიათ ადვილად გარდაქმნათ გალერეა ცალკეულ სურათად, ბლოკის გადამრთველის საშუალებით."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["რასაკვირველია, სრულმაშტაბიანი სურათი შესაძლოა საკმაოდ დიდი იყოს. მაგრამ ხანდახან ეს ამათ ღირს."],"Accessibility is important — don’t forget image alt attribute":["ხელმისაწვდომობა მნიშვნელოვანია — არ დაგავიწყდეთ ატრიბუტი alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["თუ გააერთიანებთ შიგთავსისი მიხედვით და სრული სიგანის სწორებებს გალერეებთან, თქვენ შეძლებთ ფრიად მდიდარი მედია-მაკეტის შექმნას:"],"Media Rich":["მედია"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["შეგიძლიათ შეცვალოთ სვეტების რაოდენობა გალერეებში, გვერდითა ზოლში ბლოკების ინსპექტორში ცოციას გადაცოცებით."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["ბლოკი შეიძლება იყოს ნებისმიერი. მაგალითად, შეგიძლიათ დაამატოთ ციტატა, როგორც თქვენი ტექსტის კომპოზიციის ნაწილი, ან შეგიძლიათ აჩვენოთ გიგანტური სტილიზებული ტექსტი. ეს ყველაფერი ხელმისაწვდომია პარამეტრებში."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["ინფორმაცია ციტატის წყაროს შესახებ წარმოადგენს ცალკეულ ტექსტურ ველს, რომელიც სურათის წარწერის მსგავსია. ამიტომ ციტატის სტრუქტურა უცვლელია, მაშინაც კი, როდესაც ირჩევთ, ცვლით, ან შლით წყაროს. წყაროს ხელახლა დამატება ნებისმიერ დროს შეიძლება."],"Matt Mullenweg, 2017":["მეთ მულენვეგი, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["რედაქტორი ცდილობს გაგაცნოთ სტატიებისა და გვერდების შექმნის ახალი გამოცდილება, რაც საშუალებას მოგცემთ შექმნათ მდიდარი სტატიები ბლოკების საშუალებით — ახლანდელი მალსახმობების, html, ან კოდის ჩასმის სხვადასხვანაირი მაქინაციების მაგივრად."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["ბლოკების უდიდესი უპირატესობა იმაში მდგომარეობს, რომ თქვენ შეგიძლიათ ერთდოულად ჩაასწოროთ ისინი და ამავდროულად მართოთ შიგთავსი. იმის ნაცვლად, რომ შეცვალოთ ციტატების წყაროების, ან ღილაკის წარწერის ველები, თქვენ შეგიძლიათ პირდაპირ შეცვალოთ შიგთავსი. სცადეთ ჩაასწოროთ შემდეგი ციტატა:"],"Visual Editing":["ვიზუალური ჩასწორება"],"And Lists like this one of course :)":["და სიები, როგორც ესენი, რასაკვირველია :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["შაბლონის, ღილაკების, სურათების, გამყოფების და ა.შ. ბლოკები."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["YouTube-ის ვიდეოები, ტვიტები, ან WordPress სტატიების ჩაშენებები."],"Galleries":["გალერეა"],"Images & Videos":["სურათები და ვიდეო"],"Text & Headings":["ტექსტი და სათაურები"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["სცადეთ, WordPress-ს უკვე შეუძლია დაამატოთ თქვენს ჩანაწერებში ბლოკები, რომლებიც თქვენ არ იცოდით. აი მოკლე სია იმისა, თუ რისი ნახვა შეგიძლიათ ამჟამად:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["წარმოიდგინეთ, რომ ყველაფერი, რისი გაკეთებაც შეუძლია WordPress-ს, ხელმისაწვდომია სწრაფად და ერთიანი ადგილიდან. არ არის აუცილებელი HTML-ტეგების გაწერა, ან მალსახმობების რთული სინტაქსის დამახსოვრება, რომლებსაც დაინახავთ რედაქტორის სარკმელში. ღილაკი (+)
, რომელსაც დაინახავთ რედაქტორში, საშუალებას მოგცემთ ნახოთ შიგთავსის ხელმისაწვდომი ბლოკები და დაამატოთ ისინი თქვენს სტატიაში. პლაგინებს და თემებს შეუძლიათ დაარეგისტრირონ საკუთარი ბლოკები."],"The Inserter Tool":["ჩასმის ხელსაწყო"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["შეეცადეთ აირჩიოთ, წაშალოთ, ან ჩაასწოროთ სათაური. ახლა აღარ მოგიწევთ სიფრთხილე სურათის, ან სხვა ტექსტის არჩევისას, რათა არ დაუშვათ შეცდომა."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["თუ თქვენი თემა მხარს უჭერს „სრულ ეკრანზე“ რეჟიმს, თქვენ დაინახავთ ღილაკს „სრულ ეკრანზე“ ხელსაწყოთა ზოლზე. სცადეთ."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["ძირითადი ყურადღება ახალ რედაქტორში დათმობილი აქვს სურათების და მულტიმედიას დამუშავებას, მაქსიმალური სიფრთხილით. იმედს ვიტოვებთ, რომ გამონახავთ დროს სურათზე წარწერის გასაკეთებლად, ან სრულ ეკრანზე გადასვლაზე."],"A Picture is Worth a Thousand Words":["ერთი სურათი ათასი სიტყვის ნაცვლად"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["სათაურები ასევე ცალკე ბლოკებია, რაც გეხმარებათ სტატიის შიგთავსის მოწესრიგებაში."],"... like this one, which is right aligned.":["... ისივე როგორც ეს, რომელიც გასწორებულია მარჯვენა კიდეზე."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["ის, რასაც ახლა კითხულობთ, წარმოადგენს აბზაცს. ის ყველაზე მთავარი ბლოკია. აბზაცს აქვს მართვის საკუთარი ელემენტები, რომელთა გადაადგილება თავისუფლად შეიძლება…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["ახალი რედაქტორის მიზანია — გახადოს შიგთავსის დამატება WordPress-ში მარტივი და სასიამოვნო. ეს ჩანაწერი შედგება შიგთავსის ფრაგმენტებისგან, რაც ძალიან ჰგავს LEGO-ს აგურებს, რომლებიც შეგიძლიათ რაგინდარად გამოიყენოთ. გადაადგილეთ მაუსის მიმთითებელი და თქვენ შეამჩნევთ, რომ სხვადასხვა ბლოკები აინთება კონტურებით და ისრებით. დააჭირეთ ისრებზე, რათა სწრაფად გადაადგილოთ ბლოკები და ნუ იფიქრებთ იმაზე, რომ შესაძლოა დაკარგოთ შიგთავსი კოპირებისა და ჩასმის პროცესში."],"Of Mountains & Printing Presses":["მთისა და ზღვის წიგნი"],"Welcome to the Gutenberg Editor":["მოგესალმებით Gutenberg-ის რედაქტორში"],"block name\u0004More":["მეტი"],"button to expand options\u0004More":["მეტი"],"Are you sure you want to unschedule this post?":["დარწმუნებული ხართ, რომ გსურთ ამ ჩანაწერის გამოქვეყნების განრიგის წაშლა?"],"Alt Text (Alternative Text)":["Alt (ალტერნატიული ტექსტი)"],"Reusable Block":["კვლავგამოყენებადი ბლოკი"],"Unique identifier for the object.":["ობიექტის უნიკალური იდენტიფიკატორი."],"Untitled Reusable Block":["ბლოკი დასახელების გარეშე"],"Small":[],"Reusable":["კვლავგამოყენებადი"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["HTML კოდის შენახვა"],"Edit URL":["URL-ს ჩასწორება"],"Color settings":[],"The response is not a valid JSON response.":["პასუხი არ არის დასაშვები JSON გამოხმაურება."],"Editor publish":["გამოქვეყნების რედაქტორი"],"Muted":["დადუმებული"],"Video settings":[],"recent comments":["ბოლო კომენტარები"],"Latest Comments":["ბოლო კომენტარები"],"Display Excerpt":["ნაწყვეტის ჩვენება"],"Display Date":["თარიღის ჩვენება"],"Display Avatar":["ავატარის ჩვენება"],"Latest comments settings":[],"Number of Comments":["კომენტარების რაოდენობა"],"Background Opacity":["ფონის გაუმჭვირვალობა"],"Auto":["ავტო"],"Preload":["წინასწარი ჩატვირთვა"],"Audio settings":[],"Display a monthly archive of your posts.":["საიტის ჩანაწერების ყოველთვიური არქივის ჩვენება."],"Display as Dropdown":["ჩამოსაშლელი სიის სახით ჩვენება"],"Show Post Counts":["ჩანაწერების რაოდენობის ჩვენება"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["მხარდაჭერა"],"No comments to show.":["არ არის კომენტარი, რომ გაჩვენოთ."],"%1$s on %2$s":["%1$s კომენტარი %2$s ჩანაწერზე"],"Select Post":["აირჩიეთ ჩანაწერი"],"Select Week":["აირჩიეთ კვირა"],"Select Day":["აირჩიეთ დღე"],"Select Month":["აირჩიეთ თვე"],"Select Year":["აირჩიეთ წელი"],"Archives":["არქივები"],"Very dark gray":["ძალიან მუქი ნაცრისფერი"],"Cyan bluish gray":["მოციფრო-ნაცრისფერი"],"Very light gray":["ღია ნაცრისფერი"],"Vivid cyan blue":["კაშკაშა ლურჯი"],"Pale cyan blue":["ფერკმთალი ლურჯი"],"Vivid green cyan":["კაშკაშა მწვანე"],"Light green cyan":["ღია მწვანე"],"Luminous vivid amber":["ქარვისფერი"],"Luminous vivid orange":["ფორთოხლისფერი"],"Vivid red":["კაშკაშა წითელი"],"Pale pink":["ფერკმთალი ვარდისფერი"],"Inline image":[],"Available block types":["ხელმისაწვდომი ბლოკის ტიპები"],"Transform To:":["გარდაქმნა:"],"Remove Block":["ბლოკის ამოღება"],"Open publish panel":["გამოქვეყნების პანელის გახსნა"],"Dots":["წერტილები"],"Wide Line":["ფართო ხაზი"],"Large":["დიდი"],"Show download button":[],"Download button settings":[],"Link To":["ბმული"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["დოკუმენტი"],"Copy URL":["URL-ს კოპირება"],"Write file name…":["დაწერეთ ფაილის სახელი…"],"File":["ფაილი"],"A single column within a columns block.":["ერთი სვეტი სვეტების ბლოკში."],"Column":["სვეტი"],"Outline":["კონტური"],"Loop":["გამეორება"],"Autoplay":["ავტო-დაკვრა"],"Playback Controls":["დაკვრის ელემენტები"],"Close dialog":["დიალოგური სარკმელის დახურვა"],"Sorry, this file type is not permitted for security reasons.":["უკაცრავად, ამ ტიპის ფაილი არ არის ნებადართული უსაფრთხოების მიზნით."],"Disable tips":["რჩევების გამორთვა"],"Got it":["გასაგებია"],"See next tip":["შემდეგი რჩევა"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["როდესაც მზად იქნებით, უბრალოდ გადააგზავნეთ სამუშაო დასამტკიცებლად და რედაქტორი შეძლებს მის მოწონებას."],"Are you ready to submit for review?":["მზად ხართ გადააგზავნოთ დასამტკიცებლად?"],"Replace image":["სურათის ჩანაცვლება"],"Remove image":["სურათის ამოღება"],"Error while uploading file %s to the media library.":["შეცდომა ფაილის %s ატვირთვისას მედია ბიბლიოთეკაში."],"This file exceeds the maximum upload size for this site.":["ფაილის ზომა აღემატება ამ საიტზე მაქსიმალურად დაშვებულ ზომას."],"View the autosave":["ავტოშენახვის ნახვა"],"There is an autosave of this post that is more recent than the version below.":["ამ ჩანაწერისათვის არსებობს უფრო გვიანდელი ვერსია, ვიდრე ქვემოთ მოცემული."],"Autosaving":["ავტოშენახვა"],"Enter URL here…":[],"Pin to toolbar":["ხელსაწყოთა ზოლზე მიმაგრება"],"Unpin from toolbar":["ხელსაწყოთა ზოლიდან მოხსნა"],"Insert a table — perfect for sharing charts and data.":["ცხრილის ჩასმა — იდეალურია გრაფიკებისა და მონაცემებისათვის."],"Fixed width table cells":["ცხრილის უჯრედები ფიქსირებული სიგანით"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["დაამატეთ ტექსტი, რომელიც შეესაბამება თქვენს დაშორებასა და ჩანართებს, ასევე ანიჭებს სტილს."],"Display a list of your most recent posts.":["საიტის ბოლო ჩანაწერები."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["ბლოკის დამატება, რომელიც აჩვენებს სხვა საიტებს, როგორიცაა Twitter, Instagram ან YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["დაამატეთ ბლოკი, რომელიც აჩვენებს შიგთავსს რამოდენიმე სვეტში, ხოლო შემდეგ ამ ბლოკში დაამატეთ სხვა ბლოკები შიგთავსით, რომლებიც თქვენ გსურთ."],"Error loading block: %s":["ბლოკის ჩატვირთვის შეცდომა: %s"],"Unknown error":["უცნობი შეცდომა"],"Embed Handler":["დამმუშავებელი ჩაშენება"],"term\u0004Remove %s":["ამოღება: %s"],"Copy the permalink":["მუდმივი ბმულის კოპირება"],"Permalink copied":["მუდმივი ბმული დაკოპირდა"],"Height in pixels":["სიმაღლე პიქსელებში"],"Spacer settings":[],"Spacer":["დაშორება"],"Toggle to show a large initial letter.":["გახადეთ საწყისი ასო-ნიშანი დიდი."],"Showing large initial letter.":["საწყისი დიდი ასო-ნიშანის ჩვენება."],"Name:":["სახელი:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s — %3$s)"],"Remove item":["ელემენტის წაშლა"],"Color code: %s":["ფერის კოდი: %s"],"Skip to the selected block":["გადასვლა არჩეულ ბლოკზე"],"Publish…":["გამოქვეყნება…"],"Schedule…":["დაგეგმილი…"],"Edit post permalink":["ჩანაწერის მუდმივი ბმულის ჩასწორება"],"Show Block Settings":["ბლოკის პარამეტრების ჩვენება"],"Hide Block Settings":["ბლოკის პარამეტრების დამალვა"],"Block settings closed":["ბლოკის პარამეტრები დახურულია"],"Close plugin":["პლაგინის დახურვა"],"Editor settings":["რედაქტორის პარამეტრები"],"Link settings":[],"Unlink":["ბმულის გაუქმება"],"Page break":["გვერდის გაყოფა"],"pagination":["გვერდებად დანომვრა"],"next page":["შემდეგი გვერდი"],"Image Size":["სურათის ზომა"],"Height":["სიმაღლე"],"Width":["სიგანე"],"Image Dimensions":["სურათის ზომები"],"Thumbnails are not cropped.":["ესკიზები არ მოიჭრება."],"Thumbnails are cropped to align.":["ესკიზები მოიჭრება გასწორებისათვის."],"Media Library":["მედია ბიბლიოთეკა"],"Advanced":["დამატებით"],"Add item":["ელემენტის დამატება"],"Reset the template":["შაბლონის ჩამოყრა"],"Keep it as is":["ცვლილების გარეშე დატოვება"],"The content of your post doesn’t match the template assigned to your post type.":["შიგთავსი არ შეესაბამება შაბლონს, რომელიც მინიჭებული აქვს ამ ტიპის ჩანაწერს."],"Resetting the template may result in loss of content, do you want to continue?":["შაბლონის ჩამოყრამ შესაძლოა გამოიწვიოს შიგთავსის დაკარგვა, განვაგრძოთ?"],"Document Statistics":["დოკუმენტის სტატისტიკა"],"is now scheduled. It will go live on":["დაგეგმილია და გამოქვეყნდება"],"Scheduled":["დაგეგმილი"],"Scheduling…":["დაგეგმვა…"],"Code editor selected":["არჩეულია კოდის რედაქტორი"],"Visual editor selected":["არჩეულია ვიზუალური რედაქტორი"],"Plugins":["დანამატები"],"Custom Size":["სტანდარტული ზომა"],"Layout elements":[],"term\u0004%s removed":["%s ამოღებულია"],"term\u0004%s added":["%s დამატებულია"],"imperative verb\u0004Preview":["გადახედვა"],"Block deleted.":["ბლოკი წაშლილია."],"Block updated.":["ბლოკი განახლდა."],"Block created.":["ბლოკი შეიქმნა."],"Trashing failed":["სანაგვეში გადატანა ჩაიშალა"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["თქვენ გაქვთ ცვლილებები, რომლებიც ჯერ არ არის შენახული. თუ განაგრძობთ, ისინი დაიკარგება."],"Document Outline":["დოკუმენტის სტრუქურა"],"Paragraphs":["აბზაცები"],"Headings":["თავსართები"],"Words":["სიტყვა"],"Content structure":["შიგთავსის სტრუქტურა"],"Public":["საჯარო"],"Protected with a password you choose. Only those with the password can view this post.":["ᲓᲐᲪᲣᲚᲘᲐ ᲞᲐᲠᲝᲚᲘᲗ, ᲠᲝᲛᲔᲚᲡᲐᲪ ᲗᲥᲕᲔᲜ ᲐᲘᲠᲩᲔᲕᲗ. ᲩᲐᲜᲐᲬᲔᲠᲘᲡ ᲜᲐᲮᲕᲐ ᲛᲮᲝᲚᲝᲓ ᲛᲐᲗ ᲨᲔᲣᲫᲚᲘᲐᲗ, ᲕᲘᲡᲐᲪ ᲐᲥᲕს პაროლი."],"Password Protected":["პაროლით დაცული"],"Only visible to site admins and editors.":["ჩანს მხოლოდ სატის ადმინისტრატორისათვის და რედაქტორისათვის."],"Private":["პირადი"],"Visible to everyone.":["ჩანს ყველასათვის."],"Post Visibility":["ჩანაწერის ხილვადობა"],"Would you like to privately publish this post now?":["გსურთ ამ ჩანაწერის პირადად გამოქვეყნება?"],"Use a secure password":["გამოიყენეთ საიმედო პაროლი"],"Create password":["პაროლის შექმნა"],"Move to Trash":[],"Parent Term":["მშობელი ტერმინი"],"Parent Category":["მშობელი კატეგორია"],"Add new term":["ახალი ტერმინის დამატება"],"Add new category":["ახალი კატეგორიის დამატება"],"Term":["ტერმინი"],"Tag":["ტეგი"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["დარწმუნებული ხართ, რომ გსურთ ამ ჩანაწერის გამოქვეყნების გაუქმება?"],"Immediately":["დაუყოვნებლივ"],"Save Draft":["ესკიზის შენახვა"],"Saving":["შენახვა"],"Publish:":["გამოქვეყნებულია:"],"Visibility:":["ხილვადობა:"],"Are you ready to publish?":["მზად ხართ გამოქვეყნებისათვის?"],"Copy Link":["ბმულის კოპირება"],"What’s next?":["შემდეგ რა ხდება?"],"is now live.":["გამოქვეყნებულია."],"Published":["გამოქვეყნებული"],"Schedule":["განრიგში"],"Update":["განახლება"],"Submit for Review":["დასამტკიცებლად გაგზავნა"],"Updating…":["განახლება…"],"Publishing…":["გამოქვეყნება…"],"Allow pingbacks & trackbacks":[],"Permalink:":["მუდმივი ბმული:"],"Pending review":[],"%d Revision":["%d რევიზია"],"Suggestion:":["შემოთავაზებები:"],"Post Format":["ჩანაწერის ფორმატი"],"Chat":["ჩეტი"],"Status":["სტატუსი"],"Standard":["სტანდარტული"],"Aside":["შენიშვნა"],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":["გაიგეთ მეტი ნაწყვეტების შესახებ"],"Write an excerpt (optional)":["ნაწყვეტის დაწერა (არასავალდებულო)"],"Allow comments":[],"Template:":["შაბლონი:"],"no parent":["მშობლის გარეშე"],"no title":["სათაურის გარეშე"],"Order":["დალაგება"],"No blocks found.":["ბლოკი ვერ მოიძებნა."],"%d result found.":["%d შედეგია ნაპოვნი."],"Saved":["შენახულია"],"Embeds":["ჩადგმები"],"Blocks":["ბლოკი"],"Search for a block":["ბლოკის ძებნა"],"Add block":["ბლოკის დამატება"],"Copy Error":["შეცდომის ტექსტის კოპირება"],"Copy Post Text":["ჩანაწერის ტექსტის კოპირება"],"Attempt Recovery":["აღდგენის მცდელობა"],"The editor has encountered an unexpected error.":["მოხდა მოულოდნელი შეცდომა."],"Undo":["გაუქმება"],"Redo":["აღდგენა"],"(Multiple H1 headings are not recommended)":["(არ არის რეკომედებული ერთზე მეტი H1 ტეგის გამოყენება)"],"(Your theme may already use a H1 for the post title)":["(თქვენს თემას უკვე შეუძლია H1 ტეგის გამოყენება ჩანაწერის სათაურისათვის)"],"(Incorrect heading level)":["(სათაურის არასწორი დონე)"],"(Empty heading)":["(სათაურის გარეშე)"],"Block Styles":["ბლოკების სტილები"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["დარწმუნებული ხართ, რომ გსურთ კვლავგამოყენებადი ბლოკის წაშლა?\n\nთქვენი ქმედება გამოიწვევს მის წაშლას ყველა ჩანაწერიდან."],"Convert to Regular Block":["ჩვეულებრივ ბლოკად გარდაქმნა"],"More options":["დამატებითი პარამეტრები"],"Edit visually":["ვიზუალაურად ჩასწორება"],"Duplicate":["დუბლირება"],"Blocks cannot be moved down as they are already at the bottom":["ბლოკები ვერ გადაადგილდება ქვემოთ, ვინაიდან ისინი უკვე სულ ბოლოშია"],"Blocks cannot be moved up as they are already at the top":["ბლოკები ვერ გადაადგილდება ზემოთ, ვინაიდან ისინი უკვე სულ თავშია"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["%s ბლოკი ერთადერთი ბლოკია, შესაბამისად ის ვერ გადაადგილდება"],"Edit as HTML":["HTML-ში ჩასწორება"],"Convert to Blocks":["ბლოკებად გარდაქმნა"],"Block: %s":["ბლოკი: %s"],"This block has encountered an error and cannot be previewed.":["ეს ბლოკი შეიცავს შეცდომას და შეუძლებელია მისი ნახვა."],"No block selected.":["ბლოკი არ არის არჩეული."],"Transform into:":["გარდაქმნა:"],"Remove":["წაშლა"],"Find original":["საწყისის მოძებნა"],"Copy all content":[],"Copied!":["დაკოპირდა!"],"Additional settings are now available in the Editor block settings sidebar":["დამატებითი პარამეტრები ხელმისაწვდომია პარამტერების გვერდითა ზოლში"],"Visibility":["ხილვადობა"],"Status & visibility":[],"Page attributes":[],"Block":["ბლოკი"],"Document":["დოკუმენტი"],"Close settings":["პარამეტრების დახურვა"],"Editor content":["შიგთავსის რედაქტორი"],"Tools":["ხელსაწყოები"],"Editor":["რედაქტორი"],"Code editor":[],"Visual editor":[],"Editor top bar":["ხელსაწყოთა ზოლი"],"Settings":["პარამეტრები"],"Reset":["ჩამოყრა"],"Dismiss this notice":["გაფრთხილების გაქრობა"],"Item removed.":["ელემენტი წაშლილია."],"Item added.":["ელემენტი დამატებულია."],"Drop files to upload":["გადაათრიეთ ფაილები აქ"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["მოხდა უცნობი შეცდომა."],"No results.":["შედეგის გარეშე."],"%d result found, use up and down arrow keys to navigate.":["ნაპოვნია %d შედეგი. გადასაადგილებლად გამოიყენეთ ისარი ზემოთ, ან ქვემოთ."],"(no title)":["(უსათაურო)"],"URL":["URL-მისამართი"],"Submit":["გაგზავნა"],"Close":["დახურვა"],"Insert link":[],"Edit link":[],"Link":["ბმული"],"Strikethrough":["ხაზგადასმული"],"Italic":["დახრილი"],"Bold":["მუქი"],"Remove link":[],"Number of items":["ელემენტების რაოდენობა"],"All":["ყველა"],"Category":["კატეგორია"],"Z → A":["ჰ \t ა"],"A → Z":["ა \t ჰ"],"Oldest to Newest":["უფრო ძველიდან ახლისკენ"],"Newest to Oldest":["უფრო ახლიდან ძველისკენ"],"Order by":["დახარისხება"],"Select":["მონიშვნა"],"Select or Upload Media":["მედიის არჩევა, ან ატვირთვა"],"Video":["ვიდეო"],"Write…":["დაწერეთ…"],"poetry":["პოეზია"],"Verse":["ლექსი"],"New Column":["ახალი სვეტი"],"Delete Column":["სვეტის წაშლა"],"Add Column After":["სვეტის ჩასმა მარჯვნივ"],"Add Column Before":["სვეტის ჩასმა მარცხნივ"],"Delete Row":["სტრქონის წაშლა"],"Add Row After":["სტრიქონის ჩასმა ქვემოთ"],"Add Row Before":["სტრიქონის ჩასმა ზემოთ"],"Edit table":[],"Table":["ცხრილი"],"Write subheading…":["დაწერეთ ქვესათაური…"],"Write shortcode here…":["დაწერეთ მალსახმობი აქ…"],"Shortcode":["მალსახმობი"],"divider":["გამყოფი"],"horizontal-line":["ჰორიზონტალური-ხაზი"],"Separator":["გამყოფი"],"Quote":["ციტატა"],"Write citation…":["დაწერეთ ციტატა…"],"Write quote…":["დაწერეთ ციტატა…"],"Pullquote":["ამონარიდი"],"Write preformatted text…":["დაწერეთ დაფორმატებული ტექსტი…"],"Preformatted":["დაფორმატებული"],"text":["ტექსტი"],"Paragraph":["პარაგრაფი"],"Font Size":["შრიფტის ზომა"],"Drop Cap":["საზედაო ასო-ნიშანი"],"Text settings":[],"Read more":["დაწვრილებით"],"Write list…":["სიის შედგენა…"],"numbered list":["დანომრილი სია"],"ordered list":["დანომრილი სია"],"bullet list":["ბურთულებიანი სია"],"Indent list item":["სიის ელემენტებზე დაშორების დამატება"],"Outdent list item":["სიის ელემენტებზე უკუსააბზაცო შეწევის დამატება"],"Convert to ordered list":["დანომრილ სიად გარდაქმნა"],"Convert to unordered list":["ბურთულებიან სიად გარდაქმნა"],"List":["სია"],"recent posts":["ბოლო ჩანაწერები"],"No posts found.":["ჩანაწერები ვერ მოიძებნა."],"Latest Posts":["უახლესი ჩანაწერები"],"Display post date":["ჩანაწერის თარიღის ჩვენება"],"Grid view":[],"List view":[],"photo":["ფოტო"],"Image settings":[],"Image":["სურათი"],"Preview":["გადახედვა"],"embed":["ჩაშენებული"],"Custom HTML":["მორგებული HTML"],"subtitle":["ქვესათაური"],"title":["სათაური"],"Heading":["სათაური"],"Write heading…":["დაწერეთ სათაური…"],"Heading %d":["სათაური %d"],"Level":["დონე"],"Heading settings":[],"photos":["ფოტოები"],"images":["სურათები"],"None":["არც ერთი"],"Media File":["მედია-ფაილი"],"Attachment Page":["დანართის გვერდი"],"Link to ":[],"Crop Images":["სურათის მოჭრა"],"Gallery settings":[],"Gallery":["გალერეა"],"Classic":["კლასიკური"],"video":["ვიდეო"],"audio":["აუდიო"],"music":["მუსიკა"],"image":["სურათი"],"blog":["ბლოგი"],"post":["ჩანაწერი"],"Embedded content from %s":["ჩაშენებული შიგთავსი, წყარო: %s"],"Enter URL to embed here…":["მიუთითეთ URL ჩასაშენებლად…"],"%s URL":["%s URL"],"Embedding…":["ჩაშენება…"],"Write title…":["დაწერეთ სათაური…"],"Fixed Background":["ფიქსირებული ფონი"],"Edit image":["სურათის ჩასწორება"],"Columns":["სვეტები"],"Experiments":[],"Code":["კოდი"],"Write code…":["დაწერეთ კოდი…"],"Categories":["კატეგორიები"],"Show Hierarchy":["იერარქიის ჩვენება"],"Show post counts":[],"Categories settings":[],"Add text…":["დაამატე ტექსტი…"],"Button":["ღილაკი"],"Apply":["მისადაგება"],"Text Color":["ტექსტის ფერი"],"Background Color":["ფონის ფერი"],"Block has been deleted or is unavailable.":["ბლოკი წაშლილია, ან მიუწვდომელია."],"Reusable blocks":[],"Cancel":[],"Edit":["რედაქტირება"],"Write caption…":["დაწერეთ მინაწერი…"],"Use URL":[],"Audio":["აუდიო"],"Upload":["ატვირთვა"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML ღუზა"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["ამ ფერთა შეხამებამ შესაძლოა ძნელად წასაკითხი გახადოს ტექსტი. სცადეთ უფრო კაშკაშა ფერი ფონისათვის ან/და ტექსტის უფრო მუქი ფერი."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["ამ ფერთა შეხამებამ შესაძლოა ძნელად წასაკითხი გახადოს ტექსტი. სცადეთ უფრო კაშკაშა ფერი ტექსტისათვის ან/და ფონის უფრო მუქი ფერი."],"Clear":["გასუფთავება"],"Custom color picker":["მორგებული ფერის არჩევა"],"Color: %s":["ფერი: %s"],"Full width":[],"Wide width":[],"Widgets":["ვიჯეტები"],"Formatting":["დაფორმატება"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["ვბეჭდავთ 1440 წლიდან. ეს არის ბირთვში ბლოკების რედაქტორის პლაგინის შექმნის პროცესი."],"Add title":["სათაურის დამატება"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["ავტორი"],"Slug":["იარლიყი"],"Discussion":["დისკუსია"],"Custom fields":[],"Excerpt":["ციტატა"],"Publish":["გამოქვეყნება"],"Metadata":["მეტა-მონაცემები"],"Save":["დამახსოვრება"],"Documentation":["დოკუმენტაცია"],"Select Category":["კატეგორიის არჩევა"],"(Untitled)":["(უსათაურო)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["დემო"],"%s ago":["%s-ის წინ"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ko.json b/bundle/android/raw/i18ncache_data_ko.json
new file mode 100644
index 0000000000..dd947f373a
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ko.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":["클래식"],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":[],"Import from JSON":[],"Backtick":[],"Period":[],"Comma":[],"Change type of %d block":[],"Current":[],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":[],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":[],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":[],"Convert to Classic Block":[],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":[],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":[],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":[],"Insert Before":[],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":[],"Remove the selected block(s).":[],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":[],"Untitled Reusable Block":[],"Small":[],"Reusable":[],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":[],"Edit URL":[],"Color settings":[],"The response is not a valid JSON response.":["응답이 유효한 JSON 응답이 아닙니다."],"Editor publish":["편집기 공개"],"Muted":["음소거"],"Video settings":[],"recent comments":["최근 댓글"],"Latest Comments":["최신 댓글"],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest comments settings":[],"Number of Comments":[],"Background Opacity":["배경 투명도"],"Auto":["자동"],"Preload":["미리 올림"],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":["드랍다운 방식으로 보여주기"],"Show Post Counts":["글 수 보이기"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["지원"],"No comments to show.":["보여줄 댓글 없음."],"%1$s on %2$s":["%1$s - %2$s"],"Select Post":["글 선택"],"Select Week":["주 선택"],"Select Day":["요일 선택"],"Select Month":["월 선택"],"Select Year":["년도 선택"],"Archives":["글 보관함"],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["가능한 블록 타입"],"Transform To:":["다음으로 변형하기:"],"Remove Block":["블록 제거"],"Open publish panel":["공개하기 패널 열기"],"Dots":["점"],"Wide Line":["넓은 라인"],"Large":["크게"],"Show download button":[],"Download button settings":[],"Link To":["링크"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["문서"],"Copy URL":["URL 복사"],"Write file name…":["파일 이름 쓰기..."],"File":["파일"],"A single column within a columns block.":["컬럼 블록 안에 단일 컬럼."],"Column":["컬럼"],"Outline":["Outline"],"Loop":["연속재생"],"Autoplay":["자동 실행"],"Playback Controls":["실행 제어"],"Close dialog":["대화상자 닫기"],"Sorry, this file type is not permitted for security reasons.":["죄송합니다. 이 파일 타입은 보안을 이유로 허용되지 않습니다."],"Disable tips":["팁 비활성화"],"Got it":["알았습니다"],"See next tip":["다음 팁 보기"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":["리뷰를 위한 제출이 준비가 됐나요?"],"Replace image":["이미지 교체"],"Remove image":["이미지 제거"],"Error while uploading file %s to the media library.":["파일 %s를 미디어 라이브러리에 업로드 중 에러."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["자동저장 보기"],"There is an autosave of this post that is more recent than the version below.":["이 글은 아래 버전보다 최신의 자동저장 버전이 있습니다."],"Autosaving":["자동저장중"],"Enter URL here…":["여기에 URL을 입력하세요..."],"Pin to toolbar":["툴바에 고정"],"Unpin from toolbar":["툴바에서 제거"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":["고정 폭 테이블 셀"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["여백과 탭을 존중하는 텍스트를 추가하세요. 스타일도 허용됩니다."],"Display a list of your most recent posts.":["자신의 최신 글 목록 표시."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["트위터, 인스타그램, 유투브와 같은 다은 사이트에서 가져온 콘텐츠를 표시할 수 있는 블록을 추가하세요."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":["블록 로딩중 에러: %s"],"Unknown error":[],"Embed Handler":["임베드 핸들러"],"term\u0004Remove %s":["%s 제거"],"Copy the permalink":["고유주소 복사"],"Permalink copied":["고유주소 복사됨"],"Height in pixels":["높이 - 픽셀"],"Spacer settings":[],"Spacer":["여백 설정"],"Toggle to show a large initial letter.":["큰 첫글자 보이기 토글."],"Showing large initial letter.":["첫번째 글자가 크게 보입니다."],"Name:":["이름:"],"%1$s (%2$s of %3$s)":["%1$s (%3$s 중 %2$s)"],"Remove item":["아이템 제거"],"Color code: %s":["색상 코드: %s"],"Skip to the selected block":["선택된 블록으로 건너뛰기"],"Publish…":["공개..."],"Schedule…":["예약..."],"Edit post permalink":["글 고유주소 편집"],"Show Block Settings":["블록 설정 보이기"],"Hide Block Settings":["블록 설정 감추기"],"Block settings closed":["블록 설정 닫힘"],"Close plugin":["플러그인 닫기"],"Editor settings":["편집기 설정"],"Link settings":[],"Unlink":["링크 제거"],"Page break":["페이지 브레이크"],"pagination":["페이지 처리"],"next page":["다음 페이지"],"Image Size":["이미지 크기"],"Height":["높이"],"Width":["넓이"],"Image Dimensions":["이미지 크기"],"Thumbnails are not cropped.":["썸네일이 잘라지지 않았습니다."],"Thumbnails are cropped to align.":["썸네일이 정렬을 위해 잘라졌습니다."],"Media Library":["미디어 라이브러리"],"Advanced":["고급"],"Add item":[],"Reset the template":["템플릿 초기화"],"Keep it as is":["현재 상태 유지"],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":["템플릿을 초기화하면 콘텐츠의 손실을 가져올 수 있습니다. 계속하길 원하시나요?"],"Document Statistics":["문서 통계"],"is now scheduled. It will go live on":["지금 예약됐으며 준비될 것입니다."],"Scheduled":["예약됨"],"Scheduling…":["예약중..."],"Code editor selected":["코드 편집기 선택됨"],"Visual editor selected":["비주얼 편집기 선택됨"],"Plugins":["플러그인"],"Custom Size":["사이즈 지정"],"Layout elements":[],"term\u0004%s removed":["%s 제거됨"],"term\u0004%s added":["%s 추가됨"],"imperative verb\u0004Preview":["미리보기"],"Block deleted.":["블록 삭제됨."],"Block updated.":["블록 업데이트 됨."],"Block created.":["블록 생성됨."],"Trashing failed":["휴지통 처리 실패"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["저장되지 않은 변경사항이 있습니다. 계속하면 없어집니다."],"Document Outline":["문서 아웃라인"],"Paragraphs":["문단"],"Headings":["헤딩"],"Words":["단어"],"Content structure":[],"Public":["공개"],"Protected with a password you choose. Only those with the password can view this post.":["선택한 비밀번호로 보호됨. 비밀번호가 있는 사람만 이 글을 볼 수 있습니다."],"Password Protected":["비밀번호로 보호됨"],"Only visible to site admins and editors.":["사이트 관리자와 편집자만 볼 수 있습니다."],"Private":["비공개"],"Visible to everyone.":["모든 사람 보기 가능."],"Post Visibility":["글 가시성"],"Would you like to privately publish this post now?":["지금 이 글을 비공개로 발행하시겠습니끼?"],"Use a secure password":["보안 비일번호 사용"],"Create password":["비밀번호 생성"],"Move to Trash":[],"Parent Term":["부모 텀"],"Parent Category":["부모 카테고리"],"Add new term":["새 텀 추가"],"Add new category":["새 카테고리 추가"],"Term":["텀"],"Tag":["태그"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["정말로 이글을 발행 취소하시겠습니까?"],"Immediately":["즉시"],"Save Draft":["임시 글로 저장하기"],"Saving":["저장중"],"Publish:":["공개하기:"],"Visibility:":["가시성:"],"Are you ready to publish?":["공개할 준비가 됐나요?"],"Copy Link":["링크 복사하기"],"What’s next?":[],"is now live.":["현재 라이브 상태입니다."],"Published":["공개됨"],"Schedule":["예약"],"Update":["업데이트"],"Submit for Review":["리뷰를 위한 제출"],"Updating…":["업데이트 중..."],"Publishing…":["공개중..."],"Allow pingbacks & trackbacks":[],"Permalink:":["고유주소:"],"Pending review":[],"%d Revision":["%d 리비전"],"Suggestion:":["제안:"],"Post Format":["글 포맷"],"Chat":["채팅"],"Status":["상태"],"Standard":["표준"],"Aside":["추가 정보"],"Featured image":["특성 이미지"],"Set featured image":[],"Learn more about manual excerpts":["수동 요약에 대해 더 알아보기"],"Write an excerpt (optional)":["요약 쓰기 (선택적)"],"Allow comments":[],"Template:":["템플릿:"],"no parent":["부모 없음"],"no title":["제목 없음"],"Order":["순서"],"No blocks found.":["블록이 없습니다."],"%d result found.":[],"Saved":["저장됨"],"Embeds":["임베드"],"Blocks":["블록"],"Search for a block":["블록 검색"],"Add block":["블럭 추가"],"Copy Error":["복사 에러"],"Copy Post Text":["글 텍스트 복사"],"Attempt Recovery":["복구 시도"],"The editor has encountered an unexpected error.":["편집기가 예상치 못한 에러를 발견했습니다."],"Undo":["되돌리기"],"Redo":["다시하기"],"(Multiple H1 headings are not recommended)":["(다중 H1 헤딩은 추천하지 않습니다)"],"(Your theme may already use a H1 for the post title)":["(사용중인 테마가 이미 글 제목으로 H1을 사용하고 있을 수도 있습니다)"],"(Incorrect heading level)":["(올바르지 않은 헤딩 레벨)"],"(Empty heading)":["(빈 헤딩)"],"Block Styles":["블럭 스타일"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":["일반 블록으로 전환"],"More options":[],"Edit visually":["비주얼로 편집"],"Duplicate":["복제"],"Blocks cannot be moved down as they are already at the bottom":["블록은 이미 하단에 있으므로 아래로 이동할 수 없습니다"],"Blocks cannot be moved up as they are already at the top":["블록은 이미 상단에 있으므로 위로 이동할 수 없습니다"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["블록 %s은(는) 블록일뿐이므로 이동할 수 없습니다"],"Edit as HTML":["HTML로 편집"],"Convert to Blocks":["블록으로 변환"],"Block: %s":["블록: %s"],"This block has encountered an error and cannot be previewed.":["이 블록은 에러가 있으며 미리보기 할 수 없습니다."],"No block selected.":["블럭이 선택되지 않았습니다."],"Transform into:":["다음으로 변형하기:"],"Remove":["제거"],"Find original":["원본 찾기"],"Copy all content":[],"Copied!":["복사됨!"],"Additional settings are now available in the Editor block settings sidebar":["추가적인 설정은 편집기 블록 설정 사이드바에서 가능합니다."],"Visibility":["가시성"],"Status & visibility":[],"Page attributes":[],"Block":["블럭"],"Document":["문서"],"Close settings":["닫기 설정"],"Editor content":["편집기 콘텐츠"],"Tools":["도구"],"Editor":["편집기"],"Code editor":[],"Visual editor":[],"Editor top bar":["편집기 탑바"],"Settings":["설정"],"Reset":["초기화"],"Dismiss this notice":["이 알림 무시"],"Item removed.":["아이템 제거됨."],"Item added.":["아이템 추가됨."],"Drop files to upload":["업로드 하려면 파일을 놓으세요"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["알 수 없는 에러 발생함"],"No results.":["결과가 없습니다."],"%d result found, use up and down arrow keys to navigate.":["%d 결과 찾음. 위 아래로 이동하려면 화살표 키를 사용하세요."],"(no title)":["(제목 없음)"],"URL":["URL"],"Submit":["제출하기"],"Close":["닫기"],"Insert link":[],"Edit link":[],"Link":["링크"],"Strikethrough":["취소선"],"Italic":["이탤릭"],"Bold":["굵게"],"Remove link":[],"Number of items":["아이템 수"],"All":["모두"],"Category":["카테고리"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["오래된순"],"Newest to Oldest":["새로운 순"],"Order by":["정렬기준"],"Select":["선택"],"Select or Upload Media":["선택 또는 미디어 업로드"],"Video":["비디오"],"Write…":["쓰기..."],"poetry":["詩"],"Verse":["산문"],"New Column":["새 열"],"Delete Column":["컬럼 삭제"],"Add Column After":["다음에 컬럼 추가"],"Add Column Before":["이전에 컬럼 추가"],"Delete Row":["행 삭제"],"Add Row After":["다음에 행 추가"],"Add Row Before":["이전에 행 추가"],"Edit table":[],"Table":["테이블"],"Write subheading…":["부제목 쓰기..."],"Write shortcode here…":["숏코드를 여기서 쓰기..."],"Shortcode":["숏코드"],"divider":["나눔자"],"horizontal-line":["가로줄"],"Separator":["분리자"],"Quote":["인용"],"Write citation…":["인용 쓰기..."],"Write quote…":["인용 텍스트 쓰기..."],"Pullquote":["요약글"],"Write preformatted text…":["서식이 설정된 텍스트 쓰기..."],"Preformatted":["미리 포맷됨"],"text":["텍스트"],"Paragraph":["문단"],"Font Size":["폰트 사이즈"],"Drop Cap":["드롭 캡"],"Text settings":[],"Read more":["더 읽기"],"Write list…":["목록 쓰기..."],"numbered list":["순서있는 목록"],"ordered list":["순서있는 목록"],"bullet list":["순서없는 목록"],"Indent list item":["목록 아이템 들여쓰기"],"Outdent list item":["목록 아이템 내어쓰기"],"Convert to ordered list":["순서있는 목록으로 변환"],"Convert to unordered list":["순서없는 목록으로 변경"],"List":["목록"],"recent posts":["최근 글"],"No posts found.":["글을 찾을 수 없습니다."],"Latest Posts":["최근 글"],"Display post date":["발행일 표시"],"Grid view":[],"List view":[],"photo":["사진"],"Image settings":[],"Image":["이미지"],"Preview":["미리보기"],"embed":["임베드"],"Custom HTML":["사용자 정의 HTML"],"subtitle":["부제목"],"title":["제목"],"Heading":["헤딩요소"],"Write heading…":["제목 쓰기..."],"Heading %d":["헤딩 %d"],"Level":["레벨"],"Heading settings":[],"photos":["사진"],"images":["이미지"],"None":["없음"],"Media File":["미디어 파일"],"Attachment Page":["첨부 페이지"],"Link to ":[],"Crop Images":["이미지 자르기"],"Gallery settings":[],"Gallery":["갤러리"],"Classic":["클래식"],"video":["비디오"],"audio":["오디오"],"music":["음악"],"image":["이미지"],"blog":["블로그"],"post":["글"],"Embedded content from %s":["%s로부터 임베드 된 콘텐츠"],"Enter URL to embed here…":["여기에 임베드 하려면 URL을 입력하세요..."],"%s URL":["%s URL"],"Embedding…":["임베드중..."],"Write title…":["제목 쓰기..."],"Fixed Background":["고정 배경"],"Edit image":["이미지 편집"],"Columns":["컬럼"],"Experiments":[],"Code":["코드"],"Write code…":["코드 쓰기..."],"Categories":["카테고리"],"Show Hierarchy":[],"Show post counts":["보여줄 글 수"],"Categories settings":[],"Add text…":["텍스트 추가..."],"Button":["버튼"],"Apply":["적용"],"Text Color":["텍스트 색상"],"Background Color":["배경색상"],"Block has been deleted or is unavailable.":["블록이 삭제됐거나 가능하지 않습니다."],"Reusable blocks":[],"Cancel":["취소"],"Edit":["편집"],"Write caption…":["캡션 쓰기..."],"Use URL":["URL 사용"],"Audio":["오디오"],"Upload":["업로드"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML 링크"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["이 색상조합은 사람들이 읽기 어려울 수 있습니다. 더 밝은 배경 색상 그리고/또는 어두운 글자 색상을 사용해보세요."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["이 색상조합은 사람들이 읽기 어려울 수 있습니다. 더 어두운 배경 색상 그리고/또는 밝은 글자 색상을 사용해보세요."],"Clear":["클리어"],"Custom color picker":["사용자 정의 색상 피커"],"Color: %s":["색상: %s"],"Full width":[],"Wide width":[],"Widgets":["위젯"],"Formatting":["포맷"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["1440부터 인쇄. 이것은 코어의 새로운 블록 편집기를 위한 개발 플러그인입니다."],"Add title":["제목 추가"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["글쓴이"],"Slug":["슬러그"],"Discussion":["토론"],"Custom fields":[],"Excerpt":["요약글"],"Publish":["공개하기"],"Metadata":["메타데이터"],"Save":["저장하기"],"Documentation":["문서"],"Select Category":["카테고리 선택"],"(Untitled)":["(제목 없음)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["구텐베르크 팀"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["구텐베르그"],"Demo":["데모"],"%s ago":["%s 전"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_nb.json b/bundle/android/raw/i18ncache_data_nb.json
new file mode 100644
index 0000000000..f24667535e
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_nb.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":["%s blokk"],"%1$s Block. %2$s":["%1$s Blokk. %2$s"],"%s Block. Column %d":["%s Blokk. Kolonne %d"],"%1$s Block. Column %2$d. %3$s":["%1$s Blokk. Kolonne %2$d. %3$s"],"%s Block. Row %d":["%s Blokk. Rad %d"],"%1$s Block. Row %2$d. %3$s":["%1$s Blokk. Rad %2$d. %3$s"],"Post Excerpt":["Utdrag"],"Post Date":["Dato"],"No Date":["Ingen dato"],"Post Author":["Forfatter"],"Choose":["Velg"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":["Nivå %1$s. %2$s"],"Level %s. Empty.":["Nivå %s. Tom."],"Empty":["Tom"],"Search results for %s":["Søkeresultater for %s"],"Recently updated":["Nylig oppdatert"],"Multiple selected blocks":[],"By %s":["Av %s"],"Inspector":["Inspektør"],"Site editor advanced settings.":["Avanserte innstillinger for nettstedsredigering"],"(beta)":["(beta)"],"Site Editor":["Nettstedsredigering"],"Site editor top bar.":["Topprad for nettstedsredigering."],"Briefly describe the link to help screen reader users.":["Beskrive kort lenken for å hjelpe brukere av skjermleser."],"Link Label":["Lenkeetikett"],"%s label":[],"poem":["dikt"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":["Hele innlegget"],"Show:":["Vis:"],"Create from all top-level pages":["Opprett for alle toppnivåsider"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":["Knapper"],"Background":["Bakgrunn"],"Background & Text Color":["Bakgrunn og tekstfarge"],"Images Size":["Bildestørrelse"],"Remove multiple selected blocks.":["Fjern flere valgte blokker"],"(%s: gradient %s)":["(%s: gradient %s)"],"(%s: color %s)":["(%s: farge %s)"],"(Gradient: %s)":["(Gradient: %s)"],"(Color: %s)":["(Farge: %s)"],"Here's a detailed guide.":["Her er en detaljert veiledning."],"New to the Block Editor? Want to learn more about using it? ":["Ny med blokkredigeringsverktøyet? Vil du lære mer hvordan bruke det?"],"Learn how to use the Block Editor":["Lær hvordan bruke blokkredigeringsverktøyet"],"Help":["Hjelp"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s blokk- ikon"],"Submit for Review…":["Send til gjennomgang..."],"Update…":["Oppdater..."],"Select items to save.":["Velg elementer å lagre"],"What do you want to save?":["Hva vil du lagre?"],"Untitled":["Uten tittel"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["Du er trolig frakoblet nettet."],"Justify items right":["Justér elementer mot høyre"],"Justify items center":["Justér elementer mot midten"],"Justify items left":["Justér elementer mot venstre"],"Change items justification":["Endre justering av elementer"],"The media file has been replaced":["Mediefilen er erstattet"],"Replace":["Erstatt"],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":["Neste"],"Previous":["Forrige"],"Finish":["Fullfør"],"Page %1$d of %2$d":["Side %1$d av %2$d"],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":["LEGG TIL MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":["Bli kjent med blokkbibilioteket"],"Welcome Guide":[],"Enable page templates":[],"Page Templates":["Sidemaler"],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":["Kom i gang"],"inserter":[],"Post Title":["Innleggstittel"],"Add nofollow to link":["Legg ikke følg på lenken"],"Add submenu":["Legg til undermeny"],"Add link…":["Legg til lenke..."],"Dark":["Mørk"],"Light":["Lys"],"recording":["opptak"],"podcast":["podkast"],"sound":["lyd"],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":["Legg til"],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":["Navigasjon"],"Loading Navigation…":["Laster navigasjon..."],"Navigation Structure":["Navigasjonsstruktur"],"Create empty":["Opprett tom"],"Create a Navigation from all existing pages, or create an empty one.":["Lag en navigasjonslokk fra alle eksisterende sider eller lag en tom."],"Navigation Link":["Navigasjonslenke"],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":["Beskriv rollen til dette bildet på siden."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":["Bruk den samme %s på alle skjermstørrelser"],"Large screens":["Store skjermer"],"Medium screens":["Middelsstore skjermer"],"Small screens":["Små skjermer"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":["Nå valgt"],"Search or type url":["Søk eller skriv url"],"Press ENTER to add this link":["Trykk ENTER for å legge til denne lenken"],"Currently selected link settings":["Innstillinger for nåværende valgte lenke"],"Generic label for block inserter button\u0004Add block":["Legg til blokk"],"directly add the only allowed block\u0004Add %s":["Legg til %s"],"%s block added":["%s-blokk lagt til"],"Move %s":["Flytt %s"],"Extra Large":["Ekstra stor"],"Block breadcrumb":["Blokk-brødsmuler"],"Editor footer":["Redigering sidebunn"],"Site Title":["Nettstedstittel"],"Open Colors Selector":["Åpne fargevelger"],"Templates list":["Maloversikt"],"Templates list navigation":["Navigering i maloversikt"],"Filter templates list":["Filtrer maloversikt"],"Uploaded to this template":["Lastet opp til denne malen"],"Insert into template":["Sett inn i malen"],"Template archives":["Malarkiver"],"No templates found in Trash.":["Ingen maler funnet i papirkurven."],"No templates found.":["Ingen maler funnet."],"Parent Template:":["Forelder-mal:"],"Search Templates":["Søk maler"],"All Templates":["Alle maler"],"View Template":["Vis mal"],"Edit Template":["Rediger mal"],"New Template":["Ny mal"],"Add New Template":["Legg til ny mal"],"Template\u0004Add New":["Legg til ny"],"Admin Menu text\u0004Templates":["Maler"],"Template":["Mal"],"No matching template found":["Ingen passende maler funnet"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradientkode: %s"],"All content copied.":["Alt innhold kopiert."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Medieopplasting mislyktes. Om dette er en fotografi elelr stort bilde, vennligst skaler det ned og forsøk igjen."],"Gradient":["Gradient"],"Gradient Presets":["Forhåndsinnstillinger for gradienter"],"No Preview Available.":["Ingen forhåndsvisning tilgjengelig."],"Midnight":["Midnatt"],"Electric grass":["Elektrisk gress"],"Pale ocean":["Blekt hav"],"Luminous dusk":["Lysende skumring"],"Blush bordeaux":["Rødlig bordeaux"],"Blush light purple":["Rødlig lyselilla"],"Cool to warm spectrum":["Kaldt til varmt spektrum"],"Very light gray to cyan bluish gray":["Veldig lysegrå til blålig cyan-grå"],"Luminous vivid orange to vivid red":["Lysende, levende oransje til levende rød"],"Luminous vivid amber to luminous vivid orange":["Lysende, levende rav til lysende, levende oransje"],"Light green cyan to vivid green cyan":["Lysegrønn cyan til levende grønn cyan"],"Vivid cyan blue to vivid purple":["Levende cyan blå til levende lilla"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6. desember 2018"],"February 21, 2019":["21. februar 2019"],"May 7, 2019":["7. mai 2019"],"Release Date":["Utgivelsesdato"],"Jazz Musician":["Jazzmusiker"],"Version":["Versjon"],"Six.":["Seks."],"Five.":["Fem."],"Four.":["Fire."],"Three.":["Tre."],"Two.":["To."],"One.":["Én."],"One of the hardest things to do in technology is disrupt yourself.":["Noe av det vanskeligste å gjøre i teknologi er å forstyrre deg selv."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Gjerdesmetten
Tjener til livet
Lydløst."],"Welcome to the wonderful world of blocks…":["Velkommen til blokkenes vidunderlige verden..."],"Snow Patrol":["Snøpatrulje"],"Dimensions":["Dimensjoner"],"Minimum height in pixels":["Minimum høyde i piksler"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Handlingsdriver"],"In quoting others, we cite ourselves.":["Ved å sitere andre, refererer vi til oss selv."],"cite":["sitat"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc dukker opp—rolig, snørik og fredelig."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["I en landsby La Mancha, hvis navn jeg ikke har lyst til å huske, bodde det for ikke lenge siden en av disse herrene som holder en lanse i lansestativ, et gammelt skjold, en mager hakke og en greyhound i opplæring."],"Block navigation":["Blokknavigering"],"Full Site Editing":["Redigering av hele nettstedet"],"Templates to include in your theme.":["Maler å inkludere i ditt tema."],"Templates":["Maler"],"Inserter help panel":["Hjelpepanel for innsetting"],"Pre-publish checks":["Kontroll før publisering"],"Please contact your site administrator to install new blocks.":["Vennligst kontakt din nettstedsadministrator for å installere nye blokker."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Ingen blokker funnet i ditt bibliotek. Vennligst kontakt din nettstedsadministrator for å installere nye blokker."],"No blocks found in your library.":["Ingen blokker funnet i ditt bibliotek."],"No blocks found in your library. These blocks can be downloaded and installed:":["Ingen blokker funnet i ditt bibliotek. Disse blokkene kan lastes ned og installeres:"],"No blocks found in your library. We did find %d block available for download.":["Ingen blokker funnet i ditt bibliotek. Vi fant %d blokk tilgjengelig for nedlasting.","Ingen blokker funnet i ditt bibliotek. Vi fant %d blokker tilgjengelig for nedlasting."],"Block previews can’t load.":["Forhåndsvisning av blokk laster ikke."],"Retry":["Prøv igjen"],"Block previews can't install.":["Forhåndsvisning av blokk kan ikke installeres."],"Updated %s":["Oppdaterte %s"],"%d active installation":["%d aktiv installasjon","%d aktive installasjoner"],"This author has %d block, with an average rating of %d.":["Denne forfatteren har %d blokk, men gjennomsnitlig vurdering %d.","Denne forfatteren har %d blokker, men gjennomsnitlig vurdering %d."],"Authored by %s":["Forfattet av %s"],"%d total rating":["%d totalvurderig","%d totalvurderinger"],"%s out of 5 stars":["%s av 5 stjerner"],"Enter Address":["Oppgi adresse"],"Pill Shape":["Pill Shape"],"Logos Only":["Kun logoer"],"Create a block of links to your social media or external sites":["Lag en blokk med lenker til sosiale medier eller eksterne nettsteder"],"Social links":["Sosiale lenker"],"Open block navigator":["Åpne blokknavigator"],"Attachment page":["Vedleggsside"],"Fill":["Fyll"],"Link rel":["Lenke-rel"],"Border Radius":["Kantradius"],"Write gallery caption…":["Skriv en galleri-bildetekst..."],"Content blocks":["Innholdsblokker"],"Restore the backup":["Gjenopprett sikkerhetskopien"],"The backup of this post in your browser is different from the version below.":["Sikkerhetskopien av dette innlegget i din nettleser er forskjellig fra versjonen nedenfor."],"Enable block directory search":["Aktiver søk blokk-katalogen"],"Block Directory":["Blokk-katalog"],"Unable to connect to the filesystem. Please confirm your credentials.":["Kunne ikke koble til filsystemet. Vennligst bekreft din pålogging."],"Sorry, you are not allowed to install blocks.":["Beklager, du har ikke tillatelse til å installere blokker."],"%1$d block is disabled.":["%1$d blokk deaktivert.","%1$d blokker deaktivert."],"Reverse List Numbering":["Baklengs listenummerering"],"Start Value":["Startverdi"],"Ordered list settings":[],"Clear Media":["Fjern media"],"Default Style":["Standardstil"],"Not set":["Ikke bestemt"],"While writing, you can press / to quickly insert new blocks.":["Når du skriver kan du trykke / for raskt å sette inn nye blokker."],"Browse through the library to learn more about what each block does.":["Bla gjennom biblioteket for å lære mer om hva hver blokk gjør."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Det er blokker tilgjengelig for all slags innhold: Sett inn tekst, overskrift, bilder, lister, videoer, tabeller og mye mer."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Velkommen til blokkenes vidunderlige verden! Blokker er grunnlaget for alt innhold i redigeringsverktøyet."],"Version of the content block format used by the object.":["Versjonen av innholdsblokkformatet brukt av objektet. "],"HTML content for the object, transformed for display.":["HTML-innhold for objektet, transformert for visning."],"Content for the object, as it exists in the database.":["Innhold av objektet, slik det eksisterer i databasen."],"The content for the object.":["Innholdet for objektet."],"Change column alignment":["Endre kolonnejustering"],"Align Column Right":["Høyrejuster kolonne"],"Align Column Center":["Midtstill kolonne"],"Align Column Left":["Venstrejuster kolonne"],"Color":["Farge"],"Vivid purple":["Levende lilla"],"Disable & Reload":["Deaktiver og last på nytt"],"Enable & Reload":["Aktiver og last på nytt"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Oppfriskning av siden er nødvendig for denne endringen. Sørg for at ditt innhold er lagret for du oppfrisker."],"Display these keyboard shortcuts.":["Vis disse tastatursnarveiene."],"Experiments Settings":["Innstillinger for eksperimenter"],"Enable Widgets screen and Legacy Widgets block":["Aktiver skjerm for widgeter og klassisk widget-blokk"],"Experimental settings":["Innstillinger for eksperimenter"],"Block name name must be a string.":["Navn på blokknavn må være en streng."],"Custom":["Tilpasset"],"Draft":["Kladd"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blokk \"%1$s\" inneholder ikke en stil med navn \"%2$s.\"."],"Learn more about anchors":["Lær mer om ankere"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Oppgi et ord eller to — uten mellomrom — for å lage en unik nettadresse bare for denne overskriften, kalt et “anker.” Så kan du lenke direkte til denne seksjonen på siden."],"Widget Blocks (Experimental)":["Widget-blokker (eksperimentell)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Las opp en video, velg en fra ditt mediebibliotek eller legg til en via en URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Last opp et bilde, velg en fra ditt mediebibliotek eller legg til et via en URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Last opp en lydfil, velg en fra ditt mediebibliotek eller legg til en via en URL."],"Upload a media file or pick one from your media library.":["Last opp en mediefil eller velg en fra ditt mediebibliotek."],"Skip":["Hopp over"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":["Legg en sidelenke eller annet element til din navigasjon."],"What's this?":["Hva er dette?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Ikke la søkemotorer følge denne lenken."],"Provide more context about where the link goes.":["Oppgi mer kontekst om hvor lenken går."],"Title Attribute":["Tittel-attributt"],"SEO settings":[],"Description":["Beskrivelse"],"Open in new tab":["Åpne i ny fane"],"links":["lenker"],"navigation":["navigasjon"],"menu":["meny"],"Add a navigation block to your site.":["Legg til en navigasjonsblokk på ditt nettsted."],"Upload a file or pick one from your media library.":["Last opp en fil eller velg en fra ditt mediebibliotek."],"Learn more about embeds":["Lær mer om innbygginger"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Lim inn en lenke til innholdet du vil vise på ditt nettsted."],"Upload an image or video file, or pick one from your media library.":["Last opp et bilde eller en videofil, eller velg en fra ditt mediebibliotek."],"Three columns; wide center column":["Tre kolonner; bred midtkolonne"],"Three columns; equal split":["Tre kolonner; fordelt likt"],"Two columns; two-thirds, one-third split":["To kolonner; fordelt to tredeler, en tredel"],"Two columns; one-third, two-thirds split":["To kolonner; fordelt én tredel, to tredeler"],"Two columns; equal split":["To kolonner; fordelt likt"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Ditt nettsted har ingen %s, så det er ingen ting å vise akkurat nå."],"More tools & options":["Flere verktøy og alternativer"],"Create Table":["Lag tabell"],"Insert a table for sharing data.":["Sett inn en tabell for å dele data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Avgruppér"],"verb\u0004Group":["Gruppe"],"Separate with commas or the Enter key.":["Adskill med komma eller Enter"],"Separate with commas, spaces, or the Enter key.":["Adskill med komma, mellomrom eller Enter."],"Separate multiple classes with spaces.":["Adskill flere klasser med mellomrom."],"Move image forward":["Flytt bilde forover"],"Move image backward":["Flytt bilde bakover"],"Sorry, you are not allowed to edit sidebars.":["Beklager, du har ikke tillatelse til å endre sidekolonner."],"Sorry, you are not allowed to read sidebars.":["Beklager, du har ikke tillatelse til å se sidekolonner."],"The sidebar’s ID.":["Sidekolonnens ID."],"Displays a set of blocks":["Viser en samling blokker"],"Blocks Area":["Blokkområde"],"Block rendered as empty.":["Blokken er gjengitt som tom."],"Inline Code":["Inline-kode"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Merk: Automatisk avspilling kan skape problemer med brukervennligheten for enkelt besøkende."],"Footer section":["Sidebunnseksjon"],"Header section":["Sidehodeseksjon"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Innhold av innlegg"],"Post content settings":[],"Percentage width":["Relativ bredde"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Merk: Automatisk avspilling kan skape problemer med brukervennlighet for enkelte besøkende."],"Block area updated.":["Blokkområde oppdatert."],"Block area scheduled.":["Blokkområde planlagt."],"Block area published.":["Blokkområde publisert."],"Block areas list":["Oversikt over blokkområder"],"Block areas list navigation":["Navigering i oversikt over blokkområder"],"Filter block areas list":["Filter oversikten over blokkområder"],"No block area found.":["Ingen blokker funnet."],"Search Block Areas":["Søk blokkområder"],"All Block Areas":["Alle blokkområder"],"View Block Area":["Vis blokkområde"],"Edit Block Area":["Rediger blokkområde"],"New Block Area":["Nytt blokkområde"],"Add New Block Area":["Legg til nyt blokkområde"],"admin menu\u0004Block Areas":["Blokkområder"],"post type singular name\u0004Block Area (Experimental)":["Blokkområde (eksperimentelt)"],"post type general name\u0004Block Area (Experimental)":["Blokkområde (eksperimentelt)"],"Experimental custom post type that will store block areas referenced by themes.":["Eksperimentell tilpasset innholdstype som vil lagre blokkområder som brukes av temaer."],"Widgets screen content":["Innhold på widgets-skjermen"],"header":["sidehode"],"Widgets advanced settings":["Avanserte innstillinger for widgeter"],"(experimental)":["(eksperimentell)"],"Block Areas":["Blokkområder"],"Widgets screen top bar":["Topprad på widgets-skjermen"],"This color combination may be hard for people to read.":["Denne fargekombinasjonen kan være vanskelig å lese for folk."],"There is no poster image currently selected":["Det er for tiden ikke noe plakatbilde valgt"],"The current poster image url is %s":["Den nåværende plakatbilde-URL er %s"],"section":["seksjon"],"row":["rad"],"wrapper":["innpakning"],"container":["beholder"],"A block that groups other blocks.":["En blokk som grupperer andre blokker."],"Group":["Gruppe"],"Crop image to fill entire column":["Beskjær bildet til å fylle hele kolonnen"],"Play inline":["Spill inline"],"Leave empty if the image is purely decorative.":["La stå tomt om bildet kun er til dekorasjon."],"Describe the purpose of the image":["Beskriv hensikten med bildet"],"Add a block":["Legg til en blokk"],"Block vertical alignment setting label\u0004Change vertical alignment":["Endre vertikal jjustering"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertikaljuster til bunn"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertikaljuster til midten"],"Replace Image":["Erstatt bilde"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertikaljuster til topp"],"Display a legacy widget.":["Vis en arvet widget"],"Legacy Widget (Experimental)":["Arvet widget (eksperimentell)"],"Change widget":["Endre widget"],"Legacy Widget":["Arvet widget"],"You don't have permissions to use widgets on this site.":["Du har ikke tillatelse til å bruke widgeter på dette nettstedet."],"Select a legacy widget to display:":["Velg en arvet widget å vise:"],"There are no widgets available.":["Det er ingen widgeter tilgjengelig."],"Change block type or style":["Endre blokk-type eller stil"],"keyboard key\u0004Space":["Mellomrom"],"keyboard key\u0004Backspace":["Slettetast"],"More rich text controls":["Flere kontroller for rik tekst"],"Search Terms":["Søkeord"],"Exit the Editor":["Gå ut av redigeringsverktøyet"],"Block Manager":["Behandle blokker"],"Class name of the widget.":["Klassenavnet til widgeten"],"Sorry, you are not allowed to access widgets on this site.":["Beklager, du har ikke tilgang til widgeter på dette nettstedet."],"Widgets (beta)":["Widgeter (beta)"],"link":["lenke"],"Embedded content from %s can't be previewed in the editor.":["Innebygget innhold fra %s kan ikke forhåndsvises i redieringsverktøyet."],"Custom Color":["Tilpasset farge"],"Prompt visitors to take action with a button-style link.":["Be besøkende gjøre en handling via en lenke med knappestil."],"Stick to the top of the blog":["Fest til toppen av innleggssiden"],"Read about permalinks":["Les mer om permalenker"],"The last part of the URL.":["Den siste delen av URL-en."],"URL Slug":["URL-permalenke"],"A cloud of your most used tags.":["En sky med dine mest brukte stikkord."],"Tag Cloud":["Stikkordsky"],"Taxonomy":["Taksonomi"],"Tag Cloud settings":[],"- Select -":["- Velg -"],"Default":["Standard"],"find":["finn"],"Help visitors find your content.":["Hjelp besøkende finne ditt innhold."],"Search":["Søk"],"Add button text…":["Legg til knappetekst..."],"Button text":["Knappetekst"],"Optional placeholder…":["Valgfri plassholder..."],"Optional placeholder text":["Tekst for valgfri plassholder..."],"Add label…":["Legg til etikett"],"Label text":["Tekst på etikett"],"image %1$d of %2$d in gallery":["bilde %1$d av %2$d i galleri"],"archive":["arkiv"],"posts":["innlegg"],"A calendar of your site’s posts.":["En kalender med innlegg fra ditt nettsted."],"Calendar":["Kalender"],"by":["av"],"An error has occurred, which probably means the feed is down. Try again later.":["En feil har oppstått, noe som trolig betyr at innmatingen er nede. Prøv igjen senere."],"RSS Error:":["RSS-feil:"],"block style\u0004Default":["Standard"],"Fullscreen mode deactivated":["Fullskjermmodus deaktivert"],"Fullscreen mode activated":["Fullskjermmodus aktivert"],"Spotlight mode deactivated":["Søkelysmodus deaktivert"],"Spotlight mode activated":["Søkelysmodus aktivert"],"Top toolbar deactivated":["Topp-verktøylinje deaktivert"],"Top toolbar activated":["Topp-verktøylinje aktivert"],"Back":["Tilbake"],"Feature activated":["Funksjon aktivert"],"Feature deactivated":["Funksjon deaktivert"],"Vertical Pos.":["Vertikal pos."],"Horizontal Pos.":["Horisontal pos."],"feed":["strøm"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Vis oppføringer fra enhver RSS- eller Atom-strøm."],"RSS":["RSS"],"Max number of words in excerpt":["Maksimalt antall ord i utdrag"],"Display excerpt":["Vis utdrag"],"Display date":["Vis dato"],"Display author":["Vis forfatter"],"RSS settings":[],"Edit RSS URL":["Rediger RSS-URL"],"Content before this block will be shown in the excerpt on your archives page.":["Innhold foran denne blokken vil bli vist som utdrag på dine arkivsider."],"Hide the excerpt on the full content page":["Skjul utdrag på siden med fullt innhold"],"The excerpt is visible.":["Utdraget er synlig."],"The excerpt is hidden.":["Utdraget er skjult."],"Sorry, this content could not be embedded.":["Beklager, dette innholdet kunne ikke bygges inn."],"Embed Amazon Kindle content.":["Bygg inn innhold fra Amazon Kundle"],"ebook":["ebok"],"Embed Crowdsignal (formerly Polldaddy) content.":["Bygg inn innhold fra Crowdsignal (tidligere Polldaddy)"],"Focal Point Picker":["Velger for fokuspunkt"],"Underline":["Understrek"],"Attempt Block Recovery":["Forsøk gjenoppretting av blokk"],"Word count type. Do not translate!\u0004words":["ord"],"content placeholder\u0004Content…":["Innhold..."],"button label\u0004Convert to link":["Konverter til lenke"],"button label\u0004Try again":["Prøv igjen"],"Editor tips":["Tips for redigering"],"Block (selected)":["Blokk (valgt)"],"Document (selected)":["Dokument (valgt)"],"%d word":["%d ord","%d ord"],"Top toolbar":["Verktøylinje i toppen"],"Link Rel":["Lenke-relasjon"],"Link CSS Class":["CSS-klasse for lenke"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Lag innhold og lagre det for deg og andre bidragsytere for gjenbruk på hele nettstedet. Oppdater blokken og endringene får effekt overalt den er brukt."],"To edit the featured image, you need permission to upload media.":["For å redigere fremhevet bilde trenger du tillatelse til å laste opp media."],"To edit this block, you need permission to upload media.":["For å redigere denne blokken trenger du tillatelse til å laste opp media."],"(selected block)":["(valgt blokk)"],"Block tools":["Verktøy for blokk"],"Permalink":["Permalenke"],"This image has an empty alt attribute":["Dette bildet har en tom alt-tekst"],"This image has an empty alt attribute; its file name is %s":["Dette bildet har en tom alt-tekst; dets filnavn er %s"],"Block area reverted to draft.":["Blokkområde satt tilbake til kladd."],"Block area published privately.":["Blokkområde privat publisert."],"No block areas found in Trash.":["Ingen blokkområder funnet i papirkurven."],"Block\u0004Add New":["Legg til"],"add new on admin bar\u0004Block Area":["Blokkområde"],"Link inserted.":["Lenke satt inn."],"Warning: the link has been inserted but may have errors. Please test it.":["Advarsel: Lenken er satt inn, men kan ha feil. Vennligst test den."],"%s block selected.":["%s blokk valgt.","%s blokker valgt."],"Thumbnail":["Miniatyrbilde"],"Full Size":["Full størrelse"],"Link selected.":["Lenke valgt."],"Start writing with text or HTML":["Start skrive tekst eller HTML"],"Type text or HTML":["Skriv tekst eller HTML"],"Block icon":["Ikon for blokk"],"Align text right":["Høyrejuster tekst"],"Align text center":["Midtstill tekst"],"Align text left":["Venstrejuster tekst"],"Start writing or type / to choose a block":["Start å skrive eller tast / for å velge blokktype"],"Empty block; start writing or type forward slash to choose a block":["Tom blokk; start å skrive eller tast forlengs skråstrek for å velge type blokk"],"Paragraph block":["Avsnittsblokk"],"Page Break":["Sideskift"],"Stack on mobile":["Stable på mobil"],"Annotation":["Merknad"],"Drag images, upload new ones or select files from your library.":["Dra bilder, last opp nye eller velg filer fra ditt bibliotek."],"blocks\u0004Most used":["Mest brukte"],"imperative verb\u0004Resolve":["Løs"],"font size name\u0004Huge":["Diger"],"font size name\u0004Large":["Stor"],"font size name\u0004Medium":["Middels"],"font size name\u0004Small":["Liten"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Import"],"button label\u0004Download":["Last ned"],"button label\u0004Embed":["Bygg inn"],"block title\u0004Embed":["Innbygging"],"block title\u0004Classic":["Klassisk"],"block style\u0004Large":["Stor"],"block style\u0004Rounded":["Avrundet"],"%s (opens in a new tab)":["%s (åpnes i ny fane)"],"Link edited.":["Lenke redigert."],"Link removed.":["Lenke fjernet."],"media":["media"],"Double-check your settings before publishing.":["Dobbelstsjekk dine innstillinger før publisering."],"Generating preview…":["Genererer forhåndsvisning..."],"Edit or update the image":["Rediger eller oppdater bildet"],"Media":["Media"],"Navigate to the nearest toolbar.":["Naviger til nærmeste verktøylinje."],"Document tools":["Verktøy for dokument"],"Document and block tools":["Verktøy for dokument og blokk"],"Embed a video from your media library or upload a new one.":["Bygg inn en video fra ditt mediebibliotek eller last opp en ny."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Sett inn posesi. Bruk et spesielt format for avstand. Eller sitér en sangtekst."],"Add white space between blocks and customize its height.":["Legg til mellomrom mellom blokker og tilpass dens høyde."],"Insert additional custom elements with a WordPress shortcode.":["Sett inn tilpassede elementer i tillegg med en WordPress kortkode."],"Create a break between ideas or sections with a horizontal separator.":["Lag et opphold mellom ideer eller seksjoner med et horisontalt skille."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Gi sitert tekst visuell utheving. \"In quoting others, we cite ourselves.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Gi spesiell visuell utheving til et sitat fra din tekst."],"Start with the building block of all narrative.":["Start med fortellingen om byggesteinene for alt."],"Separate your content into a multi-page experience.":["Fordel ditt innhold til en flerside-opplevelse."],"Set media and words side-by-side for a richer layout.":["Plasser media og ord side om side for en rikere utforming."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Lag punktlister eller nummererte lister."],"Display a list of your most recent comments.":["Vis en liste over de siste kommentarene."],"Insert an image to make a visual statement.":["Sett inn et bilde for å skape et visuelt uttrykk."],"Add custom HTML code and preview it as you edit.":["Leg til tilpasset HTML-kode og forhåndsvis mens du redigerer."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduser nye seksjoner og organiser innhold for å hjelpe besøkende (og søkemotorer) forstå strukturen i ditt innhold."],"Display multiple images in a rich gallery.":["Vis flere bilder i et rikt galleri."],"Add a link to a downloadable file.":["Legg til en lenke til en nedlastbar fil."],"Embed videos, images, tweets, audio, and other content from external sources.":["Bygg inn videoer, bilder, tvitringer, lyd og annet innhold fra eksterne kilder."],"Resize for smaller devices":["Endre størrelse for mindre enheter"],"This embed may not preserve its aspect ratio when the browser is resized.":["Denne innbyggingen beholder kanskje ikke sitt størrelsesforhold når størrelsen på nettleservinduet endres."],"This embed will preserve its aspect ratio when the browser is resized.":["Denne beholder sitt størrelsesforhold når størrelsen på nettleservinduet endres."],"Embed an Animoto video.":["Bygg inn innhold fra Animoto."],"Embed a Vimeo video.":["Bygg inn en video fra Vimeo."],"Embed Flickr content.":["Bygg inn innhold fra Flickr."],"Embed Spotify content.":["Bygg inn innhold fra Spotify."],"Embed SoundCloud content.":["Bygg inn innhold fra SoundCloud."],"Embed a WordPress post.":["Bygg inn et innlegg fra WordPress."],"Embed an Instagram post.":["Bygg inn et innlegg fra Instagram."],"Embed a Facebook post.":["Bygg inn et innlegg fra Facebook."],"Embed a WordPress.tv video.":["Bygg inn en video fra WordPress.tv."],"Embed a VideoPress video.":["Bygg inn en video fra VideoPress."],"Embed a Tumblr post.":["Bygg inn innlegg fra Tumblr."],"Embed a TED video.":["Bygg inn en video fra TED."],"Embed Speaker Deck content.":["Bygg inn innhold fra Speaker Deck."],"Embed a YouTube video.":["Bygg inn en video fra YouTube."],"Embed SmugMug content.":["Bygg inn innhold fra SmugMug."],"Embed Slideshare content.":["Bygg inn innhold fra Slideshare."],"Embed Scribd content.":["Bygg inn innhold fra Scribd."],"Embed Screencast content.":["Bygg inn innhold fra Screencast."],"Embed ReverbNation content.":["Bygg inn innhold fra ReverbNation."],"Embed a Reddit thread.":["Bygg inn en tråd fra Reddit."],"Embed Polldaddy content.":["Bygg inn innhold fra Polldaddy."],"Embed Mixcloud content.":["Bygg inn innhold fra Mixcloud."],"Embed a tweet.":["Bygg inn en tweet."],"Embed Meetup.com content.":["Bygg inn innhold fra Meetup.com."],"Embed Kickstarter content.":["Bygg inn innhold fra Kickstarter."],"Embed Issuu content.":["Bygg inn innhold fra Issuu."],"Embed Imgur content.":["Bygg inn innhold fra Imgur."],"Embed Hulu content.":["Bygg inn innhold fra Hulu."],"Embed a Dailymotion video.":["Bygg inn en video fra Dailymotion."],"Embed CollegeHumor content.":["Bygg inn innhold fra CollegeHumor."],"Embed Cloudup content.":["Bygg inn innhold fra Cloudup."],"Add an image or video with a text overlay — great for headers.":["Legg til et bilde eller en video med tekst-overlegg — flott for overskrifter."],"Display code snippets that respect your spacing and tabs.":["Vis kodesnutter med respekt for dine mellomrom og tabuleringer."],"Use the classic WordPress editor.":["Bruk det klassiske redigeringsverktøyet i WordPress."],"Display a list of all categories.":["Vis en liste over alle kategorier."],"Embed a simple audio player.":["Bygg inn en enkel lydavspiller."],"noun\u0004View":["Visning"],"editor button\u0004Left to right":["Venstre mot høyre"],"Save as Pending":["Lagre som ventende"],"%s address":["adresse til %s"],"Paste or type URL":["Lim inn eller skriv URL"],"Insert from URL":["Sett inn fra URL"],"Block Navigator":["Blokknavigator"],"Styles":["Stiler"],"Advanced panels":["Avanserte paneler"],"Document panels":["Dokument-paneler"],"General":["Generelt"],"Open the block navigation menu.":["Åpne menyen for navigering i blokker."],"Work without distraction":["Arbeide uten distraksjoner"],"Focus on one block at a time":["Fokuser på én blokk om gangen"],"Access all block and document tools in a single place":["Ha tilgang til alle blokk- og dokument-verktøy på étt og samme sted"],"Options":["Alternativer"],"(opens in a new tab)":["(åpnes i en ny fane)"],"Minutes":["Minutter"],"Hours":["Timer"],"Time":["Tid"],"Year":["År"],"Day":["Dag"],"December":["Desember"],"November":["November"],"October":["Oktober"],"September":["September"],"August":["August"],"July":["Juli"],"June":["Juni"],"May":["Mai"],"April":["April"],"March":["Mars"],"February":["Februar"],"January":["Januar"],"Month":["Måned"],"Date":["Dato"],"Go to the first (home) or last (end) day of a week.":["Gå til første (home) eller siste (end) dag i uken."],"Home/End":["Home/End"],"Home and End":["Home og End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Flytt bakover (PgUp) eller forover (PgDn) én måned av gangen."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up og Page Down"],"Move backward (up) or forward (down) by one week.":["Fytt bakover (pil-opp) eller forover (pil-ned) én uke av gangen,"],"Up and Down Arrows":["Opp- og nedpiler"],"Move backward (left) or forward (right) by one day.":["Flytt bakover (pil-venstre) eller forover (pil-høyre) én dag av gangen."],"Left and Right Arrows":["Venstre- og høyrepiler"],"Select the date in focus.":["Velg datoen i fokus."],"Navigating with a keyboard":["Navigering med tastatur"],"Click the desired day to select it.":["Klikk ønsket dag for å velge den."],"Click the right or left arrows to select other months in the past or the future.":["Klikk høyre- eller venstrepiler for å velge andre måneder i fortiden eller fremtiden."],"Click to Select":["Klikk for å velge"],"Calendar Help":["Hjelp til kalender"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Bruk dine piltaster for å endre basisfargen. Flytt opp for lysere farge, ned for mørkere, venstre for å senke metningen og høyre for å øke metningen."],"Choose a shade":["Velg en skygge"],"Change color format":["Endre fargeformat"],"Color value in HSL":["Fargeverdi i HSL"],"Color value in RGB":["Fargeverdi i RGB"],"Color value in hexadecimal":["Fargeverdi heksadesimalt"],"RGB mode active":["RGB-modus aktiv"],"Hex color mode active":["Heksedesimal-modus aktiv"],"Hue/saturation/lightness mode active":["Tone/metning/lysstyrke-modus er aktiv"],"Move the arrow left or right to change hue.":["Flytt pilen vestre eller høyre for å endre fargetonen."],"Hue value in degrees, from 0 to 359.":["Fargetone i grader, fra 0 til 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfaverdi, fra 0 (gjennomsiktig) til 1 (helt ugjennomsiktig)."],"Stripes":["Striper"],"Your site doesn’t include support for this block.":["Ditt nettsted inkluderer ikke støtte for denne blokken."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Ditt nettsted har ikke støtte for blokken \"%s\". Du kan la denne blokken være intakt eller fjerne den helt."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Ditt nettsted har ikke støtte for blokken \"%s\". Du kan la denne blokken være intakt, konvertere dens innhold til en tilpasset HTML-blokk eller fjerne den helt."],"Media area":["Område for media"],"Media & Text":["Media og tekst"],"Show media on right":["Vis media til høyre"],"Show media on left":["Vis media til venstre"],"Open in New Tab":["Åpne i ny fane"],"Cover":["Omslag"],"Border settings":[],"Medium":["Middels"],"Paste URL or type to search":["Lim inn URL å søke etter"],"Terms":["Termer"],"Your work will be published at the specified date and time.":["Ditt arbeid vil bli publisert på den angitte dato og tid."],"Are you ready to schedule?":["Er du klar til å planlegge?"],"Always show pre-publish checks.":["Vis alltid kontroll for publisering."],"Take Over":["Ta over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["En annen bruker arbeider for tiden med dette innlegget, noe som betyr at du ikke kan gjøre endringer, med mindre tar over."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbeider for tiden med dette inlegget, noe som betyr at du ikke kan gjøre endringer, med mindre du tar over."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["En annen bruker redigerer nå dette innlegget. Ikke bekymre deg, dine endringer frem til da, er lagret."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s redigerer nå dette innlegget. Ikke bekymre deg, dine endringer frem til da, er lagret."],"Avatar":["Avatar"],"This post is already being edited.":["Dette innlegget redigeres allerede."],"Someone else has taken over this post.":["Noen andre har tatt over dette innlegget."],"This block contains unexpected or invalid content.":["Denne blokken inneholder uventet eller ugyldig innhold."],"Resolve Block":["Løs opp blokk"],"Convert to HTML":["Konverter til HTML"],"This block can only be used once.":["Denne blokken kan bare brukes én gang."],"Exit Code Editor":["Gå ut av kode-redigeringen"],"Editing Code":["Redigerer kode"],"Solid Color":["Heldekkende farge"],"Main Color":["Hovedfarge"],"HTML":["HTML"],"Write HTML…":["Skriv HTML..."],"Media settings":[],"Overlay":["Overlegg"],"Insert Media":["Sett inn media"],"Reusable block imported successfully!":["Gjenbrukbar blokk velykket importert!"],"Invalid Reusable Block JSON file":["Ugyldig fil for gjenbrukbar blokk"],"Invalid JSON file":["Ugyldig JSON-fil"],"Import from JSON":["Import fra JSON"],"Backtick":["Baklengs apostrof"],"Period":["Punktum"],"Comma":["Komma"],"Change type of %d block":["Endre type for %d blokk","Endre type for %d blokker"],"Current":["Nåvårende"],"After Conversion":["Etter konvertering"],"Change alignment":["Endre justering"],"Change text alignment":["Endre tekstjustering"],"%d block":["%d blokk","%d blokker"],"Forward-slash":["Skråstrek"],"No archives to show.":["Ingen arkiver å vise."],"This file is empty.":["Filen er tom."],"Sorry, this file type is not supported here.":["Beklager, denne filtypen er støttet her."],"Manage all reusable blocks":["Behandle alle gjenbrukbare blokker"],"Title":["Tittel"],"Fullscreen mode":["Modus for fullskjerm"],"Beautiful landscape":["Vakkert landskap"],"Close panel":["Lukk panel"],"Convert to Classic Block":["Konverter til Klassisk Block"],"Remove Poster Image":["Fjern plakatbilde"],"Select Poster Image":["Velg plakatbilde"],"Poster Image":["Plakatbilde"],"This block is deprecated. Please use the Columns block instead.":["Denne blokken er foreldet. Vennligst bruk blokken Kolonner i stedet."],"Text Columns (deprecated)":["Tekst-kolonner (foreldet)"],"Create":["Lag"],"Row Count":["Antall rader"],"Column Count":["Antall kolonner"],"This block is deprecated. Please use the Paragraph block instead.":["Denne blokken er foreldet. Vennligst bruk blokken Tekstavsnitt i stedet."],"Subheading (deprecated)":["Undertittel (foreldet)"],"blockquote":["blokksitat"],"Change the block type after adding a new paragraph.":["Endre typen blokk etter å ha lagt til nytt avsnitt."],"Spotlight mode":["Modus for rampelys"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Stikkord hjelper brukere og søkemotorer å navigere på ditt nettsted og finne ditt innhold. Legg til et par stikkord som beskriver ditt innlegg."],"Add tags":["Legg til stikkord"],"Apply the \"%1$s\" format.":["Bruk formatet til \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ditt tema bruker innleggsformat til å fremheve forskjellig type innhold, som bilder eller videoer. Bruk et innleggsformat for å se denne spesielle stylingen."],"Use a post format":["Bruk et innleggsformat"],"Insert After":["Legg til etter"],"Insert Before":["Legg til foran"],"Move %1$d block from position %2$d down by one place":["Flytt %1$d blokk fra posisjon %2$d ned én plass","Flytt %1$d blokker fra posisjon %2$d ned én plass"],"Move %1$d block from position %2$d up by one place":["Flytt %1$d blokk fra posisjon %2$d opp én plass","Flytt %1$d blokker fra posisjon %2$d opp én plass"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Sett inn en ny blokk foran de valgte blokk(ene)."],"Remove the selected block(s).":["Fjern de(n) valgte blokken(e)."],"Duplicate the selected block(s).":["Kopier de(n) valgte blokken(e)."],"Block shortcuts":["Snarveier til blokker"],"Clear selection.":["Opphev valgte."],"Select all text when typing. Press again to select all blocks.":["Merk all tekst når du skriver. Trykk igjen for å velge alle blokker."],"Selection shortcuts":["Snarveier til utvalg"],"Switch between Visual editor and Code editor.":["Bytt mellom visuell redigering og kode/tekst-redigering."],"Navigate to the previous part of the editor.":["Naviger til forrige del av redigeringsverktøyet."],"Navigate to the next part of the editor.":["Naviger til neste del av redigeringsverktøyet."],"Show or hide the settings sidebar.":["Vis eller skjul sidestolpen for innstillinger."],"Redo your last undo.":["Gjør på nytt det du sist angret bort."],"Undo your last changes.":["Angre dine siste endringer."],"Save your changes.":["Lagre dine endringer."],"Global shortcuts":["Globale snarveier"],"Remove a link.":["Fjern en lenke."],"Convert the selected text into a link.":["Gjør den merkede teksten til en lenke."],"Underline the selected text.":["Understrek den merkede teksten"],"Make the selected text italic.":["Gjør den merlede teksten uthevet med skråstilt skrift."],"Make the selected text bold.":["Gjør den merkede teksten uthevet med fet skrift."],"Text formatting":["Formatering av tekst"],"Insert a new block after the selected block(s).":["Sett inn en ny blokk etter de(n) merkede blokken(e)."],"Keyboard shortcuts":["Snarveier fra tastaturet"],"Thanks for testing Gutenberg!":["Takk for at du tester Gutenberg!"],"Help build Gutenberg":["Hjelp til med å utvikle Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Hvis du vil lære mer om hvordan man bygger ekstra blokker, eller hvis du vil hjelpe til med prosjektet, ta en tur innom GitHub."],"The WordPress community":["WordPress-samfunnet"],"Code is Poetry":["Kode er poesi"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Du kan bygge enhver type blokk, statisk eller dynamisk, dekorativ eller flat. Her er en egensitat-blokk:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Enhver blokk kan eventuelt ha disse justeringene. Innbyggingsblokken har dem også og er responsiv rett ut av boksen."],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Over ser du et galleri med bare to bilder. Det er en enklere måte å lage visuelt slående layouter på, uten å trenge å bry seg om floats. Du kan også enkelt konvertere galleriet tilbake til individuelle bilder igjen, ved å bruke blokk-bytteren."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Klart, fullstørrelse-bilder kan være temmelig store. Men noen ganger er bildet verdt det."],"Accessibility is important — don’t forget image alt attribute":["Tilgjengelighet er viktig — ikke glem en alternativ tekst"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Hvis du kombinerer de nye bred og full-bred justeringene med gallerier, kan du skape et layout rikt på medier svært enkelt:"],"Media Rich":["Rik på media"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Du kan endre antall kolonner i ditt galleri ved å dra på en skyvebryter i blokk-inspisienten i sidestolpen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokker kan kan være enhver ting du trenger. For eksempel kan du vile legge til dempede sitater som en del av oppbyggingen av din tekst eller du kan foretrekke å vise an diger stilisert sak. Alle disse alternativene er tilgjengelige ved innsetting."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informasjonen som tilsvarer kilden til sitatet er et separat tekstfelt, i likhet med bildetekster for bilder, så strukturen til sitatet bevares selv om du velger, endrer eller fjerner kilden. Det er alltid enkelt å legge den til igjen."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Redigeringsverktøyet forsøker å skape en ny skapelsesopplevelse for sider og innlegg som gjør det problemfritt å skrive innlegg med rikt innhold. Verktøyet bruker \"blokker\", for å gjøre det enklere å bruke det som idag ville trengt kortkoder, egendefinert HTML, eller automatisk innbygging du ikke vet innholdet i."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["En stor fordel med blokker er at du kan redigere dem der de er plassert, og manipulere innholdet direkte. I stedet for å ha felter for å redigere ting som kilden til et sitat, eller teksten på en knapp, kan du endre innholdet direkte. Prøv å redigere følgende sitat:"],"Visual Editing":["Visuell redigering"],"And Lists like this one of course :)":["Og lister som denne, selvfølgelig :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blokker for utforming, som knapper, heltebilder, skille-elementer osv."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Innbygginger, som YouTube, tvitringer eller andre WordPress-innlegg."],"Galleries":["Gallerier"],"Images & Videos":["Bilder og videoer"],"Text & Headings":["Tekst og overskrifter"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Prøv det ut. Du kan oppdage nye ting som WordPress kan sette inn i dine innlegg, ting du ikke visste om. Her er en kort oversikt over hva du for tiden kan finne der:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Forestill deg at alt WordPress kan gjøre er lett tilgjengelig, på samme sted i brukergrensesnittet. Det er ikke behov for å styre med HTML-elementer og klasser, eller å memorere komplisert kortkode-syntaks. Dette er tanken bak innsettingsverktøyet—(+)
-knappen du ser rundt omkring i redigeringsvinduet—som lar deg bla gjennom alle tilgjengelige innholdsblokker og legge dem til i innlegget ditt. Utvidelser og temaer kan registrere sine egne, noe som åpner all slags muligheter for rik redigering og publisering."],"The Inserter Tool":["Innsettings-verktøyet"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prøv å velge og så fjerne eller redigere bildeteksten. Nå trenger du ikke være forsiktig med å velge bildet eller også tekst, ved en feiltakelse, og ødelegge presentasjonen."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Hvis ditt tema støtter det vil du se knappen for \"bred\" på verktøylinjen for bildet. Prøv det ut."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Behandling av bilder og media med den ytterste varsomhet er et primært fokus for det nye redigeringsverktøyet. Forhåpentligvis vil du finne sider ved det å legge til bildetekst til, eller gjøre full bredde av, dine bilder mye enklere og robust enn før."],"A Picture is Worth a Thousand Words":["Et bilde et verdt tusen ord"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Overskrifter er også separate blokker, som hjelper med omrisset og organiseringen av innholdet ditt."],"... like this one, which is right aligned.":["... som denne, som er høyrejustert."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Det du leser nå er en tekstblokk, den mest grunnleggende blokken av alle. Tekstblokken har sine egne kontroll for å kunne flyttes fritt rundt i innlegget."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Målet med det nye redigeringsverktøyet er å gjøre det å legge til rikt innhold i WordPress enkelt og hyggelig. Hele dette innlegget er satt sammen av brikker av innhold -- noe liknende Legoklosser -- som du kan flytte rundt og samhandle med. Flytt din markør rundt og du vil legge merke til at de ulike blokkene utheves med omriss og piler. Trykk pilene for å flytte blokken hurtig uten å frykte å miste ting i en prosess med klipp og lim."],"Of Mountains & Printing Presses":["Fra fjell og trykkpresser"],"Welcome to the Gutenberg Editor":["Velkommen til redigeringsverktøyet Gutenberg"],"block name\u0004More":["Mer"],"button to expand options\u0004More":["Mer"],"Are you sure you want to unschedule this post?":["Er du sikker på at du vil fjerne dette innlegget fra planlegging?"],"Alt Text (Alternative Text)":["Alt-tekst (Alternativ tekst)"],"Reusable Block":["Gjenbrukbar blokk"],"Unique identifier for the object.":["Unik identifikator for objektet."],"Untitled Reusable Block":["Gjenbrukbar blokk uten tittel"],"Small":["Liten"],"Reusable":["Gjenbrukbar"],"Remove from Reusable blocks":["Fjern fra Gjenbrukbare blokker"],"Add to Reusable blocks":["Legg til som gjenbrukbar blokk"],"Keep as HTML":["Behold som HTML"],"Edit URL":["Rediger URL"],"Color settings":[],"The response is not a valid JSON response.":["Responsen var ikke en gyldig JSON-respons."],"Editor publish":["Publisering fra redigering"],"Muted":["Dempet"],"Video settings":[],"recent comments":["nylige kommentarer"],"Latest Comments":["Siste kommentarer"],"Display Excerpt":["Vis utdrag"],"Display Date":["Vis dato"],"Display Avatar":["Vis avatar"],"Latest comments settings":[],"Number of Comments":["Antall kommentarer"],"Background Opacity":["Gjennomsiktighet for bakgrunnen"],"Auto":["Auto"],"Preload":["Last inn på forhånd"],"Audio settings":[],"Display a monthly archive of your posts.":["Vis et månedsarkiv for dine innlegg."],"Display as Dropdown":["Vis som nedtrekkliste"],"Show Post Counts":["Vis antall innlegg"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Brukerstøtte"],"No comments to show.":["Ingen kommentarer å vise."],"%1$s on %2$s":["%1$s til %2$s"],"Select Post":["Velg innlegg"],"Select Week":["Velg uke"],"Select Day":["Velg dag"],"Select Month":["Velg måned"],"Select Year":["Velg år"],"Archives":["Arkiv"],"Very dark gray":["Meget mørk grå"],"Cyan bluish gray":["Cyan-blåaktig grå"],"Very light gray":["Meget lys grå"],"Vivid cyan blue":["Levende cyan-blå"],"Pale cyan blue":["Blek cyanblå"],"Vivid green cyan":["Levende cyan-grønn"],"Light green cyan":["Lys cyan-grønn"],"Luminous vivid amber":["Lysende levaktig rav"],"Luminous vivid orange":["Lysende livaktig oransje"],"Vivid red":["Livaktig rød"],"Pale pink":["Blek rosa"],"Inline image":["Inline-bilde"],"Available block types":["Tilgjengelige blokktyper"],"Transform To:":["Forvandle til:"],"Remove Block":["Fjern blokk"],"Open publish panel":["Åpne publiseringspanelet"],"Dots":["Prikker"],"Wide Line":["Bred linje"],"Large":["Stor"],"Show download button":["Vis nedlastingsknapp"],"Download button settings":["Innstillinger for nedlastingsknapp"],"Link To":["Lenke til"],"Text link settings":["Innstillinger for lenker i tekst"],"download":["Last ned"],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopier URL"],"Write file name…":["Skriv filnavn..."],"File":["Fil"],"A single column within a columns block.":["En enkelt kolonne innenfor en kolonneblokk."],"Column":["Kolonne"],"Outline":["Omriss"],"Loop":["Løkke"],"Autoplay":["Automatisk avspilling"],"Playback Controls":["Kontrollknapper for avspilling"],"Close dialog":["Lukk dialog"],"Sorry, this file type is not permitted for security reasons.":["Beklager, men denne filtypen er ikke tillatt av sikkerhetshensyn."],"Disable tips":["Deaktiver tips"],"Got it":["Oppfattet"],"See next tip":["Se neste tips"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Når du er klar, send inn ditt arbeid til gjennomgang og en redaktør vil kunne godkjenne det for deg."],"Are you ready to submit for review?":["Er du klar til å sende inn til gjennomgang?"],"Replace image":["Erstatt bilde"],"Remove image":["Fjern bilde"],"Error while uploading file %s to the media library.":["Feil ved opplasting av fil %s til mediebiblioteket."],"This file exceeds the maximum upload size for this site.":["Denne filen overskrider maksimal størrelse for opplasting på dette nettstedet."],"View the autosave":["Vis autolagringen"],"There is an autosave of this post that is more recent than the version below.":["Det er en automatisk lagret versjon av dette innlegget som er nyere enn versjonen nedenfor."],"Autosaving":["Autolagrer"],"Enter URL here…":["Skriv inn URL her..."],"Pin to toolbar":["Fest til verktøylinjen"],"Unpin from toolbar":["Fjern fra verktøylinjen"],"Insert a table — perfect for sharing charts and data.":["Sett inn en tabell -- perfekt for å dele diagrammer og data."],"Fixed width table cells":["Tabell-celler med fast bredde"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Legg til tekst som respekterer dine avstander og tabuleringer, og dessuten tillater styling."],"Display a list of your most recent posts.":["Vis en liste med dine siste innlegg."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Legg til en blokk som viser innhold fra andre nettsteder, som Twitter, Instagram eller YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Legg til en blokk som viser innholdet i flere kolonner. Legg så til en hvilken som helst innholds-blokk."],"Error loading block: %s":["Feil vedl lasting av blokk: %s"],"Unknown error":["Ukjent feil"],"Embed Handler":["Håndterer for innbygging"],"term\u0004Remove %s":["Fjern %s"],"Copy the permalink":["Kopier permalenken"],"Permalink copied":["Permalenke kopiert"],"Height in pixels":["Høyde i piksler"],"Spacer settings":[],"Spacer":["Skille-element"],"Toggle to show a large initial letter.":["Veksle for å vise en stor førstebokstav."],"Showing large initial letter.":["Viser stor førstebokstav."],"Name:":["Navn:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s av %3$s)"],"Remove item":["Fjern element"],"Color code: %s":["Fargekode: %s"],"Skip to the selected block":["Hopp til valgte blokk"],"Publish…":["Publiser..."],"Schedule…":["Planlegg..."],"Edit post permalink":["Rediger innleggets permalanke"],"Show Block Settings":["Vis innstillinger for blokk"],"Hide Block Settings":["Skjul innstillinger for blokk"],"Block settings closed":["Innstillinger for blokk lukket"],"Close plugin":["Lukk utvidelse"],"Editor settings":["Innstillinger redigering"],"Link settings":["Innstillinger for lenker"],"Unlink":["Fjern lenke"],"Page break":["SIdeskift"],"pagination":["sideinndeling"],"next page":["neste side"],"Image Size":["Bildestørrelse"],"Height":["Høyde"],"Width":["Bredde"],"Image Dimensions":["Dimensjoner for bilde"],"Thumbnails are not cropped.":["Miniatyrbilder er ikke beskåret."],"Thumbnails are cropped to align.":["Miniatyrbilder er beskåret for å passe inn."],"Media Library":["Mediebilbliotek"],"Advanced":["Avansert"],"Add item":["Legg til element."],"Reset the template":["Tilbakestill malen"],"Keep it as is":["Behold den som den er"],"The content of your post doesn’t match the template assigned to your post type.":["Innholdet i innlegget ditt passer ikke med malen for innleggstypen."],"Resetting the template may result in loss of content, do you want to continue?":["Tilbakestilling av malen kan føre til at du mister innhold. Vil du fortsette?"],"Document Statistics":["Dokumentstatistikk"],"is now scheduled. It will go live on":["er nå planlagt. Det publiseres "],"Scheduled":["Planlagt"],"Scheduling…":["Planlegger..."],"Code editor selected":["Kode-redigering valgt"],"Visual editor selected":["Visuell redigerinf valgt"],"Plugins":["Utvidelser"],"Custom Size":["Egendefinert størrelse"],"Layout elements":["Oppsettelementer"],"term\u0004%s removed":["%s fjernet"],"term\u0004%s added":["%s lagt til"],"imperative verb\u0004Preview":["Forhåndsvisning"],"Block deleted.":["Blokk slettet."],"Block updated.":["Blokk oppdatert."],"Block created.":["Blokk opprettet."],"Trashing failed":["Kasting feilet"],"Updating failed.":["Oppdatering mislyktes."],"Scheduling failed.":["Planlegging mislyktes."],"Publishing failed.":["Publisering mislyktes."],"View post":["Se innlegg"],"You have unsaved changes. If you proceed, they will be lost.":["Du har endringer som ikke er lagret. De vil forsvinne dersom du fortsetter."],"Document Outline":["Dokumentomriss"],"Paragraphs":["Avsnitt"],"Headings":["Overskrifter"],"Words":["Ord"],"Content structure":["Struktur for innholdet"],"Public":["Offentlig"],"Protected with a password you choose. Only those with the password can view this post.":["Beskyttet med et passord du velger. Bare dem som har passordet kan se denne posten."],"Password Protected":["Passordbeskyttet"],"Only visible to site admins and editors.":["Bare synlig for administratorer og redaktører."],"Private":["Privat"],"Visible to everyone.":["Synlig for alle."],"Post Visibility":["Postens synlighet"],"Would you like to privately publish this post now?":["Vil du publisere denne posten privat nå?"],"Use a secure password":["Bruk et sikkert passord"],"Create password":["Opprett passord"],"Move to Trash":["Flytt til papirkurven"],"Parent Term":["Foreldrebegrep"],"Parent Category":["Foreldrekategori"],"Add new term":["Legg til et begrep"],"Add new category":["Legg til en kategori"],"Term":["Begrep"],"Tag":["Stikkord"],"Add new Term":["Legg til begrep"],"Add new tag":["Legg til stikkord"],"Switch to draft":["Bytt til kladd"],"Are you sure you want to unpublish this post?":["Er du sikker på at du vil avpublisere denne posten?"],"Immediately":["Umiddelbart"],"Save Draft":["Lagre kladd"],"Saving":["Lagrer"],"Publish:":["Publisher:"],"Visibility:":["Synlighet:"],"Are you ready to publish?":["Er du klar til å publisere?"],"Copy Link":["Kopier lenke"],"What’s next?":["Hva nå?"],"is now live.":["er nå lagt ut."],"Published":["Publisert"],"Schedule":["Planlegg"],"Update":["Oppdater"],"Submit for Review":["Send til godkjenning"],"Updating…":["Oppdaterer..."],"Publishing…":["Publiserer..."],"Allow pingbacks & trackbacks":["Tillat tilbakeping og tilbakesporinger"],"Permalink:":["Permalenke:"],"Pending review":["Venter på godkjenning"],"%d Revision":["%d revisjon","%d revisjoner"],"Suggestion:":["Forslag:"],"Post Format":["Innleggsformat"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standard"],"Aside":["Sidefelt"],"Featured image":["Fremhevet bilde"],"Set featured image":["Velg fremhevet bilde"],"Learn more about manual excerpts":["Lær mer om manuelle utdrag"],"Write an excerpt (optional)":["Skriv et utdrag (valgfritt)"],"Allow comments":["Tillat kommentarer"],"Template:":["Mal:"],"no parent":["ingen forelder"],"no title":["ingen tittel"],"Order":["Rekkefølge"],"No blocks found.":["Ingen blokker funnet."],"%d result found.":["%d resultat funnet.","%d resultater funnet."],"Saved":["Lagret"],"Embeds":["Innbygningselementer"],"Blocks":["Blokker"],"Search for a block":["Søk etter en blokk"],"Add block":["Legg til blokk"],"Copy Error":["Feil ved kopiering"],"Copy Post Text":["Kopier innleggstekst"],"Attempt Recovery":["Forsøk gjenoppretting"],"The editor has encountered an unexpected error.":["Det har oppstått en uventet feil med teksteditoren."],"Undo":["Angre"],"Redo":["Gjør igjen"],"(Multiple H1 headings are not recommended)":["(Flere H1-overskrifter er ikke anbefalt)"],"(Your theme may already use a H1 for the post title)":["(Det er mulig at temaet ditt allerede bruker H1 på posttittelen)"],"(Incorrect heading level)":["(Feil tittelnivå)"],"(Empty heading)":["(Tom tittel)"],"Block Styles":["Blokktyper"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Er du sikker på at du vil slette denne gjenbrukbare blokken?\n\nDen vil slettes permanent fra alle poster og sider som bruker den."],"Convert to Regular Block":["Konverter til gjenbrukbar boks"],"More options":["Flere alternativer"],"Edit visually":["Rediger visuelt"],"Duplicate":["Dupliser"],"Blocks cannot be moved down as they are already at the bottom":["Blokkene kan ikke flyttes ned, de er allerede på bunnen"],"Blocks cannot be moved up as they are already at the top":["Blokkene kan ikke flyttes opp, de er allerede på toppen"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Blokk \"%s\" er den eneste blokken og kan ikke flyttes"],"Edit as HTML":["Rediger som HTML"],"Convert to Blocks":["Konverter til blokker"],"Block: %s":["Blokk: %s"],"This block has encountered an error and cannot be previewed.":["Noe gikk galt med denne blokken, så den kan ikke forhåndsvises."],"No block selected.":["Ingen blokk valgt."],"Transform into:":["Transformer til:"],"Remove":["Fjern"],"Find original":["Finn original"],"Copy all content":["Kopier alt innhold"],"Copied!":["Kopiert!"],"Additional settings are now available in the Editor block settings sidebar":["Flere innstillinger er nå tilgjengelige i teksteditorens avanserte innstillinger"],"Visibility":["Synlighet"],"Status & visibility":["Status og synlighet"],"Page attributes":["Sideegenskaper"],"Block":["Blokk","%d blokker"],"Document":["Dokument"],"Close settings":["Lukk innstillinger"],"Editor content":["Innhold til redigering"],"Tools":["Verktøy"],"Editor":["Redigering"],"Code editor":["Kode-redigering"],"Visual editor":["Visuell redigering"],"Editor top bar":["Topplinje for redigering"],"Settings":["Innstillinger"],"Reset":["Tilbakestill"],"Dismiss this notice":["Fjern denne beskjeden"],"Item removed.":["Fjernet."],"Item added.":["Element lagt til."],"Drop files to upload":["Slipp filer for å laste opp"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["En ukjent feil har oppstått."],"No results.":["Ingen treff."],"%d result found, use up and down arrow keys to navigate.":["%d resultat funnet. Bruk piltastene for å navigere.","%d resultater funnet. Bruk piltastene for å navigere."],"(no title)":["(ingen overskrift)"],"URL":["URL"],"Submit":["Send inn"],"Close":["Lukk"],"Insert link":["Sett inn lenke"],"Edit link":["Rediger lenke"],"Link":["Lenke"],"Strikethrough":["Gjennomstreking"],"Italic":["Kursiv"],"Bold":["Uthevet"],"Remove link":["Fjern lenke"],"Number of items":["Antall elementer"],"All":["Alle"],"Category":["Kategori"],"Z → A":["Å \t A"],"A → Z":["A \t Å"],"Oldest to Newest":["Eldste til nyeste"],"Newest to Oldest":["Nyeste til eldste"],"Order by":["Sorter etter"],"Select":["Velg"],"Select or Upload Media":["Velg eller last opp media"],"Video":["Video"],"Write…":["Skriv..."],"poetry":["poesi"],"Verse":["Vers"],"New Column":["Ny kolonne"],"Delete Column":["Slett kolonne"],"Add Column After":["Legg til kolonne etter"],"Add Column Before":["Legg til kolonne før"],"Delete Row":["Slett rad"],"Add Row After":["Legg til rad etter"],"Add Row Before":["Legg til rad før"],"Edit table":["Rediger tabell"],"Table":["Tabell"],"Write subheading…":["Skriv underoverskrift..."],"Write shortcode here…":["Skriv kortkode her..."],"Shortcode":["Kortkode"],"divider":["skille"],"horizontal-line":["horisontallinje"],"Separator":["Skille"],"Quote":["Sitat"],"Write citation…":["Skriv sitat..."],"Write quote…":["Skriv sitat..."],"Pullquote":["Uttrekksitat"],"Write preformatted text…":["Skriv forhåndsformatert tekst..."],"Preformatted":["Forhåndsformatert"],"text":["tekst"],"Paragraph":["Avsnitt"],"Font Size":["Skriftstørrelse"],"Drop Cap":["Kapitéler"],"Text settings":[],"Read more":["Les mer"],"Write list…":["Skriv liste..."],"numbered list":["nummerert liste"],"ordered list":["ordnet liste"],"bullet list":["punktliste"],"Indent list item":["Element i innrykksliste"],"Outdent list item":["Element i utrykksliste"],"Convert to ordered list":["Konverter til ordnet liste"],"Convert to unordered list":["Konverter til uordnet liste"],"List":["Liste"],"recent posts":["nylige innlegg"],"No posts found.":["Ingen innlegg funnet."],"Latest Posts":["Siste innlegg"],"Display post date":["Vis innleggsdato"],"Grid view":["Rutenettvisning"],"List view":["Listevisning"],"photo":["foto"],"Image settings":[],"Image":["Bilde"],"Preview":["Forhåndsvisning"],"embed":["bygg inn"],"Custom HTML":["Tilpasset HTML"],"subtitle":["undertittel"],"title":["tittel"],"Heading":["Overskrift"],"Write heading…":["Skriv overskrift..."],"Heading %d":["Overskrift %s"],"Level":["Nivå"],"Heading settings":[],"photos":["fotografier"],"images":["bilder"],"None":["Ingen"],"Media File":["Mediefil"],"Attachment Page":["Vedleggside"],"Link to ":["Lenke til"],"Crop Images":["Beskjær bilder"],"Gallery settings":[],"Gallery":["Galleri"],"Classic":["Klassisk"],"video":["video"],"audio":["audio"],"music":["musikk"],"image":["bilde"],"blog":["blogg"],"post":["innlegg"],"Embedded content from %s":["Innbygget innhold fra %s"],"Enter URL to embed here…":["Skriv URL-en du vil bygge inn her..."],"%s URL":["%s URL"],"Embedding…":["Bygger inn..."],"Write title…":["Skriv tittel..."],"Fixed Background":["Fast bakgrunn"],"Edit image":["Rediger bilde"],"Columns":["Kolonner"],"Experiments":["Eksperimenter"],"Code":["Kode"],"Write code…":["Skriv kode..."],"Categories":["Kategorier"],"Show Hierarchy":["Vis hierarki"],"Show post counts":["Vi antall innlegg"],"Categories settings":[],"Add text…":["Legg til tekst..."],"Button":["Knapp"],"Apply":["Bruk"],"Text Color":["Tekstfarge"],"Background Color":["Bakgrunnsfarge"],"Block has been deleted or is unavailable.":["Blokken har blitt slettet eller er utilgjengelig."],"Reusable blocks":["Gjenbrukbar blokk"],"Cancel":["Avbryt"],"Edit":["Rediger"],"Write caption…":["Skriv bildetekst..."],"Use URL":["Bruk URL"],"Audio":["Audio"],"Upload":["Last opp"],"Additional CSS Class(es)":["Ekstra CSS-klasse(r)"],"HTML Anchor":["HTML-anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Denne fargekombinasjonen kan være vanskelig for folk å lese. Bruk en lysere bakgrunnsfarge og/eller en mørkere tekstfarge."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Denne fargekombinasjonen kan være vanskelig for folk å lese. Bruk en mørkere bakgrunnsfarge og/eller en lysere tekstfarge."],"Clear":["Rensk"],"Custom color picker":["Fargevelger"],"Color: %s":["Farge: %s"],"Full width":["Full bredde"],"Wide width":["Bred bredde"],"Widgets":["Widgeter"],"Formatting":["Formatering"],"Common blocks":["Vanlige blokker"],"Align right":["Høyrejuster"],"Align center":["Midtjuster"],"Align left":["Venstrejuster"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Trykket siden 1440. Dette er utviklingsutvidelsen for den nye blokkeditoren i kjernen."],"Add title":["Legg til tittel"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg utviklermodus krever at noen filer blir bygger. Kjør npm install
for å installere avhengigheter, npm run build
for å bygge filene eller npm run dev
for å bygge filene og følge med på endringer. Les filen om å bidra for å få mer informasjon."],"Author":["Forfatter"],"Slug":["Permalenke"],"Discussion":["Diskusjon"],"Custom fields":["Egendefinerte felter"],"Excerpt":["Utdrag"],"Publish":["Publiser"],"Metadata":["Metadata"],"Save":["Lagre"],"Documentation":["Dokumentasjon"],"Select Category":["Velg kategori"],"(Untitled)":["(Uten tittel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg krever WordPress %s eller senere for å fungere ordentlig. Vennligst oppgrader WordPress før du aktiverer Gutenberg."],"Gutenberg Team":["Gutenberg-teamet"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s siden"],"Block style name must be a string.":["Navn på blokkstil må være en tekststreng."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_nl.json b/bundle/android/raw/i18ncache_data_nl.json
new file mode 100644
index 0000000000..98ba9c04fd
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_nl.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Toon submenu icoon voor top-niveau onderdelen"],"Display settings":["Weergave-instellingen"],"Choose variation":["Selecteer variatie"],"Angle":["Hoek"],"%s Block":["%s blok"],"%1$s Block. %2$s":["%1$s blok. %2$s"],"%s Block. Column %d":["%s blok. Kolom %d"],"%1$s Block. Column %2$d. %3$s":["%1$s blok. Kolom %2$d. %3$s"],"%s Block. Row %d":["%s blok. Rij %d"],"%1$s Block. Row %2$d. %3$s":["%1$s blok. Rij %2$d. %3$s"],"Post Excerpt":["Bericht samenvatting"],"Post Date":["Berichtdatum"],"No Date":["Geen datum"],"Post Author":["Berichtauteur"],"Choose":["Kies"],"twentytwenty":["twentytwenty"],"Theme":["Thema"],"Choose a template part by slug and theme, or create a new one.":["Kies een thema-onderdeel op slug en thema, of maak een nieuwe."],"Error adding template.":["Fout bij toevoegen thema."],"Footer label":["Footer label"],"Header label":["Header label"],"Unsupported":["Niet ondersteund"],"The description will be displayed in the menu if the current theme supports it.":["De omschrijving wordt weergegeven in het menu wanneer het huidige thema dit ondersteunt."],"Level %1$s. %2$s":["Niveau %1$s. %2$s"],"Level %s. Empty.":["Niveau %s. Leeg."],"Empty":["Leeg"],"Search results for %s":["Zoekresultaten voor %s"],"Recently updated":["Recent bijgewerkt"],"Multiple selected blocks":["Meerdere geselecteerde blokken"],"By %s":["door %s"],"Inspector":["Inspector"],"Site editor advanced settings.":["Site editor geavanceerde instellingen."],"(beta)":["(beta)"],"Site Editor":["Site Editor"],"Site editor top bar.":["Site editor top balk."],"Briefly describe the link to help screen reader users.":["Beschrijf kort de link om schermlezer-gebruikers te helpen."],"Link Label":["Link label"],"%s label":["%s label"],"poem":["gedicht"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;"],"Full Post":["Volledig bericht"],"Show:":["Toon:"],"Create from all top-level pages":["Maak van alle hoogste niveau pagina's"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Vraag bezoekers actie te ondernemen met meerdere knoppen naast elkaar."],"Buttons":["Knoppen"],"Background":["Achtergrond"],"Background & Text Color":["Achtergrond & tekstkleur"],"Images Size":["Afbeeldingen grootte"],"Remove multiple selected blocks.":["Verwijder meerdere geselecteerde blokken."],"(%s: gradient %s)":["(%s: verloop %s)"],"(%s: color %s)":["(%s: kleur %s)"],"(Gradient: %s)":["(Verloop: %s)"],"(Color: %s)":["(Kleur: %s)"],"Here's a detailed guide.":["Hier is een gedetailleerde gids."],"New to the Block Editor? Want to learn more about using it? ":["Nieuw bij de Blok Editor? Meer weten over het gebruik ervan?"],"Learn how to use the Block Editor":["Leer de Blok Editor te gebruiken"],"Help":["Hulp"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s blok icoon"],"Submit for Review…":["Indienen ter beoordeling..."],"Update…":["Bijwerken..."],"Select items to save.":["Selecteer elementen om op te slaan."],"What do you want to save?":["Wat wil je opslaan?"],"Untitled":["Naamloos"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["De blokeditor bevat experimentele functies die je kunt gebruiken terwijl ze ontwikkeld worden. Selecteer degene die je wilt inschakelen. Deze functies zullen waarschijnlijk veranderen, dus gebruik ze niet in productiesites."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Volledige sitebewerking inschakelen (Waarschuwing: dit vervangt je thema en veroorzaakt mogelijk onomkeerbare wijzigingen op de site. We raden je aan dit alleen in een ontwikkelomgeving te gebruiken.)"],"Site Editor (beta)":["Site Editor (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Een \"blok\" is een abstracte term dat wordt gebruikt om\n// markup eenheden te beschrijven die allemaal samen\n// de inhoud of de indeling van een pagina vormen.\nregisterBlockType( name, settings );"],"You are probably offline.":["Je bent waarschijnlijk offline."],"Justify items right":["Elementen rechts uitlijnen"],"Justify items center":["Elementen centreren"],"Justify items left":["Elementen links uitlijnen"],"Change items justification":["Verander uitlijning elementen"],"The media file has been replaced":["Het mediabestand is vervangen"],"Replace":["Vervang"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Je bevindt je momenteel in de bewerken-modus. Druk op Escape om terug te gaan naar navigatie-modus."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Je bevindt je momenteel in de navigatie-modus. Navigeer door de blokken met Tab. Druk op Enter om navigatie-modus te verlaten en het geselecteerde blok te bewerken."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Gebruik sw linker- of rechter pijltjestoetsen of sleep met de muis om de verlooppositie te wijzigen. Druk op de knop om de kleur te wijzigen of het controlepunt te verwijderen."],"Gradient control point at position %1$s with color code %2$s.":["Verloop controlepunt op positie %1$s met kleurcode %2$s."],"Preset Size":["Preset grootte"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Gereedschappen bieden verschillende interacties voor blok selectie en bewerking. Om te selecteren, druk op Escape, om terug te gaan naar bewerken, druk op Enter."],"Open Media Library":["Open mediabibliotheek"],"Next":["Volgende"],"Previous":["Vorige"],"Finish":["Afronden"],"Page %1$d of %2$d":["Pagina %1$d van %2$d"],"Guide controls":["Gidsbediening"],"Remove Control Point":["Verwijder controlepunt"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Ieder blok heeft zijn eigen set bedieningselementen voor het wijzigen van zaken als kleur, breedte, en uitlijning. Deze verschijnen en verdwijnen automatisch wanneer je een blok hebt geselecteerd."],"Make each block your own":["Maak elk blok van jezelf"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["In de WordPress-editor wordt elke paragraaf, afbeelding, of video gepresenteerd als een apart \"inhoudsblok\"."],"ADD MEDIA":["TOEVOEGEN MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Alle beschikbare blokken bevinden zich in de Blok bibliotheek. Je vindt deze overal waar je het icoon ziet."],"Get to know the Block Library":["De Blok bibliotheek leren kennen"],"Welcome Guide":["Welkomstgids"],"Enable page templates":["Pagina templates inschakelen"],"Page Templates":["Pagina templates"],"Enable Full Site Editing demo templates":["Volledige site-bewerking demo-templates inschakelen"],"Full Site Editing Demo Templates":["Templates voor bewerken van de volledige site"],"Welcome to the Block Editor":["Welkom bij de blok editor"],"Get started":["Aan de slag"],"inserter":["inserter"],"Post Title":["Berichttitel"],"Add nofollow to link":["Nofollow aan link toevoegen"],"Add submenu":["Toevoegen submenu"],"Add link…":["Link toevoegen..."],"Dark":["Donker"],"Light":["Licht "],"recording":["opnemen"],"podcast":["podcast"],"sound":["geluid"],"Array of instance changes":["Matrix van instantie veranderingen"],"Current widget instance":["Huidige widget instantie"],"Template parts to include in your templates.":["Template onderdelen om in je templates op te nemen."],"Template parts list":["Template-onderdelen lijst"],"Template parts list navigation":["Template-onderdelen lijst navigatie"],"Filter template parts list":["Template-onderdelen lijst filteren"],"Uploaded to this template part":["Geüpload naar dit template-onderdeel"],"Insert into template part":["Invoegen in template-onderdeel"],"Template part archives":["Template-onderdeel archieven"],"No template parts found in Trash.":["Geen template-onderdelen gevonden in prullenbak."],"No template parts found.":["Geen template-onderdelen gevonden."],"Parent Template Part:":["Hoofd template-onderdeel:"],"Search Template Parts":["Zoek template-onderdelen"],"All Template Parts":["Alle template-onderdelen"],"View Template Part":["Bekijk template-onderdeel"],"Edit Template Part":["Bewerk template-onderdeel"],"New Template Part":["Nieuw template-onderdeel"],"Add New Template Part":["Nieuw template-onderdeel toevoegen"],"Template Part\u0004Add New":["Nieuw toevoegen"],"Admin Menu text\u0004Template Parts":["Template-onderdelen"],"Template Part":["Template-onderdeel"],"Template Parts":["Template-onderdelen"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],"Navigation":["Navigatie"],"Loading Navigation…":["Navigatie laden..."],"Navigation Structure":["Navigatiestructuur"],"Create empty":["Maak lege"],"Create a Navigation from all existing pages, or create an empty one.":["Maak een navigatie van alle bestaande pagina's, of maak een lege."],"Navigation Link":["Navigatielink"],"(Note: many devices and browsers do not display this text.)":["(Opmerking: veel apparaten en browsers geven deze tekst niet weer.)"],"Describe the role of this image on the page.":["Beschrijf de rol van deze afbeelding op de pagina."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Schakel tussen het gebruik van dezelfde waarde voor alle schermformaten of het gebruik van een unieke waarde per schermgrootte."],"Use the same %s on all screensizes.":["Gebruik dezelfde %s voor alle schermformaten."],"Large screens":["Grote schermen"],"Medium screens":["Gemiddelde schermen"],"Small screens":["Kleine schermen"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Bepaalt eigenschap %1$s voor %2$s viewports."],"Currently selected":["Huidig geselecteerd"],"Search or type url":["Zoek of typ URL"],"Press ENTER to add this link":["Druk op ENTER om deze link toe te voegen"],"Currently selected link settings":["Huidige geselecteerde linkinstellingen"],"Generic label for block inserter button\u0004Add block":["Blok toevoegen"],"directly add the only allowed block\u0004Add %s":["Voeg %s toe"],"%s block added":["%s blok toegevoegd"],"Move %s":["Verplaats %s"],"Extra Large":["Extra groot"],"Block breadcrumb":["Blok broodkruimel"],"Editor footer":["Editor footer"],"Site Title":["Sitetitel"],"Open Colors Selector":["Open kleurenselector"],"Templates list":["Templates lijst"],"Templates list navigation":["Templates lijst navigatie"],"Filter templates list":["Templates lijst filteren"],"Uploaded to this template":["Geüpload naar deze template"],"Insert into template":["Invoegen in template"],"Template archives":["Template archieven"],"No templates found in Trash.":["Geen templates gevonden in prullenbak."],"No templates found.":["Geen templates gevonden."],"Parent Template:":["Hoofd template:"],"Search Templates":["Zoek templates"],"All Templates":["Alle templates"],"View Template":["Bekijk template"],"Edit Template":["Bewerk template"],"New Template":["Nieuwe template"],"Add New Template":["Nieuwe template toevoegen"],"Template\u0004Add New":["Nieuwe toevoegen"],"Admin Menu text\u0004Templates":["Templates"],"Template":["Template"],"No matching template found":["Geen overeenkomende template gevonden"],"Gradient: %s":["Verloop: %s"],"Gradient code: %s":["Verloopcode: %s"],"All content copied.":["Alle inhoud gekopieerd."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Media-upload mislukt. Gaat het om een foto of een grote afbeelding, verklein deze dan en probeer het opnieuw."],"Gradient":["Verloop"],"Gradient Presets":["Verloop voorinstellingen"],"No Preview Available.":["Geen voorbeeld beschikbaar."],"Midnight":["Middernacht"],"Electric grass":["Electrisch gras"],"Pale ocean":["Bleek oceaan"],"Luminous dusk":["Lichtgevende dageraad"],"Blush bordeaux":["Blozend bordeaux"],"Blush light purple":["Blozend lichtpaars"],"Cool to warm spectrum":["Koel naar warm spectrum"],"Very light gray to cyan bluish gray":["Zeer lichtgrijs tot cyaan blauwachtig grijs"],"Luminous vivid orange to vivid red":["Lichtgevend levendig oranje tot levendig rood"],"Luminous vivid amber to luminous vivid orange":["Lichtgevend levendig amber tot lichtgevend levendig oranje"],"Light green cyan to vivid green cyan":["Licht groen cyaan tot levendig groen cyaan"],"Vivid cyan blue to vivid purple":["Levendig cyaan blauw tot levendig paars"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 december 2018"],"February 21, 2019":["21 februari 2019"],"May 7, 2019":["7 mei 2019"],"Release Date":["Release datum"],"Jazz Musician":["Jazz muzikant"],"Version":["Versie"],"Six.":["Zes."],"Five.":["Vijf."],"Four.":["Vier."],"Three.":["Drie."],"Two.":["Twee."],"One.":["Eén."],"One of the hardest things to do in technology is disrupt yourself.":["Een van de moeilijkste zaken om te doen in technologie is jezelf verstoren."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Het winterkoninkje
Verdient zijn brood
Lawaaiig."],"Welcome to the wonderful world of blocks…":["Welkom in de wondere wereld van blokken..."],"Snow Patrol":["Snow Patrol"],"Dimensions":["Afmetingen"],"Minimum height in pixels":["Minimum hoogte in pixels"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Call to Action"],"In quoting others, we cite ourselves.":["Wanneer we anderen quoten, citeren we onszelf."],"cite":["citaat"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc verschijnt—stil, besneeuwd, en sereen."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In een dorp La Mancha, waarvan ik me de naam niet wil herinneren, woonde niet lang geleden één van die heren die een lans in het lansrek houden, een oud schild, een slank houweel, en een windhond om mee te jagen."],"Block navigation":["Bloknavigatie"],"Full Site Editing":["Full Site Editing"],"Templates to include in your theme.":["Templates die toegevoegd moeten worden aan je thema."],"Templates":["Templates"],"Inserter help panel":["Invoeger help paneel"],"Pre-publish checks":["Controles voor publicatie"],"Please contact your site administrator to install new blocks.":["Neem contact op met je sitebeheerder om nieuwe blokken te installeren."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Geen blokken gevonden in je bibliotheek. Neem contact op met je sitebeheerder om nieuwe blokken te installeren"],"No blocks found in your library.":["Geen blokken gevonden in je bibliotheek."],"No blocks found in your library. These blocks can be downloaded and installed:":["Geen blokken gevonden in je bibliotheek. Deze blokken kunnen worden gedownload en geïnstalleerd:"],"No blocks found in your library. We did find %d block available for download.":["Geen blokken gevonden in je bibliotheek. We vonden %d blok beschikbaar voor download.","Geen blokken gevonden in je bibliotheek. We vonden %d blokken beschikbaar voor download."],"Block previews can’t load.":["Blok voorbeelden kunnen niet geladen worden."],"Retry":["Probeer opnieuw"],"Block previews can't install.":["Blok voorbeelden kunnen niet geïnstalleerd worden."],"Updated %s":["Bijgewerkt %s"],"%d active installation":["%d actieve installatie","%d actieve installaties"],"This author has %d block, with an average rating of %d.":["Deze auteur heeft %d blok met een gemiddelde waardering van %d.","Deze auteur heeft %d blokken met een gemiddelde waardering van %d."],"Authored by %s":["Geschreven door %s"],"%d total rating":["%d waardering","%d waarderingen"],"%s out of 5 stars":["%s van 5 sterren"],"Enter Address":["Vul adres in"],"Pill Shape":["Pilvorm"],"Logos Only":["Alleen logo's"],"Create a block of links to your social media or external sites":["Maak een blok met links naar je social media of externe sites"],"Social links":["Sociale links"],"Open block navigator":["Open bloknavigator"],"Attachment page":["Bijlagepagina"],"Fill":["Vulling"],"Link rel":["Linkrelatie"],"Border Radius":["Hoekafronding"],"Write gallery caption…":["Schrijf een galerij onderschrift..."],"Content blocks":["Inhoudsblokken"],"Restore the backup":["Zet de backup terug"],"The backup of this post in your browser is different from the version below.":["De backup van dit bericht in je browser verschilt van de versie hieronder."],"Enable block directory search":["Blok-directory zoeken inschakelen"],"Block Directory":["Blok-directory"],"Unable to connect to the filesystem. Please confirm your credentials.":["Niet mogelijk om verbinding te maken met het bestandssysteem. Bevestig je inloggegevens."],"Sorry, you are not allowed to install blocks.":["Sorry, je hebt geen toestemming om blokken te installeren."],"%1$d block is disabled.":["%1$d blok is uitgeschakeld.","%1$d blokken zijn uitgeschakeld."],"Reverse List Numbering":["Omgekeerde lijstnummering"],"Start Value":["Startwaarde"],"Ordered list settings":["Geordende lijst-instellingen"],"Clear Media":["Wis media"],"Default Style":["Standaard stijl"],"Not set":["Niet ingesteld"],"While writing, you can press / to quickly insert new blocks.":["Je kunt / intoetsen tijdens het schrijven om snel nieuwe blokken in te voegen."],"Browse through the library to learn more about what each block does.":["Blader door de bibliotheek voor meer informatie over wat elk blok doet."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Er zijn blokken beschikbaar voor alle soorten inhoud: tekst invoegen, koppen, afbeeldingen, lijsten, video's, tabellen en nog veel meer."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Welkom in de wondere wereld van blokken! Blokken zijn de basis van alle inhoud in de editor."],"Version of the content block format used by the object.":["Versie van de inhoudsblokindeling die door het object wordt gebruikt."],"HTML content for the object, transformed for display.":["HTML-inhoud van het object, aangepast voor weergave."],"Content for the object, as it exists in the database.":["Inhoud voor het object, zoals het bestaat in de database."],"The content for the object.":["De inhoud voor het object."],"Change column alignment":["Wijzig uitlijning kolom"],"Align Column Right":["Kolom rechts uitlijnen"],"Align Column Center":["Kolom centreren"],"Align Column Left":["Kolom links uitlijnen"],"Color":["Kleur"],"Vivid purple":["Helder paars"],"Disable & Reload":["Uitschakelen & herladen"],"Enable & Reload":["Inschakelen & herladen"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Het herladen van de pagina is vereist voor deze wijziging. Zorg ervoor dat je inhoud is opgeslagen voor herladen."],"Display these keyboard shortcuts.":["Toon deze toetsencombinaties."],"Experiments Settings":["Experimentele instellingen"],"Enable Widgets screen and Legacy Widgets block":["Widgets scherm en verouderd widget blok inschakelen"],"Experimental settings":["Experimentele instellingen"],"Block name name must be a string.":["Bloknaam moet een string zijn."],"Custom":["Aangepast"],"Draft":["Concept"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blok \"%1$s\" bevat geen stijl genaamd \"%2$s.\"."],"Learn more about anchors":["Meer informatie over ankers"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Vul één of twee woorden in — zonder spaties — om een uniek web-adres te maken voor deze kop, genaamd een “anker.” Dan kan je direct naar deze sectie van je pagina linken."],"Widget Blocks (Experimental)":["Widget blokken (experimenteel)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Upload een videobestand, selecteer er één vanuit je mediabibliotheek of voeg er één toe met een URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Upload een afbeelding, selecteer er één vanuit je mediabibliotheek of voeg er één toe met een URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Upload een audiobestand, selecteer er één vanuit je mediabibliotheek of voeg er één toe met een URL."],"Upload a media file or pick one from your media library.":["Upload een mediabestand of selecteer er één vanuit je mediabibliotheek."],"Skip":["Overslaan"],"Select a variation to start with.":["Selecteer een variatie om mee te beginnen."],"Add a page, link, or another item to your navigation.":["Voeg een pagina, link, of ander element toe aan je navigatie."],"What's this?":["Wat is dit?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Laat zoekmachines deze link niet volgen."],"Provide more context about where the link goes.":["Geef meer context over waar de link naartoe gaat."],"Title Attribute":["Titelattribuut"],"SEO settings":["SEO instellingen"],"Description":["Beschrijving"],"Open in new tab":["Open in nieuw tabblad"],"links":["links"],"navigation":["navigatie"],"menu":["menu"],"Add a navigation block to your site.":["Voeg een navigatieblok toe aan je site."],"Upload a file or pick one from your media library.":["Upload een bestand of selecteer er één vanuit je mediabibliotheek."],"Learn more about embeds":["Meer informatie over insluitingen"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Plak een link naar de inhoud die je wilt laten zien op je site."],"Upload an image or video file, or pick one from your media library.":["Upload een afbeelding of videobestand of selecteer er één vanuit je mediabibliotheek."],"Three columns; wide center column":["Drie kolommen, brede midden kolom"],"Three columns; equal split":["Drie kolommen; gelijkmatig verdeeld"],"Two columns; two-thirds, one-third split":["Twee kolommen; twee derde, één derde verdeling"],"Two columns; one-third, two-thirds split":["Twee kolommen; één derde, twee derde verdeling"],"Two columns; equal split":["Twee kolommen; gelijkmatig verdeeld"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Je site heeft geen enkele %s, er is op dit moment dus niets hier te tonen."],"More tools & options":["Meer gereedschap & opties"],"Create Table":["Maak tabel"],"Insert a table for sharing data.":["Voeg een tabel in voor het delen van gegevens."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Loskoppelen"],"verb\u0004Group":["Groeperen"],"Separate with commas or the Enter key.":["Scheid met komma's of de Enter-toets."],"Separate with commas, spaces, or the Enter key.":["Scheid met komma's, spaties of de Enter-toets."],"Separate multiple classes with spaces.":["Scheid meerdere classes met spaties."],"Move image forward":["Verplaats afbeelding naar voren"],"Move image backward":["Verplaats afbeelding naar achteren"],"Sorry, you are not allowed to edit sidebars.":["Sorry, je geen toestemming om zijbalken te bewerken."],"Sorry, you are not allowed to read sidebars.":["Sorry, je hebt geen toestemming om zijbalken te lezen."],"The sidebar’s ID.":["De ID van de zijbalk."],"Displays a set of blocks":["Geeft een groep blokken weer"],"Blocks Area":["Blokkengebied"],"Block rendered as empty.":["Blok weergegeven als leeg."],"Inline Code":["Inline code"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Opmerking: video's die automatisch worden afgespeeld, kunnen voor sommige bezoekers gebruiksproblemen veroorzaken."],"Footer section":["Footer sectie"],"Header section":["Header sectie"],"Sorting and filtering":["Sortering en filtering"],"Post meta settings":["Bericht meta-instellingen"],"Post Content":["Bericht inhoud"],"Post content settings":["Bericht-inhoud instellingen"],"Percentage width":["Percentage breedte"],"Column settings":["Kolom-instellingen"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Opmerking: audiobestanden die automatisch worden afgespeeld, kunnen voor sommige bezoekers gebruiksproblemen veroorzaken."],"Block area updated.":["Blokgebied bijgewerkt."],"Block area scheduled.":["Blokgebied ingepland."],"Block area published.":["Blokgebied gepubliceerd."],"Block areas list":["Blokgebieden lijst"],"Block areas list navigation":["Blokgebieden lijstnavigatie"],"Filter block areas list":["Filter blokgebieden lijst"],"No block area found.":["Geen blokgebied gevonden."],"Search Block Areas":["Zoek blokgebieden"],"All Block Areas":["Alle blokgebieden"],"View Block Area":["Bekijk blokgebied"],"Edit Block Area":["Bewerk blokgebied"],"New Block Area":["Nieuw blokgebied"],"Add New Block Area":["Voeg nieuw blokgebied toe"],"admin menu\u0004Block Areas":["Blokgebieden"],"post type singular name\u0004Block Area (Experimental)":["Blokgebied (experimenteel)"],"post type general name\u0004Block Area (Experimental)":["Blokgebied (experimenteel)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimenteel aangepast berichttype dat blokgebieden bevat waarnaar wordt verwezen door thema's."],"Widgets screen content":["Widgets-scherm inhoud"],"header":["header"],"Widgets advanced settings":["Widgets geavanceerde instellingen"],"(experimental)":["(experimenteel)"],"Block Areas":["Blokgebieden"],"Widgets screen top bar":["Widgets-scherm topbar"],"This color combination may be hard for people to read.":["Deze kleurencombinatie kan moeilijk te lezen zijn voor mensen."],"There is no poster image currently selected":["Er is momenteel geen posterafbeelding geselecteerd"],"The current poster image url is %s":["De URL van de huidige posterafbeelding is %s"],"section":["sectie"],"row":["rij"],"wrapper":["wrapper"],"container":["container"],"A block that groups other blocks.":["Een blok wat andere blokken groepeert."],"Group":["Groep"],"Crop image to fill entire column":["Snij afbeelding bij om de gehele kolom te vullen"],"Play inline":["Inline afspelen"],"Leave empty if the image is purely decorative.":["Laat leeg als de afbeelding alleen decoratief is."],"Describe the purpose of the image":["Beschrijf het doel van de afbeelding"],"Add a block":["Een blok toevoegen"],"Block vertical alignment setting label\u0004Change vertical alignment":["Wijzig verticale uitlijning"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Verticaal uitlijnen onderkant"],"Block vertical alignment setting\u0004Vertically Align Middle":["Verticaal uitlijnen midden"],"Replace Image":["Vervang afbeelding"],"Block vertical alignment setting\u0004Vertically Align Top":["Verticaal uitlijnen bovenkant"],"Display a legacy widget.":["Toon een verouderde widget."],"Legacy Widget (Experimental)":["Verouderde widget (experimenteel)"],"Change widget":["Wijzig widget"],"Legacy Widget":["Verouderde widget"],"You don't have permissions to use widgets on this site.":["Je hebt geen rechten om widgets op deze site te gebruiken."],"Select a legacy widget to display:":["Selecteer een te tonen verouderde widget:"],"There are no widgets available.":["Er zijn geen widgets beschikbaar."],"Change block type or style":["Wijzig bloktype of stijl"],"keyboard key\u0004Space":["Spatie"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Meer mooiere tekst regelaars"],"Search Terms":["Zoektermen"],"Exit the Editor":["Sluit de editor"],"Block Manager":["Blokbeheerder"],"Class name of the widget.":["Classnaam van de widget."],"Sorry, you are not allowed to access widgets on this site.":["Sorry, je hebt geen toestemming om widgets op deze site te benaderen."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["Ingesloten inhoud van %s kan niet worden bekeken in de editor."],"Custom Color":["Aangepaste kleur"],"Prompt visitors to take action with a button-style link.":["Moedig bezoekers aan om actie te ondernemen met een link die eruit ziet als knop."],"Stick to the top of the blog":["Plak aan de bovenkant van de blog"],"Read about permalinks":["Lees over permalinks"],"The last part of the URL.":["Het laatste gedeelte van de URL."],"URL Slug":["URL slug"],"A cloud of your most used tags.":["Een wolk van je meest gebruikte tags."],"Tag Cloud":["Tagwolk"],"Taxonomy":["Taxonomie"],"Tag Cloud settings":["Tagwolk instellingen"],"- Select -":["- Selecteer -"],"Default":["Standaard"],"find":["vind"],"Help visitors find your content.":["Help bezoekers je inhoud te vinden."],"Search":["Zoek"],"Add button text…":["Voeg knoptekst toe..."],"Button text":["Knoptekst"],"Optional placeholder…":["Optionele plaatshouder..."],"Optional placeholder text":["Optionele plaatshoudertekst"],"Add label…":["Voeg label toe..."],"Label text":["Labeltekst"],"image %1$d of %2$d in gallery":["afbeelding %1$d van %2$d in galerij"],"archive":["archief"],"posts":["berichten"],"A calendar of your site’s posts.":["Een kalender van de berichten op je site."],"Calendar":["Kalender"],"by":["door"],"An error has occurred, which probably means the feed is down. Try again later.":["Er is een fout opgetreden, wat waarschijnlijk betekent dat de feed niet werkt. Probeer het later opnieuw."],"RSS Error:":["RSS fout:"],"block style\u0004Default":["Standaard"],"Fullscreen mode deactivated":["Schermvullende weergave gedeactiveerd"],"Fullscreen mode activated":["Schermvullende weergave geactiveerd"],"Spotlight mode deactivated":["Spotlight-modus gedeactiveerd"],"Spotlight mode activated":["Spotlight-modus geactiveerd"],"Top toolbar deactivated":["Bovenste toolbar gedeactiveerd"],"Top toolbar activated":["Bovenste toolbar geactiveerd"],"Back":["Terug"],"Feature activated":["Mogelijkheid geactiveerd"],"Feature deactivated":["Mogelijkheid gedeactiveerd"],"Vertical Pos.":["Verticale Pos."],"Horizontal Pos.":["Horizontale Pos."],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Toon berichten van een RSS of Atom feed."],"RSS":["RSS"],"Max number of words in excerpt":["Maximum aantal woorden in samenvatting"],"Display excerpt":["Toon samenvatting"],"Display date":["Toon datum"],"Display author":["Toon auteur"],"RSS settings":["RSS instellingen"],"Edit RSS URL":["Bewerk RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Inhoud voor dit blok wordt getoond in de samenvatting van je archiefpagina."],"Hide the excerpt on the full content page":["Verberg de samenvatting op de volledige inhoudspagina"],"The excerpt is visible.":["De samenvatting is zichtbaar."],"The excerpt is hidden.":["De samenvatting is verborgen."],"Sorry, this content could not be embedded.":["Het spijt me, deze inhoud kon niet worden ingesloten."],"Embed Amazon Kindle content.":["Sluit Amazon Kindle inhoud in."],"ebook":["e-boek"],"Embed Crowdsignal (formerly Polldaddy) content.":["Sluit Crowdsignal (voorheen Polldaddy) inhoud in."],"Focal Point Picker":["Focuspunt picker"],"Underline":["Onderstreep"],"Attempt Block Recovery":["Probeer blokherstel"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Inhoud..."],"button label\u0004Convert to link":["Omzetten naar link"],"button label\u0004Try again":["Probeer nogmaals"],"Editor tips":["Editor tips"],"Block (selected)":["Blok (geselecteerd)"],"Document (selected)":["Document (geselecteerd)"],"%d word":["%d woord","%d woorden"],"Top toolbar":["Top toolbar"],"Link Rel":["Linkrelatie"],"Link CSS Class":["Link CSS Class"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Creëer content en sla het op voor jezelf en andere gebruikers op je site. Wanneer je het blok aanpast worden je wijzigingen overal doorgevoerd."],"To edit the featured image, you need permission to upload media.":["Om de uitgelichte afbeelding te kunnen bewerken heb je toestemming nodig om media te uploaden."],"To edit this block, you need permission to upload media.":["Om dit blok te kunnen bewerken, heb je toestemming nodig om media te uploaden."],"(selected block)":["(geselecteerd blok)"],"Block tools":["Blok-gereedschappen"],"Permalink":["Permalink"],"This image has an empty alt attribute":["Deze afbeelding heeft een leeg alt-atribuut"],"This image has an empty alt attribute; its file name is %s":["Deze afbeelding heeft een leeg alt-atribuut; de bestandsnaam is %s"],"Block area reverted to draft.":["Blokgebied teruggezet naar concept."],"Block area published privately.":["Blokgebied privé gepubliceerd."],"No block areas found in Trash.":["Geen blokgebieden gevonden in prullenbak."],"Block\u0004Add New":["Voeg nieuwe toe"],"add new on admin bar\u0004Block Area":["Blokgebied"],"Link inserted.":["Link ingevoegd."],"Warning: the link has been inserted but may have errors. Please test it.":["Waarschuwing: de link is toegevoegd, maar kan fouten bevatten. Graag goed testen."],"%s block selected.":["%s blok geselecteerd.","%s blokken geselecteerd."],"Thumbnail":["Thumbnail"],"Full Size":["Volledige grootte"],"Link selected.":["Link geselecteerd."],"Start writing with text or HTML":["Begin met tekst of HTML schrijven "],"Type text or HTML":["Typ tekst of HTML"],"Block icon":["Blok-icoon"],"Align text right":["Tekst rechts uitlijnen"],"Align text center":["Tekst centreren"],"Align text left":["Tekst links uitlijnen"],"Start writing or type / to choose a block":["Begin met schrijven of typ / om een blok te kiezen"],"Empty block; start writing or type forward slash to choose a block":["Leeg blok; begin met schrijven of typ een schuine streep om een blok te kiezen"],"Paragraph block":["Paragraafblok"],"Page Break":["Pagina-einde"],"Stack on mobile":["Stapel op mobiel"],"Annotation":["Aantekening"],"Drag images, upload new ones or select files from your library.":["Sleep afbeeldingen, upload nieuwe of selecteer bestanden in je bibliotheek."],"blocks\u0004Most used":["Meest gebruikt"],"imperative verb\u0004Resolve":["Oplossen"],"font size name\u0004Huge":["Zeer groot"],"font size name\u0004Large":["Groot"],"font size name\u0004Medium":["Gemiddeld"],"font size name\u0004Small":["Klein"],"font size name\u0004Normal":["Normaal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importeer"],"button label\u0004Download":["Download"],"button label\u0004Embed":["Insluiten"],"block title\u0004Embed":["Insluiten"],"block title\u0004Classic":["Klassiek"],"block style\u0004Large":["Groot"],"block style\u0004Rounded":["Afgerond"],"%s (opens in a new tab)":["%s (opent in een nieuwe tab)"],"Link edited.":["Link bewerkt."],"Link removed.":["Link verwijderd."],"media":["media"],"Double-check your settings before publishing.":["Controleer je instellingen goed alvorens te publiceren."],"Generating preview…":["Voorbeeld genereren..."],"Edit or update the image":["Bewerk of update de afbeelding"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigeer naar de dichtstbijzijnde toolbar."],"Document tools":["Document gereedschap"],"Document and block tools":["Document en blok gereedschap"],"Embed a video from your media library or upload a new one.":["Een video uit je mediabibliotheek insluiten of upload een nieuwe."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Voeg poëzie toe. Gebruik speciale ruimte-indelingen. Of citeer muziekteksten."],"Add white space between blocks and customize its height.":["Voeg ruimte toe tussen blokken en pas de hoogte aan."],"Insert additional custom elements with a WordPress shortcode.":["Voeg extra aangepaste elementen in met een WordPress shortcode."],"Create a break between ideas or sections with a horizontal separator.":["Geef de lezer rust tussen ideeën of secties met een horizontale scheidingslijn."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Geef geciteerde tekst visuele nadruk. \"Door anderen te citeren, citeren we onszelf.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Geef speciale visuele nadruk aan een citaat uit je eigen tekst."],"Start with the building block of all narrative.":["Begin met de bouwsteen van alle verhalen."],"Separate your content into a multi-page experience.":["Laat je inhoud ervaren over meerdere pagina's."],"Set media and words side-by-side for a richer layout.":["Zet media en woorden naast elkaar in voor een mooiere lay-out."],"Media & Text settings":["Media- en tekst-instellingen"],"Create a bulleted or numbered list.":["Maak lijst met opsommingstekens of nummers."],"Display a list of your most recent comments.":["Toon een lijst van je meest recente reacties."],"Insert an image to make a visual statement.":["Voeg een afbeelding in om een visuele uitspraak te maken."],"Add custom HTML code and preview it as you edit.":["Voeg aangepaste HTML-code toe en bekijk een voorbeeld tijdens het bewerken."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduceer nieuwe secties en organiseer je inhoud zo dat bezoekers (en zoekmachines) de structuur van je inhoud begrijpen."],"Display multiple images in a rich gallery.":["Toon meerdere afbeeldingen in een grandiose galerij."],"Add a link to a downloadable file.":["Voeg een link naar een downloadbaar bestand toe."],"Embed videos, images, tweets, audio, and other content from external sources.":["Video, afbeeldingen, tweets, audio en andere inhoud van externe bronnen insluiten."],"Resize for smaller devices":["Verander formaat voor kleinere apparaten"],"This embed may not preserve its aspect ratio when the browser is resized.":["Deze insluiting behoudt mogelijk niet haar beeldverhouding wanneer de browsergrootte wordt gewijzigd."],"This embed will preserve its aspect ratio when the browser is resized.":["Deze insluiting behoudt haar beeldverhouding wanneer de browsergrootte wordt gewijzigd."],"Embed an Animoto video.":["Een Animoto video insluiten."],"Embed a Vimeo video.":["Een Vimeo video insluiten."],"Embed Flickr content.":["Flickr inhoud insluiten."],"Embed Spotify content.":["Spotify inhoud insluiten."],"Embed SoundCloud content.":["SoundCloud inhoud insluiten."],"Embed a WordPress post.":["Een WordPress bericht insluiten."],"Embed an Instagram post.":["Een Instagram bericht insluiten."],"Embed a Facebook post.":["Een Facebook bericht insluiten."],"Embed a WordPress.tv video.":["Een WordPress.tv video insluiten."],"Embed a VideoPress video.":["Een VideoPress video insluiten."],"Embed a Tumblr post.":["Een Tumblr bericht insluiten."],"Embed a TED video.":["Een TED video insluiten."],"Embed Speaker Deck content.":["Speaker Deck inhoud insluiten."],"Embed a YouTube video.":["Een YouTube video insluiten."],"Embed SmugMug content.":["SmugMug inhoud insluiten."],"Embed Slideshare content.":["Slideshare inhoud insluiten."],"Embed Scribd content.":["Scribd inhoud insluiten."],"Embed Screencast content.":["Screencast inhoud insluiten."],"Embed ReverbNation content.":["ReverbNation inhoud insluiten."],"Embed a Reddit thread.":["Een Reddit discussie insluiten."],"Embed Polldaddy content.":["Polldaddy inhoud insluiten."],"Embed Mixcloud content.":["Mixcloud inhoud insluiten."],"Embed a tweet.":["Een tweet insluiten."],"Embed Meetup.com content.":["Meetup.com inhoud insluiten."],"Embed Kickstarter content.":["Kickstarter inhoud insluiten."],"Embed Issuu content.":["Issuu inhoud insluiten."],"Embed Imgur content.":["Imgur inhoud insluiten."],"Embed Hulu content.":["Hulu inhoud insluiten."],"Embed a Dailymotion video.":["Een Dailymotion video insluiten."],"Embed CollegeHumor content.":["CollegeHumor inhoud insluiten."],"Embed Cloudup content.":["Cloudup inhoud insluiten."],"Add an image or video with a text overlay — great for headers.":["Voeg een afbeelding of video toe met tekst eroverheen — geweldig voor headers."],"Display code snippets that respect your spacing and tabs.":["Toon stukjes code die je spatiëring en tabs respecteren."],"Use the classic WordPress editor.":["Gebruik de klassieke WordPress editor."],"Display a list of all categories.":["Toon een lijst van alle categorieën."],"Embed a simple audio player.":["Een simpele audiospeler insluiten."],"noun\u0004View":["Bekijken"],"editor button\u0004Left to right":["Links naar rechts"],"Save as Pending":["Opslaan als wachtend"],"%s address":["%s adres"],"Paste or type URL":["Plak of typ URL"],"Insert from URL":["Invoegen vanuit URL"],"Block Navigator":["Bloknavigatie"],"Styles":["Stijlen"],"Advanced panels":["Geavanceerde panelen"],"Document panels":["Documentpanelen"],"General":["Algemeen"],"Open the block navigation menu.":["Open het bloknavigatiemenu."],"Work without distraction":["Werk zonder afleiding"],"Focus on one block at a time":["Richt je op één blok tegelijk"],"Access all block and document tools in a single place":["Toegang tot alle blok- en documentgereedschappen op één plek"],"Options":["Opties"],"(opens in a new tab)":["(opent in een nieuwe tab)"],"Minutes":["Minuten"],"Hours":["Uren"],"Time":["Tijd"],"Year":["Jaar"],"Day":["Dag"],"December":["December"],"November":["November"],"October":["Oktober"],"September":["September"],"August":["Augustus"],"July":["Juli"],"June":["Juni"],"May":["Mei"],"April":["April"],"March":["Maart"],"February":["Februari"],"January":["Januari"],"Month":["Maand"],"Date":["Datum"],"Go to the first (home) or last (end) day of a week.":["Ga naar de eerste (begin) of laatste (einde) dag van de week."],"Home/End":["Begin/Einde"],"Home and End":["Begin en einde"],"Move backward (PgUp) or forward (PgDn) by one month.":["Ga één maand achteruit (PgUp) of vooruit (PgDn)."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Pagina omhoog en pagina omlaag"],"Move backward (up) or forward (down) by one week.":["Ga één week achteruit (omhoog) of vooruit (omlaag)."],"Up and Down Arrows":["Omhoog en omlaag pijlen"],"Move backward (left) or forward (right) by one day.":["Ga één dag achteruit (links) of vooruit (rechts)."],"Left and Right Arrows":["Links en rechts pijlen"],"Select the date in focus.":["Selecteer de geselecteerde datum."],"Navigating with a keyboard":["Navigeren met een toetsenbord"],"Click the desired day to select it.":["Klik op de gewenste dag om deze te selecteren."],"Click the right or left arrows to select other months in the past or the future.":["Klik op de linker- of rechterpijlen om andere maanden - in het verleden of de toekomst - te selecteren."],"Click to Select":["Klik om te selecteren"],"Calendar Help":["Kalenderhulp"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Gebruik je pijltjestoetsen om de basiskleur te wijzigen. Ga omhoog om de kleur lichter te maken, omlaag om deze donkerder te maken, naar links om de verzadiging te verhogen en naar rechts om de verzadiging te verlagen."],"Choose a shade":["Kies een schaduw"],"Change color format":["Wijzig kleurformaat"],"Color value in HSL":["Kleurwaarde in HSL"],"Color value in RGB":["Kleurwaarde in RGB"],"Color value in hexadecimal":["Kleurwaarde in hexadecimaal"],"RGB mode active":["RGB modus actief"],"Hex color mode active":["Hex-kleur modus actief"],"Hue/saturation/lightness mode active":["Tint/verzadiging/lichtheidsmodus actief"],"Move the arrow left or right to change hue.":["Beweeg de pijl naar links of rechts om de tint te wijzigen."],"Hue value in degrees, from 0 to 359.":["Tintwaarde in graden, van 0 tot 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa-waarde, van 0 (transparant) tot 1 (volledig ondoorzichtig)."],"Stripes":["Strepen"],"Your site doesn’t include support for this block.":["Je site ondersteunt dit blok niet."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Je site ondersteunt het \"%s\" blok niet. Je kunt dit blok zo laten staan, of het helemaal verwijderen."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Je site ondersteunt het \"%s\" blok niet. Je kunt dit blok zo laten staan, de inhoud omzetten naar een Aangepast HTML blok, of het helemaal verwijderen."],"Media area":["Mediagebied"],"Media & Text":["Media & tekst"],"Show media on right":["Toon media rechts"],"Show media on left":["Toon media links"],"Open in New Tab":["Openen in nieuwe tab"],"Cover":["Cover"],"Border settings":["Rand-instellingen"],"Medium":["Gemiddeld"],"Paste URL or type to search":["Plak URL of typ om te zoeken"],"Terms":["Termen"],"Your work will be published at the specified date and time.":["Je werk wordt gepubliceerd op de opgegeven datum en tijd."],"Are you ready to schedule?":["Ben je klaar om in te plannen?"],"Always show pre-publish checks.":["Altijd pre-publicatie-controles tonen."],"Take Over":["Neem over"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Een andere gebruiker werkt momenteel aan dit bericht, wat betekent dat je geen veranderingen kan maken, behalve als je het bericht overneemt."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s werkt momenteel aan dit bericht, wat betekent dat je geen veranderingen kan maken, behalve als je het bericht overneemt."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Een andere gebruiker heeft het bewerken van dit bericht overgenomen. Geen zorgen, je aanpassingen tot op dit moment zijn opgeslagen."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s heeft het bewerken van dit bericht overgenomen. Geen zorgen, je aanpassingen tot op dit moment zijn opgeslagen."],"Avatar":["Avatar"],"This post is already being edited.":["Dit bericht wordt al bewerkt."],"Someone else has taken over this post.":["Iemand anders heeft dit bericht overgenomen."],"This block contains unexpected or invalid content.":["Dit blok bevat onverwachte of ongeldige inhoud."],"Resolve Block":["Oplossen blok"],"Convert to HTML":["Converteer naar HTML"],"This block can only be used once.":["Dit blok kan maar éénmaal gebruikt worden."],"Exit Code Editor":["Verlaat code editor"],"Editing Code":["Bewerken code"],"Solid Color":["Effen kleur"],"Main Color":["Hoofdkleur"],"HTML":["HTML"],"Write HTML…":["Schrijf HTML..."],"Media settings":["Media-instellingen"],"Overlay":["Bedekking"],"Insert Media":["Media invoegen"],"Reusable block imported successfully!":["Herbruikbaar blok succesvol geïmporteerd!"],"Invalid Reusable Block JSON file":["Ongeldig herbruikbare blok JSON-bestand"],"Invalid JSON file":["Ongeldig JSON-bestand"],"Import from JSON":["Importeer vanuit JSON"],"Backtick":["Accent grave"],"Period":["Punt"],"Comma":["Komma"],"Change type of %d block":["Wijzig type van %d blok","Wijzig type van %d blokken"],"Current":["Huidig"],"After Conversion":["Na conversie"],"Change alignment":["Wijzig uitlijning"],"Change text alignment":["Wijzig tekstuitlijning"],"%d block":["%d blok","%d blokken"],"Forward-slash":["Schuine streep"],"No archives to show.":["Geen archieven om te tonen."],"This file is empty.":["Dit bestand is leeg."],"Sorry, this file type is not supported here.":["Sorry, dit bestandstype wordt hier niet ondersteund."],"Manage all reusable blocks":["Beheer alle herbruikbare blokken"],"Title":["Titel"],"Fullscreen mode":["Schermvullende weergave"],"Beautiful landscape":["Prachtig landschap"],"Close panel":["Sluit paneel"],"Convert to Classic Block":["Omzetten naar klassiek blok"],"Remove Poster Image":["Verwijder posterafbeelding"],"Select Poster Image":["Selecteer posterafbeelding"],"Poster Image":["Posterafbeelding"],"This block is deprecated. Please use the Columns block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het kolommenblok."],"Text Columns (deprecated)":["Tekstkolommen (verouderd)"],"Create":["Maak"],"Row Count":["Aantal rijen"],"Column Count":["Aantal kolommen"],"This block is deprecated. Please use the Paragraph block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het paragraafblok."],"Subheading (deprecated)":["Subkop (verouderd)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Verander het bloktype na het toevoegen van een nieuwe paragraaf."],"Spotlight mode":["Spotlight-modus"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags helpen gebruikers en zoekmachines je site te navigeren en je inhoud te vinden. Voeg een aantal trefwoorden toe om je bericht te beschrijven."],"Add tags":["Voeg tags toe"],"Apply the \"%1$s\" format.":["Pas het \"%1$s\" format toe."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Je thema gebruikt berichtformats om verschillende typen inhoud te markeren, zoals afbeeldingen of video's. Pas een berichtformat toe om de speciale vormgeving te zien."],"Use a post format":["Gebruik een berichtformat"],"Insert After":["Invoegen na"],"Insert Before":["Invoegen voor"],"Move %1$d block from position %2$d down by one place":["Verplaats %1$d blok van positie %2$d één plaats omlaag","Verplaats %1$d blokken van positie %2$d één plaats omlaag"],"Move %1$d block from position %2$d up by one place":["Verplaats %1$d blok van positie %2$d één plaats omhoog","Verplaats %1$d blokken van positie %2$d één plaats omhoog"],"Move %1$s block from position %2$d right to position %3$d":["Verplaats %1$s blok van positie %2$d naar rechts naar positie %3$d"],"movie":["film"],"Insert a new block before the selected block(s).":["Voeg een nieuw blok in voor de geselecteerde blok(ken)."],"Remove the selected block(s).":["Verwijder de geselecteerde blok(ken)."],"Duplicate the selected block(s).":["Kopieer de geselecteerde blok(ken)."],"Block shortcuts":["Blok sneltoetsen"],"Clear selection.":["Wis selectie."],"Select all text when typing. Press again to select all blocks.":["Selecteer alle tekst tijdens het typen. Druk nogmaals om alle blokken te selecteren."],"Selection shortcuts":["Selectie sneltoetsen"],"Switch between Visual editor and Code editor.":["Schakel tussen de visuele editor en de code editor."],"Navigate to the previous part of the editor.":["Navigeer naar het vorige deel van de editor."],"Navigate to the next part of the editor.":["Navigeer naar het volgende deel van de editor."],"Show or hide the settings sidebar.":["Toon of verberg de instellingen-zijbalk."],"Redo your last undo.":["Herhaal je laatste ongedaan maken."],"Undo your last changes.":["Maak je laatste aanpassingen ongedaan."],"Save your changes.":["Sla je aanpassingen op."],"Global shortcuts":["Globale sneltoetsen"],"Remove a link.":["Verwijder een link."],"Convert the selected text into a link.":["Zet de geselecteerde tekst om naar een link."],"Underline the selected text.":["Onderstreep de geselecteerde tekst."],"Make the selected text italic.":["Maak de geselecteerde tekst cursief."],"Make the selected text bold.":["Maak de geselecteerde tekst vetgedrukt."],"Text formatting":["Tekstformattering"],"Insert a new block after the selected block(s).":["Voeg een nieuw blok in na geselecteerde blok(ken)."],"Keyboard shortcuts":["Toetsenbord sneltoetsen"],"Thanks for testing Gutenberg!":["Bedankt voor het testen van Gutenberg!"],"Help build Gutenberg":["Help Gutenburg bouwen"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Wil je meer weten over het bouwen van extra blokken, of ben je geïnteresseerd om te helpen met het project, ga dan naar de GitHub repository."],"The WordPress community":["De WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Je kunt elk blok maken dat je wilt, statisch of dynamisch, decoratief of gewoontjes. Dit is bijvoorbeeld een pull-quote blok:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Elk blok kan gebruik maken van deze uitlijningen. Het insluitingsblok heeft deze ook en is standaard al responsive:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Hierboven staat een galerij met maar twee afbeeldingen. Het is een eenvoudiger manier om visueel aantrekkelijke indelingen te maken, zonder met floats te hoeven werken. Je kunt de galerij ook eenvoudig omzetten naar de individuele afbeeldingen met de blokomzetter."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Zeker, de afbeelding over de gehele breedte kan nogal groot worden. Maar soms is de afbeelding het waard."],"Accessibility is important — don’t forget image alt attribute":["Toegankelijkheid is belangrijk — vergeet het alt-attribuut van de afbeelding niet"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Door de nieuwe brede en volledige breedte uitlijningen met galerijen te combineren, kun je heel snel een media-rijke indeling maken."],"Media Rich":["Media-rijk"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Je kunt het aantal kolommen in je galerijen veranderen door een schuif in de blokinspecteur in de zijbalk te bewegen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokken kunnen alles zijn wat je wilt. Zo kun je bijvoorbeeld een subtiel citaat toevoegen in de opbouw van je tekst, of misschien wil je wel een groot opgemaakt citaat laten zien. Al deze mogelijkheden zijn beschikbaar in de inserter."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["De informatie die overeenkomt met de bron van het citaat is een apart tekstveld, zoals bijschriften onder afbeeldingen, zodat de structuur van het citaat is beschermd, zelfs wanneer je de bron selecteert, aanpast of verwijdert. Je kunt het altijd weer eenvoudig terugzetten."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["De editor biedt een nieuwe bouwervaring voor pagina's en berichten, die het maken van berichten met opmaak eenvoudig maakt, en gebruikt \"blokken\" om zonder problemen te maken waar tot nog toe shortcodes, aangepaste HTML, of \"mystery meat\" insluitingen voor nodig zijn."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Een groot voordeel van blokken is, dat je ze op hun plaats kunt bewerken en de inhoud direct kunt manipuleren. In plaats van velden te hebben voor het bewerken van dingen zoals de bron van een citaat of de tekst van een knop, kun je de inhoud direct wijzigen. Probeer het volgende citaat eens te bewerken:"],"Visual Editing":["Visueel bewerken"],"And Lists like this one of course :)":["En lijsten zoals deze, uiteraard :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Indelingsblokken zoals knoppen, schermbrede afbeeldingen, afscheidingen, enz."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Insluitingen, zoals YouTube, tweets of andere WordPress berichten."],"Galleries":["Galerijen"],"Images & Videos":["Afbeeldingen & videos"],"Text & Headings":["Tekst & koppen"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Probeer het eens uit. Je zal erachter komen dat WordPress al dingen in je berichten kan zetten die je niet eens wist. Hierbij een korte lijst van wat je daar op dit moment kunt vinden:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Stel je voor dat alles wat WordPress kan doen snel en op dezelfde plaats in de interface beschikbaar is. Je hoeft geen HTML-tags of classes uit te zoeken, of ingewikkelde shortcode-regels te onthouden. Dat is het idee achter de inserter: de knop (+)
die rond de editor wordt weergegeven, waarmee je door alle beschikbare inhoudsblokken kunt bladeren en ze aan je bericht kunt toevoegen. Plugins en thema's kunnen hun eigen blokken registreren, waardoor allerlei mogelijkheden beschikbaar komen voor bewerken en publiceren."],"The Inserter Tool":["Het Inserter gereedschap"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Probeer het citaat te selecteren en te verwijderen of te bewerken, je hoeft niet bang te zijn dat je per ongeluk de afbeelding of andere tekst selecteert en de presentatie ruïneert."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Wanneer je thema het ondersteunt, zie je de \"breed\" knop op je afbeeldingstoolbar. Probeer het maar."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Het zorgvuldig omgaan met afbeeldingen en media is een belangrijk punt van de nieuwe editor. Hopelijk vind je aspecten als het toevoegen van bijschriften of het over de volle breedte laten zien van je foto's veel eenvoudiger en robuuster dan voorheen."],"A Picture is Worth a Thousand Words":["Een foto is duizend woorden waard"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Koppen zijn ook afzonderlijke blokken, wat helpt bij de opzet en organisatie van je inhoud."],"... like this one, which is right aligned.":["... zoals deze, die rechts is uitgelijnd."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Wat je nu leest is een tekstblok, het eenvoudigste blok van allemaal. Het tekstblok heeft haar eigen besturing zodat je het overal in het bericht kunt zetten..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Het doel van deze nieuwe editor is het eenvoudig en plezierig maken om rijke inhoud aan WordPress toe te voegen. Dit hele bericht bestaat uit stukjes inhoud - het lijkt wat op LEGO-stenen - die je kunt bewegen en waarmee je kunt werken. Beweeg je cursor rond en je ziet dat de verschillende blokken oplichten met contouren en pijlen. Druk op de pijlen om blokken snel te verplaatsen zonder bang te hoeven zijn dingen te verliezen tijdens kopieer- en plakwerk."],"Of Mountains & Printing Presses":["Over bergen & drukpersen"],"Welcome to the Gutenberg Editor":["Welkom bij de Gutenberg editor"],"block name\u0004More":["Meer"],"button to expand options\u0004More":["Meer"],"Are you sure you want to unschedule this post?":["Weet je zeker dat je de planning van dit bericht wilt intrekken?"],"Alt Text (Alternative Text)":["Alt tekst (alternatieve tekst)"],"Reusable Block":["Herbruikbaar blok"],"Unique identifier for the object.":["Unieke identificator voor het object."],"Untitled Reusable Block":["Naamloos herbruikbaar blok"],"Small":["Klein"],"Reusable":["Herbruikbaar"],"Remove from Reusable blocks":["Verwijder uit herbruikbare blokken"],"Add to Reusable blocks":["Voeg toe aan herbruikbare blokken"],"Keep as HTML":["Houd als HTML"],"Edit URL":["Bewerk URL"],"Color settings":["Kleurinstellingen"],"The response is not a valid JSON response.":["De reactie is geen geldige JSON reactie."],"Editor publish":["Editor publiceren"],"Muted":["Gedempt"],"Video settings":["Video-instellingen"],"recent comments":["recente reacties"],"Latest Comments":["Nieuwste reacties"],"Display Excerpt":["Toon samenvatting"],"Display Date":["Toon datum"],"Display Avatar":["Toon avatar"],"Latest comments settings":["Nieuwste reacties-instellingen"],"Number of Comments":["Aantal reacties"],"Background Opacity":["Achtergronddekking"],"Auto":["Automatisch"],"Preload":["Voorladen"],"Audio settings":["Audio-instellingen"],"Display a monthly archive of your posts.":["Toon een maandelijks archief van je berichten."],"Display as Dropdown":["Toon als dropdown"],"Show Post Counts":["Toon aantal berichten"],"Archives settings":["Archief-instellingen"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Ondersteuning"],"No comments to show.":["Geen reacties om te tonen."],"%1$s on %2$s":["%1$s op %2$s"],"Select Post":["Selecteer bericht"],"Select Week":["Selecteer week"],"Select Day":["Selecteer dag"],"Select Month":["Selecteer maand"],"Select Year":["Selecteer jaar"],"Archives":["Archieven"],"Very dark gray":["Heel donkergrijs"],"Cyan bluish gray":["Cyaan blauwachtig grijs"],"Very light gray":["Heel lichtgrijs"],"Vivid cyan blue":["Levendig cyaan blauw"],"Pale cyan blue":["Bleek cyaan blauw"],"Vivid green cyan":["Levendig groen cyaan"],"Light green cyan":["Licht groen cyaan"],"Luminous vivid amber":["Lichtgevend levendig amber"],"Luminous vivid orange":["Lichtgevend levendig oranje"],"Vivid red":["Levendig rood"],"Pale pink":["Bleek roze"],"Inline image":["Inline afbeelding"],"Available block types":["Beschikbare bloktypes"],"Transform To:":["Veranderen naar:"],"Remove Block":["Verwijder blok","Verwijder blokken"],"Open publish panel":["Open publiceren paneel"],"Dots":["Stippen"],"Wide Line":["Brede lijn"],"Large":["Groot"],"Show download button":["Toon downloadknop"],"Download button settings":["Downloadknop instellingen"],"Link To":["Link naar"],"Text link settings":["Tekstlink instellingen"],"download":["download"],"pdf":["pdf"],"document":["document"],"Copy URL":["Kopieer URL"],"Write file name…":["Schrijf bestandsnaam..."],"File":["Bestand"],"A single column within a columns block.":["Een enkele kolom in een kolommenblok."],"Column":["Kolom"],"Outline":["Omtrek"],"Loop":["Lus"],"Autoplay":["Automatisch spelen"],"Playback Controls":["Afspeelknoppen"],"Close dialog":["Sluit dialoog"],"Sorry, this file type is not permitted for security reasons.":["Sorry, dit bestandstype is om veiligheidsredenen niet toegestaan."],"Disable tips":["Schakel tips uit"],"Got it":["Ik snap het"],"See next tip":["Bekijk volgende tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Ben je klaar, lever dan je werk in ter beoordeling. Een redacteur kan je werk dan goedkeuren voor je."],"Are you ready to submit for review?":["Ben je klaar om je werk in te leveren voor beoordeling?"],"Replace image":["Vervang afbeelding"],"Remove image":["Verwijder afbeelding"],"Error while uploading file %s to the media library.":["Fout tijdens het uploaden van bestand %s naar de mediabibliotheek."],"This file exceeds the maximum upload size for this site.":["Dit bestand overschreidt de maximale uploadgrootte voor deze site."],"View the autosave":["Bekijk de autosave"],"There is an autosave of this post that is more recent than the version below.":["Er is een autosave van dit bericht dat recenter is dan onderstaande versie."],"Autosaving":["Automatisch opslaan"],"Enter URL here…":["Vul URL in..."],"Pin to toolbar":["Maak vast aan toolbar"],"Unpin from toolbar":["Maak los van toolbar"],"Insert a table — perfect for sharing charts and data.":["Voeg een tabel in — perfect voor het delen van grafieken en gegevens."],"Fixed width table cells":["Tabelcellen met een vaste breedte"],"Table settings":["Tabel-instellingen"],"Add text that respects your spacing and tabs, and also allows styling.":["Voeg tekst toe dat jouw tussenruimte en tabs behoudt, en ook styling toestaat."],"Display a list of your most recent posts.":["Toon een lijst van je meest recente berichten."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Voeg een blok toe dat inhoud van andere sites laat zien, zoals Twitter, Instagram, of YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Voeg een blok toe dat inhoud toont in meerdere kolommen, voeg dan de inhoudsblokken toe die je wilt."],"Error loading block: %s":["Fout bij laden blok: %s"],"Unknown error":["Onbekende fout"],"Embed Handler":["Insluiten Handler"],"term\u0004Remove %s":["Verwijder %s"],"Copy the permalink":["Kopieer de permalink"],"Permalink copied":["Permalink gekopieerd"],"Height in pixels":["Hoogte in pixels"],"Spacer settings":["Vulelement-instellingen"],"Spacer":["Vulelement"],"Toggle to show a large initial letter.":["Klik om een grote eerste letter te tonen."],"Showing large initial letter.":["Toont grote eerste letter."],"Name:":["Naam:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s van %3$s)"],"Remove item":["Verwijder element"],"Color code: %s":["Kleurcode: %s"],"Skip to the selected block":["Spring naar het geselecteerde blok"],"Publish…":["Publiceer..."],"Schedule…":["Inplannen..."],"Edit post permalink":["Bewerk permalink van bericht"],"Show Block Settings":["Toon blok-instellingen"],"Hide Block Settings":["Verberg blok-instellingen"],"Block settings closed":["Blok-instellingen gesloten"],"Close plugin":["Sluit plugin"],"Editor settings":["Editor instellingen"],"Link settings":["Link instellingen"],"Unlink":["Link verwijderen"],"Page break":["Pagina-einde"],"pagination":["paginering"],"next page":["volgende pagina"],"Image Size":["Afbeeldingsgrootte"],"Height":["Hoogte"],"Width":["Breedte"],"Image Dimensions":["Grootte afbeelding"],"Thumbnails are not cropped.":["Thumbnails zijn niet bijgesneden."],"Thumbnails are cropped to align.":["Thumbnails zijn passend bijgesneden."],"Media Library":["Mediabibliotheek"],"Advanced":["Geavanceerd"],"Add item":["Element toevoegen"],"Reset the template":["Herstel de template"],"Keep it as is":["Laat zoals het is"],"The content of your post doesn’t match the template assigned to your post type.":["De inhoud van je bericht komt niet overeen met de aan je berichttype toegewezen template."],"Resetting the template may result in loss of content, do you want to continue?":["Herstel van de template kan resulteren in verlies van inhoud, wil je doorgaan?"],"Document Statistics":["Document-statistieken"],"is now scheduled. It will go live on":["is nu gepland. Het gaat live op"],"Scheduled":["Ingepland"],"Scheduling…":["Inplannen..."],"Code editor selected":["Code editor geselecteerd"],"Visual editor selected":["Visuele editor geselecteerd"],"Plugins":["Plugins"],"Custom Size":["Aangepast formaat"],"Layout elements":["Layout elementen"],"term\u0004%s removed":["%s verwijderd"],"term\u0004%s added":["%s toegevoegd"],"imperative verb\u0004Preview":["Voorbeeld"],"Block deleted.":["Blok verwijderd."],"Block updated.":["Blok bijgewerkt."],"Block created.":["Blok gemaakt."],"Trashing failed":["Verwijderen mislukt"],"Updating failed.":["Bijwerken mislukt."],"Scheduling failed.":["Plannen mislukt."],"Publishing failed.":["Publiceren mislukt."],"View post":["Bekijk bericht"],"You have unsaved changes. If you proceed, they will be lost.":["Er zijn wijzigingen die je nog niet hebt opgeslagen. Als je doorgaat, gaan deze verloren. "],"Document Outline":["Document schets"],"Paragraphs":["Paragrafen"],"Headings":["Koppen"],"Words":["Woorden"],"Content structure":["Inhoudstructuur"],"Public":["Openbaar"],"Protected with a password you choose. Only those with the password can view this post.":["Beschermd met een zelfgekozen wachtwoord. Alleen degenen met het wachtwoord kunnen dit bericht zien."],"Password Protected":["Beschermd met een wachtwoord"],"Only visible to site admins and editors.":["Alleen zichtbaar voor administrators en editors."],"Private":["Privé"],"Visible to everyone.":["Zichtbaar voor iedereen."],"Post Visibility":["Zichtbaarheid van het bericht"],"Would you like to privately publish this post now?":["Wil je dit bericht nu privé publiceren?"],"Use a secure password":["Gebruik een veilig wachtwoord"],"Create password":["Maak een wachtwoord aan"],"Move to Trash":["Verplaats naar prullenbak"],"Parent Term":["Hoofdterm"],"Parent Category":["Hoofdcategorie"],"Add new term":["Voeg nieuwe term toe"],"Add new category":["Voeg nieuwe categorie toe"],"Term":["Term"],"Tag":["Tag"],"Add new Term":["Voeg nieuwe term toe"],"Add new tag":["Voeg nieuwe tag toe"],"Switch to draft":["Zet om naar concept"],"Are you sure you want to unpublish this post?":["Weet je zeker dat je dit bericht wilt de-publiceren?"],"Immediately":["Onmiddellijk"],"Save Draft":["Bewaar concept"],"Saving":["Opslaan"],"Publish:":["Publiceer:"],"Visibility:":["Zichtbaarheid:"],"Are you ready to publish?":["Ben je klaar om te publiceren?"],"Copy Link":["Kopieer link"],"What’s next?":["Wat is het volgende?"],"is now live.":["is nu live."],"Published":["Gepubliceerd"],"Schedule":["Inplannen"],"Update":["Bijwerken"],"Submit for Review":["Indienen ter beoordeling"],"Updating…":["Bijwerken…"],"Publishing…":["Publiceren..."],"Allow pingbacks & trackbacks":["Sta pingbacks & trackbacks toe"],"Permalink:":["Permalink:"],"Pending review":["Wachten op beoordeling"],"%d Revision":["%d revisie","%d revisies"],"Suggestion:":["Suggestie:"],"Post Format":["Berichtformaat"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standaard"],"Aside":["Terzijde"],"Featured image":["Uitgelichte afbeelding"],"Set featured image":["Stel uitgelichte afbeelding in"],"Learn more about manual excerpts":["Ontdek meer over handmatige samenvattingen"],"Write an excerpt (optional)":["Schrijf een samenvatting (optioneel)"],"Allow comments":["Sta reacties toe"],"Template:":["Template:"],"no parent":["geen hoofd"],"no title":["geen titel"],"Order":["Volgorde"],"No blocks found.":["Geen blokken gevonden."],"%d result found.":["%d resultaat gevonden.","%d resultaten gevonden."],"Saved":["Opgeslagen"],"Embeds":["Insluitingen"],"Blocks":["Blokken"],"Search for a block":["Zoek naar een blok"],"Add block":["Voeg blok toe"],"Copy Error":["Kopieerfout"],"Copy Post Text":["Kopieer berichttekst"],"Attempt Recovery":["Probeer te herstellen"],"The editor has encountered an unexpected error.":["De editor is op een onverwacht probleem gestuit."],"Undo":["Ongedaan maken"],"Redo":["Opnieuw"],"(Multiple H1 headings are not recommended)":["(Meedere H1 koppen worden niet aangeraden)"],"(Your theme may already use a H1 for the post title)":["(Je thema gebruikt misschien al een H1 voor de berichttitel)"],"(Incorrect heading level)":["(Verkeerd niveau kop)"],"(Empty heading)":["(Lege kop)"],"Block Styles":["Blokstijlen"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Weet je zeker dat je dit gedeelde blok wilt verwijderen?\n\nHet blok wordt permanent verwijderd van alle berichten en pagina's die het gebruiken."],"Convert to Regular Block":["Verander naar normaal blok"],"More options":["Meer opties"],"Edit visually":["Visueel bewerken"],"Duplicate":["Dupliceer"],"Blocks cannot be moved down as they are already at the bottom":["Blokken kunnen niet naar beneden verplaatst worden omdat ze al onderaan staan."],"Blocks cannot be moved up as they are already at the top":["Blokken kunnen niet omhoog worden verplaatst omdat ze al bovenaan staan"],"Block %1$s is at the beginning of the content and can’t be moved right":["Blok %1$s staat aan het begin van de inhoud en kan niet naar rechts worden verplaatst."],"Block %1$s is at the end of the content and can’t be moved right":["Blok %1$s staat aan het eind van de inhoud en kan niet naar rechts worden verplaatst."],"Block %s is the only block, and cannot be moved":["Blok %s is het enige blok en kan niet verplaatst worden"],"Edit as HTML":["Bewerk als HTML"],"Convert to Blocks":["Omzetten naar blokken"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Dit blok is een fout tegengekomen en kan geen voorbeeld tonen."],"No block selected.":["Geen blok geselecteerd."],"Transform into:":["Zet om naar:"],"Remove":["Verwijder"],"Find original":["Vind origineel"],"Copy all content":["Kopieer alle inhoud"],"Copied!":["Gekopieerd!"],"Additional settings are now available in the Editor block settings sidebar":["Meer instellingen zijn beschikbaar in de Editor blok instellingen zijbalk"],"Visibility":["Zichtbaarheid"],"Status & visibility":["Status & zichtbaarheid"],"Page attributes":["Pagina-attributen"],"Block":["Blok","%d blokken"],"Document":["Document"],"Close settings":["Sluit instellingen"],"Editor content":["Editor inhoud"],"Tools":["Gereedschappen"],"Editor":["Editor"],"Code editor":["Code editor"],"Visual editor":["Visuele editor"],"Editor top bar":["Editor top balk"],"Settings":["Instellingen"],"Reset":["Herstel"],"Dismiss this notice":["Negeer dit bericht"],"Item removed.":["Element verwijderd."],"Item added.":["Element toegevoegd."],"Drop files to upload":["Sleep bestanden hier naartoe om te uploaden"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Er is een onbekende fout opgetreden. "],"No results.":["Geen resultaten."],"%d result found, use up and down arrow keys to navigate.":["%d resultaat gevonden, gebruik de omhoog en omlaag toetsen om te navigeren.","%d resultaten gevonden, gebruik de omhoog en omlaag toetsen om te navigeren."],"(no title)":["(geen titel)"],"URL":["URL"],"Submit":["Verstuur"],"Close":["Sluiten"],"Insert link":["Link invoegen"],"Edit link":["Bewerk link"],"Link":["Link"],"Strikethrough":["Doorhalen"],"Italic":["Cursief"],"Bold":["Vet"],"Remove link":["Verwijder link"],"Number of items":["Aantal elementen"],"All":["Alle"],"Category":["Categorie"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Oudste naar nieuwste"],"Newest to Oldest":["Nieuwste naar oudste"],"Order by":["Volgorde op"],"Select":["Selecteer"],"Select or Upload Media":["Media selecteren of uploaden"],"Video":["Video"],"Write…":["Schrijf..."],"poetry":["poëzie"],"Verse":["Vers"],"New Column":["Nieuwe kolom"],"Delete Column":["Verwijder kolom"],"Add Column After":["Voeg kolom toe na"],"Add Column Before":["Voeg kolom toe voor"],"Delete Row":["Verwijder rij"],"Add Row After":["Voeg rij toe na"],"Add Row Before":["Voeg rij toe voor"],"Edit table":["Bewerk tabel"],"Table":["Tabel"],"Write subheading…":["Schrijf subtitel..."],"Write shortcode here…":["Schrijf hier een shortcode..."],"Shortcode":["Shortcode"],"divider":["scheidslijn"],"horizontal-line":["horizontale lijn"],"Separator":["Scheidingslijn"],"Quote":["Citaat"],"Write citation…":["Schrijf citaat..."],"Write quote…":["Schrijf citaat..."],"Pullquote":["Pull-quote"],"Write preformatted text…":["Schrijf voorgeformatteerde tekst..."],"Preformatted":["Voorgeformatteerd"],"text":["tekst"],"Paragraph":["Paragraaf"],"Font Size":["Grootte lettertype"],"Drop Cap":["Initiaal"],"Text settings":["Tekst-instellingen"],"Read more":["Verder lezen"],"Write list…":["Maak lijst..."],"numbered list":["genummerde lijst"],"ordered list":["geordende lijst"],"bullet list":["ongeordende lijst"],"Indent list item":["Verhoog inspringen lijstelement"],"Outdent list item":["Verlaag inspringen lijstelement"],"Convert to ordered list":["Omzetten naar geordende lijst"],"Convert to unordered list":["Omzetten naar ongeordende lijst"],"List":["Lijst"],"recent posts":["recente berichten"],"No posts found.":["Geen berichten gevonden."],"Latest Posts":["Nieuwste berichten"],"Display post date":["Toon datum bericht"],"Grid view":["Rasterweergave"],"List view":["Lijstweergave"],"photo":["foto"],"Image settings":["Afbeelding-instellingen"],"Image":["Afbeelding"],"Preview":["Voorbeeld"],"embed":["insluiten"],"Custom HTML":["Aangepaste HTML"],"subtitle":["subtitel"],"title":["titel"],"Heading":["Kop"],"Write heading…":["Schrijf kop..."],"Heading %d":["Kop %s"],"Level":["Niveau"],"Heading settings":["Kop-instellingen"],"photos":["foto's"],"images":["afbeeldingen"],"None":["Geen"],"Media File":["Mediabestand"],"Attachment Page":["Bijlagepagina"],"Link to ":["Link naar"],"Crop Images":["Afbeeldingen bijsnijden"],"Gallery settings":["Galerij-instellingen"],"Gallery":["Galerij"],"Classic":["Klassiek"],"video":["video"],"audio":["audio"],"music":["muziek"],"image":["afbeelding"],"blog":["blog"],"post":["bericht"],"Embedded content from %s":["Ingesloten inhoud van %s"],"Enter URL to embed here…":["Vul in te sluiten URL hier in..."],"%s URL":["%s URL"],"Embedding…":["Insluiten..."],"Write title…":["Schrijf titel..."],"Fixed Background":["Vaste achtergrond"],"Edit image":["Bewerk afbeelding"],"Columns":["Kolommen"],"Experiments":["Experimenteel"],"Code":["Code"],"Write code…":["Schrijf code…"],"Categories":["Categorieën"],"Show Hierarchy":["Toon hiërarchie"],"Show post counts":["Toon aantal berichten"],"Categories settings":["Categorie-instellingen"],"Add text…":["Voeg tekst toe..."],"Button":["Knop"],"Apply":["Toepassen"],"Text Color":["Tekstkleur"],"Background Color":["Achtergrondkleur"],"Block has been deleted or is unavailable.":["Blok is verwijderd of is niet beschikbaar."],"Reusable blocks":["Herbruikbare blokken"],"Cancel":["Annuleer"],"Edit":["Bewerk"],"Write caption…":["Schrijf onderschrift..."],"Use URL":["Gebruik URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":["Extra CSS-class(en)"],"HTML Anchor":["HTML Anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een helderder achtergrondkleur en/of een donkerder tekstkleur te gebruiken."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een donkerder achtergrondkleur en/of een helderder tekstkleur te gebruiken."],"Clear":["Wis"],"Custom color picker":["Aangepaste kleurenkiezer"],"Color: %s":["Kleur: %s"],"Full width":["Volledige breedte"],"Wide width":["Wijde breedte"],"Widgets":["Widgets"],"Formatting":["Opmaak"],"Common blocks":["Algemene blokken"],"Align right":["Rechts uitlijnen"],"Align center":["Centreren"],"Align left":["Links uitlijnen"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Drukwerk sinds 1440. Dit is de ontwikkelingsplugin voor de nieuwe blok editor in de core."],"Add title":["Voeg titel toe"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg ontwikkelmodus vereist dat bestanden worden gegenereerd. Voer npm install
uit om afhankelijkheden te installeren, npm run build
om de bestanden te genereren of npm run dev
om de bestanden te genereren en te monitoren. Lees het bijdragen bestand voor meer informatie."],"Author":["Auteur"],"Slug":["Slug"],"Discussion":["Discussie"],"Custom fields":["Aangepaste velden"],"Excerpt":["Samenvatting"],"Publish":["Publiceer"],"Metadata":["Metadata"],"Save":["Bewaar"],"Documentation":["Documentatie"],"Select Category":["Selecteer categorie"],"(Untitled)":["(Zonder titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg vereist WordPress %s of nieuwer om juist te werken. Upgrade WordPress alvorens Gutenberg te activeren."],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s geleden"],"Block style name must be a string.":["Blokstijl naam moeten een string zijn."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_nlbe.json b/bundle/android/raw/i18ncache_data_nlbe.json
new file mode 100644
index 0000000000..09dda30b0c
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_nlbe.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":["Bekijken"],"editor button\u0004Left to right":["Links naar rechts"],"Save as Pending":["Opslaan als in afwachting"],"%s address":["%s adres"],"Paste or type URL":["Plak of typ URL"],"Insert from URL":["Invoegen vanaf URL"],"Block Navigator":[],"Styles":["Stijlen"],"Advanced panels":[],"Document panels":[],"General":["Algemeen"],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":["Opties"],"(opens in a new tab)":["(opent in nieuwe tab)"],"Minutes":["Minuten"],"Hours":["Uren"],"Time":["Tijd"],"Year":["Jaar"],"Day":["Dag"],"December":["December"],"November":["November"],"October":["Oktober"],"September":["September"],"August":["Augustus"],"July":["Juli"],"June":["Juni"],"May":["Mei"],"April":["April"],"March":["Maart"],"February":["Februari"],"January":["Januari"],"Month":["Maand"],"Date":["Datum"],"Go to the first (home) or last (end) day of a week.":["Ga naar de eerste (home) of laatste (end) dag van de week."],"Home/End":["Start/einde"],"Home and End":["Start en einde"],"Move backward (PgUp) or forward (PgDn) by one month.":["Verplaats één maand achteruit (PgUp) of vooruit (PgDn)."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up and Page Down"],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":["Klik om te selecteren"],"Calendar Help":["Kalender help"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":["Media gebied"],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":["Herbruikbaar blok succesvol geïmporteerd!"],"Invalid Reusable Block JSON file":["Ongeldig herbruikbare blok JSON-bestand"],"Invalid JSON file":["Ongeldig JSON-bestand"],"Import from JSON":["Importeer vanuit JSON"],"Backtick":["Accent grave"],"Period":["Punt"],"Comma":["Komma"],"Change type of %d block":["Wijzig type van %d blok","Wijzig type van %d blokken"],"Current":["Huidig"],"After Conversion":["Na conversie"],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":["Schuine streep"],"No archives to show.":["Geen archieven om te tonen."],"This file is empty.":["Dit bestand is leeg."],"Sorry, this file type is not supported here.":["Sorry, dit bestandstype wordt hier niet ondersteund."],"Manage all reusable blocks":[],"Title":["Titel"],"Fullscreen mode":[],"Beautiful landscape":["Prachtig landschap"],"Close panel":["Sluit paneel"],"Convert to Classic Block":["Omzetten naar klassiek blok"],"Remove Poster Image":["Verwijder posterafbeelding"],"Select Poster Image":["Selecteer posterafbeelding"],"Poster Image":["Posterafbeelding"],"This block is deprecated. Please use the Columns block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het kolommenblok."],"Text Columns (deprecated)":["Tekstkolommen (verouderd)"],"Create":["Maak"],"Row Count":["Aantal rijen"],"Column Count":["Aantal kolommen"],"This block is deprecated. Please use the Paragraph block instead.":["Dit blok is verouderd. Gebruik in plaats hiervan het paragraafblok."],"Subheading (deprecated)":["Subkop (verouderd)"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["Verander het bloktype na het toevoegen van een nieuwe paragraaf."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tags helpen gebruikers en zoekmachines je site te navigeren en je inhoud te vinden. Voeg een aantal trefwoorden toe om je bericht te beschrijven."],"Add tags":["Voeg tags toe"],"Apply the \"%1$s\" format.":["Pas het \"%1$s\" format toe."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Je thema gebruikt berichtformats om verschillende typen inhoud te markeren, zoals afbeeldingen of video's. Pas een berichtformat toe om de speciale vormgeving te zien."],"Use a post format":["Gebruik een berichtformat"],"Insert After":["Invoegen na"],"Insert Before":["Invoegen voor"],"Move %1$d block from position %2$d down by one place":["Verplaats %1$d blok van positie %2$d één plaats omlaag","Verplaats %1$d blokken van positie %2$d één plaats omlaag"],"Move %1$d block from position %2$d up by one place":["Verplaats %1$d blok van positie %2$d één plaats omhoog","Verplaats %1$d blokken van positie %2$d één plaats omhoog"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Voeg een nieuw blok in voor de geselecteerde blok(ken)."],"Remove the selected block(s).":["Verwijder de geselecteerde blok(ken)."],"Duplicate the selected block(s).":["Kopieer de geselecteerde blok(ken)."],"Block shortcuts":["Blok sneltoetsen"],"Clear selection.":["Wis selectie."],"Select all text when typing. Press again to select all blocks.":["Selecteer alle tekst tijdens het typen. Druk nogmaals om alle blokken te selecteren."],"Selection shortcuts":["Selectie sneltoetsen"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navigeer naar het vorige deel van de editor."],"Navigate to the next part of the editor.":["Navigeer naar het volgende deel van de editor."],"Show or hide the settings sidebar.":["Toon of verberg de instellingen-zijbalk."],"Redo your last undo.":["Herhaal je laatste ongedaan maken."],"Undo your last changes.":["Maak je laatste aanpassingen ongedaan."],"Save your changes.":["Sla je aanpassingen op."],"Global shortcuts":["Globale sneltoetsen"],"Remove a link.":["Verwijder een link."],"Convert the selected text into a link.":["Zet de geselecteerde tekst om naar een link."],"Underline the selected text.":["Onderstreep de geselecteerde tekst."],"Make the selected text italic.":["Maak de geselecteerde tekst cursief."],"Make the selected text bold.":["Maak de geselecteerde tekst vetgedrukt."],"Text formatting":["Tekstformattering"],"Insert a new block after the selected block(s).":["Voeg een nieuw blok in na geselecteerde blok(ken)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Bedankt voor het testen van Gutenberg!"],"Help build Gutenberg":["Help Gutenburg bouwen"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Wil je meer weten over het bouwen van extra blokken, of ben je geïnteresseerd om te helpen met het project, ga dan naar de GitHub repository."],"The WordPress community":["De WordPress community"],"Code is Poetry":["Code is Poetry"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Je kunt elk blok maken dat je wilt, statisch of dynamisch, decoratief of gewoontjes. Dit is bijvoorbeeld een pull-quote blok:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Elk blok kan gebruik maken van deze uitlijningen. Het insluitingsblok heeft deze ook en is standaard al responsive:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Hierboven staat een galerij met maar twee afbeeldingen. Het is een eenvoudiger manier om visueel aantrekkelijke indelingen te maken, zonder met floats te hoeven werken. Je kunt de galerij ook eenvoudig omzetten naar de individuele afbeeldingen met de blokomzetter."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Zeker, de afbeelding over de gehele breedte kan nogal groot worden. Maar soms is de afbeelding het waard."],"Accessibility is important — don’t forget image alt attribute":["Toegankelijkheid is belangrijk — vergeet het alt-attribuut van de afbeelding niet"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Door de nieuwe brede en volledige breedte uitlijningen met galerijen te combineren, kun je heel snel een media-rijke indeling maken."],"Media Rich":["Media-rijk"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Je kunt het aantal kolommen in je galerijen veranderen door een schuif in de blokinspecteur in de zijbalk te bewegen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blokken kunnen alles zijn wat je wilt. Zo kun je bijvoorbeeld een subtiel citaat toevoegen in de opbouw van je tekst, of misschien wil je wel een groot opgemaakt citaat laten zien. Al deze mogelijkheden zijn beschikbaar in de invoeger."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["De informatie die overeenkomt met de bron van het citaat is een apart tekstveld, zoals bijschriften onder afbeeldingen, zodat de structuur van het citaat is beschermd, zelfs wanneer je de bron selecteert, aanpast of verwijdert. Je kunt het altijd weer eenvoudig terugzetten."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["De editor biedt een nieuwe bouwervaring voor pagina's en berichten, die het maken van berichten met opmaak eenvoudig maakt, en gebruikt \"blokken\" om zonder problemen te maken waar tot nog toe shortcodes, aangepaste HTML, of \"mystery meat\" insluitingen voor nodig zijn."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Een groot voordeel van blokken is, dat je ze op hun plaats kunt bewerken en de inhoud direct kunt manipuleren. In plaats van velden te hebben voor het bewerken van dingen zoals de bron van een citaat of de tekst van een knop, kun je de inhoud direct wijzigen. Probeer het volgende citaat eens te bewerken:"],"Visual Editing":["Visueel bewerken"],"And Lists like this one of course :)":["En lijsten zoals deze, uiteraard :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Indelingsblokken zoals knoppen, schermbrede afbeeldingen, afscheidingen, enz."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Insluitingen, zoals YouTube, tweets of andere WordPress berichten."],"Galleries":["Galerijen"],"Images & Videos":["Afbeeldingen & videos"],"Text & Headings":["Tekst & koppen"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Probeer het eens uit. Je zal erachter komen dat WordPress al dingen in je berichten kan zetten die je niet eens wist. Hierbij een korte lijst van wat je daar op dit moment kunt vinden:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Stel je voor dat alles wat WordPress kan doen snel en op dezelfde plaats in de interface beschikbaar is. Je hoeft geen HTML-tags of classes uit te zoeken, of ingewikkelde shortcode-regels te onthouden. Dat is het idee achter de invoeger: de knop (+)
die rond de editor wordt weergegeven, waarmee je door alle beschikbare inhoudsblokken kunt bladeren en ze aan je bericht kunt toevoegen. Plugins en thema's kunnen hun eigen blokken registreren, waardoor allerlei mogelijkheden beschikbaar komen voor bewerken en publiceren."],"The Inserter Tool":["Het Invoeger gereedschap"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Probeer het citaat te selecteren en te verwijderen of te bewerken, je hoeft niet bang te zijn dat je per ongeluk de afbeelding of andere tekst selecteert en de presentatie ruïneert."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Wanneer je thema het ondersteunt, zie je de \"breed\" knop op je afbeeldingstoolbar. Probeer het maar."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Het zorgvuldig omgaan met afbeeldingen en media is een belangrijk punt van de nieuwe editor. Hopelijk vind je aspecten als het toevoegen van bijschriften of het over de volle breedte laten zien van je foto's veel eenvoudiger en robuuster dan voorheen."],"A Picture is Worth a Thousand Words":["Een foto is duizend woorden waard"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Koppen zijn ook afzonderlijke blokken, wat helpt bij de opzet en organisatie van je inhoud."],"... like this one, which is right aligned.":["... zoals deze, die rechts is uitgelijnd."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Wat je nu leest is een tekstblok, het eenvoudigste blok van allemaal. Het tekstblok heeft haar eigen besturing zodat je het overal in het bericht kunt zetten..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Het doel van deze nieuwe editor is het eenvoudig en plezierig maken om diverse inhoud aan WordPress toe te voegen. Dit hele bericht bestaat uit stukjes inhoud - het lijkt wat op LEGO-stenen - die je kunt bewegen en waarmee je kunt werken. Beweeg je cursor rond en je ziet dat de verschillende blokken oplichten met contouren en pijlen. Druk op de pijlen om blokken snel te verplaatsen zonder bang te hoeven zijn dingen te verliezen tijdens kopieer- en plakwerk."],"Of Mountains & Printing Presses":["Over bergen & drukpersen"],"Welcome to the Gutenberg Editor":["Welkom bij de Gutenberg editor"],"block name\u0004More":["Meer"],"button to expand options\u0004More":["Meer"],"Are you sure you want to unschedule this post?":["Weet je zeker dat je de planning van dit bericht wilt intrekken?"],"Alt Text (Alternative Text)":["Alt tekst (alternatieve tekst)"],"Reusable Block":["Herbruikbaar blok"],"Unique identifier for the object.":["Unieke identificator voor het object."],"Untitled Reusable Block":["Naamloos herbruikbaar blok"],"Small":["Klein"],"Reusable":["Herbruikbaar"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Houd als HTML"],"Edit URL":["Bewerk URL"],"Color settings":[],"The response is not a valid JSON response.":["De reactie is geen geldige JSON reactie."],"Editor publish":["Editor publiceren"],"Muted":["Gedempt"],"Video settings":[],"recent comments":["recente reacties"],"Latest Comments":["Nieuwste reacties"],"Display Excerpt":["Toon samenvatting"],"Display Date":["Toon datum"],"Display Avatar":["Toon avatar"],"Latest comments settings":[],"Number of Comments":["Aantal reacties"],"Background Opacity":["Achtergronddekking"],"Auto":["Automatisch"],"Preload":["Voorladen"],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":["Toon als dropdown"],"Show Post Counts":["Toon aantal berichten"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Ondersteuning"],"No comments to show.":["Geen reacties om te tonen."],"%1$s on %2$s":["%1$s op %2$s"],"Select Post":["Selecteer bericht"],"Select Week":["Selecteer week"],"Select Day":["Selecteer dag"],"Select Month":["Selecteer maand"],"Select Year":["Selecteer jaar"],"Archives":["Archieven"],"Very dark gray":["Zeer donkergrijs"],"Cyan bluish gray":["Cyaan blauwachtig grijs"],"Very light gray":["Zeer lichtgrijs"],"Vivid cyan blue":["Levendig cyaan blauw"],"Pale cyan blue":["Bleek cyaan blauw"],"Vivid green cyan":["Levendig groen cyaan"],"Light green cyan":["Licht groen cyaan"],"Luminous vivid amber":["Lichtgevend levendig amber"],"Luminous vivid orange":["Lichtgevend levendig oranje"],"Vivid red":["Levendig rood"],"Pale pink":["Bleek roze"],"Inline image":[],"Available block types":["Beschikbare bloktypes"],"Transform To:":["Veranderen naar:"],"Remove Block":["Verwijder blok"],"Open publish panel":["Open publiceren paneel"],"Dots":["Stippen"],"Wide Line":["Brede lijn"],"Large":["Groot"],"Show download button":[],"Download button settings":[],"Link To":["Link naar"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["document"],"Copy URL":["Kopieer URL"],"Write file name…":["Schrijf bestandsnaam..."],"File":["Bestand"],"A single column within a columns block.":["Een enkele kolom in een kolommenblok."],"Column":["Kolom"],"Outline":["Omtrek"],"Loop":["Lus"],"Autoplay":["Automatisch spelen"],"Playback Controls":["Afspeelknoppen"],"Close dialog":["Sluit dialoog"],"Sorry, this file type is not permitted for security reasons.":["Sorry, dit bestandstype is om veiligheidsredenen niet toegestaan."],"Disable tips":["Schakel tips uit"],"Got it":["Ik snap het"],"See next tip":["Bekijk volgende tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Ben je klaar, lever dan je werk in ter beoordeling. Een redacteur kan je werk dan goedkeuren voor je."],"Are you ready to submit for review?":["Ben je klaar om je werk in te leveren voor beoordeling?"],"Replace image":["Vervang afbeelding"],"Remove image":["Verwijder afbeelding"],"Error while uploading file %s to the media library.":["Fout tijdens het uploaden van bestand %s naar de mediabibliotheek."],"This file exceeds the maximum upload size for this site.":["Dit bestand overschreidt de maximale uploadgrootte voor deze site."],"View the autosave":["Bekijk de autosave"],"There is an autosave of this post that is more recent than the version below.":["Er is een autosave van dit bericht dat recenter is dan onderstaande versie."],"Autosaving":["Automatisch opslaan"],"Enter URL here…":["Vul URL hier in..."],"Pin to toolbar":["Maak vast aan toolbar"],"Unpin from toolbar":["Maak los van toolbar"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":["Tabelcellen met een vaste breedte"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Voeg tekst toe dat jouw tussenruimte en tabs behoudt, en ook styling toestaat."],"Display a list of your most recent posts.":["Toon een lijst van je meest recente berichten."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Voeg een blok toe dat inhoud van andere sites laat zien, zoals Twitter, Instagram, of YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Voeg een blok toe dat inhoud toont in meerdere kolommen, voeg dan de inhoudsblokken toe die je wilt."],"Error loading block: %s":["Fout bij laden blok: %s"],"Unknown error":["Onbekende fout"],"Embed Handler":["Insluiten handler"],"term\u0004Remove %s":["Verwijder %s"],"Copy the permalink":["Kopieer de permalink"],"Permalink copied":["Permalink gekopieerd"],"Height in pixels":["Hoogte in pixels"],"Spacer settings":[],"Spacer":["Vul-element"],"Toggle to show a large initial letter.":["Klik om een grote eerste letter te tonen."],"Showing large initial letter.":["Toont grote eerste letter."],"Name:":["Naam:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s van %3$s)"],"Remove item":["Verwijder item"],"Color code: %s":["Kleurcode: %s"],"Skip to the selected block":["Spring naar het geselecteerde blok"],"Publish…":["Publiceer..."],"Schedule…":["Inplannen..."],"Edit post permalink":["Bewerk permalink van bericht"],"Show Block Settings":["Toon blok-instellingen"],"Hide Block Settings":["Verberg blok-instellingen"],"Block settings closed":["Blok-instellingen gesloten"],"Close plugin":["Sluit plugin"],"Editor settings":["Editor instellingen"],"Link settings":[],"Unlink":["Link verwijderen"],"Page break":["Pagina-einde"],"pagination":["paginering"],"next page":["volgende pagina"],"Image Size":["Afbeeldingsgrootte"],"Height":["Hoogte"],"Width":["Breedte"],"Image Dimensions":["Grootte afbeelding"],"Thumbnails are not cropped.":["Thumbnails zijn niet bijgesneden."],"Thumbnails are cropped to align.":["Thumbnails zijn passend bijgesneden."],"Media Library":["Mediabibliotheek"],"Advanced":["Geavanceerd"],"Add item":["Item toevoegen"],"Reset the template":["Herstel de template"],"Keep it as is":["Laat het zoals het is"],"The content of your post doesn’t match the template assigned to your post type.":["De inhoud van je bericht komt niet overeen met de aan je berichttype toegewezen template."],"Resetting the template may result in loss of content, do you want to continue?":["Herstel van de template kan resulteren in verlies van inhoud, wil je doorgaan?"],"Document Statistics":["Document-statistieken"],"is now scheduled. It will go live on":["is nu gepland. Het gaat live op"],"Scheduled":["Ingepland"],"Scheduling…":["Inplannen..."],"Code editor selected":["Code editor geselecteerd"],"Visual editor selected":["Visuele editor geselecteerd"],"Plugins":["Plugins"],"Custom Size":["Aangepast formaat"],"Layout elements":[],"term\u0004%s removed":["%s verwijderd"],"term\u0004%s added":["%s toegevoegd"],"imperative verb\u0004Preview":["Voorbeeld"],"Block deleted.":["Blok verwijderd."],"Block updated.":["Blok bijgewerkt."],"Block created.":["Blok gemaakt."],"Trashing failed":["Verwijderen mislukt"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Er zijn wijzigingen die je nog niet hebt opgeslagen. Als je doorgaat, gaan deze verloren. "],"Document Outline":["Document schets"],"Paragraphs":["Paragrafen"],"Headings":["Koppen"],"Words":["Woorden"],"Content structure":["Inhoudstructuur"],"Public":["Openbaar"],"Protected with a password you choose. Only those with the password can view this post.":["Beschermd met een zelfgekozen wachtwoord. Alleen degenen met het wachtwoord kunnen dit bericht zien."],"Password Protected":["Beschermd met een wachtwoord"],"Only visible to site admins and editors.":["Alleen zichtbaar voor administrators en editors."],"Private":["Privé"],"Visible to everyone.":["Zichtbaar voor iedereen."],"Post Visibility":["Zichtbaarheid van het bericht"],"Would you like to privately publish this post now?":["Wil je dit bericht privé publiceren?"],"Use a secure password":["Gebruik een veilig wachtwoord"],"Create password":["Maak een wachtwoord aan"],"Move to Trash":[],"Parent Term":["Hoofdterm"],"Parent Category":["Hoofdcategorie"],"Add new term":["Voeg nieuwe term toe"],"Add new category":["Voeg nieuwe categorie toe"],"Term":["Term"],"Tag":["Tag"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Weet je zeker dat je dit bericht wilt de-publiceren?"],"Immediately":["Onmiddellijk"],"Save Draft":["Bewaar concept"],"Saving":["Opslaan"],"Publish:":["Publiceer:"],"Visibility:":["Zichtbaarheid:"],"Are you ready to publish?":["Ben je klaar om te publiceren?"],"Copy Link":["Kopieer link"],"What’s next?":["Wat is het volgende?"],"is now live.":["is nu live."],"Published":["Gepubliceerd"],"Schedule":["Inplannen"],"Update":["Bijwerken"],"Submit for Review":["Indienen ter beoordeling"],"Updating…":["Bijwerken…"],"Publishing…":["Publiceren..."],"Allow pingbacks & trackbacks":[],"Permalink:":["Permalink:"],"Pending review":[],"%d Revision":["%d revisie","%d revisies"],"Suggestion:":["Suggestie:"],"Post Format":["Berichtformaat"],"Chat":["Chat"],"Status":["Status"],"Standard":["Standaard"],"Aside":["Terzijde"],"Featured image":["Uitgelichte afbeelding"],"Set featured image":[],"Learn more about manual excerpts":["Ontdek meer over handmatige samenvattingen"],"Write an excerpt (optional)":["Schrijf een samenvatting (optioneel)"],"Allow comments":[],"Template:":["Template:"],"no parent":["geen hoofd"],"no title":["geen titel"],"Order":["Volgorde"],"No blocks found.":["Geen blokken gevonden."],"%d result found.":[],"Saved":["Opgeslagen"],"Embeds":["Insluitingen"],"Blocks":["Blokken"],"Search for a block":["Zoek naar een blok"],"Add block":["Voeg blok toe"],"Copy Error":["Kopieerfout"],"Copy Post Text":["Kopieer berichttekst"],"Attempt Recovery":["Probeer te herstellen"],"The editor has encountered an unexpected error.":["De editor is op een onverwacht probleem gestuit."],"Undo":["Ongedaan maken"],"Redo":["Opnieuw"],"(Multiple H1 headings are not recommended)":["(Meedere H1 koppen worden niet aangeraden)"],"(Your theme may already use a H1 for the post title)":["(Je thema gebruikt misschien al een H1 voor de berichttitel)"],"(Incorrect heading level)":["(Verkeerd niveau kop)"],"(Empty heading)":["(Lege kop)"],"Block Styles":["Blokstijlen"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Weet je zeker dat je dit gedeelde blok wilt verwijderen?\n\nHet blok wordt permanent verwijderd van alle berichten en pagina's die het gebruiken."],"Convert to Regular Block":["Verander naar normaal blok"],"More options":["Meer opties"],"Edit visually":["Visueel bewerken"],"Duplicate":["Dupliceer"],"Blocks cannot be moved down as they are already at the bottom":["Blokken kunnen niet naar beneden verplaatst worden omdat ze al onderaan staan."],"Blocks cannot be moved up as they are already at the top":["Blokken kunnen niet omhoog worden verplaatst omdat ze al bovenaan staan"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Blok %s is het enige blok en kan niet verplaatst worden"],"Edit as HTML":["Bewerk als HTML"],"Convert to Blocks":["Omzetten naar blokken"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Dit blok is een fout tegengekomen en kan geen voorbeeld tonen."],"No block selected.":["Geen blok geselecteerd."],"Transform into:":["Zet om naar:"],"Remove":["Verwijder"],"Find original":["Vind origineel"],"Copy all content":[],"Copied!":["Gekopieerd!"],"Additional settings are now available in the Editor block settings sidebar":["Meer instellingen zijn beschikbaar in de Editor blok instellingen zijbalk"],"Visibility":["Zichtbaarheid"],"Status & visibility":[],"Page attributes":[],"Block":["Blok"],"Document":["Document"],"Close settings":["Sluit instellingen"],"Editor content":["Editor inhoud"],"Tools":["Gereedschappen"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Editor top balk"],"Settings":["Instellingen"],"Reset":["Herstel"],"Dismiss this notice":["Negeer dit bericht"],"Item removed.":["Item verwijderd."],"Item added.":["Item toegevoegd."],"Drop files to upload":["Sleep bestanden hier naartoe om te uploaden"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Er is een onbekende fout opgetreden. "],"No results.":["Geen resultaten."],"%d result found, use up and down arrow keys to navigate.":["%d resultaat gevonden, gebruik de omhoog en omlaag toetsen om te navigeren.","%d resultaten gevonden, gebruik de omhoog en omlaag toetsen om te navigeren."],"(no title)":["(geen titel)"],"URL":["URL"],"Submit":["Verstuur"],"Close":["Sluiten"],"Insert link":[],"Edit link":[],"Link":["Link"],"Strikethrough":["Doorhalen"],"Italic":["Cursief"],"Bold":["Vet"],"Remove link":[],"Number of items":["Aantal items"],"All":["Alle"],"Category":["Categorie"],"Z → A":["Z \t A"],"A → Z":["A ⟶ Z"],"Oldest to Newest":["Oudste naar nieuwste"],"Newest to Oldest":["Nieuwste naar oudste"],"Order by":["Volgorde op"],"Select":["Selecteer"],"Select or Upload Media":["Media selecteren of uploaden"],"Video":["Video"],"Write…":["Schrijf..."],"poetry":["poëzie"],"Verse":["Vers"],"New Column":["Nieuwe kolom"],"Delete Column":["Verwijder kolom"],"Add Column After":["Voeg kolom toe na"],"Add Column Before":["Voeg kolom toe voor"],"Delete Row":["Verwijder rij"],"Add Row After":["Voeg rij toe na"],"Add Row Before":["Voeg rij toe voor"],"Edit table":[],"Table":["Tabel"],"Write subheading…":["Schrijf subtitel..."],"Write shortcode here…":["Schrijf hier een shortcode..."],"Shortcode":["Shortcode"],"divider":["scheidslijn"],"horizontal-line":["horizontale lijn"],"Separator":["Scheidingslijn"],"Quote":["Citaat"],"Write citation…":["Schrijf citaat..."],"Write quote…":["Schrijf citaat..."],"Pullquote":["Pull-quote"],"Write preformatted text…":["Schrijf voorgeformatteerde tekst..."],"Preformatted":["Voorgeformatteerd"],"text":["tekst"],"Paragraph":["Paragraaf"],"Font Size":["Grootte lettertype"],"Drop Cap":["Initiaal"],"Text settings":[],"Read more":["Verder lezen"],"Write list…":["Maak lijst..."],"numbered list":["genummerde lijst"],"ordered list":["geordende lijst"],"bullet list":["ongeordende lijst"],"Indent list item":["Verhoog inspringen lijst item"],"Outdent list item":["Verlaag inspringen lijst item"],"Convert to ordered list":["Omzetten naar geordende lijst"],"Convert to unordered list":["Omzetten naar ongeordende lijst"],"List":["Lijst"],"recent posts":["recente berichten"],"No posts found.":["Geen berichten gevonden."],"Latest Posts":["Nieuwste berichten"],"Display post date":["Toon datum bericht"],"Grid view":[],"List view":[],"photo":["foto"],"Image settings":[],"Image":["Afbeelding"],"Preview":["Voorbeeld"],"embed":["insluiten"],"Custom HTML":["Aangepaste HTML"],"subtitle":["subtitel"],"title":["titel"],"Heading":["Kop"],"Write heading…":["Schrijf kop..."],"Heading %d":["Kop %d"],"Level":["Niveau"],"Heading settings":[],"photos":["foto's"],"images":["afbeeldingen"],"None":["Geen"],"Media File":["Mediabestand"],"Attachment Page":["Bijlagepagina"],"Link to ":[],"Crop Images":["Afbeeldingen bijsnijden"],"Gallery settings":[],"Gallery":["Galerij"],"Classic":["Klassiek"],"video":["video"],"audio":["audio"],"music":["muziek"],"image":["afbeelding"],"blog":["blog"],"post":["bericht"],"Embedded content from %s":["Ingesloten inhoud van %s"],"Enter URL to embed here…":["Vul in te sluiten URL hier in..."],"%s URL":["%s URL"],"Embedding…":["Insluiten..."],"Write title…":["Schrijf titel..."],"Fixed Background":["Vaste achtergrond"],"Edit image":["Bewerk afbeelding"],"Columns":["Kolommen"],"Experiments":[],"Code":["Code"],"Write code…":["Schrijf code…"],"Categories":["Categorieën"],"Show Hierarchy":["Toon hiërarchie"],"Show post counts":["Toon aantal berichten"],"Categories settings":[],"Add text…":["Voeg tekst toe..."],"Button":["Knop"],"Apply":["Toepassen"],"Text Color":["Tekstkleur"],"Background Color":["Achtergrondkleur"],"Block has been deleted or is unavailable.":["Blok is verwijderd of is niet beschikbaar."],"Reusable blocks":[],"Cancel":["Annuleer"],"Edit":["Bewerk"],"Write caption…":["Schrijf onderschrift..."],"Use URL":["Gebruik URL"],"Audio":["Audio"],"Upload":["Upload"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML Anker"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een helderder achtergrondkleur en/of een donkerder tekstkleur te gebruiken."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Deze kleurencombinatie kan moeilijk leesbaar zijn voor mensen. Probeer een donkerder achtergrondkleur en/of een helderder tekstkleur te gebruiken."],"Clear":["Wis"],"Custom color picker":["Aangepaste kleurenkiezer"],"Color: %s":["Kleur: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Opmaak"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Drukwerk sinds 1440. Dit is de ontwikkelingsplugin voor de nieuwe blok editor in de core."],"Add title":["Voeg titel toe"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Auteur"],"Slug":["Slug"],"Discussion":["Discussie"],"Custom fields":[],"Excerpt":["Samenvatting"],"Publish":["Publiceer"],"Metadata":["Metadata"],"Save":["Bewaar"],"Documentation":["Documentatie"],"Select Category":["Selecteer categorie"],"(Untitled)":["(Zonder titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s geleden"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_pl.json b/bundle/android/raw/i18ncache_data_pl.json
new file mode 100644
index 0000000000..56fa59b3e0
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_pl.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":[],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":[],"To edit this block, you need permission to upload media.":[],"(selected block)":[],"Block tools":[],"Permalink":[],"This image has an empty alt attribute":[],"This image has an empty alt attribute; its file name is %s":[],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":["Narzędzia dokumentu"],"Document and block tools":["Narzędzia dokumentu i bloku"],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":["Ogólne"],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":["Opcje"],"(opens in a new tab)":["(otworzy się w nowej zakładce)"],"Minutes":["Minuta"],"Hours":["Godzina"],"Time":["Czas"],"Year":["Rok"],"Day":["Dzień"],"December":["Grudzień"],"November":["Listopad"],"October":["Październik"],"September":["Wrzesień"],"August":["Sierpień"],"July":["Lipiec"],"June":["Czerwiec"],"May":["Maj"],"April":["Kwiecień"],"March":["Marzec"],"February":["Luty"],"January":["Styczeń"],"Month":["Miesiąc"],"Date":["Data"],"Go to the first (home) or last (end) day of a week.":["Przenieś zaznaczenie do pierwszego (home) lub ostatniego (end) dnia tygodnia."],"Home/End":["Home/End"],"Home and End":["Klawisze Home i End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Przenieś zaznaczenie do poprzedniego (PgUp) lub następnego (PgDn) miesiąca."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Klawisze Page Up i Page Down"],"Move backward (up) or forward (down) by one week.":["Przenieś zaznaczenie do poprzedniego (strzałka w górę) lub następnego (strzałka w dół) tygodnia."],"Up and Down Arrows":["Strzałki w górę i w dół"],"Move backward (left) or forward (right) by one day.":["Przenieś zaznaczenie do poprzedniego (strzałka w lewo) lub następnego (strzałka w prawo) dnia."],"Left and Right Arrows":["Strzałki w lewo i w prawo"],"Select the date in focus.":["Wybierz zaznaczoną datę."],"Navigating with a keyboard":["Nawigacja z użyciem klawiatury"],"Click the desired day to select it.":["Naciśnij pożądany dzień, żeby go wybrać."],"Click the right or left arrows to select other months in the past or the future.":["Naciśnij strzałkę w lewo lub w prawo, żeby wybrać inny miesiąc z przeszłości lub przyszłości."],"Click to Select":["Naciśnij żeby wybrać"],"Calendar Help":["Pomoc kalendarza"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Wybierz odcień"],"Change color format":["Zmień model definicji koloru"],"Color value in HSL":["Kolor w modelu HSL"],"Color value in RGB":["Kolor w modelu RGB"],"Color value in hexadecimal":["Kolor w zapisie szesnastkowym"],"RGB mode active":["Tryb RGB aktywny"],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":["Średni"],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":["Przejmij"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Inny użytkownik już edytuje ten wpis, co oznacza że nie możesz dokonać w nim zmian dopóki go nie przejmiesz. "],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s już edytuje ten wpis, co oznacza że nie możesz dokonać w nim zmian dopóki go nie przejmiesz."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":["Awatar"],"This post is already being edited.":["Ten wpis jest już edytowany."],"Someone else has taken over this post.":["Ktoś inny przejął ten wpis."],"This block contains unexpected or invalid content.":["Ten blok zawiera nieoczekiwaną lub niepoprawną treść."],"Resolve Block":["Rozwiąż problemy z blokiem"],"Convert to HTML":["Przekształć na kod HTML"],"This block can only be used once.":["Ten blok może zostać użyty tylko raz."],"Exit Code Editor":["Opuść edytor tekstowy"],"Editing Code":["Edytor tekstowy"],"Solid Color":["Z tłem"],"Main Color":["Główny kolor"],"HTML":["HTML"],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":["Wstaw media"],"Reusable block imported successfully!":[],"Invalid Reusable Block JSON file":[],"Invalid JSON file":["Niepoprawny plik JSON"],"Import from JSON":["Zaimportuj z pliku JSON"],"Backtick":["Odwrócony apostrof"],"Period":["Kropka"],"Comma":["Przecinek"],"Change type of %d block":["Zmień rodzaj %d bloku","Zmień rodzaj %d bloków","Zmień rodzaj %d bloków"],"Current":["Aktualny"],"After Conversion":[],"Change alignment":[],"Change text alignment":[],"%d block":[],"Forward-slash":["Ukośnik"],"No archives to show.":[],"This file is empty.":[],"Sorry, this file type is not supported here.":[],"Manage all reusable blocks":[],"Title":[],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":["Zamknij panel"],"Convert to Classic Block":["Przekształć na Klasyczny edytor"],"Remove Poster Image":["Usuń okładkę"],"Select Poster Image":["Wybierz okładkę"],"Poster Image":["Okładka "],"This block is deprecated. Please use the Columns block instead.":[],"Text Columns (deprecated)":[],"Create":[],"Row Count":[],"Column Count":[],"This block is deprecated. Please use the Paragraph block instead.":[],"Subheading (deprecated)":[],"blockquote":[],"Change the block type after adding a new paragraph.":["Zmień rodzaj bloku po dodaniu nowego akapitu."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Tagi pomagają użytkownikom i wyszukiwarkom nawigować po stronie oraz odnajdywać treści. Dodaj kilka słów kluczowych opisujących wpis."],"Add tags":["Dodaj tagi"],"Apply the \"%1$s\" format.":["Użyj formatu \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Aktualny motyw posiada formaty wpisów służące do wyróżniania różnych typów treści, takich jak zdjęcia i filmy. Użyj formatu wpisu aby nadać odpowiedni wygląd."],"Use a post format":["Wykorzystaj format wpisu"],"Insert After":["Wstaw blok poniżej"],"Insert Before":["Wstaw blok powyżej"],"Move %1$d block from position %2$d down by one place":["Przenieś %1$d blok o jedno miejsce w dół z pozycji %2$d","Przenieś %1$d bloki o jedno miejsce w dół z pozycji %2$d","Przenieś %1$d bloków o jedno miejsce w dół z pozycji %2$d"],"Move %1$d block from position %2$d up by one place":["Przenieś %1$d blok o jedno miejsce w górę z pozycji %2$d","Przenieś %1$d bloki o jedno miejsce w górę z pozycji %2$d","Przenieś %1$d bloków o jedno miejsce w górę z pozycji %2$d"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Wstaw nowy blok powyżej zaznaczonego bloku lub bloków."],"Remove the selected block(s).":["Usuń zaznaczony blok lub bloki."],"Duplicate the selected block(s).":["Powiel zaznaczony blok lub bloki."],"Block shortcuts":["Skróty bloków"],"Clear selection.":["Wyczyść zaznaczenie."],"Select all text when typing. Press again to select all blocks.":["Zaznacz cały tekst podczas pisania. Naciśnij ponownie aby zaznaczyć wszystkie bloki."],"Selection shortcuts":["Skróty zaznaczania"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Nawiguj do poprzedniej części edytora."],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":["Pokaż lub ukryj panel boczny z ustawieniami."],"Redo your last undo.":["Przywróć cofnięte zmiany."],"Undo your last changes.":["Cofnij ostatnie zmiany."],"Save your changes.":["Zapisz zmiany."],"Global shortcuts":["Globalne skróty"],"Remove a link.":["Usuń odnośnik."],"Convert the selected text into a link.":["Przekształć zaznaczony tekst w odnośnik."],"Underline the selected text.":["Podkreśl zaznaczony tekst."],"Make the selected text italic.":["Dodaj kursywę dla zaznaczonego tekstu."],"Make the selected text bold.":["Pogrub zaznaczony tekst."],"Text formatting":["Formatowanie tekstu"],"Insert a new block after the selected block(s).":["Wstaw nowy blok poniżej zaznaczonego bloku lub bloków."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Dziękujemy za testowanie Gutenberga!"],"Help build Gutenberg":["Pomóż w rozwoju Gutenberga"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Jeśli chcesz dowiedzieć się więcej na temat tworzenia dodatkowych bloków lub chcesz pomóc przy rozwoju projektu, przejdź do repozytorium na GitHubie."],"The WordPress community":["Społeczność WordPressa"],"Code is Poetry":["Kod to poezja"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Liczbę kolumn w galeriach można zmieniać przeciągając suwak znajdujący się w panelu bocznym w ustawieniach bloku."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":["Galerie"],"Images & Videos":["Obrazki i filmy"],"Text & Headings":["Tekst i nagłówki"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Witamy w edytorze Gutenberg"],"block name\u0004More":["Czytaj dalej"],"button to expand options\u0004More":["Więcej"],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":["Alternatywny tekst"],"Reusable Block":["Zapisany blok"],"Unique identifier for the object.":["Unikalny identyfikator obiektu."],"Untitled Reusable Block":["Blok bez tytułu"],"Small":["Mały"],"Reusable":["Zapisane"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Zachowaj jako HTML"],"Edit URL":["Edytuj adres URL"],"Color settings":[],"The response is not a valid JSON response.":["Odpowiedź nie jest prawidłową odpowiedzią JSON."],"Editor publish":["Ekran publikacji w edytorze"],"Muted":["Wyciszony"],"Video settings":[],"recent comments":["najnowsze komentarze"],"Latest Comments":["Ostatnie komentarze"],"Display Excerpt":[],"Display Date":[],"Display Avatar":[],"Latest comments settings":[],"Number of Comments":[],"Background Opacity":["Przezroczystość tła"],"Auto":["Cały plik"],"Preload":["Wstępne ładowanie"],"Audio settings":[],"Display a monthly archive of your posts.":[],"Display as Dropdown":["Wyświetl jako listę rozwijaną"],"Show Post Counts":["Pokaż liczbę wpisów"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Pomoc techniczna"],"No comments to show.":["Brak komentarzy do wyświetlenia."],"%1$s on %2$s":["%1$s o %2$s"],"Select Post":["Wybierz wpis"],"Select Week":["Wybierz tydzień"],"Select Day":["Wybierz dzień"],"Select Month":["Wybierz miesiąc"],"Select Year":["Wybierz rok"],"Archives":["Archiwa"],"Very dark gray":[],"Cyan bluish gray":[],"Very light gray":[],"Vivid cyan blue":[],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["Dostępne rodzaje bloków"],"Transform To:":["Przekształć w"],"Remove Block":["Usuń blok"],"Open publish panel":["Otwórz panel publikacji"],"Dots":["Kropki"],"Wide Line":["Długa linia"],"Large":["Duży"],"Show download button":[],"Download button settings":[],"Link To":["Odnośnik do"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Skopiuj adres URL"],"Write file name…":["Wpisz nazwę pliku..."],"File":["Plik"],"A single column within a columns block.":["Pojedyncza kolumna wewnątrz bloku z kolumnami."],"Column":["Kolumna"],"Outline":["Tylko kontur"],"Loop":["Odtwarzanie w pętli"],"Autoplay":["Autoodtwarzanie"],"Playback Controls":["Kontrolki sterowania"],"Close dialog":["Zamknij okno dialogowe"],"Sorry, this file type is not permitted for security reasons.":["Niestety ten format pliku nie jest dopuszczalny ze względów bezpieczeństwa."],"Disable tips":["Wyłącz wskazówki"],"Got it":["Ok"],"See next tip":["Zobacz następną wskazówkę"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":[],"Replace image":["Zastąp obrazek"],"Remove image":["Usuń obrazek"],"Error while uploading file %s to the media library.":["Błąd podczas wysyłania pliku %s do biblioteki mediów."],"This file exceeds the maximum upload size for this site.":[],"View the autosave":["Zobacz automatycznie zapisaną wersję"],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":["Automatyczne zapisywanie"],"Enter URL here…":["Wpisz tutaj adres URL..."],"Pin to toolbar":["Przypnij do paska narzędzi"],"Unpin from toolbar":["Odepnij od paska narzędzi"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":["Jednakowa szerokość komórek"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":["Błąd ładowania bloku: %s"],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":["Usuń %s"],"Copy the permalink":["Skopiuj bezpośredni odnośnik"],"Permalink copied":["Skopiowano odnośnik"],"Height in pixels":["Wysokość w pikselach"],"Spacer settings":[],"Spacer":["Odstęp"],"Toggle to show a large initial letter.":["Przełącz, aby pierwsza litera była większa."],"Showing large initial letter.":["Pierwsza litera jest powiększona."],"Name:":["Nazwa:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s z %3$s)"],"Remove item":["Usuń element"],"Color code: %s":["Kod koloru: %s"],"Skip to the selected block":["Przejdź do wybranego bloku"],"Publish…":["Opublikuj..."],"Schedule…":["Zaplanuj..."],"Edit post permalink":["Edytuj bezpośredni odnośnik wpisu"],"Show Block Settings":["Pokaż ustawienia bloku"],"Hide Block Settings":["Ukryj ustawienia bloku"],"Block settings closed":["Zamknięto ustawienia bloku"],"Close plugin":["Zamknij wtyczkę"],"Editor settings":["Ustawienia edytora "],"Link settings":[],"Unlink":["Usuń odnośnik"],"Page break":[],"pagination":["paginacja"],"next page":["następna strona"],"Image Size":["Rozmiar obrazka"],"Height":["Wysokość"],"Width":["Szerokość"],"Image Dimensions":["Wymiary obrazka"],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":["Biblioteka mediów"],"Advanced":["Zaawansowane"],"Add item":[],"Reset the template":["Zresetuj szablon"],"Keep it as is":["Zachowaj bez zmian"],"The content of your post doesn’t match the template assigned to your post type.":["Treść wpisu nie pasuje do szablonu typu treści."],"Resetting the template may result in loss of content, do you want to continue?":["Zresetowanie szablonu może spowodować utratę dotychczasowej treści, chcesz kontynuować?"],"Document Statistics":["Statystyki dokumentu"],"is now scheduled. It will go live on":["został zaplanowany. Publikacja nastąpi w dniu"],"Scheduled":["Zaplanowany"],"Scheduling…":["Planowanie..."],"Code editor selected":[],"Visual editor selected":[],"Plugins":["Wtyczki"],"Custom Size":["Własny rozmiar"],"Layout elements":[],"term\u0004%s removed":["usunięto %s"],"term\u0004%s added":["dodano %s"],"imperative verb\u0004Preview":["Podejrzyj"],"Block deleted.":["Usunięto blok."],"Block updated.":["Zaktualizowano blok."],"Block created.":["Stworzono nowy blok."],"Trashing failed":["Przenoszenie do kosza nie powiodło się"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Zmiany nie zostały zapisane. W przypadku kontynuowania, zostaną utracone."],"Document Outline":["Zarys dokumentu"],"Paragraphs":["Akapity"],"Headings":["Nagłówki"],"Words":["Słowa"],"Content structure":[],"Public":["Publiczne"],"Protected with a password you choose. Only those with the password can view this post.":["Zawartość zabezpieczona wybranym przez ciebie hasłem. Tylko użytkownicy posiadający hasło mogą zobaczyć ten wpis."],"Password Protected":["Zabezpieczone hasłem"],"Only visible to site admins and editors.":["Widoczne tylko dla administratorów i redaktorów witryny."],"Private":["Prywatne"],"Visible to everyone.":["Widoczne dla wszystkich."],"Post Visibility":["Dostępność wpisu"],"Would you like to privately publish this post now?":[],"Use a secure password":["Wprowadź bezpieczne hasło"],"Create password":["Stwórz hasło"],"Move to Trash":[],"Parent Term":["Nadrzędna taksonomia"],"Parent Category":["Nadrzędna kategoria"],"Add new term":["Dodaj nową taksonomię "],"Add new category":["Dodaj nową kategorię"],"Term":["Taksonomia"],"Tag":["Tag"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Na pewno chcesz cofnąć publikację wpisu?"],"Immediately":["Natychmiast"],"Save Draft":["Zapisz szkic"],"Saving":["Zapisywanie"],"Publish:":["Opublikuj:"],"Visibility:":["Dostępność:"],"Are you ready to publish?":[],"Copy Link":["Kopiuj odnośnik"],"What’s next?":["Co dalej?"],"is now live.":["został opublikowany."],"Published":["Opublikowany"],"Schedule":["Zaplanuj"],"Update":["Zaktualizuj"],"Submit for Review":["Zapisz do przeglądu"],"Updating…":["Aktualizowanie..."],"Publishing…":["Publikowanie..."],"Allow pingbacks & trackbacks":[],"Permalink:":["Bezpośredni odnośnik:"],"Pending review":[],"%d Revision":["%d wersja","%d wersje","%d wersji"],"Suggestion:":["Sugestia:"],"Post Format":["Format wpisu"],"Chat":["Czat"],"Status":["Status"],"Standard":["Zwykły wpis"],"Aside":["Notatka na marginesie"],"Featured image":["Obrazek wyróżniający"],"Set featured image":[],"Learn more about manual excerpts":["Dowiedz się więcej o ręcznym tworzeniu zajawek."],"Write an excerpt (optional)":["Napisz zajawkę (opcjonalne)"],"Allow comments":[],"Template:":["Szablon:"],"no parent":["brak elementu nadrzędnego"],"no title":["bez tytułu"],"Order":["Kolejność"],"No blocks found.":["Nie znaleziono bloków."],"%d result found.":[],"Saved":["Zapisano"],"Embeds":["Osadzone treści"],"Blocks":["Bloki"],"Search for a block":["Szukaj bloku"],"Add block":["Dodaj blok"],"Copy Error":["Skopiuj komunikat błędu"],"Copy Post Text":["Skopiuj treść wpisu"],"Attempt Recovery":["Spróbuj odzyskać"],"The editor has encountered an unexpected error.":["Edytor natrafił na nieoczekiwany błąd."],"Undo":["Cofnij"],"Redo":["Ponów"],"(Multiple H1 headings are not recommended)":["(Nie zaleca się używania wielu nagłówków H1)"],"(Your theme may already use a H1 for the post title)":["(Nagłówek H1 może być już używany przez aktualny motyw jako tytułu wpisu)"],"(Incorrect heading level)":["(Niepoprawny poziom nagłówka)"],"(Empty heading)":["(Pusty nagłówek)"],"Block Styles":["Style bloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Czy na pewno chcesz usunąć zapisany blok? \n\nZostanie on trwale usunięty ze wszystkich wpisów i stron, które z niego korzystają."],"Convert to Regular Block":["Przekształć na zwykły blok"],"More options":["Więcej opcji"],"Edit visually":["Edytuj wizualnie"],"Duplicate":["Powiel"],"Blocks cannot be moved down as they are already at the bottom":["Nie można przenieść bloków niżej, ponieważ są już na samym dole"],"Blocks cannot be moved up as they are already at the top":["Nie można przenieść bloków wyżej, ponieważ są już na samej górze"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Blok %s jest jedynym blokiem i nie może zostać przesunięty"],"Edit as HTML":["Edytuj w HTML"],"Convert to Blocks":["Przekształć na bloki"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Nie można wyświetlić podglądu bloku z powodu wystąpienia błędu."],"No block selected.":["Nie wybrano żadnego bloku."],"Transform into:":["Przekształć w"],"Remove":["Usuń"],"Find original":[],"Copy all content":[],"Copied!":["Skopiowano!"],"Additional settings are now available in the Editor block settings sidebar":["Dodatkowe ustawienia znajdują się w ustawieniach bloku w panelu bocznym edytora."],"Visibility":["Dostępność"],"Status & visibility":[],"Page attributes":[],"Block":["Blok","%d bloki","%d bloków"],"Document":["Dokument"],"Close settings":["Zamknij ustawienia"],"Editor content":["Treść edytora"],"Tools":["Narzędzia"],"Editor":["Edytor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Górny pasek edytora"],"Settings":["Ustawienia"],"Reset":["Resetuj"],"Dismiss this notice":["Ukryj to powiadomienie"],"Item removed.":["Element został usunięty."],"Item added.":["Element został dodany."],"Drop files to upload":["Upuść tutaj pliki, aby je dodać"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Wystąpił nieoczekiwany błąd."],"No results.":["Brak wyników."],"%d result found, use up and down arrow keys to navigate.":["Znaleziono %d wynik, użyj strzałek do góry i do dołu aby nawigować.","Znaleziono %d wyniki, użyj strzałek do góry i do dołu aby nawigować.","Znaleziono %d wyników, użyj strzałek do góry i do dołu aby nawigować."],"(no title)":["(bez tytułu)"],"URL":["Adres URL"],"Submit":["Wyślij"],"Close":["Zamknij"],"Insert link":[],"Edit link":[],"Link":["Odnośnik"],"Strikethrough":["Przekreślenie"],"Italic":["Kursywa"],"Bold":["Pogrubienie"],"Remove link":[],"Number of items":["Ilość wyświetlanych elementów"],"All":["Wszystkie"],"Category":["Kategoria"],"Z → A":["Od Z do A"],"A → Z":["Od A do Z"],"Oldest to Newest":["Od najstarszych do najnowszych"],"Newest to Oldest":["Od najnowszych do najstarszych"],"Order by":["Sortuj"],"Select":["Wybierz"],"Select or Upload Media":["Wybierz lub prześlij media"],"Video":["Wideo"],"Write…":[],"poetry":["poezja"],"Verse":["Werset"],"New Column":["Nowa kolumna"],"Delete Column":["Usuń kolumnę"],"Add Column After":["Dodaj kolumnę z prawej"],"Add Column Before":["Dodaj kolumnę z lewej"],"Delete Row":["Usuń wiersz"],"Add Row After":["Dodaj wiersz poniżej"],"Add Row Before":["Dodaj wiersz powyżej"],"Edit table":[],"Table":["Tabela"],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":["rozdzielacz"],"horizontal-line":["pozioma linia"],"Separator":["Separator"],"Quote":["Cytat"],"Write citation…":[],"Write quote…":[],"Pullquote":["Wyróżniony cytat"],"Write preformatted text…":[],"Preformatted":["Preformatowany tekst"],"text":["tekst"],"Paragraph":["Akapit"],"Font Size":["Rozmiar czcionki"],"Drop Cap":["Inicjał"],"Text settings":[],"Read more":["Czytaj dalej"],"Write list…":[],"numbered list":["numerowana lista"],"ordered list":["uporządkowana lista"],"bullet list":["punktowana lista"],"Indent list item":["Zwiększ wcięcie"],"Outdent list item":["Zmniejsz wcięcie"],"Convert to ordered list":["Zmień na numerowaną listę"],"Convert to unordered list":["Zmień na punktowaną listę"],"List":["Lista"],"recent posts":["najnowsze wpisy"],"No posts found.":["Nie znaleziono wpisów."],"Latest Posts":["Ostatnie wpisy"],"Display post date":["Pokazuj datę wpisu"],"Grid view":[],"List view":[],"photo":["zdjęcie"],"Image settings":[],"Image":["Obrazek"],"Preview":["Podgląd"],"embed":["osadzanie"],"Custom HTML":["Własny HTML"],"subtitle":["podtytuł"],"title":["tytuł"],"Heading":["Nagłówek"],"Write heading…":[],"Heading %d":["Nagłówek %d. poziomu"],"Level":["Poziom"],"Heading settings":[],"photos":["zdjęcia"],"images":["obrazki"],"None":["-"],"Media File":["Plik multimedialny"],"Attachment Page":["Strona załącznika"],"Link to ":[],"Crop Images":["Przycinaj obrazki"],"Gallery settings":[],"Gallery":["Galeria"],"Classic":[],"video":["film"],"audio":["plik dźwiękowy"],"music":["muzyka"],"image":["obrazek"],"blog":["blog"],"post":["wpis"],"Embedded content from %s":[],"Enter URL to embed here…":["Wprowadź adres URL elementu do osadzenia..."],"%s URL":[],"Embedding…":["Trwa osadzanie..."],"Write title…":[],"Fixed Background":["Nieruchome tło"],"Edit image":["Edytuj obrazek"],"Columns":["Kolumny"],"Experiments":[],"Code":["Blok kodu"],"Write code…":[],"Categories":["Kategorie"],"Show Hierarchy":[],"Show post counts":["Pokazuj liczbę wpisów"],"Categories settings":[],"Add text…":["Dodaj tekst..."],"Button":["Przycisk"],"Apply":["Zastosuj"],"Text Color":["Kolor tekstu"],"Background Color":["Kolor tła"],"Block has been deleted or is unavailable.":["Blok został usunięty lub jest niedostępny."],"Reusable blocks":[],"Cancel":["Anuluj"],"Edit":["Edytuj"],"Write caption…":[],"Use URL":["Użyj adresu URL"],"Audio":["Plik dźwiękowy"],"Upload":["Wyślij na serwer"],"Additional CSS Class(es)":[],"HTML Anchor":["Kotwica HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Ta kombinacja kolorów może zmniejszyć czytelność. Spróbuj użyć jaśniejszego koloru tła i/lub ciemniejszego koloru tekstu. "],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Ta kombinacja kolorów może zmniejszyć czytelność. Spróbuj użyć ciemniejszego koloru tła i/lub jaśniejszego koloru tekstu."],"Clear":["Wyczyść"],"Custom color picker":["Próbnik kolorów"],"Color: %s":["Kolor: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgety"],"Formatting":["Formatowanie"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Dodaj tytuł"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Autor"],"Slug":["Uproszczona nazwa"],"Discussion":["Dyskusja"],"Custom fields":[],"Excerpt":["Zajawka"],"Publish":["Opublikuj"],"Metadata":["Tylko metadane"],"Save":["Zapisz"],"Documentation":["Dokumentacja"],"Select Category":["Wybierz kategorię"],"(Untitled)":["(Brak tytułu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Zespół Gutenberga"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s temu"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_pt.json b/bundle/android/raw/i18ncache_data_pt.json
new file mode 100644
index 0000000000..844fffa717
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_pt.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":["Nenhum bloco encontrado na sua biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["Nenhum bloco encontrado na sua biblioteca. Podem ser descarregados e instalados os seguintes blocos:"],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":["Tentar de novo"],"Block previews can't install.":[],"Updated %s":["%s actualizado"],"%d active installation":["%d instalação activa","%d instalações activas"],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":["Insira o endereço"],"Pill Shape":[],"Logos Only":["Apenas logótipos"],"Create a block of links to your social media or external sites":["Criar um bloco de ligações para redes sociais ou sites externos"],"Social links":["Redes sociais"],"Open block navigator":["Abrir navegador de blocos"],"Attachment page":["Página de anexo"],"Fill":["Preencher"],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":["Repor a cópia de segurança"],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":["Directório de blocos"],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":["Não tem permissão para instalar blocos."],"%1$d block is disabled.":["%1$d bloco está desactivado.","%1$d blocos estão desactivados."],"Reverse List Numbering":[],"Start Value":["Valor inicial"],"Ordered list settings":[],"Clear Media":["Limpar conteúdo multimédia"],"Default Style":["Estilo por omissão"],"Not set":["Não definido"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":["Cor"],"Vivid purple":[],"Disable & Reload":["Desactivar e recarregar"],"Enable & Reload":["Activar e recarregar"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":["Mostrar estes atalhos de teclado."],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":["Personalizado"],"Draft":["Rascunho"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":["Saiba mais sobre âncoras."],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["Blocos de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Carregue um ficheiro de vídeo, seleccione um da sua biblioteca multimédia ou adicione um através de um URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Carregue um ficheiro de imagem, seleccione um da sua biblioteca multimédia ou adicione um através de um URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Carregue um ficheiro de áudio, seleccione um da sua biblioteca multimédia ou adicione um através de um URL."],"Upload a media file or pick one from your media library.":["Carregue um ficheiro multimédia ou seleccione um da sua biblioteca."],"Skip":["Saltar"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["O que é isto?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Não permitir que motores de pesquisa sigam esta ligação."],"Provide more context about where the link goes.":[],"Title Attribute":["Título HTML (title)"],"SEO settings":[],"Description":["Descrição"],"Open in new tab":["Abrir num novo separador"],"links":["ligações"],"navigation":["navegação"],"menu":["menu"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["Carregue um ficheiro ou seleccione um da sua biblioteca multimédia."],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":["Carregue um ficheiro de imagem ou vídeo, ou seleccione um da sua biblioteca multimédia."],"Three columns; wide center column":["Três colunas; coluna central larga"],"Three columns; equal split":["Três colunas; divisão igual"],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":["Duas colunas; divisão igual"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["Mais ferramentas e opções"],"Create Table":["Criar tabela"],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Desagrupar"],"verb\u0004Group":["Agrupar"],"Separate with commas or the Enter key.":["Separe com vírgulas ou a tecla enter."],"Separate with commas, spaces, or the Enter key.":["Separe com vírgulas, espaços ou a tecla enter."],"Separate multiple classes with spaces.":["Separe múltiplas classes com espaços."],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":["Não tem permissão para editar barras laterais."],"Sorry, you are not allowed to read sidebars.":["Não tem permissão para ver barras laterais."],"The sidebar’s ID.":["ID da barra lateral."],"Displays a set of blocks":["Mostra um conjunto de blocos"],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":["Código em linha"],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":["Secção de rodapé"],"Header section":["Secção de cabeçalho"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":["Percentagem de largura"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":["Área de blocos actualizada."],"Block area scheduled.":["Área de blocos agendada."],"Block area published.":["Área de blocos publicada."],"Block areas list":["Lista de áreas de blocos"],"Block areas list navigation":["Navegação da lista de áreas de blocos"],"Filter block areas list":["Filtrar lista de áreas de blocos"],"No block area found.":["Nenhuma área de blocos encontrada."],"Search Block Areas":["Pesquisar áreas de blocos"],"All Block Areas":["Todas as áreas de blocos"],"View Block Area":["Ver área de blocos"],"Edit Block Area":["Editar área de blocos"],"New Block Area":["Nova área de blocos"],"Add New Block Area":["Adicionar nova área de blocos"],"admin menu\u0004Block Areas":["Áreas de blocos"],"post type singular name\u0004Block Area (Experimental)":["Área de blocos (experimental)"],"post type general name\u0004Block Area (Experimental)":["Área de blocos (experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de conteúdo personalizado experimental que armazena áreas de blocos referenciadas por temas."],"Widgets screen content":[],"header":[],"Widgets advanced settings":["Definições avançadas de widgets"],"(experimental)":["(experimental)"],"Block Areas":["Áreas de blocos"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":["A imagem de capa actual é %s"],"section":["secção"],"row":["linha"],"wrapper":[],"container":[],"A block that groups other blocks.":["Bloco que agrupa outros blocos."],"Group":["Grupo"],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":["Descreva o propósito da imagem"],"Add a block":["Adicionar um bloco"],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":["Substituir imagem"],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":["Mostra um widget antigo."],"Legacy Widget (Experimental)":["Widget antigo (experimental)"],"Change widget":["Alterar widget"],"Legacy Widget":["Widget antigo"],"You don't have permissions to use widgets on this site.":["Não tem permissões para utilizar widgets neste site."],"Select a legacy widget to display:":["Seleccione um widget antigo a mostrar:"],"There are no widgets available.":["Nenhum widget disponível."],"Change block type or style":["Alterar o tipo ou estilo do bloco"],"keyboard key\u0004Space":["Espaço"],"keyboard key\u0004Backspace":["Tecla apagar"],"More rich text controls":[],"Search Terms":["Pesquisar termos"],"Exit the Editor":["Sair do editor"],"Block Manager":["Gestor de blocos"],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":["Widgets (beta)"],"link":["ligação"],"Embedded content from %s can't be previewed in the editor.":["O conteúdo incorporado de %s não pode ser visualizado no editor."],"Custom Color":["Cor personalizada"],"Prompt visitors to take action with a button-style link.":["Incentive os visitantes a tomar uma acção com um botão personalizado."],"Stick to the top of the blog":["Fixar no topo do blog"],"Read about permalinks":["Leia sobre ligações permanentes"],"The last part of the URL.":[],"URL Slug":["Slug do URL"],"A cloud of your most used tags.":["Uma nuvem das etiquetas mais usadas."],"Tag Cloud":["Nuvem de etiquetas"],"Taxonomy":["Taxonomia"],"Tag Cloud settings":[],"- Select -":["- Seleccionar -"],"Default":["Por omissão"],"find":["pesquisar"],"Help visitors find your content.":["Ajude os visitantes a encontrar o seu conteúdo."],"Search":["Pesquisar"],"Add button text…":["Adicionar texto do botão..."],"Button text":["Texto do botão"],"Optional placeholder…":["Placeholder opcional..."],"Optional placeholder text":["Texto de placeholder opcional"],"Add label…":["Adicionar legenda..."],"Label text":["Texto da legenda"],"image %1$d of %2$d in gallery":["imagem %1$d de %2$d na galeria"],"archive":["arquivo"],"posts":["artigos"],"A calendar of your site’s posts.":["Um calendário dos artigos do seu site."],"Calendar":["Calendário"],"by":["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Ocorreu um erro. A causa provável é o feed estar offline. Tente mais tarde. "],"RSS Error:":["Erro RSS:"],"block style\u0004Default":["Por omissão"],"Fullscreen mode deactivated":["Modo de ecrã inteiro desactivado"],"Fullscreen mode activated":["Modo de ecrã inteiro activado"],"Spotlight mode deactivated":["Modo de foco desactivado"],"Spotlight mode activated":["Modo de foco activado"],"Top toolbar deactivated":["Barra de ferramentas superior desactivada"],"Top toolbar activated":["Barra de ferramentas superior activada"],"Back":["Voltar"],"Feature activated":["Funcionalidade activada"],"Feature deactivated":["Funcionalidade desactivada"],"Vertical Pos.":["Posição vertical"],"Horizontal Pos.":["Posição horizontal"],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Mostre entradas de qualquer feed RSS ou atom."],"RSS":["RSS"],"Max number of words in excerpt":["Número máximo de palavras do excerto"],"Display excerpt":["Mostrar excerto"],"Display date":["Mostrar data"],"Display author":["Mostrar autor"],"RSS settings":[],"Edit RSS URL":["Editar URL do RSS"],"Content before this block will be shown in the excerpt on your archives page.":["O conteúdo antes deste bloco será apresentado no excerto da página de arquivo."],"Hide the excerpt on the full content page":["Esconder excerto na página de conteúdo completo"],"The excerpt is visible.":["O excerto está visível."],"The excerpt is hidden.":["O excerto está escondido."],"Sorry, this content could not be embedded.":["Não foi possível incorporar este conteúdo."],"Embed Amazon Kindle content.":["Incorporar conteúdo do Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incorporar conteúdos do Crowdsignal (antigo Polldaddy)."],"Focal Point Picker":["Ponto de foco"],"Underline":["Sublinhado"],"Attempt Block Recovery":["Tentar recuperar o bloco"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Conteúdo…"],"button label\u0004Convert to link":["Converter para ligação"],"button label\u0004Try again":["Tentar de novo"],"Editor tips":["Dicas do editor"],"Block (selected)":["Bloco (seleccionado)"],"Document (selected)":["Documento (seleccionado)"],"%d word":["%d palavra","%d palavras"],"Top toolbar":[],"Link Rel":["Link Rel"],"Link CSS Class":["Classe CSS da ligação"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crie conteúdo e guarde-o para ser reutilizado por qualquer utilizador do seu site. As alterações ao bloco serão reflectidas em todos os locais onde for utilizado."],"To edit the featured image, you need permission to upload media.":["Para editar a imagem de destaque, precisa de permissão para carregar multimédia."],"To edit this block, you need permission to upload media.":["Para editar este bloco, precisa de permissão para carregar multimédia."],"(selected block)":["(bloco seleccionado)"],"Block tools":["Ferramentas de blocos"],"Permalink":["Ligação permanente"],"This image has an empty alt attribute":["Esta imagem tem um texto alternativo em branco"],"This image has an empty alt attribute; its file name is %s":["Esta imagem tem um texto alternativo em branco, o nome da imagem é %s"],"Block area reverted to draft.":["Área de blocos revertida para rascunho."],"Block area published privately.":["Área de blocos publicada em privado."],"No block areas found in Trash.":["Nenhuma área de blocos encontrada no lixo."],"Block\u0004Add New":["Adicionar novo"],"add new on admin bar\u0004Block Area":["Área de blocos"],"Link inserted.":["Ligação inserida."],"Warning: the link has been inserted but may have errors. Please test it.":["Atenção: a ligação foi inserida mas pode conter erros. Por favor verifique."],"%s block selected.":["%s bloco seleccionado.","%s blocos seleccionados."],"Thumbnail":["Miniatura"],"Full Size":["Tamanho original"],"Link selected.":["Ligação seleccionada."],"Start writing with text or HTML":["Comece a escrever com texto ou HTML"],"Type text or HTML":["Digite texto ou HTML"],"Block icon":["Ícone do bloco"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Comece a escrever ou clique em / para escolher um bloco"],"Empty block; start writing or type forward slash to choose a block":["Bloco vazio; comece a escrever ou insira uma barra para a direita para escolher um bloco"],"Paragraph block":["Bloco de parágrafo"],"Page Break":["Quebra de página"],"Stack on mobile":["Empilhar em mobile"],"Annotation":["Anotação"],"Drag images, upload new ones or select files from your library.":["Arraste imagens, carregue novas ou seleccione ficheiros da sua biblioteca."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Corrigir"],"font size name\u0004Huge":["Muito grande"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Médio"],"font size name\u0004Small":["Pequeno"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importar"],"button label\u0004Download":["Descarregar"],"button label\u0004Embed":["Incorporar"],"block title\u0004Embed":["Incorporação"],"block title\u0004Classic":["Clássico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":[],"%s (opens in a new tab)":["%s (abre num novo separador)"],"Link edited.":["Ligação editada."],"Link removed.":["Ligação removida."],"media":["multimédia"],"Double-check your settings before publishing.":["Verifique as suas opções antes de publicar."],"Generating preview…":["A gerar a pré-visualização..."],"Edit or update the image":["Editar ou actualizar a imagem"],"Media":["Multimédia"],"Navigate to the nearest toolbar.":["Navegar para a barra de ferramentas mais próxima."],"Document tools":["Ferramentas do documento"],"Document and block tools":["Ferramentas de blocos e documentos"],"Embed a video from your media library or upload a new one.":["Incorpore um vídeo da sua biblioteca multimédia ou carregue um novo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Insira poesia ou cite letras de músicas. Utilize formatos especiais de espaçamento."],"Add white space between blocks and customize its height.":["Adicione espaço em branco entre os blocos e personalize a sua altura."],"Insert additional custom elements with a WordPress shortcode.":["Insira elementos personalizados adicionais através de um shortcode do WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crie uma quebra entre ideias ou secções com um separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Destaque as suas citações. \"Ao citar outros, citamos-nos a nós mesmos.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Dê um destaque especial a uma citação do seu texto."],"Start with the building block of all narrative.":["Comece pelo bloco de base de qualquer narrativa."],"Separate your content into a multi-page experience.":["Separa o conteúdo para uma experiência multipágina."],"Set media and words side-by-side for a richer layout.":["Coloca conteúdo multimédia e texto lado a lado para um layout mais rico."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Crie uma lista numerada ou de marcadores."],"Display a list of your most recent comments.":["Mostre uma lista dos seus comentários mais recentes."],"Insert an image to make a visual statement.":["Insere uma imagem para fazer uma declaração visual."],"Add custom HTML code and preview it as you edit.":["Adicione código HTML personalizado e pré-visualize durante a edição."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduza novas secções e organize o seu conteúdo para ajudar os seus visitantes (e motores de pesquisa) a compreender a sua estrutura."],"Display multiple images in a rich gallery.":["Apresente múltiplas imagens em forma de galeria."],"Add a link to a downloadable file.":["Adicionar uma ligação para um ficheiro descarregável."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incorporar vídeos, imagens, tweets, áudio e outros conteúdos a partir de fontes externas."],"Resize for smaller devices":["Redimensionar para dispositivos mais pequenos"],"This embed may not preserve its aspect ratio when the browser is resized.":["Esta incorporação poderá não preservar o rácio largura:altura ao redimensionar o navegador."],"This embed will preserve its aspect ratio when the browser is resized.":["Esta incorporação irá preservar o rácio largura:altura ao redimensionar o navegador."],"Embed an Animoto video.":["Incorporar um vídeo do Animoto."],"Embed a Vimeo video.":["Incorporar um vídeo do Vimeo."],"Embed Flickr content.":["Incorporar um conteúdo do Flickr."],"Embed Spotify content.":["Incorporar um conteúdo do Spotify."],"Embed SoundCloud content.":["Incorporar um conteúdo do SoundCloud."],"Embed a WordPress post.":["Incorporar um artigo do WordPress."],"Embed an Instagram post.":["Incorporar uma publicação do Instagram."],"Embed a Facebook post.":["Incorporar uma publicação do Facebook."],"Embed a WordPress.tv video.":["Incorporar um vídeo da WordPress.tv"],"Embed a VideoPress video.":["Incorporar um vídeo e VideoPress."],"Embed a Tumblr post.":["Incorporar um artigo do Tumblr."],"Embed a TED video.":["Incorporar um vídeo de TED."],"Embed Speaker Deck content.":["Incorporar um conteúdo de Speaker Deck."],"Embed a YouTube video.":["Incorporar um vídeo do YouTube."],"Embed SmugMug content.":["Incorporar um conteúdo de SmugMug."],"Embed Slideshare content.":["Incorporar um conteúdo do Slideshare."],"Embed Scribd content.":["Incorporar um conteúdo do Scribd."],"Embed Screencast content.":["Incorporar um conteúdo do Screencast."],"Embed ReverbNation content.":["Incorporar um conteúdo de ReverbNation."],"Embed a Reddit thread.":["Incorporar um tópico do Reddit."],"Embed Polldaddy content.":["Incorporar um conteúdo do Polldaddy."],"Embed Mixcloud content.":["Incorporar um conteúdo do Mixcloud."],"Embed a tweet.":["Incorporar um tweet."],"Embed Meetup.com content.":["Incorporar um conteúdo do Meetup.com"],"Embed Kickstarter content.":["Incorporar um conteúdo do Kickstarter."],"Embed Issuu content.":["Incorporar um conteúdo do Issuu."],"Embed Imgur content.":["Incorporar um conteúdo do Imgur."],"Embed Hulu content.":["Incorporar um conteúdo do Hulu."],"Embed a Dailymotion video.":["Incorporar um vídeo do Dailymotion."],"Embed CollegeHumor content.":["Incorporar um conteúdo do CollegeHumor."],"Embed Cloudup content.":["Incorporar um conteúdo de Cloudup."],"Add an image or video with a text overlay — great for headers.":["Adicione uma imagem ou vídeo com um texto sobreposto — óptimo para cabeçalhos."],"Display code snippets that respect your spacing and tabs.":["Mostre fragmentos de código que respeitem o seu espaçamento e separadores."],"Use the classic WordPress editor.":["Utilizar o editor clássico do WordPress."],"Display a list of all categories.":["Mostre uma lista de todas as categorias."],"Embed a simple audio player.":["Incorporar um reprodutor simples de áudio."],"noun\u0004View":["Visualização"],"editor button\u0004Left to right":["Esquerda para a direita"],"Save as Pending":["Guardar como pendente"],"%s address":["Endereço de %s"],"Paste or type URL":["Colar ou escrever o URL"],"Insert from URL":["Inserir de um URL"],"Block Navigator":["Navegação de blocos"],"Styles":["Estilos"],"Advanced panels":[],"Document panels":[],"General":["Geral"],"Open the block navigation menu.":["Abrir o menu do bloco de navegação."],"Work without distraction":["Trabalhe sem distracções"],"Focus on one block at a time":["Foque-se num bloco de cada vez."],"Access all block and document tools in a single place":["Aceda a todas as ferramentas de blocos e documentos num único local"],"Options":["Opções"],"(opens in a new tab)":["(abre num novo separador)"],"Minutes":["Minutos"],"Hours":["Horas"],"Time":["Hora"],"Year":["Ano"],"Day":["Dia"],"December":["Dezembro"],"November":["Novembro"],"October":["Outubro"],"September":["Setembro"],"August":["Agosto"],"July":["Julho"],"June":["Junho"],"May":["Maio"],"April":["Abril"],"March":["Março"],"February":["Fevereiro"],"January":["Janeiro"],"Month":["Mês"],"Date":["Data"],"Go to the first (home) or last (end) day of a week.":["Ir para o primeiro (início) ou último (fim) dia da semana."],"Home/End":["Início/fim"],"Home and End":["Início e fim"],"Move backward (PgUp) or forward (PgDn) by one month.":["Recuar (PgUp) ou avançar (PgDn) um mês."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up e Page Down"],"Move backward (up) or forward (down) by one week.":["Recuar (cima) ou avançar (baixo) uma semana."],"Up and Down Arrows":["Setas cima e baixo"],"Move backward (left) or forward (right) by one day.":["Recuar (cima) ou avançar (direita) um dia."],"Left and Right Arrows":["Setas esquerda e direita"],"Select the date in focus.":["Escolher a data em foco."],"Navigating with a keyboard":["Navegar com o teclado"],"Click the desired day to select it.":["Clique no dia desejado para o seleccionar."],"Click the right or left arrows to select other months in the past or the future.":["Clique nas setas esquerda ou direita para seleccionar outros meses do passado ou futuro."],"Click to Select":["Clique para seleccionar"],"Calendar Help":["Ajuda do calendário"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Utilize as setas para alterar a cor base. Para cima para mais claro, para baixo mais escuro, para a esquerda para aumentar a saturação, para a direita para diminuir a saturação."],"Choose a shade":["Escolher uma tonalidade"],"Change color format":["Alterar formato de cor"],"Color value in HSL":["Valor da cor em HSL"],"Color value in RGB":["Valor da cor em RGB"],"Color value in hexadecimal":["Valor da cor em hexadecimal"],"RGB mode active":["Modo de cores RGB activado"],"Hex color mode active":["Modo de cores Hex activado"],"Hue/saturation/lightness mode active":["Mode de cores HSL activado"],"Move the arrow left or right to change hue.":["Mover a seta para a esquerda ou para a direita para alterar a tonalidade."],"Hue value in degrees, from 0 to 359.":["Tonalidade em graus, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor alfa, de 0 (transparente) a 1 (opaco)."],"Stripes":["Listas"],"Your site doesn’t include support for this block.":["O seu site não está preparado para este bloco."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["O seu site não está preparado para o bloco \"%s\". Pode deixar este bloco intacto ou removê-lo."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["O seu site não está preparado para o bloco \"%s\". Pode deixar este bloco intacto, converter o conteúdo para um bloco de HTML personalizado ou removê-lo."],"Media area":["Área de multimédia"],"Media & Text":["Multimédia e texto"],"Show media on right":["Mostrar multimédia à direita"],"Show media on left":["Mostrar multimédia à esquerda"],"Open in New Tab":["Abrir num novo separador"],"Cover":["Capa"],"Border settings":[],"Medium":["Médio"],"Paste URL or type to search":["Cole um URL ou escreva para pesquisar"],"Terms":["Termos"],"Your work will be published at the specified date and time.":["O seu trabalho será publicado no dia e hora especificados."],"Are you ready to schedule?":["Está pronto para agendar?"],"Always show pre-publish checks.":["Mostrar sempre verificações pré-publicação."],"Take Over":["Assumir controlo"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["De momento está outro utilizador a trabalhar neste conteúdo, o que significa que só poderá fazer alterações se assumir o controlo."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s está de momento a editar este conteúdo, o que significa que não pode fazer alterações, a não ser que assuma o controlo."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Outro utilizador assumiu o controlo de edição deste conteúdo. Não se preocupe, foram guardadas todas as suas alterações até este momento."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s assumiu o controlo de edição deste conteúdo. Não se preocupe, as suas alterações até este momento foram guardadas."],"Avatar":["Avatar"],"This post is already being edited.":["Este conteúdo já está a ser editado."],"Someone else has taken over this post.":["Alguém assumiu o controlo deste conteúdo."],"This block contains unexpected or invalid content.":["Este bloco tem conteúdo inesperado ou inválido."],"Resolve Block":["Corrigir bloco"],"Convert to HTML":["Converter para HTML"],"This block can only be used once.":["Este bloco apenas pode ser usado uma vez."],"Exit Code Editor":["Sair do editor de código"],"Editing Code":["A editar código"],"Solid Color":["Cor sólida"],"Main Color":["Cor principal"],"HTML":["HTML"],"Write HTML…":["Escreva HTML…"],"Media settings":[],"Overlay":["Sobreposição"],"Insert Media":["Inserir multimédia"],"Reusable block imported successfully!":["Bloco reutilizável importado com sucesso!"],"Invalid Reusable Block JSON file":["O ficheiro JSON de bloco reutilizável é inválido"],"Invalid JSON file":["Ficheiro JSON inválido"],"Import from JSON":["Importar de JSON"],"Backtick":["Apóstrofo"],"Period":["Ponto"],"Comma":["Vírgula"],"Change type of %d block":["Alterar tipo de %d bloco","Alterar tipo de %d blocos"],"Current":["Actual"],"After Conversion":["Após a conversão"],"Change alignment":["Alterar alinhamento"],"Change text alignment":["Alterar alinhamento do texto"],"%d block":["%d bloco","%d blocos"],"Forward-slash":["Barra para a direita"],"No archives to show.":["Nenhum arquivo para mostrar."],"This file is empty.":["Ficheiro vazio."],"Sorry, this file type is not supported here.":["Desculpe, este tipo de ficheiro não é suportado."],"Manage all reusable blocks":[],"Title":["Título"],"Fullscreen mode":[],"Beautiful landscape":["Paisagem bonita"],"Close panel":["Fechar painel"],"Convert to Classic Block":["Converter para bloco clássico"],"Remove Poster Image":["Remover imagem de capa"],"Select Poster Image":["Seleccionar imagem de capa"],"Poster Image":["Imagem de capa"],"This block is deprecated. Please use the Columns block instead.":["Este bloco está obsoleto. Utilize o bloco de colunas em alternativa."],"Text Columns (deprecated)":["Colunas de texto (obsoletas)"],"Create":["Criar"],"Row Count":["Número de linhas"],"Column Count":["Número de colunas"],"This block is deprecated. Please use the Paragraph block instead.":["Este bloco está obsoleto. Utilize o bloco de parágrafo em alternativa."],"Subheading (deprecated)":["Subtítulo (obsoleto)"],"blockquote":["citação"],"Change the block type after adding a new paragraph.":["Altera o tipo de bloco depois de adicionar um novo parágrafo."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["As etiquetas ajudam os utilizadores e motores de pesquisa a navegar no seu site e a encontrar o seu conteúdo. Adicione algumas palavras-chave que descrevam o seu conteúdo."],"Add tags":["Adicionar etiquetas"],"Apply the \"%1$s\" format.":["Aplicar o formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["O seu tema utiliza formatos de artigo para destacar diferentes tipos de conteúdos, como imagens ou vídeos. Aplique formatos de artigo para ver estes estilos especiais."],"Use a post format":["Utilizar um formato de artigo"],"Insert After":["Inserir depois"],"Insert Before":["Inserir antes"],"Move %1$d block from position %2$d down by one place":["Mover %1$d bloco da posição %2$d para uma posição abaixo","Mover %1$d blocos da posição %2$d para uma posição abaixo"],"Move %1$d block from position %2$d up by one place":["Mover %1$d bloco da posição %2$d para uma posição acima","Mover %1$d blocos da posição %2$d para uma posição acima"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["filme"],"Insert a new block before the selected block(s).":["Insere um novo bloco antes do(s) bloco(s) seleccionado(s)."],"Remove the selected block(s).":["Remove o(s) bloco(s) seleccionado(s)."],"Duplicate the selected block(s).":["Duplica o(s) bloco(s) seleccionado(s)."],"Block shortcuts":["Atalhos de blocos"],"Clear selection.":["Limpa a selecção."],"Select all text when typing. Press again to select all blocks.":["Selecciona todo o texto ao digitar. Ao premir de novo selecciona todos os blocos."],"Selection shortcuts":["Atalhos de selecção"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Navega para a parte anterior do editor."],"Navigate to the next part of the editor.":["Navega para a parte seguinte do editor."],"Show or hide the settings sidebar.":["Mostra ou esconde a barra lateral das definições."],"Redo your last undo.":["Refaz o que anulou anteriormente."],"Undo your last changes.":["Anula as suas últimas alterações."],"Save your changes.":["Guarda as suas alterações."],"Global shortcuts":["Atalhos globais"],"Remove a link.":["Remove uma ligação."],"Convert the selected text into a link.":["Converte o texto seleccionado numa ligação."],"Underline the selected text.":["Sublinha o texto seleccionado."],"Make the selected text italic.":["Torna itálico o texto seleccionado."],"Make the selected text bold.":["Torna negrito o texto seleccionado."],"Text formatting":["Formatação de texto"],"Insert a new block after the selected block(s).":["Insere um novo bloco depois do(s) bloco(s) seleccionado(s)."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Obrigado por testar o Gutenberg!"],"Help build Gutenberg":["Ajude a criar o Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["A comunidade WordPress"],"Code is Poetry":["Código é poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":["A acessibilidade é importante — não se esqueça do atributo de texto alternativo da imagem"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["Edição visual"],"And Lists like this one of course :)":["E listas como esta :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocos de layout, como botões, imagens hero, separadores, etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incorporações, como YouTube, tweets ou outros conteúdos de WordPress."],"Galleries":["Galerias"],"Images & Videos":["Imagens e vídeos"],"Text & Headings":["Texto e títulos"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["Uma imagem vale mais do que mil palavras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":["... como este, que está alinhado à direita."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["O que está a ler é um bloco de texto, o mais básico de todos. O bloco de texto tem os seus próprios controlos para ser movido livremente ao longo de todo o conteúdo..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Bem-vindo ao editor Gutenberg"],"block name\u0004More":["Mais"],"button to expand options\u0004More":["Mais"],"Are you sure you want to unschedule this post?":["De certeza que quer cancelar o agendamento deste conteúdo?"],"Alt Text (Alternative Text)":["Texto alternativo"],"Reusable Block":["Bloco reutilizável"],"Unique identifier for the object.":["Identificador único para o objecto."],"Untitled Reusable Block":["Bloco reutilizável sem título"],"Small":["Pequeno"],"Reusable":["Reutilizáveis"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Manter como HTML"],"Edit URL":["Editar URL"],"Color settings":[],"The response is not a valid JSON response.":["A resposta não é uma resposta JSON válida."],"Editor publish":["Área de publicação do editor"],"Muted":["Silenciado"],"Video settings":[],"recent comments":["comentários recentes"],"Latest Comments":["Comentários mais recentes"],"Display Excerpt":["Mostrar excerto"],"Display Date":["Mostrar data"],"Display Avatar":["Mostrar avatar"],"Latest comments settings":[],"Number of Comments":["Número de comentários"],"Background Opacity":["Opacidade do fundo"],"Auto":["Automático"],"Preload":["Pré-carregar"],"Audio settings":[],"Display a monthly archive of your posts.":["Mostre um arquivo mensal dos seus artigos."],"Display as Dropdown":["Mostrar como selector"],"Show Post Counts":["Mostrar número de artigos"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Suporte"],"No comments to show.":["Nenhum comentário para mostrar."],"%1$s on %2$s":["%1$s em %2$s"],"Select Post":["Seleccionar artigo"],"Select Week":["Seleccionar semana"],"Select Day":["Seleccionar dia"],"Select Month":["Seleccionar mês"],"Select Year":["Seleccionar ano"],"Archives":["Arquivo"],"Very dark gray":["Cinzento muito escuro"],"Cyan bluish gray":["Cinzento azulado ciano"],"Very light gray":["Cinzento muito claro"],"Vivid cyan blue":["Azul ciano vivo"],"Pale cyan blue":["Azul ciano pálido"],"Vivid green cyan":["Ciano verde vivo"],"Light green cyan":["Ciano verde claro"],"Luminous vivid amber":["Âmbar vivo luminoso"],"Luminous vivid orange":["Laranja vivo luminoso"],"Vivid red":["Vermelho vivo"],"Pale pink":["Rosa pálido"],"Inline image":["Imagem em linha"],"Available block types":["Tipos de blocos disponíveis"],"Transform To:":["Transformar em:"],"Remove Block":["Remover bloco"],"Open publish panel":["Abrir painel de publicação"],"Dots":["Pontos"],"Wide Line":["Linha grande"],"Large":["Grande"],"Show download button":["Mostrar botão de descarregar"],"Download button settings":["Definições do botão de descarregar"],"Link To":["Ligar a"],"Text link settings":["Definições do texto da ligação"],"download":[],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escreva o nome de um ficheiro…"],"File":["Ficheiro"],"A single column within a columns block.":["Uma única coluna dentro de um bloco de colunas."],"Column":["Coluna"],"Outline":["Contorno"],"Loop":["Loop"],"Autoplay":["Reprodução automática"],"Playback Controls":["Controlos de reprodução"],"Close dialog":["Fechar janela"],"Sorry, this file type is not permitted for security reasons.":["Desculpe, este tipo de ficheiro não é permitido por razões de segurança."],"Disable tips":["Desactivar dicas"],"Got it":["Compreendi"],"See next tip":["Ver dica seguinte"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quando estiver pronto, submeta o seu trabalho para revisão, para que um editor o possa aprovar."],"Are you ready to submit for review?":["Está pronto para submeter para revisão?"],"Replace image":["Substituir imagem"],"Remove image":["Remover imagem"],"Error while uploading file %s to the media library.":["Erro ao carregar o ficheiro %s para a biblioteca multimédia."],"This file exceeds the maximum upload size for this site.":["Este ficheiro excede o tamanho máximo de carregamentos para este site."],"View the autosave":["Ver cópia automática"],"There is an autosave of this post that is more recent than the version below.":["Existe uma cópia automática deste artigo que é mais recente do que a versão abaixo."],"Autosaving":["A guardar cópia automática"],"Enter URL here…":["Digite um URL aqui…"],"Pin to toolbar":["Fixar na barra de ferramentas"],"Unpin from toolbar":["Desafixar da barra de ferramentas"],"Insert a table — perfect for sharing charts and data.":["Insira uma tabela - perfeito para partilhar gráficos e dados."],"Fixed width table cells":["Células de tabela com largura fixa"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Adicione texto que respeita o seu espaçamento e separadores, e que também permite estilos."],"Display a list of your most recent posts.":["Mostre uma lista dos seus artigos mais recentes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Adicione um bloco que mostra conteúdo obtido de outros sites, como o Twitter, Instagram ou YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Adicione um bloco que mostra conteúdo em múltiplas colunas, onde pode inserir qualquer tipo de bloco de conteúdo."],"Error loading block: %s":["Erro ao carregar bloco: %s"],"Unknown error":["Erro desconhecido"],"Embed Handler":["Gestor de incorporações"],"term\u0004Remove %s":["Remover termo %s"],"Copy the permalink":["Copiar a ligação permanente"],"Permalink copied":["Ligação permanente copiada"],"Height in pixels":["Altura em píxeis"],"Spacer settings":[],"Spacer":["Espaçador"],"Toggle to show a large initial letter.":["Active para aumentar o tamanho da letra inicial."],"Showing large initial letter.":["Letra inicial aumentada."],"Name:":["Nome:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Remover item"],"Color code: %s":["Código de cor: %s"],"Skip to the selected block":["Ir para o bloco seleccionado"],"Publish…":["Publicar…"],"Schedule…":["Agendar…"],"Edit post permalink":["Editar ligação permanente do conteúdo"],"Show Block Settings":["Mostrar definições do bloco"],"Hide Block Settings":["Esconder definições do bloco"],"Block settings closed":["Definições do bloco fechadas"],"Close plugin":["Fechar plugin"],"Editor settings":["Definições do editor"],"Link settings":["Definições da ligação"],"Unlink":["Desfazer ligação"],"Page break":["Quebra de página"],"pagination":["paginação"],"next page":["página seguinte"],"Image Size":["Tamanho da imagem"],"Height":["Altura"],"Width":["Largura"],"Image Dimensions":["Dimensões da imagem"],"Thumbnails are not cropped.":["As miniaturas não são cortadas."],"Thumbnails are cropped to align.":["As miniaturas são cortadas para ficarem alinhadas."],"Media Library":["Biblioteca multimédia"],"Advanced":["Avançadas"],"Add item":["Adicionar item"],"Reset the template":["Repor o modelo"],"Keep it as is":["Manter como está"],"The content of your post doesn’t match the template assigned to your post type.":["O conteúdo não corresponde ao modelo atribuído para o seu tipo de conteúdo."],"Resetting the template may result in loss of content, do you want to continue?":["Ao repor o modelo poderá perder conteúdos, quer continuar?"],"Document Statistics":["Estatísticas do documento"],"is now scheduled. It will go live on":["foi agora agendado. Será publicado em"],"Scheduled":["Agendado"],"Scheduling…":["A agendar…"],"Code editor selected":["Editor de código seleccionado"],"Visual editor selected":["Editor visual seleccionado"],"Plugins":["Plugins"],"Custom Size":["Tamanho personalizado"],"Layout elements":[],"term\u0004%s removed":["Termo %s removido"],"term\u0004%s added":["Termo %s adicionado"],"imperative verb\u0004Preview":["Pré-visualizar"],"Block deleted.":["Bloco eliminado."],"Block updated.":["Bloco actualizado."],"Block created.":["Bloco criado."],"Trashing failed":["Falhou ao mover para o lixo"],"Updating failed.":["Falhou ao actualizar."],"Scheduling failed.":["Falhou ao agendar."],"Publishing failed.":["Falhou ao publicar."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Tem alterações por guardar. Se continuar, serão perdidas."],"Document Outline":["Estrutura do documento"],"Paragraphs":["Parágrafos"],"Headings":["Títulos"],"Words":["Palavras"],"Content structure":["Estrutura do conteúdo"],"Public":["Público"],"Protected with a password you choose. Only those with the password can view this post.":["Protegido por uma senha escolhida por si. Apenas quem tiver a senha pode ver este conteúdo."],"Password Protected":["Protegido por senha"],"Only visible to site admins and editors.":["Visível apenas para administradores e editores do site."],"Private":["Privado"],"Visible to everyone.":["Visível para todos."],"Post Visibility":["Visibilidade do conteúdo"],"Would you like to privately publish this post now?":["Gostaria de partilhar agora este conteúdo em privado?"],"Use a secure password":["Usar uma senha segura"],"Create password":["Criar senha"],"Move to Trash":["Mover para o lixo"],"Parent Term":["Termo superior"],"Parent Category":["Categoria superior"],"Add new term":["Adicionar novo termo"],"Add new category":["Adicionar nova categoria"],"Term":["Termo"],"Tag":["Etiqueta"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["De certeza de que quer cancelar a publicação deste conteúdo?"],"Immediately":["Imediatamente"],"Save Draft":["Guardar rascunho"],"Saving":["A guardar"],"Publish:":["Publicar:"],"Visibility:":["Visibilidade:"],"Are you ready to publish?":["Está pronto para publicar?"],"Copy Link":["Copiar ligação"],"What’s next?":["E agora?"],"is now live.":["foi agora publicado."],"Published":["Publicado"],"Schedule":["Agendar"],"Update":["Actualizar"],"Submit for Review":["Submeter para revisão"],"Updating…":["A actualizar…"],"Publishing…":["A publicar…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Ligação permanente:"],"Pending review":[],"%d Revision":["%d revisão","%d revisões"],"Suggestion:":["Sugestão:"],"Post Format":["Formato de artigo"],"Chat":["Conversa"],"Status":["Estado"],"Standard":["Padrão"],"Aside":["Aparte"],"Featured image":["Imagem de destaque"],"Set featured image":[],"Learn more about manual excerpts":["Saiba mais sobre excertos personalizados."],"Write an excerpt (optional)":["Escrever um excerto (opcional)"],"Allow comments":[],"Template:":["Modelo:"],"no parent":["sem superior"],"no title":["sem título"],"Order":["Ordem"],"No blocks found.":["Nenhum bloco encontrado."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],"Saved":["Guardado"],"Embeds":["Conteúdos incorporados"],"Blocks":["Blocos"],"Search for a block":["Pesquisar um bloco"],"Add block":["Adicionar bloco"],"Copy Error":["Erro ao copiar"],"Copy Post Text":["Copiar texto do conteúdo"],"Attempt Recovery":["Tentar recuperação"],"The editor has encountered an unexpected error.":["O editor encontrou um erro inesperado."],"Undo":["Anular"],"Redo":["Refazer"],"(Multiple H1 headings are not recommended)":["(Não é recomendado utilizar múltiplos títulos H1)"],"(Your theme may already use a H1 for the post title)":["(O seu tema poderá já estar a usar um H1 no título do conteúdo)"],"(Incorrect heading level)":["(nível de título incorrecto)"],"(Empty heading)":["(título vazio)"],"Block Styles":["Estilos de bloco"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["De certeza que quer remover este bloco reutilizável?\n\nSerá removido de todos os artigos ou páginas onde está a ser utilizado."],"Convert to Regular Block":["Converter para bloco normal"],"More options":["Mais opções"],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Os blocos não podem ser movidos para baixo porque já estão no limite inferior"],"Blocks cannot be moved up as they are already at the top":["Os blocos não podem ser movidos para cima porque já estão no limite superior"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["O bloco %s é o único bloco existente, não pode ser movido"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Converter para blocos"],"Block: %s":["Bloco: %s"],"This block has encountered an error and cannot be previewed.":["Este bloco encontrou um erro e não pode ser pré-visualizado."],"No block selected.":["Nenhum bloco seleccionado."],"Transform into:":["Transformar em:"],"Remove":["Remover"],"Find original":["Encontrar original"],"Copy all content":[],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Estão agora disponíveis opções adicionais na barra lateral de opções do editor de blocos"],"Visibility":["Visibilidade"],"Status & visibility":[],"Page attributes":[],"Block":["Bloco"],"Document":["Documento"],"Close settings":["Fechar definições"],"Editor content":["Conteúdo do editor"],"Tools":["Ferramentas"],"Editor":["Editor"],"Code editor":[],"Visual editor":[],"Editor top bar":["Barra superior do editor"],"Settings":["Opções"],"Reset":["Repor"],"Dismiss this notice":["Ignorar este aviso"],"Item removed.":["Item removido."],"Item added.":["Item adicionado."],"Drop files to upload":["Largue os ficheiros a carregar"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ocorreu um erro desconhecido."],"No results.":["Sem resultados."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontardo, use as teclas de seta para cima e para baixo para navegar.","%d resultados encontardos, use as teclas de seta para cima e para baixo para navegar."],"(no title)":["(sem título)"],"URL":["URL"],"Submit":["Submeter"],"Close":["Fechar"],"Insert link":["Inserir ligação"],"Edit link":["Editar ligação"],"Link":["Ligação"],"Strikethrough":["Rasurado"],"Italic":["Itálico"],"Bold":["Negrito"],"Remove link":["Remover ligação"],"Number of items":["Número de itens"],"All":["Tudo"],"Category":["Categoria"],"Z → A":["Z ⟶ A"],"A → Z":["A ⟶ Z"],"Oldest to Newest":["Do mais antigo para o mais recente"],"Newest to Oldest":["Do mais recente para o mais antigo"],"Order by":["Ordernar por"],"Select":["Seleccionar"],"Select or Upload Media":["Seleccionar ou carregar multimédia"],"Video":["Vídeo"],"Write…":["Escreva…"],"poetry":["poesia"],"Verse":["Verso"],"New Column":["Nova coluna"],"Delete Column":["Eliminar coluna"],"Add Column After":["Adicionar coluna depois"],"Add Column Before":["Adicionar coluna antes"],"Delete Row":["Eliminar linha"],"Add Row After":["Adicionar linha depois"],"Add Row Before":["Adicionar linha antes"],"Edit table":["Editar tabela"],"Table":["Tabela"],"Write subheading…":["Escreva um subtítulo…"],"Write shortcode here…":["Escreva aqui um shorcode…"],"Shortcode":["Shortcode"],"divider":["divisória"],"horizontal-line":["linha-horizontal"],"Separator":["Separador"],"Quote":["Citação"],"Write citation…":["Escreva uma citação…"],"Write quote…":["Escreva uma citação…"],"Pullquote":["Citação"],"Write preformatted text…":["Escreva um texto pré-formatado…"],"Preformatted":["Pré-formatado"],"text":["texto"],"Paragraph":["Parágrafo"],"Font Size":["Tamanho da fonte"],"Drop Cap":["Letra capitular"],"Text settings":[],"Read more":["Ler mais"],"Write list…":["Escreva uma lista…"],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista de marcadores"],"Indent list item":["Aumentar indentação do elemento da lista"],"Outdent list item":["Reduzir indentação do elemento da lista "],"Convert to ordered list":["Converter para lista ordenada"],"Convert to unordered list":["Converter para lista não ordenada"],"List":["Lista"],"recent posts":["artigos recentes"],"No posts found.":["Não foram encontrados artigos."],"Latest Posts":["Artigos mais recentes"],"Display post date":["Mostrar data do artigo"],"Grid view":["Vista de grelha"],"List view":["Vista de lista"],"photo":["fotografia"],"Image settings":[],"Image":["Imagem"],"Preview":["Pré-visualizar"],"embed":["incorporar"],"Custom HTML":["HTML personalizado"],"subtitle":["subtítulo"],"title":["título"],"Heading":["Título"],"Write heading…":["Escreva um título…"],"Heading %d":["Título %d"],"Level":["Nível"],"Heading settings":[],"photos":["fotografias"],"images":["imagens"],"None":["Nenhum"],"Media File":["Ficheiro multimédia"],"Attachment Page":["Página de anexo"],"Link to ":[],"Crop Images":["Cortar imagens"],"Gallery settings":[],"Gallery":["Galeria"],"Classic":["Clássico"],"video":["vídeo"],"audio":["áudio"],"music":["música"],"image":["imagem"],"blog":["blog"],"post":["artigo"],"Embedded content from %s":["Incorporar conteúdo de %s"],"Enter URL to embed here…":["Insira aqui o URL a incorporar…"],"%s URL":["URL de %s"],"Embedding…":["A incorporar…"],"Write title…":["Escreva um título…"],"Fixed Background":["Fundo fixo"],"Edit image":["Editar imagem"],"Columns":["Colunas"],"Experiments":[],"Code":["Código"],"Write code…":["Escreva algum código…"],"Categories":["Categorias"],"Show Hierarchy":["Mostrar hierarquia"],"Show post counts":["Mostrar número de artigos"],"Categories settings":[],"Add text…":["Adicionar texto…"],"Button":["Botão"],"Apply":["Aplicar"],"Text Color":["Cor do texto"],"Background Color":["Cor de fundo"],"Block has been deleted or is unavailable.":["O bloco foi eliminado ou está indisponível."],"Reusable blocks":[],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escreva uma legenda…"],"Use URL":["Usar URL"],"Audio":["Áudio"],"Upload":["Carregar"],"Additional CSS Class(es)":["Classes adicionais de CSS"],"HTML Anchor":["Âncora HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Esta combinação de cores poderá ser de difícil leitura. Tente usar uma cor de fundo mais clara e uma cor de texto mais escura."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Esta combinação de cores poderá ser de difícil leitura. Tente usar uma cor de fundo mais escura e uma cor de texto mais clara."],"Clear":["Limpar"],"Custom color picker":["Selector de cor personalizada"],"Color: %s":["Cor: %s"],"Full width":[],"Wide width":[],"Widgets":["Widgets"],"Formatting":["Formatação"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["A publicar desde 1440. Este é o plugin do desenvolvimento do novo editor de blocos do core."],"Add title":["Adicionar título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["O modo de desenvolvimento do Gutenberg requer a criação de ficheiros. Execute npm install
para instalar dependências, npm run build
para criar os ficheiros, ou npm run dev
para criar os ficheiros e acompanhar alterações. Leia o ficheiro contributing para mais informações."],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Discussão"],"Custom fields":[],"Excerpt":["Excerto"],"Publish":["Publicar"],"Metadata":["Metadados"],"Save":["Guardar"],"Documentation":["Documentação"],"Select Category":["Seleccionar categoria"],"(Untitled)":["(Sem título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["O Gutenberg requer o WordPress %s ou superior para funcionar correctamente. Por favor actualize o WordPress antes de activar o Gutenberg."],"Gutenberg Team":["Gutenberg Team"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demonstração"],"%s ago":["Há %s"],"Block style name must be a string.":["O nome do estilo do bloco tem de ser uma string."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ptbr.json b/bundle/android/raw/i18ncache_data_ptbr.json
new file mode 100644
index 0000000000..1ac4b2e4ee
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ptbr.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Exibir ícone de submenus nos itens de primeiro nível"],"Display settings":["Configurações de exibição"],"Choose variation":["Escolher variação"],"Angle":["Ângulo"],"%s Block":["Bloco %s"],"%1$s Block. %2$s":["Bloco %1$s. %2$s"],"%s Block. Column %d":["Bloco %s. Coluna %d"],"%1$s Block. Column %2$d. %3$s":["Bloco %1$s. Coluna %2$d. %3$s"],"%s Block. Row %d":["Bloco %s. Linha %d"],"%1$s Block. Row %2$d. %3$s":["Bloco %1$s. Linha %2$d. %3$s"],"Post Excerpt":["Resumo do post"],"Post Date":["Data do post"],"No Date":["Sem data"],"Post Author":["Autor do post"],"Choose":["Escolher"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":["Escolher uma parte de modelo pelo slug e tema ou criar um novo."],"Error adding template.":["Erro ao adicionar modelo."],"Footer label":["Rótulo do rodapé"],"Header label":["Rótulo do cabeçalho"],"Unsupported":["Não suportado"],"The description will be displayed in the menu if the current theme supports it.":["A descrição será exibida no menu se suportado no tema utilizado."],"Level %1$s. %2$s":["Nível %1$s. %2$s"],"Level %s. Empty.":["Nível %s. Vazio."],"Empty":["Vazio"],"Search results for %s":["Resultados da pesquisa para %s"],"Recently updated":["Atualizado recentemente"],"Multiple selected blocks":["Múltiplos blocos selecionados"],"By %s":["Por %s"],"Inspector":["Inspetor"],"Site editor advanced settings.":["Configurações avançadas do editor de sites."],"(beta)":["(beta)"],"Site Editor":["Editor do site"],"Site editor top bar.":["Barra superior do editor do site."],"Briefly describe the link to help screen reader users.":["Descreva brevemente o link para ajudar usuários de leitores de tela."],"Link Label":["Rótulo do link"],"%s label":[],"poem":["poema"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURA)\nJanela, muito pequena à distância, iluminada.\nTudo ao redor esta é uma tela quase totalmente preta. Agora, a câmera se move lentamente em direção à janela que é quase um selo postal no quadro, aparecem outras formas;"],"Full Post":["Post completo"],"Show:":["Mostrar:"],"Create from all top-level pages":["Crie a partir de todas as páginas de nível superior"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Solicite que os visitantes tomem medidas com o grupo de estilos de link de botão."],"Buttons":["Botões"],"Background":["Plano de fundo"],"Background & Text Color":["Fundo & cor do texto"],"Images Size":["Tamanho das imagens"],"Remove multiple selected blocks.":["Remover múltiplos blocos selecionados."],"(%s: gradient %s)":["(%s: gradiente %s)"],"(%s: color %s)":["(%s: cor %s)"],"(Gradient: %s)":["(Gradiente: %s)"],"(Color: %s)":["(Cor: %s)"],"Here's a detailed guide.":["Aqui está um guia detalhado."],"New to the Block Editor? Want to learn more about using it? ":["Novo no Editor de blocos? Deseja saber mais sobre como usá-lo?"],"Learn how to use the Block Editor":["Aprenda a usar o Editor de Blocos"],"Help":["Ajuda"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["Ícone do bloco %s"],"Submit for Review…":["Enviar para revisão..."],"Update…":["Atualizar..."],"Select items to save.":["Selecionar itens para salvar."],"What do you want to save?":["O que gostaria de salvar?"],"Untitled":["Sem título"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["O editor de blocos inclui recursos experimentais que são utilizados enquanto ainda estão em desenvolvimento. Selecione os itens que gostaria de ativar. Provavelmente acontecerão mudanças nestes recursos, então não recomendamos que utilize em produção."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Ativar modo de edição completa do site (Atenção: isto irá subscrever o seu tema e poderá causar mudanças definitivas no seu site. Recomendamos isso apenas em ambientes de desenvolvimento.)"],"Site Editor (beta)":["Editor do site (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// O \"bloco\" é um termo abstrato\n// para descrever estas unidades de marcação\n// quando criado juntos, formam o\n// conteúdo ou layout da página.\nregisterBlockType( name, settings );"],"You are probably offline.":["Você provavelmente está offline."],"Justify items right":["Justificar itens à direita"],"Justify items center":["Justificar itens ao centro"],"Justify items left":["Justificar itens à direita"],"Change items justification":["Alterar alinhamento dos itens"],"The media file has been replaced":["O arquivo de mídia foi substituído"],"Replace":["Substituir"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Você esta atualmente no modo de edição. Para retornar ao modo de navegação, pressione Esc"],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Você no momento está no modo de navegação. Navegue pelos blocos usando a tecla Tab. Para sair do modo de navegação e editar o bloco selecionado, pressione Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Use as teclas de seta esquerda ou direita ou arraste com o mouse para alterar a posição do gradiente. Pressione o botão para alterar a cor ou remover o ponto de controle."],"Gradient control point at position %1$s with color code %2$s.":["Ponto de controle do gradiente na posição %1$s com o código de cor %2$s."],"Preset Size":["Tamanho predefinido"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["As ferramentas oferecem diferentes interações para a seleção e edição de blocos. Para selecionar, pressione Esc, para voltar a edição, pressione Enter"],"Open Media Library":["Abrir biblioteca de mídias"],"Next":["Próximo"],"Previous":["Anterior"],"Finish":["Finalizar"],"Page %1$d of %2$d":["Página %1$d de %2$d"],"Guide controls":["Guia de controle"],"Remove Control Point":["Remover ponto de controle"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Cada bloco vem com seu próprio conjunto de controles para alterar itens como cor, largura e alinhamento. Eles serão exibidos e ocultados automaticamente quando você tiver um bloco selecionado."],"Make each block your own":["Fazer com que cada bloco seja seu"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["No editor do WordPress, cada parágrafo, imagem ou vídeo é apresentado como um \"bloco\" de conteúdo distinto."],"ADD MEDIA":["Adicionar mídia"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Todos os blocos disponíveis para você estão na Biblioteca de Blocos. Você os encontrará onde quer que veja o ícone ."],"Get to know the Block Library":["Conheça a Biblioteca de Blocos"],"Welcome Guide":["Guia de boas vindas"],"Enable page templates":["Habilitar modelo de página"],"Page Templates":["Modelos de página"],"Enable Full Site Editing demo templates":["Ativar modelos de demonstração de edição do site inteiro"],"Full Site Editing Demo Templates":["Modelos de demonstração de edição do site inteiro"],"Welcome to the Block Editor":["Bem-vindo(a) ao editor de blocos"],"Get started":["Iniciar"],"inserter":["Adicionador"],"Post Title":["Título do post"],"Add nofollow to link":["Adicionar nofollow ao link"],"Add submenu":["Adicione um submenu"],"Add link…":["Adicionar link..."],"Dark":["Escuro"],"Light":["Claro"],"recording":["gravação"],"podcast":["podcast"],"sound":["Som"],"Array of instance changes":["Array de mudanças de instância"],"Current widget instance":["Instância atual de widget"],"Template parts to include in your templates.":["Parte de modelos para incluir no seus modelos."],"Template parts list":["Lista de partes de modelos"],"Template parts list navigation":["Lista de navegação de partes de modelo"],"Filter template parts list":["Filtrar lista de partes de modelo"],"Uploaded to this template part":["Enviado para esta parte de modelo"],"Insert into template part":["Inserir na parte de modelo"],"Template part archives":["Arquivos de partes de modelo"],"No template parts found in Trash.":["Sem partes de modelo encontradas na lixeira."],"No template parts found.":["Sem partes de modelo encontradas."],"Parent Template Part:":["Parte de modelo ascendente:"],"Search Template Parts":["Pesquisar partes de modelo"],"All Template Parts":["Todas as partes de modelo"],"View Template Part":["Ver parte de modelo"],"Edit Template Part":["Editar parte de modelo"],"New Template Part":["Nova parte de modelo"],"Add New Template Part":["Adicionar nova parte de modelo"],"Template Part\u0004Add New":["Adicionar nova"],"Admin Menu text\u0004Template Parts":["Partes de modelo"],"Template Part":["Parte de modelo"],"Template Parts":["Partes de modelo"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Eis que temos aqui a Poesia,\na grande Poesia.\nQue não oferece signos\nnem linguagem específica, não respeita\nsequer os limites do idioma. Ela flui, como um rio.\ncomo o sangue nas artérias,\ntão espontânea que nem se sabe como foi escrita."],"Navigation":["Navegação"],"Loading Navigation…":["Navegação carregando..."],"Navigation Structure":["Estrutura de navegação"],"Create empty":["Criar vazio"],"Create a Navigation from all existing pages, or create an empty one.":["Criar uma navegação com todas as páginas existentes ou criar uma vazia."],"Navigation Link":["Link de navegação"],"(Note: many devices and browsers do not display this text.)":["(Nota: muitos dispositivos e navegadores não exibem este texto.)"],"Describe the role of this image on the page.":["Descrever a função desta imagem nesta página."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Alternar entre usar o mesmo valor para todos os tamanhos de tela ou usar um valor individual para cada tamanho de tela."],"Use the same %s on all screensizes.":["Usar o mesmo %s em todos os tamanhos de tela."],"Large screens":["Telas grandes"],"Medium screens":["Telas médias"],"Small screens":["Telas pequenas"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Controla a propriedade %1$s para as viewports %2$s."],"Currently selected":["Selecionado no momento"],"Search or type url":["Pesquisar ou digitar a URL"],"Press ENTER to add this link":["Pressione ENTER para adicionar este link"],"Currently selected link settings":["Configurações do link selecionado no momento"],"Generic label for block inserter button\u0004Add block":["Adicionar bloco"],"directly add the only allowed block\u0004Add %s":["Adicionar %s"],"%s block added":["%s bloco adicionado"],"Move %s":["Mover %s"],"Extra Large":["Extra grande"],"Block breadcrumb":["Breadcrumb do bloco"],"Editor footer":["Editor do rodapé"],"Site Title":["Título do site"],"Open Colors Selector":["Abrir o seletor de cores"],"Templates list":["Lista de modelos"],"Templates list navigation":["Navegação da lista de modelos"],"Filter templates list":["Filtrar lista de modelos"],"Uploaded to this template":["Enviada para este modelo"],"Insert into template":["Inserir na modelo"],"Template archives":["Modelo de archives"],"No templates found in Trash.":["Nenhum modelo encontrado na lixeira."],"No templates found.":["Nenhum modelo encontrado."],"Parent Template:":["Modelo ascendente:"],"Search Templates":["Pesquisar modelos"],"All Templates":["Todos os modelos"],"View Template":["Ver modelo"],"Edit Template":["Editar modelo"],"New Template":["Novo modelo"],"Add New Template":["Adicionar novo modelo"],"Template\u0004Add New":["Adicionar novo"],"Admin Menu text\u0004Templates":["Modelos"],"Template":["Modelo"],"No matching template found":["Nenhum modelo correspondente encontrado"],"Gradient: %s":["Gradiente: %s"],"Gradient code: %s":["Código de gradiente: %s"],"All content copied.":["Todo conteúdo copiado."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["O envio de mídia falhou. Se isto for uma foto ou imagem grande, tente diminuir as dimensões e enviar novamente."],"Gradient":["Gradiente"],"Gradient Presets":["Predefinições de gradiente"],"No Preview Available.":["Sem pré-visualização disponível."],"Midnight":["Meia-noite"],"Electric grass":["Grama elétrica"],"Pale ocean":["Oceano pálido"],"Luminous dusk":["Sombra luminosa"],"Blush bordeaux":["Bordeaux corado"],"Blush light purple":["Roxo claro corado"],"Cool to warm spectrum":["Legal para entusiasmar o espectro"],"Very light gray to cyan bluish gray":["Cinza muito claro a cinza azulado"],"Luminous vivid orange to vivid red":["Laranja vívido luminoso a vermelho vívido"],"Luminous vivid amber to luminous vivid orange":["Âmbar vívido luminoso a laranja vívido luminoso"],"Light green cyan to vivid green cyan":["Ciano verde claro a ciano verde vívido"],"Vivid cyan blue to vivid purple":["Azul ciano vívido a roxo vívido"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 de dezembro de 2018"],"February 21, 2019":["21 de fevereiro de 2019"],"May 7, 2019":["7 de maio de 2019"],"Release Date":["Data de lançamento"],"Jazz Musician":["Músico de Jazz"],"Version":["Versão"],"Six.":["Seis."],"Five.":["Cinco."],"Four.":["Quatro."],"Three.":["Três."],"Two.":["Dois."],"One.":["Um."],"One of the hardest things to do in technology is disrupt yourself.":["Umas das coisas mais difíceis de fazer em tecnologia é superar você mesmo."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["O carriço
ganha a vida
silenciosamente."],"Welcome to the wonderful world of blocks…":["Damos boas-vindas ao maravilhoso mundo dos blocos..."],"Snow Patrol":["Patrulha da neve"],"Dimensions":["Dimensões"],"Minimum height in pixels":["Altura mínima em píxeis"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Chamada para ação"],"In quoting others, we cite ourselves.":["Citando outros, citamos nós mesmos."],"cite":["citar"],"Mont Blanc appears—still, snowy, and serene.":["O Mont Blanc aparece, ainda, puro e calmo."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Em uma vila de La Mancha, cujo nome não desejo me lembrar, não demorou muito tempo para que um daqueles cavalheiros mantivesse uma lança no porta-lanças, uma fivela velha, um hack magro e um galgo para percorrer."],"Block navigation":["Navegação de blocos"],"Full Site Editing":["Edição do site inteiro"],"Templates to include in your theme.":["Modelos para incluir em seu tema."],"Templates":["Modelos"],"Inserter help panel":["Painel de ajuda do adicionador"],"Pre-publish checks":["Confirmações antes de postar"],"Please contact your site administrator to install new blocks.":["Entre em contato com a administração do site para instalar novos blocos."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Nenhum bloco encontrado na sua biblioteca. Entre em contato com a administração do site para instalar novos blocos."],"No blocks found in your library.":["Nenhum bloco encontrado na sua biblioteca."],"No blocks found in your library. These blocks can be downloaded and installed:":["Nenhum bloco encontrado na sua biblioteca. Esses blocos podem ser baixados e instalados:"],"No blocks found in your library. We did find %d block available for download.":["Nenhum bloco encontrado na sua biblioteca. Encontramos %d bloco disponível para baixar.","Nenhum bloco encontrado na sua biblioteca. Encontramos %d blocos disponíveis para baixar."],"Block previews can’t load.":["Não foi possível carregar as pré-visualizações de bloco."],"Retry":["Tente Novamente"],"Block previews can't install.":["Não foi possível instalar as pré-visualizações de bloco."],"Updated %s":["%s atualizado"],"%d active installation":["%d instalação ativa","%d instalações ativas"],"This author has %d block, with an average rating of %d.":["Este autor tem %d bloco com uma classificação média de %d.","Este autor tem %d blocos com uma classificação média de %d."],"Authored by %s":["Criado por %s"],"%d total rating":["%d classificação no total","%d classificações no total"],"%s out of 5 stars":["%s de 5 estrelas"],"Enter Address":["Digite o endereço"],"Pill Shape":["Forma de pílula"],"Logos Only":["Apenas logos"],"Create a block of links to your social media or external sites":["Criar um bloco com links para redes sociais ou sites externos"],"Social links":["Links de redes sociais"],"Open block navigator":["Abrir navegador de blocos"],"Attachment page":["Página de anexo"],"Fill":["Preencher"],"Link rel":["Rel do link"],"Border Radius":["Bordas arredondadas"],"Write gallery caption…":["Escreva uma legenda para a galeria..."],"Content blocks":["Bloco de conteúdo"],"Restore the backup":["Restaurar o backup"],"The backup of this post in your browser is different from the version below.":["O backup deste post em seu navegador é diferente da versão abaixo."],"Enable block directory search":["Ativar a pesquisa no diretório de blocos"],"Block Directory":["Diretório de blocos"],"Unable to connect to the filesystem. Please confirm your credentials.":["Não foi possível conectar ao sistema de arquivos. Não deixe de confirmar as suas credenciais."],"Sorry, you are not allowed to install blocks.":["Lamentamos, você não tem permissão para instalar blocos."],"%1$d block is disabled.":["%1$d bloco está desativado.","%1$d blocos estão desativados."],"Reverse List Numbering":["Lista numerada reversa"],"Start Value":["Valor de início"],"Ordered list settings":[],"Clear Media":["Liberar mídia"],"Default Style":["Estilo padrão"],"Not set":["Não definido"],"While writing, you can press / to quickly insert new blocks.":["Ao escrever, pressione / para inserir novos blocos rapidamente."],"Browse through the library to learn more about what each block does.":["Navegue pela biblioteca para saber mais sobre o que cada bloco faz."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Existem blocos disponíveis para todos os tipos de conteúdo: texto, títulos, imagens, listas, vídeos, tabelas e muito mais."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Damos boas-vindas ao maravilhoso mundo dos blocos! Blocos são a base de todo conteúdo no editor."],"Version of the content block format used by the object.":["Versão do formato de bloco de conteúdo usado pelo objeto."],"HTML content for the object, transformed for display.":["Conteúdo HTML do objeto, transformado para exibição."],"Content for the object, as it exists in the database.":["Conteúdo para o objeto, como ele existe no banco de dados."],"The content for the object.":["O conteúdo para o objeto."],"Change column alignment":["Mudar alinhamento da coluna"],"Align Column Right":["Alinhar coluna à direita"],"Align Column Center":["Alinhar coluna ao centro"],"Align Column Left":["Alinhar coluna à esquerda"],"Color":["Cor"],"Vivid purple":["Roxo intenso"],"Disable & Reload":["Desativar e recarregar"],"Enable & Reload":["Ativar e recarregar"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Para realizar esta mudança é preciso recarregar a página. Tenha certeza de que salvou seu conteúdo antes de recarregar."],"Display these keyboard shortcuts.":["Exibir estes atalhos de teclado."],"Experiments Settings":["Configurações experimentais"],"Enable Widgets screen and Legacy Widgets block":["Ativar tela de widgets e bloco de widgets legados"],"Experimental settings":["Configurações experimentais"],"Block name name must be a string.":["O nome do bloco deve ser uma string."],"Custom":["Personalizado"],"Draft":["Rascunho"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["O bloco \"%1$s\" não contém um estilo chamado \"%2$s\"."],"Learn more about anchors":["Saiba mais sobre âncoras"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Digite uma ou duas palavras, sem espaços, para criar um endereço único para este título, chamado \"âncora\". Então, você poderá apontar diretamente para esta seção da sua página."],"Widget Blocks (Experimental)":["Blocos de widget (experimental)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Envie um arquivo de vídeo, escolha um da sua biblioteca de mídia ou adicione um URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Envie uma imagem, escolha uma da sua biblioteca de mídia ou adicione um URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Envie um arquivo de áudio, escolha um da sua biblioteca de mídia ou adicione um URL."],"Upload a media file or pick one from your media library.":["Envie um arquivo de mídia ou escolha um da sua biblioteca de mídia."],"Skip":["Pular"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":["Adicione uma página, um link ou outros itens para navegação do seu site."],"What's this?":["O que é isso?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Não permita que mecanismos de pesquisa sigam este link."],"Provide more context about where the link goes.":["Adicione mais contexto sobre o endereço do link."],"Title Attribute":["Atributo do título"],"SEO settings":[],"Description":["Descrição"],"Open in new tab":["Abrir em uma nova aba"],"links":["links"],"navigation":["navegação"],"menu":["menu"],"Add a navigation block to your site.":["Adicione um bloco de navegação ao seu site."],"Upload a file or pick one from your media library.":["Envie um arquivo ou escolha um da sua biblioteca de mídia."],"Learn more about embeds":["Saiba mais sobre códigos incorporados"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Cole um link para o conteúdo que você deseja exibir no seu site."],"Upload an image or video file, or pick one from your media library.":["Envie uma imagem, um arquivo de vídeo ou escolha um da sua biblioteca de mídia."],"Three columns; wide center column":["Três colunas com a do meio maior"],"Three columns; equal split":["Três colunas iguais"],"Two columns; two-thirds, one-third split":["Duas colunas divididas em dois terços e um terço"],"Two columns; one-third, two-thirds split":["Duas colunas divididas em um terço e dois terços"],"Two columns; equal split":["Duas colunas iguais"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Seu site ainda não tem nenhum termo para %s, portanto não há o que exibir aqui por enquanto."],"More tools & options":["Mais ferramentas e opções"],"Create Table":["Criar tabela"],"Insert a table for sharing data.":["Insira uma tabela para compartilhar dados."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Desagrupar"],"verb\u0004Group":["Agrupar"],"Separate with commas or the Enter key.":["Separe com vírgulas ou com a tecla Enter."],"Separate with commas, spaces, or the Enter key.":["Separe com vírgulas, espaços, ou a tecla Enter."],"Separate multiple classes with spaces.":["Separe várias classes com espaços."],"Move image forward":["Mover imagem para frente"],"Move image backward":["Mover imagem para trás"],"Sorry, you are not allowed to edit sidebars.":["Sem permissão para editar barras laterais."],"Sorry, you are not allowed to read sidebars.":["Sem permissão para ver barras laterais."],"The sidebar’s ID.":["O ID da barra lateral."],"Displays a set of blocks":["Exibe um conjunto de blocos"],"Blocks Area":["Área de blocos"],"Block rendered as empty.":["Bloco exibido como vazio."],"Inline Code":["Código em linha"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Atenção: A reprodução automática de vídeos pode causar problemas de usabilidade para alguns visitantes."],"Footer section":["Seção do rodapé"],"Header section":["Seção do cabeçalho"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Conteúdo do post"],"Post content settings":[],"Percentage width":["Porcentagem da largura"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Atenção: A reprodução automática de arquivos de áudio pode causar problemas de usabilidade para alguns visitantes."],"Block area updated.":["Área de blocos atualizada."],"Block area scheduled.":["Área de blocos agendada."],"Block area published.":["Área de blocos publicada."],"Block areas list":["Lista de áreas de blocos"],"Block areas list navigation":["Navegação da lista de áreas de blocos"],"Filter block areas list":["Filtrar lista de áreas de blocos"],"No block area found.":["Nenhuma área de blocos encontrada."],"Search Block Areas":["Pesquisar áreas de blocos"],"All Block Areas":["Todas as áreas de blocos"],"View Block Area":["Ver área de blocos"],"Edit Block Area":["Editar área de blocos"],"New Block Area":["Nova área de blocos"],"Add New Block Area":["Adicionar nova área de blocos"],"admin menu\u0004Block Areas":["Áreas de blocos"],"post type singular name\u0004Block Area (Experimental)":["Área de blocos (Experimental)"],"post type general name\u0004Block Area (Experimental)":["Área de blocos (Experimental)"],"Experimental custom post type that will store block areas referenced by themes.":["Tipo de post personalizado e experimental que armazena áreas de blocos definidas pelos temas."],"Widgets screen content":["Conteúdo da tela de widgets"],"header":["cabeçalho"],"Widgets advanced settings":["Configurações avançadas dos widgets"],"(experimental)":["(experimental)"],"Block Areas":["Áreas de blocos"],"Widgets screen top bar":["Barra superior da tela de widgets"],"This color combination may be hard for people to read.":["Esta combinação de cores pode dificultar a leitura."],"There is no poster image currently selected":["Nenhuma imagem do poster selecionada no momento"],"The current poster image url is %s":["O URL da imagem do poster é %s"],"section":["seção"],"row":["linha"],"wrapper":["invólucro"],"container":["contêiner"],"A block that groups other blocks.":["Um bloco que agrupa outros blocos."],"Group":["Grupo"],"Crop image to fill entire column":["Recortar a imagem para preencher toda a coluna"],"Play inline":["Reproduzir sem abrir em tela cheia"],"Leave empty if the image is purely decorative.":["Deixe vazio se a imagem for apenas decorativa."],"Describe the purpose of the image":["Descreva o propósito da imagem"],"Add a block":["Adicionar um bloco"],"Block vertical alignment setting label\u0004Change vertical alignment":["Mudar alinhamento vertical"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Alinhar verticalmente embaixo"],"Block vertical alignment setting\u0004Vertically Align Middle":["Alinhar verticalmente no meio"],"Replace Image":["Substituir imagem"],"Block vertical alignment setting\u0004Vertically Align Top":["Alinhar verticalmente em cima"],"Display a legacy widget.":["Exibir um widget legado."],"Legacy Widget (Experimental)":["Widget legado (Experimental)"],"Change widget":["Mudar widget"],"Legacy Widget":["Widget legado"],"You don't have permissions to use widgets on this site.":["Sem permissão para usar widgets neste site."],"Select a legacy widget to display:":["Selecione um widget legado para exibir:"],"There are no widgets available.":["Não há widgets disponíveis."],"Change block type or style":["Mude o tipo ou o estilo do bloco"],"keyboard key\u0004Space":["Espaço"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Mais controles de formatação de texto"],"Search Terms":["Pesquisar termos"],"Exit the Editor":["Sair do editor"],"Block Manager":["Gerenciador de blocos"],"Class name of the widget.":["Nome da classe do widget."],"Sorry, you are not allowed to access widgets on this site.":["Sem permissão para acessar widgets neste site."],"Widgets (beta)":["Widgets (beta)"],"link":["link"],"Embedded content from %s can't be previewed in the editor.":["O conteúdo incorporado de %s não pode ser pré-visualizado no editor."],"Custom Color":["Cor personalizada"],"Prompt visitors to take action with a button-style link.":["Solicite que os visitantes executem uma ação com um link no estilo de botão."],"Stick to the top of the blog":["Fixar no topo do blog"],"Read about permalinks":["Leia mais sobre links permanentes"],"The last part of the URL.":["A última parte do URL."],"URL Slug":["Slug do URL"],"A cloud of your most used tags.":["Uma nuvem com as tags mais usadas."],"Tag Cloud":["Nuvem de tags"],"Taxonomy":["Taxonomia"],"Tag Cloud settings":[],"- Select -":["- Selecionar -"],"Default":["Padrão"],"find":["busca"],"Help visitors find your content.":["Ajude os visitantes a encontrar seu conteúdo."],"Search":["Pesquisar"],"Add button text…":["Adicione o texto do botão..."],"Button text":["Texto do botão"],"Optional placeholder…":["Texto de marcação opcional…"],"Optional placeholder text":["Texto de marcação opcional"],"Add label…":["Adicionar rótulo…"],"Label text":["Texto do rótulo"],"image %1$d of %2$d in gallery":["imagem %1$d de %2$d na galeria"],"archive":["arquivo"],"posts":["posts"],"A calendar of your site’s posts.":["Um calendário com os posts do seu site."],"Calendar":["Calendário"],"by":["por"],"An error has occurred, which probably means the feed is down. Try again later.":["Ocorreu um erro, provavelmente porque o feed não está disponível no momento. Tente mais tarde."],"RSS Error:":["Erro de RSS:"],"block style\u0004Default":["Padrão"],"Fullscreen mode deactivated":["Modo de tela cheia desativado"],"Fullscreen mode activated":["Modo de tela cheia ativado"],"Spotlight mode deactivated":["Modo sem distrações desativado"],"Spotlight mode activated":["Modo sem distrações ativado"],"Top toolbar deactivated":["Barra de ferramentas superior desativada"],"Top toolbar activated":["Barra de ferramentas superior ativada"],"Back":["Voltar"],"Feature activated":["Recurso ativado"],"Feature deactivated":["Recurso desativado"],"Vertical Pos.":["Pos. vertical"],"Horizontal Pos.":["Pos. horizontal"],"feed":["feed"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Exibir posts a partir de qualquer feed RSS ou Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Número máximo de palavras no resumo"],"Display excerpt":["Exibir resumo"],"Display date":["Exibir data"],"Display author":["Exibir autor"],"RSS settings":[],"Edit RSS URL":["Editar URL do RSS"],"Content before this block will be shown in the excerpt on your archives page.":["O conteúdo antes deste bloco será usado como resumo nas suas páginas de arquivo."],"Hide the excerpt on the full content page":["Ocultar o resumo na página completa do conteúdo"],"The excerpt is visible.":["O resumo está visível."],"The excerpt is hidden.":["O resumo está oculto."],"Sorry, this content could not be embedded.":["Não foi possível incorporar o conteúdo."],"Embed Amazon Kindle content.":["Incorpore conteúdo do Amazon Kindle."],"ebook":["e-book"],"Embed Crowdsignal (formerly Polldaddy) content.":["Incorpore conteúdo do Crowdsignal (anteriormente conhecido como Polldaddy)."],"Focal Point Picker":["Seletor de ponto focal"],"Underline":["Sublinhado"],"Attempt Block Recovery":["Tentar restaurar o bloco"],"Word count type. Do not translate!\u0004words":["palavras"],"content placeholder\u0004Content…":["Conteúdo..."],"button label\u0004Convert to link":["Converter para link"],"button label\u0004Try again":["Tente novamente"],"Editor tips":["Dicas de edição"],"Block (selected)":["Bloco (selecionado)"],"Document (selected)":["Documento (selecione)"],"%d word":["%d Palavra","%d Palavras"],"Top toolbar":["Barra de ferramentas superior"],"Link Rel":["Link rel"],"Link CSS Class":["Classe CSS do link"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Crie conteúdo e salve-o para você e outros colaboradores o reutilizarem em seu site. Atualize o bloco e as alterações serão aplicadas em todos os lugares em que ele é usado."],"To edit the featured image, you need permission to upload media.":["Para editar a imagem em destaque, você precisa de permissão para enviar mídia."],"To edit this block, you need permission to upload media.":["Para editar este bloco, você precisa de permissão para enviar mídia."],"(selected block)":["(bloco selecionado)"],"Block tools":["Ferramentas de bloco"],"Permalink":["Link permanente"],"This image has an empty alt attribute":["Esta imagem possuí um atributo alt vazio"],"This image has an empty alt attribute; its file name is %s":["Esta imagem possuí um atributo alt vazio; O nome do arquivo é %s"],"Block area reverted to draft.":["Área de bloco revertida para rascunho."],"Block area published privately.":["Bloco publicado em modo privado."],"No block areas found in Trash.":["Nenhum bloco encontrado na lixeira."],"Block\u0004Add New":["Adicionar novo"],"add new on admin bar\u0004Block Area":["Área de bloco"],"Link inserted.":["Link inserido."],"Warning: the link has been inserted but may have errors. Please test it.":["Atenção: o link foi inserido mas pode conter erros. Faça um teste."],"%s block selected.":["%s bloco selecionado.","%s blocos selecionados."],"Thumbnail":["Miniatura"],"Full Size":["Tamanho completo"],"Link selected.":["Link selecionado."],"Start writing with text or HTML":["Iniciar escrevendo como texto ou HTML"],"Type text or HTML":["Digite texto ou HTML"],"Block icon":["Ícone de bloco"],"Align text right":["Alinhar texto à direita"],"Align text center":["Alinhar texto ao centro"],"Align text left":["Alinhar texto à esquerda"],"Start writing or type / to choose a block":["Comece a escrever ou digite / para escolher um bloco"],"Empty block; start writing or type forward slash to choose a block":["Bloco vazio; comece a escrever ou digite / para escolher um bloco."],"Paragraph block":["Bloco de parágrafo"],"Page Break":["Quebra de página"],"Stack on mobile":["Empilhar nos dispositivos móveis"],"Annotation":["Anotação"],"Drag images, upload new ones or select files from your library.":["Arraste imagens, envie novas ou selecione arquivos da sua biblioteca."],"blocks\u0004Most used":["Mais usados"],"imperative verb\u0004Resolve":["Resolver"],"font size name\u0004Huge":["Enorme"],"font size name\u0004Large":["Grande"],"font size name\u0004Medium":["Médio"],"font size name\u0004Small":["Pequeno"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importar"],"button label\u0004Download":["Baixar"],"button label\u0004Embed":["Incorporar"],"block title\u0004Embed":["Incorporar"],"block title\u0004Classic":["Clássico"],"block style\u0004Large":["Grande"],"block style\u0004Rounded":["Arredondado"],"%s (opens in a new tab)":["%s (abre em uma nova aba)"],"Link edited.":["Link editado."],"Link removed.":["Link removido."],"media":["mídia"],"Double-check your settings before publishing.":["Confira suas configurações antes de publicar."],"Generating preview…":["Gerando pré-visualização..."],"Edit or update the image":["Editar ou atualizar a imagem"],"Media":["Mídia"],"Navigate to the nearest toolbar.":["Navegue para a caixa de ferramentas mais próxima."],"Document tools":["Ferramentas do documento"],"Document and block tools":["Ferramentas do documento e bloco"],"Embed a video from your media library or upload a new one.":["Incorpore um video da sua biblioteca de mídias ou envie um novo."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Escreva poesia. Use um formato de espaçamento especial. Ou cite letras de músicas."],"Add white space between blocks and customize its height.":["Adicionar espaço em branco entre blocos e personalizar sua altura."],"Insert additional custom elements with a WordPress shortcode.":["Adicione elementos personalizados com um shortcode do WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Crie quebras entre ideias ou seções com um separador horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Dê ênfase visual ao texto de citação. \"Ao citarmos outros, nós nos mencionamos.\" - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Dê uma ênfase visual especial a uma citação do seu texto."],"Start with the building block of all narrative.":["Comece com o bloco fundamental de toda a narrativa."],"Separate your content into a multi-page experience.":["Separe seu conteúdo em uma experiência multipágina."],"Set media and words side-by-side for a richer layout.":["Coloque mídia e texto lado a lado para um visual mais rico."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Crie uma lista com marcadores ou numerada."],"Display a list of your most recent comments.":["Exibe uma lista dos seus comentários mais recentes."],"Insert an image to make a visual statement.":["Insira uma imagem para ilustrar suas ideias."],"Add custom HTML code and preview it as you edit.":["Adicione um código HTML personalizado e visualize-o à medida que você edita."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introduza novas seções e organize seu conteúdo para ajudar os visitantes (e mecanismos de pesquisa) a entenderem a estrutura do seu conteúdo."],"Display multiple images in a rich gallery.":["Exiba múltiplas imagens em formato de galeria."],"Add a link to a downloadable file.":["Adicione um link para baixar um arquivo."],"Embed videos, images, tweets, audio, and other content from external sources.":["Incorporar vídeos, imagens, tweets, áudio, e outros conteúdos de links externos"],"Resize for smaller devices":["Redimensionar para dispositivos menores"],"This embed may not preserve its aspect ratio when the browser is resized.":["Essa incorporação não preservará sua proporção quando o navegador for redimensionado."],"This embed will preserve its aspect ratio when the browser is resized.":["Essa incorporação preservará sua proporção quando o navegador for redimensionado."],"Embed an Animoto video.":["Incorporar um vídeo do Animoto."],"Embed a Vimeo video.":["Incorporar um vídeo do Vimeo."],"Embed Flickr content.":["Incorporar um conteúdo do Flickr."],"Embed Spotify content.":["Incorporar conteúdo do Spotify."],"Embed SoundCloud content.":["Incorporar conteúdo do SoundCloud."],"Embed a WordPress post.":["Incorporar um post do WordPress."],"Embed an Instagram post.":["Incorporar um post do Instagram."],"Embed a Facebook post.":["Incorporar um post do Facebook."],"Embed a WordPress.tv video.":["Incorporar um vídeo do WordPress.tv."],"Embed a VideoPress video.":["Incorporar um vídeo do VideoPress."],"Embed a Tumblr post.":["Incorporar um post do Tumblr."],"Embed a TED video.":["Incorporar um vídeo TED."],"Embed Speaker Deck content.":["Incorporar conteúdo Speaker Deck."],"Embed a YouTube video.":["Incorporar um vídeo do YouTube."],"Embed SmugMug content.":["Incorporar conteúdo SmugMug."],"Embed Slideshare content.":["Incorporar conteúdo Slideshare."],"Embed Scribd content.":["Incorporar conteúdo Scribd."],"Embed Screencast content.":["Incorporar conteúdo Screencast."],"Embed ReverbNation content.":["Incorporar conteúdo ReverbNation."],"Embed a Reddit thread.":["Incorpore uma discussão do Reddit."],"Embed Polldaddy content.":["Incorporar conteúdo Polldaddy."],"Embed Mixcloud content.":["Incorporar conteúdo Mixcloud."],"Embed a tweet.":["Incorporar um tweet."],"Embed Meetup.com content.":["Incorporar conteúdo Meetup.com."],"Embed Kickstarter content.":["Incorpore conteúdo do Kickstarter."],"Embed Issuu content.":["Incorporar conteúdo do Issuu."],"Embed Imgur content.":["Incorporar conteúdo do Imgur."],"Embed Hulu content.":["Incorporar conteúdo do Hulu."],"Embed a Dailymotion video.":["Incorporar um vídeo do Dailymotion."],"Embed CollegeHumor content.":["Incorpore conteúdo do CollegeHumor."],"Embed Cloudup content.":["Incorporar conteúdo do Cloudup."],"Add an image or video with a text overlay — great for headers.":["Adicionar uma imagem ou vídeo com um texto sobreposto — ótimo para cabeçalhos."],"Display code snippets that respect your spacing and tabs.":["Exiba trechos de código respeitando seu espaçamento e tabulação."],"Use the classic WordPress editor.":["Use o editor clássico do WordPress."],"Display a list of all categories.":["Exibe uma lista de todas as categorias."],"Embed a simple audio player.":["Incorporar o reprodutor de áudio simples."],"noun\u0004View":["Visualização"],"editor button\u0004Left to right":["Esquerda para a direita"],"Save as Pending":["Salvar como pendente"],"%s address":["%s endereço"],"Paste or type URL":["Colar ou digitar URL"],"Insert from URL":["Inserir a partir de um URL"],"Block Navigator":["Bloco de navegação"],"Styles":["Estilos"],"Advanced panels":["Painéis avançados"],"Document panels":["Painéis do documento"],"General":["Geral"],"Open the block navigation menu.":["Abre o menu de navegação entre blocos."],"Work without distraction":["Trabalhe sem distração"],"Focus on one block at a time":["Concentre-se em um bloco de cada vez"],"Access all block and document tools in a single place":["Acesse todas as ferramentas de blocos e documento em um só lugar."],"Options":["Opções"],"(opens in a new tab)":["(abrir em uma nova aba)"],"Minutes":["Minutos"],"Hours":["Horas"],"Time":["Tempo"],"Year":["Ano"],"Day":["Dia"],"December":["Dezembro"],"November":["Novembro"],"October":["Outubro"],"September":["Setembro"],"August":["Agosto"],"July":["Julho"],"June":["Junho"],"May":["maio"],"April":["Abril"],"March":["Março"],"February":["Fevereiro"],"January":["Janeiro"],"Month":["Mês"],"Date":["Data"],"Go to the first (home) or last (end) day of a week.":["Vá para o primeiro [Home] ou último [End] dia de uma semana."],"Home/End":["Início/fim"],"Home and End":["Início e fim"],"Move backward (PgUp) or forward (PgDn) by one month.":["Navegue para o mês anterior [PageUp] ou o mês seguinte [PageDown]."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["[PageUp] e [PageDown]"],"Move backward (up) or forward (down) by one week.":["Navegue para a semana anterior (cima) ou para a seguinte (baixo)."],"Up and Down Arrows":["Setas para cima e para baixo [↑] [↓]"],"Move backward (left) or forward (right) by one day.":["Navegue para o dia anterior (esquerda) ou posterior (direita)."],"Left and Right Arrows":["Setas para a esquerda [←] e para a direita [→]"],"Select the date in focus.":["Seleciona a data em foco."],"Navigating with a keyboard":["Navegando com o teclado"],"Click the desired day to select it.":["Clique no dia desejado para selecioná-lo."],"Click the right or left arrows to select other months in the past or the future.":["Use as setas para a esquerda ou para a direita para selecionar outros meses no passado ou no futuro."],"Click to Select":["Clique para selecionar"],"Calendar Help":["Ajuda do calendário"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Use as setas para mudar a cor base. Seta para cima clareia a cor e para baixo, escurece; para a esquerda diminui a saturação e para direita, aumenta."],"Choose a shade":["Escolha uma sombra"],"Change color format":["Alterar o formato da cor"],"Color value in HSL":["Cor em HSL"],"Color value in RGB":["Cor em RGB"],"Color value in hexadecimal":["Cor em hexadecimal"],"RGB mode active":["Modo RGB ativo"],"Hex color mode active":["Modo de cor em hexadecimal ativo"],"Hue/saturation/lightness mode active":["Modo Matiz/Saturação/Brilho (HSL) ativado"],"Move the arrow left or right to change hue.":["Clique nas setas para esquerda ou para a direita para alterar o matiz."],"Hue value in degrees, from 0 to 359.":["Valor do matiz em graus, de 0 a 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valor do canal alfa, de 0 (transparente) para 1 (totalmente opaco)."],"Stripes":["Listras"],"Your site doesn’t include support for this block.":["Seu site não inclui suporte para este bloco."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Seu site não inclui o suporte para o bloco \"%s\". Você pode deixar esse bloco como está ou removê-lo totalmente."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Seu site não inclui o suporte para o bloco \"%s\". Você pode deixar esse bloco como está, pode convertê-o para um bloco de HTML personalizado ou removê-lo totalmente."],"Media area":["Área de mídia"],"Media & Text":["Mídia e texto"],"Show media on right":["Mostrar mídia à direita"],"Show media on left":["Mostrar mídia à esquerda"],"Open in New Tab":["Abrir em uma nova aba"],"Cover":["Cobertura"],"Border settings":[],"Medium":["Médio"],"Paste URL or type to search":["Cole URL ou digite para pesquisar"],"Terms":["Termos"],"Your work will be published at the specified date and time.":["Seu conteúdo será publicado na data e hora especificadas."],"Are you ready to schedule?":["Você está pronto para agendar?"],"Always show pre-publish checks.":["Sempre mostrar as verificações da pré-publicação."],"Take Over":["Assumir o controle"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Outro usuário está trabalhando neste post, o que significa que você não pode fazer alterações, a menos que você assuma o controle."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s está atualmente trabalhando neste post, o que significa que você não pode fazer alterações, a menos que você assuma o controle."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Outro usuário agora tem o controle de edição desse post. Não se preocupe, suas alterações até o momento foram salvas."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s agora tem o controle de edição deste post. Não se preocupe, suas alterações até o momento foram salvas."],"Avatar":["Avatar"],"This post is already being edited.":["Este post já está sendo editado."],"Someone else has taken over this post.":["Alguém assumiu este post."],"This block contains unexpected or invalid content.":["Este bloco contém conteúdo inesperado ou inválido."],"Resolve Block":["Resolver bloco"],"Convert to HTML":["Converter para HTML"],"This block can only be used once.":["Este bloco só pode ser usado uma vez."],"Exit Code Editor":["Sair do editor de código"],"Editing Code":["Editando o código"],"Solid Color":["Cor sólida"],"Main Color":["Cor principal"],"HTML":["HTML"],"Write HTML…":["Escreva HTML…"],"Media settings":[],"Overlay":["Sobreposição"],"Insert Media":["Inserir mídia"],"Reusable block imported successfully!":["Bloco reutilizável importado!"],"Invalid Reusable Block JSON file":["Arquivo JSON de bloco reutilizável inválido"],"Invalid JSON file":["Arquivo JSON inválido"],"Import from JSON":["Importar de JSON"],"Backtick":["Acento grave"],"Period":["Ponto"],"Comma":["Vírgula"],"Change type of %d block":["Mudar tipo de %d bloco","Mudar tipo de %d blocos"],"Current":["Atual"],"After Conversion":["Depois da conversão"],"Change alignment":["Mudar alinhamento"],"Change text alignment":["Mudar alinhamento do texto"],"%d block":["%d bloco","%d blocos"],"Forward-slash":["Barra"],"No archives to show.":["Não há arquivos para mostrar."],"This file is empty.":["O arquivo está vazio."],"Sorry, this file type is not supported here.":["Não há suporte aqui para este tipo de arquivo."],"Manage all reusable blocks":["Gerenciar todos os blocos reutilizáveis"],"Title":["Título"],"Fullscreen mode":["Modo tela cheia"],"Beautiful landscape":["Linda paisagem"],"Close panel":["Fechar o painel"],"Convert to Classic Block":["Converter para o bloco Clássico"],"Remove Poster Image":["Remover imagem de capa"],"Select Poster Image":["Selecionar imagem de capa"],"Poster Image":["Imagem de capa"],"This block is deprecated. Please use the Columns block instead.":["Esse bloco está obsoleto. Use o bloco Colunas no lugar dele."],"Text Columns (deprecated)":["Colunas de texto (obsoleto)"],"Create":["Criar"],"Row Count":["Quantidade de linhas"],"Column Count":["Quantidade de colunas"],"This block is deprecated. Please use the Paragraph block instead.":["Esse bloco está obsoleto. Use o bloco Parágrafo no lugar dele."],"Subheading (deprecated)":["Subtítulo (obsoleto)"],"blockquote":["citação"],"Change the block type after adding a new paragraph.":["Mude o tipo de bloco após adicionar um novo parágrafo."],"Spotlight mode":["Modo sem distrações"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["As tags ajudam os usuários e os mecanismos de pesquisa a navegar no seu site e encontrar o seu conteúdo. Adicione algumas palavras-chave para descrever seu post."],"Add tags":["Adicionar tags"],"Apply the \"%1$s\" format.":["Aplicar o formato \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Seu tema usa formatos de postagem para destacar diferentes tipos de conteúdo, como imagens ou vídeos. Aplique um formato de post para ver este estilo especial."],"Use a post format":["Use um formato de post"],"Insert After":["Inserir depois"],"Insert Before":["Inserir antes"],"Move %1$d block from position %2$d down by one place":["Mover %1$d bloco da posição %2$d para baixo uma posição","Mover %1$d blocos da posição %2$d para baixo uma posição"],"Move %1$d block from position %2$d up by one place":["Mover %1$d bloco da posição %2$d para cima uma posição","Mover %1$d blocos da posição %2$d para cima uma posição"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["filme"],"Insert a new block before the selected block(s).":["Inserir um novo bloco antes do(s) bloco(s) selecionado(s)."],"Remove the selected block(s).":["Remover o(s) bloco(s) selecionado(s)."],"Duplicate the selected block(s).":["Duplicar o(s) bloco(s) selecionado(s)."],"Block shortcuts":["Atalhos de teclado dos blocos"],"Clear selection.":["Limpar seleção."],"Select all text when typing. Press again to select all blocks.":["Selecionar todo o texto durante a digitação. Pressionar novamente para selecionar todos blocos."],"Selection shortcuts":["Atalhos para seleção"],"Switch between Visual editor and Code editor.":["Alternar entre editor visual e de código."],"Navigate to the previous part of the editor.":["Navegar para a parte anterior do editor."],"Navigate to the next part of the editor.":["Navegar para a próxima parte do editor."],"Show or hide the settings sidebar.":["Mostrar ou ocultar a barra lateral de configurações."],"Redo your last undo.":["Refaz seu último desfazer."],"Undo your last changes.":["Desfaz as últimas alterações."],"Save your changes.":["Salvar suas alterações."],"Global shortcuts":["Atalhos globais"],"Remove a link.":["Remover um link."],"Convert the selected text into a link.":["Converter o texto selecionado em um link."],"Underline the selected text.":["Sublinhar o texto selecionado."],"Make the selected text italic.":["Tornar itálico o texto selecionado."],"Make the selected text bold.":["Tornar negrito o texto selecionado."],"Text formatting":["Formatação de texto"],"Insert a new block after the selected block(s).":["Inserir um novo bloco após o(s) bloco(s) selecionado(s)."],"Keyboard shortcuts":["Atalhos do teclado"],"Thanks for testing Gutenberg!":["Obrigado por testar o Gutenberg!"],"Help build Gutenberg":["Ajude a construir o Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Se você quiser saber mais sobre como criar blocos adicionais ou se estiver interessado em ajudar no projeto, acesse o repositório do GitHub."],"The WordPress community":["A comunidade WordPress"],"Code is Poetry":["Código é poesia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Você consegue montar o bloco que quiser, estático ou dinâmico, decorativo ou simples. Aqui vai um bloco com citação em destaque:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Qualquer bloco pode usar estes alinhamentos, até o bloco de mídias incorporadas, que já é responsivo por padrão:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["A galeria acima tem somente duas imagens. É uma maneira mais fácil de ter um visual atraente, sem ter que lidar com floats, um código CSS que pode ser bem complicado. Você também pode facilmente converter a galeria de volta a imagens individuais, usando o botão de transformação de blocos."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["É claro que uma imagem ocupando a largura total pode ficar muito grande. Mas às vezes a imagem vale a pena."],"Accessibility is important — don’t forget image alt attribute":["A acessibilidade é importante — não se esqueça dos atributos alt de imagem"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Se você combinar os novos alinhamentos largura ampla e largura total com galerias, você pode criar uma boa apresentação visual muito rapidamente:"],"Media Rich":["Rico em mídia"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Você pode mudar a quantidade de colunas em suas galerias mexendo no controle deslizante do inspetor de bloco da barra lateral."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Os blocos podem ser qualquer coisa que você precisar. Por exemplo, você pode querer adicionar uma citação tímida como parte da composição do texto, ou talvez prefira exibir uma em estilo gigante. Todas essas opções estão disponíveis no adicionador."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["A informação que corresponde à origem da citação é um campo separado, similar às legendas sob as imagens, de forma que a estrutura da citação esteja sempre certa, mesmo que você selecione, modifique ou remova essa origem. Também fica fácil adicioná-la de volta."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["O editor se propõe a criar uma nova experiência de construção de posts e páginas, facilitando a criação conteúdos mais elaborados. Ele tem \"blocos\" para facilitar aquilo que atualmente envolveria shortcodes, HTML personalizados ou uma confusão de elementos incorporados."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Uma enorme vantagem dos blocos é que você consegue editá-los no lugar e manipular o conteúdo deles diretamente. Em vez de ter campos para editar, por exemplo, o código de uma citação ou o texto de um botão, você pode alterar o conteúdo diretamente. Experimente editar a seguinte citação:"],"Visual Editing":["Edição visual"],"And Lists like this one of course :)":["E listas como esta aqui, é claro :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blocos de layout, botões de curtir, imagens em destaque, separadores etc."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Incorporados, como YouTube, Tweets ou outros posts do WordPress."],"Galleries":["Galerias"],"Images & Videos":["Imagens & vídeos"],"Text & Headings":["Textos & títulos"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Experimente, você pode descobrir coisas que o WordPress já é capaz de adicionar nos seus posts e que você nem sabia. Aqui vai uma lista do que você já pode encontrar:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Imagine tudo o que o WordPress pode fazer, está disponível para você rapidamente e no mesmo lugar na interface. Sem necessidade de lembrar sobre tags de HTML, classes ou lembrar da sintaxe complicada de shortcodes. Esse é o espírito por trás do adicionador, o botão (+)
que você verá pelo editor, que permite navegar em todos os blocos de conteúdo disponíveis e adicioná-los ao seu post. Plugins e temas são capazes de registrar os seus próprios, abrindo todo o tipo de possibilidades para edição e publicação."],"The Inserter Tool":["A ferramenta de adição"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Tente selecionar e remover ou editar a legenda. Agora você não precisa se preocupar com selecionar por engano a imagem ou outro texto e com isso estragar a apresentação."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Se o seu tema permitir, você verá um botão \"largo\" na barra de ferramentas da imagem. Experimente."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Lidar com imagens e mídias com todo o cuidado é um dos focos básicos do novo editor. Esperamos que você ache bem mais fácil do que antes a maneira de adicionar legendas ou exibir as imagens em tela cheia."],"A Picture is Worth a Thousand Words":["Uma imagem vale por mil palavras"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Os títulos também são blocos separados, o que ajuda no esboço e organização do seu conteúdo."],"... like this one, which is right aligned.":["...como este aqui, que é alinhado à direita."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["O que você está lendo agora é um bloco de texto, o bloco mais básico de todos. O bloco de texto tem seus próprios controles para que seja movimentado livremente pelo post..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["O objetivo deste novo editor é tornar a inclusão de conteúdo rico no WordPress simples e agradável. Este post é todo composto de pedaços de conteúdo — algo parecido com os blocos LEGO — que você pode movimentar e com eles, interagir. Movimente o cursor pela tela e você vai notar que os vários blocos são ressaltados por linhas e setas. Clique nas setas para reposicionar os blocos rapidamente, sem o medo de perder alguma coisa no processo de copiar e colar."],"Of Mountains & Printing Presses":["Sobre montanhas e primeiras impressões"],"Welcome to the Gutenberg Editor":["Bem-vindo ao editor Gutenberg"],"block name\u0004More":["Leia mais"],"button to expand options\u0004More":["Mais"],"Are you sure you want to unschedule this post?":["Tem certeza de que deseja desagendar este post?"],"Alt Text (Alternative Text)":["Texto alt (texto alternativo)"],"Reusable Block":["Bloco reutilizável"],"Unique identifier for the object.":["Identificador único para o objeto."],"Untitled Reusable Block":["Bloco reutilizável sem título"],"Small":["Pequeno"],"Reusable":["Reutilizável"],"Remove from Reusable blocks":["Remover dos blocos reutilizáveis"],"Add to Reusable blocks":["Adicionar aos blocos reutilizáveis"],"Keep as HTML":["Manter como HTML"],"Edit URL":["Editar URL"],"Color settings":[],"The response is not a valid JSON response.":["A resposta não é um JSON válido."],"Editor publish":["Publicação do editor"],"Muted":["Mudo"],"Video settings":[],"recent comments":["comentários recentes"],"Latest Comments":["Comentários mais recentes"],"Display Excerpt":["Exibir resumo"],"Display Date":["Exibir data"],"Display Avatar":["Mostrar avatar"],"Latest comments settings":[],"Number of Comments":["Número de comentários"],"Background Opacity":["Opacidade do fundo"],"Auto":["Auto"],"Preload":["Pré-carregar"],"Audio settings":[],"Display a monthly archive of your posts.":["Exibir um arquivo mensal de seus posts."],"Display as Dropdown":["Exibir como menu suspenso"],"Show Post Counts":["Mostrar contagens de post"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Suporte"],"No comments to show.":["Nenhum comentário para mostrar."],"%1$s on %2$s":["%1$s em %2$s"],"Select Post":["Selecionar post"],"Select Week":["Selecionar semana"],"Select Day":["Selecione o dia"],"Select Month":["Selecione o mês"],"Select Year":["Selecione o ano"],"Archives":["Arquivos"],"Very dark gray":["Cinza muito escuro"],"Cyan bluish gray":["Cinza ciano azulado"],"Very light gray":["Cinza muito claro"],"Vivid cyan blue":["Azul ciano vívido"],"Pale cyan blue":["Azul ciano pálido"],"Vivid green cyan":["Verde ciano vívido"],"Light green cyan":["Verde ciano claro"],"Luminous vivid amber":["Âmbar luminoso vívido"],"Luminous vivid orange":["Laranja vívido luminoso"],"Vivid red":["Vermelho vívido"],"Pale pink":["Rosa pálido"],"Inline image":["Imagem em linha"],"Available block types":["Tipos de bloco disponíveis"],"Transform To:":["Transformar para:"],"Remove Block":["Remover bloco"],"Open publish panel":["Abrir o painel de publicação"],"Dots":["Pontos"],"Wide Line":["Linha Larga"],"Large":["Grande"],"Show download button":["Mostrar botão de baixar"],"Download button settings":["Configurações do botão de baixar"],"Link To":["Apontar para"],"Text link settings":["Configurações de link de texto"],"download":["baixar"],"pdf":["pdf"],"document":["documento"],"Copy URL":["Copiar URL"],"Write file name…":["Escreva o nome do arquivo..."],"File":["Arquivo"],"A single column within a columns block.":["Uma única coluna dentro de um bloco de colunas."],"Column":["Coluna"],"Outline":["Contorno"],"Loop":["Loop"],"Autoplay":["Reprodução automática"],"Playback Controls":["Controles de reprodução"],"Close dialog":["Fechar janela"],"Sorry, this file type is not permitted for security reasons.":["Este tipo de arquivo não é permitido por razões de segurança."],"Disable tips":["Desativar dicas"],"Got it":["Entendi"],"See next tip":["Ver próxima dica"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Quando estiver pronto, envie a publicação para revisão para que um editor possa aprová-la."],"Are you ready to submit for review?":["Você está pronto para enviar para revisão?"],"Replace image":["Substituir imagem"],"Remove image":["Remover a imagem"],"Error while uploading file %s to the media library.":["Ocorreu um erro ao enviar o arquivo %s para a biblioteca de mídia."],"This file exceeds the maximum upload size for this site.":["O arquivo excedeu o tamanho máximo de envio para esse site."],"View the autosave":["Ver o salvamento automático"],"There is an autosave of this post that is more recent than the version below.":["Existe uma versão salva automaticamente desta publicação que é mais recente do que a versão abaixo."],"Autosaving":["Salvando automaticamente"],"Enter URL here…":["Digite URL aqui..."],"Pin to toolbar":["Fixar na barra de ferramentas"],"Unpin from toolbar":["Desafixar da barra de ferramentas"],"Insert a table — perfect for sharing charts and data.":["Insira uma tabela. Perfeito para compartilhar gráficos e dados."],"Fixed width table cells":["Células da tabela de largura fixa"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Adicione um texto que respeite o espaçamento e as abas, e que também permita estilização."],"Display a list of your most recent posts.":["Exiba uma lista das publicações mais recentes."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Insira um bloco que exibe conteúdo carregado através de outros sites, como Twitter, Instagram ou YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Adicione um bloco para exibir o conteúdo em colunas, então adicione quantos blocos de conteúdo quiser."],"Error loading block: %s":["Erro ao carregar o bloco: %s"],"Unknown error":["Erro desconhecido"],"Embed Handler":["Incorporar manipulador"],"term\u0004Remove %s":["Remover %s"],"Copy the permalink":["Copiar o link permanente"],"Permalink copied":["Link permanente copiado"],"Height in pixels":["Altura em pixels"],"Spacer settings":[],"Spacer":["Espaçador"],"Toggle to show a large initial letter.":["Alternar para mostrar uma letra inicial grande."],"Showing large initial letter.":["Mostrando letra inicial grande."],"Name:":["Nome:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s de %3$s)"],"Remove item":["Remover item"],"Color code: %s":["Código de cor: %s"],"Skip to the selected block":["Pule para o bloco selecionado"],"Publish…":["Publicar..."],"Schedule…":["Agendar..."],"Edit post permalink":["Editar link permanente do post"],"Show Block Settings":["Mostrar configurações do bloco"],"Hide Block Settings":["Esconder configurações do bloco"],"Block settings closed":["Configurações do bloco fechadas"],"Close plugin":["Fechar plugin"],"Editor settings":["Editor de configurações"],"Link settings":["Configurações do link"],"Unlink":["Desvincular"],"Page break":["Quebra de página"],"pagination":["paginação"],"next page":["próxima página"],"Image Size":["Tamanho da imagem"],"Height":["Altura"],"Width":["Largura"],"Image Dimensions":["Dimensões da imagem"],"Thumbnails are not cropped.":["Miniaturas não são cortadas."],"Thumbnails are cropped to align.":["Miniaturas são cortadas para alinhar."],"Media Library":["Biblioteca de mídia"],"Advanced":["Avançado"],"Add item":["Adicionar item"],"Reset the template":["Redefinir o modelo"],"Keep it as is":["Mantenha como está"],"The content of your post doesn’t match the template assigned to your post type.":["O conteúdo do seu post não corresponde ao modelo atribuído ao seu tipo de post."],"Resetting the template may result in loss of content, do you want to continue?":["A redefinição do modelo pode resultar em perda de conteúdo, deseja continuar?"],"Document Statistics":["Estatísticas do documento"],"is now scheduled. It will go live on":["está agendado. Será publicado em"],"Scheduled":["Agendado"],"Scheduling…":["Agendando..."],"Code editor selected":["Editor de código selecionado"],"Visual editor selected":["Editor visual selecionado"],"Plugins":["Plugins"],"Custom Size":["Tamanho personalizado"],"Layout elements":["Elementos de layout"],"term\u0004%s removed":["%s excluído"],"term\u0004%s added":["%s adicionado"],"imperative verb\u0004Preview":["Visualizar"],"Block deleted.":["Bloco excluído."],"Block updated.":["Bloco atualizado."],"Block created.":["Bloco criado."],"Trashing failed":["Falha ao mover para lixeira"],"Updating failed.":["Falha ao atualizar."],"Scheduling failed.":["Falha ao agendar."],"Publishing failed.":["Falha ao publicar."],"View post":["Ver post"],"You have unsaved changes. If you proceed, they will be lost.":["Você tem alterações que não foram salvas. Se você continuar, elas serão perdidas."],"Document Outline":["Visão geral do documento"],"Paragraphs":["Parágrafos"],"Headings":["Títulos"],"Words":["Palavras"],"Content structure":["Estrutura do conteúdo"],"Public":["Público"],"Protected with a password you choose. Only those with the password can view this post.":["Protegido com uma senha definida por você. Apenas aqueles com a senha podem visualizar esse post."],"Password Protected":["Protegido por senha"],"Only visible to site admins and editors.":["Visível apenas para administradores e editores."],"Private":["Privado"],"Visible to everyone.":["Visível para todos."],"Post Visibility":["Visibilidade do post"],"Would you like to privately publish this post now?":["Gostaria de publicar de forma privada este post agora?"],"Use a secure password":["Use uma senha segura"],"Create password":["Criar senha"],"Move to Trash":["Mover para a lixeira"],"Parent Term":["Termo ascendente"],"Parent Category":["Categoria ascendente"],"Add new term":["Adicionar novo termo"],"Add new category":["Adicionar nova categoria"],"Term":["Termo"],"Tag":["Tag"],"Add new Term":["Adicionar novo termo"],"Add new tag":["Adicionar nova tag"],"Switch to draft":["Mudar para rascunho"],"Are you sure you want to unpublish this post?":["Tem certeza de que deseja cancelar a publicação deste post?"],"Immediately":["Imediatamente"],"Save Draft":["Salvar rascunho"],"Saving":["Salvando"],"Publish:":["Publicar: "],"Visibility:":["Visibilidade:"],"Are you ready to publish?":["Pronto para publicar?"],"Copy Link":["Copiar link"],"What’s next?":["O que mais?"],"is now live.":["agora está no ar."],"Published":["Publicado"],"Schedule":["Agendar"],"Update":["Atualizar"],"Submit for Review":["Enviar para revisão"],"Updating…":["Atualizando..."],"Publishing…":["Publicando…"],"Allow pingbacks & trackbacks":["Permitir pingbacks e trackbacks"],"Permalink:":["Link permanente:"],"Pending review":["Revisão pendente"],"%d Revision":["%d revisão","%d revisões"],"Suggestion:":["Sugestão:"],"Post Format":["Formato do post"],"Chat":["Bate-papo"],"Status":["Status"],"Standard":["Padrão"],"Aside":["Nota"],"Featured image":["Imagem destacada"],"Set featured image":["Definir imagem destacada"],"Learn more about manual excerpts":["Saiba mais sobre os resumos"],"Write an excerpt (optional)":["Escreva um resumo (opcional)"],"Allow comments":["Permitir comentários"],"Template:":["Modelo:"],"no parent":["sem ascendente"],"no title":["sem título"],"Order":["Ordem"],"No blocks found.":["Nenhum bloco encontrado."],"%d result found.":["%d resultado encontrado.","%d resultados encontrados."],"Saved":["Salvo"],"Embeds":["Códigos incorporados"],"Blocks":["Blocos"],"Search for a block":["Procurar um bloco"],"Add block":["Adicionar bloco"],"Copy Error":["Copiar o erro"],"Copy Post Text":["Copiar o texto do post"],"Attempt Recovery":["Tentativa de recuperação"],"The editor has encountered an unexpected error.":["O editor encontrou um erro inesperado."],"Undo":["Desfazer"],"Redo":["Refazer"],"(Multiple H1 headings are not recommended)":["(Múltiplos títulos H1 não são recomendados)"],"(Your theme may already use a H1 for the post title)":["(Seu tema pode já usar um título H1 para o título do post)"],"(Incorrect heading level)":["(Nível de título incorreto)"],"(Empty heading)":["(Título vazio)"],"Block Styles":["Estilos de bloco"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Tem certeza de que deseja excluir esse bloco compartilhado?\n\nIsso irá removê-lo permanentemente de todos os posts e páginas que o usam."],"Convert to Regular Block":["Converter para bloco normal"],"More options":["Mais opções"],"Edit visually":["Editar visualmente"],"Duplicate":["Duplicar"],"Blocks cannot be moved down as they are already at the bottom":["Os blocos não podem ser movidos para baixo pois eles já estão na parte inferior"],"Blocks cannot be moved up as they are already at the top":["Os blocos não podem ser movidos para cima pois eles já estão na parte superior"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["O bloco %s é o único bloco e não pode ser movido"],"Edit as HTML":["Editar como HTML"],"Convert to Blocks":["Converter para blocos"],"Block: %s":["Bloco: %s"],"This block has encountered an error and cannot be previewed.":["Este bloco encontrou um erro e não pode ser visualizado."],"No block selected.":["Nenhum bloco selecionado."],"Transform into:":["Transformar em:"],"Remove":["Remover"],"Find original":["Encontre o original"],"Copy all content":["Copiar todo o conteúdo"],"Copied!":["Copiado!"],"Additional settings are now available in the Editor block settings sidebar":["Configurações adicionais estão agora disponíveis nas configurações da barra lateral do Editor de bloco."],"Visibility":["Visibilidade"],"Status & visibility":["Status e visibilidade"],"Page attributes":["Atributos da página"],"Block":["Bloco","%d Blocos"],"Document":["Documento"],"Close settings":["Fechar configurações"],"Editor content":["Editor de conteúdo"],"Tools":["Ferramentas"],"Editor":["Editor"],"Code editor":["Editor de código"],"Visual editor":["Editor visual"],"Editor top bar":["Barra superior do editor"],"Settings":["Configurações"],"Reset":["Redefinir"],"Dismiss this notice":["Dispensar essa notificação"],"Item removed.":["Item removido."],"Item added.":["Item adicionado."],"Drop files to upload":["Solte arquivos aqui para enviar"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ocorreu um erro desconhecido."],"No results.":["Nenhum resultado."],"%d result found, use up and down arrow keys to navigate.":["%d resultado encontrado, use as setas para cima e para baixo para navegar.","%d resultados encontrados, use as setas para cima e para baixo para navegar"],"(no title)":["(sem título)"],"URL":["URL"],"Submit":["Enviar"],"Close":["Fechar"],"Insert link":["Inserir link"],"Edit link":["Editar link"],"Link":["Link"],"Strikethrough":["Riscado"],"Italic":["Itálico"],"Bold":["Negrito"],"Remove link":["Remover link"],"Number of items":["Número de itens"],"All":["Tudo"],"Category":["Categoria"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Do mais antigo para o mais recente"],"Newest to Oldest":["Do mais recente para o mais antigo"],"Order by":["Ordernar por"],"Select":["Selecionar"],"Select or Upload Media":["Selecione ou envie a mídia"],"Video":["Vídeo"],"Write…":["Escreva..."],"poetry":["poesia"],"Verse":["Verso"],"New Column":["Nova coluna"],"Delete Column":["Excluir coluna"],"Add Column After":["Adicionar coluna depois"],"Add Column Before":["Adicionar coluna antes"],"Delete Row":["Excluir linha"],"Add Row After":["Adicionar linha depois"],"Add Row Before":["Adicionar linha antes"],"Edit table":["Editar tabela"],"Table":["Tabela"],"Write subheading…":["Escreva o subtítulo..."],"Write shortcode here…":["Digite um shortcode aqui..."],"Shortcode":["Shortcode"],"divider":["divisor"],"horizontal-line":["linha horizontal"],"Separator":["Separador"],"Quote":["Citação"],"Write citation…":["Escrever citação..."],"Write quote…":["Escreva uma citação..."],"Pullquote":["Citação"],"Write preformatted text…":["Escreva um texto pré-formatado..."],"Preformatted":["Pré-formatado"],"text":["texto"],"Paragraph":["Parágrafo"],"Font Size":["Tamanho da fonte"],"Drop Cap":["Letra capitular"],"Text settings":[],"Read more":["Leia mais"],"Write list…":["Escrever lista..."],"numbered list":["lista numerada"],"ordered list":["lista ordenada"],"bullet list":["lista com marcadores"],"Indent list item":["Avançar item da lista"],"Outdent list item":["Recuar item da lista"],"Convert to ordered list":["Converter para lista ordenada"],"Convert to unordered list":["Converter para lista não ordenada"],"List":["Lista"],"recent posts":["posts recentes"],"No posts found.":["Nenhum post encontrado."],"Latest Posts":["Posts mais recentes"],"Display post date":["Exibir a data do post"],"Grid view":["Visualização em grade"],"List view":["Visualização em lista"],"photo":["foto"],"Image settings":[],"Image":["Imagem"],"Preview":["Visualizar"],"embed":["Mídia incorporada"],"Custom HTML":["HTML personalizado"],"subtitle":["subtítulo"],"title":["título"],"Heading":["Título"],"Write heading…":["Escreva o título…"],"Heading %d":["Título %d"],"Level":["Nível"],"Heading settings":[],"photos":["fotos"],"images":["imagens"],"None":["Nenhum"],"Media File":["Arquivo de mídia"],"Attachment Page":["Página de anexo"],"Link to ":["Apontar para "],"Crop Images":["Recortar imagens"],"Gallery settings":[],"Gallery":["Galeria"],"Classic":["Editor Clássico"],"video":["vídeo"],"audio":["áudio"],"music":["música"],"image":["imagem"],"blog":["blog"],"post":["post"],"Embedded content from %s":["Conteúdo incorporado de %s"],"Enter URL to embed here…":["Digite aqui o URL da mídia a ser incorporada…"],"%s URL":["URL do %s"],"Embedding…":["Incorporando..."],"Write title…":["Escreva o título..."],"Fixed Background":["Fundo fixo"],"Edit image":["Editar imagem"],"Columns":["Colunas"],"Experiments":["Experimental"],"Code":["Código"],"Write code…":["Escreva o código…"],"Categories":["Categorias"],"Show Hierarchy":["Mostrar hierarquia"],"Show post counts":["Mostrar número de posts"],"Categories settings":[],"Add text…":["Adicionar texto..."],"Button":["Botão"],"Apply":["Aplicar"],"Text Color":["Cor do texto"],"Background Color":["Cor de fundo"],"Block has been deleted or is unavailable.":["O bloco foi excluído ou está indisponível."],"Reusable blocks":["Blocos reutilizáveis"],"Cancel":["Cancelar"],"Edit":["Editar"],"Write caption…":["Escrever legenda..."],"Use URL":["Usar URL"],"Audio":["Áudio"],"Upload":["Enviar"],"Additional CSS Class(es)":["Classes CSS adicionais"],"HTML Anchor":["Âncora de HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Essa combinação de cores pode ser difícil para as pessoas lerem. Tente usar uma cor de fundo mais clara e/ou uma cor de texto mais escura."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Essa combinação de cores pode ser difícil para as pessoas lerem. Tente usar uma cor de fundo mais escura e/ou uma cor de texto mais clara."],"Clear":["Limpar"],"Custom color picker":["Seletor de cor personalizado"],"Color: %s":["Cor: %s"],"Full width":["Largura total"],"Wide width":["Largura ampla"],"Widgets":["Widgets"],"Formatting":["Formatação"],"Common blocks":["Blocos comuns"],"Align right":["Alinhar à direita"],"Align center":["Alinhar ao centro"],"Align left":["Alinhar à esquerda"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Imprimindo desde 1440. Este é o plugin de desenvolvimento do novo editor de blocos do WordPress."],"Add title":["Adicionar título"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["O modo de desenvolvimento do Gutenberg requer que os arquivos sejam criados. Execute npm install
para instalar as dependências, npm run build
para criar os arquivos ou npm run dev
para criar os arquivos e observar mudanças. Leia o arquivo de contribuição para obter mais informações."],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Discussão"],"Custom fields":["Campos personalizados"],"Excerpt":["Resumo"],"Publish":["Publicar"],"Metadata":["Metadados"],"Save":["Salvar"],"Documentation":["Documentação"],"Select Category":["Selecionar categoria"],"(Untitled)":["(sem título)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["O Gutenberg requer o WordPress %s ou posterior para funcionar corretamente. Atualize o WordPress antes de ativar o Gutenberg."],"Gutenberg Team":["Equipe Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s atrás"],"Block style name must be a string.":["Nomes de estilo de blocos precisam ser strings."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ro.json b/bundle/android/raw/i18ncache_data_ro.json
new file mode 100644
index 0000000000..56fdbb493b
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ro.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":["Niciun bloc găsit în bibliotecă."],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":["Reîncearcă"],"Block previews can't install.":[],"Updated %s":["%s actualizat"],"%d active installation":["O instalare activă","%d instalări active","%d de instalări active"],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":["%s din 5 stele"],"Enter Address":["Introdu adresa"],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":["Legături sociale"],"Open block navigator":[],"Attachment page":["Pagină atașament"],"Fill":["Completează"],"Link rel":[],"Border Radius":["Rază chenar"],"Write gallery caption…":[],"Content blocks":["Blocuri de conținut"],"Restore the backup":["Restaurează copia de siguranță"],"The backup of this post in your browser is different from the version below.":["Copia de siguranță a acestui articol din navigatorul tău este diferită de versiunea de mai jos."],"Enable block directory search":["Activează căutarea în directorul de blocuri"],"Block Directory":["Director de blocuri"],"Unable to connect to the filesystem. Please confirm your credentials.":["Nu mă pot conecta la sistemul de fișiere. Te rog confirmă-ți datele de conectare."],"Sorry, you are not allowed to install blocks.":["Regret, nu ai voie să instalezi blocuri."],"%1$d block is disabled.":["%1$d bloc este dezactivat.","%1$d blocuri sunt dezactivate.","%1$d de blocuri sunt dezactivate."],"Reverse List Numbering":[],"Start Value":["Valoare de pornire"],"Ordered list settings":["Setări listă ordonată"],"Clear Media":[],"Default Style":["Stil implicit"],"Not set":["Nesetat"],"While writing, you can press / to quickly insert new blocks.":["În timp ce scrii, poți apăsa / pentru a introduce rapid blocuri noi."],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":["Versiune a formatului pentru blocul de conținut folosit de obiect."],"HTML content for the object, transformed for display.":["Conținut HTML pentru obiect, transformat pentru afișare."],"Content for the object, as it exists in the database.":["Conținut pentru obiect, așa cum există în baza de date."],"The content for the object.":["Conținutul pentru obiect."],"Change column alignment":["Modifică alinierea coloanei"],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":["Culoare"],"Vivid purple":[],"Disable & Reload":["Dezactivează și reîncarcă"],"Enable & Reload":["Activează și reîncarcă"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":["Setări experimente"],"Enable Widgets screen and Legacy Widgets block":["Activează ecranul Piese și blocul Piese tradiționale"],"Experimental settings":["Setări experimentale"],"Block name name must be a string.":["Numele blocului trebuie să fie un șir de caractere."],"Custom":["Personalizat"],"Draft":["Ciornă"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blocul „%1$s” nu conține un stil cu numele „%2$s”."],"Learn more about anchors":["Află mai mult despre ancore"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["Blocuri piese (experimentale)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Încarcă un fișier video, alege unul din biblioteca ta media sau adaugă unul cu un URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Încarcă un fișier imagine, alege unul din biblioteca ta media sau adaugă unul cu un URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Încarcă un fișier audio, alege unul din biblioteca ta media sau adaugă unul cu un URL."],"Upload a media file or pick one from your media library.":["Încarcă un fișier în media sau alege unul din biblioteca media."],"Skip":["Sari"],"Select a variation to start with.":["Selectează o variație cu care să începi."],"Add a page, link, or another item to your navigation.":["Adaugă o pagină, o legătură sau un alt element în navigare."],"What's this?":["Ce-i asta?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Nu lăsa motoarele de căutare să urmărească această legătură."],"Provide more context about where the link goes.":[],"Title Attribute":["Atribut titlu"],"SEO settings":["Setări SEO"],"Description":["Descriere"],"Open in new tab":["Deschide într-o filă nouă"],"links":["legături"],"navigation":["navigare"],"menu":["meniu"],"Add a navigation block to your site.":["Adaugă un bloc de navigare pe situl tău."],"Upload a file or pick one from your media library.":["Încarcă un fișier sau alege unul din biblioteca media."],"Learn more about embeds":["Află mai multe despre înglobări"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":["Încarcă un fișier imagine sau video sau alege unul din biblioteca media."],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["Mai multe unelte și opțiuni"],"Create Table":["Creează tabelul "],"Insert a table for sharing data.":["Inserează un tabel pentru partajarea datelor."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Anulează gruparea"],"verb\u0004Group":["Grupează"],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":["Separă clasele multiple cu spații."],"Move image forward":["Mută imaginea înainte"],"Move image backward":["Mută imaginea înapoi"],"Sorry, you are not allowed to edit sidebars.":["Regret, nu ai voie să editezi barele laterale."],"Sorry, you are not allowed to read sidebars.":["Regret, nu ai voie să parcurgi barele laterale."],"The sidebar’s ID.":["ID-ul barei laterale"],"Displays a set of blocks":["Afișează un set de blocuri"],"Blocks Area":["Zonă blocuri"],"Block rendered as empty.":[],"Inline Code":["Cod în-linie"],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":["Secțiune subsol"],"Header section":["Secțiune antet"],"Sorting and filtering":["Sortare și filtrare"],"Post meta settings":["Setări metadate articol"],"Post Content":["Conținut articol"],"Post content settings":["Setări conținut articol"],"Percentage width":[],"Column settings":["Setări coloană"],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":["Zona blocurilor a fost actualizată."],"Block area scheduled.":["Zona blocurilor a fost programată."],"Block area published.":["Zona blocurilor a fost publicată."],"Block areas list":["Listă zone de blocuri"],"Block areas list navigation":["Navigare în lista cu zone de blocuri"],"Filter block areas list":["Filtrează lista cu zone de blocuri"],"No block area found.":["Nicio zonă de blocuri găsită."],"Search Block Areas":["Caută zone de blocuri"],"All Block Areas":["Toate zonele de blocuri"],"View Block Area":["Vezi zona de blocuri"],"Edit Block Area":["Editează zona de blocuri"],"New Block Area":["Zonă de blocuri nouă"],"Add New Block Area":["Adaugă zonă de blocuri nouă"],"admin menu\u0004Block Areas":["Zone de blocuri"],"post type singular name\u0004Block Area (Experimental)":["Zonă blocuri (experimentală)"],"post type general name\u0004Block Area (Experimental)":["Zonă blocuri (experimentală)"],"Experimental custom post type that will store block areas referenced by themes.":["Tip de articol personalizat, experimental, care va stoca zonele de blocuri din cadrul temelor."],"Widgets screen content":["Conținut ecran Piese"],"header":[],"Widgets advanced settings":["Setări avansate piese"],"(experimental)":["(experimental)"],"Block Areas":["Zone de blocuri"],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":["secțiune"],"row":["rând"],"wrapper":[],"container":["container"],"A block that groups other blocks.":["Un bloc care grupează alte blocuri."],"Group":["Grup"],"Crop image to fill entire column":["Decupează imaginea pentru a umple întreaga coloană"],"Play inline":[],"Leave empty if the image is purely decorative.":["Lasă gol dacă imaginea este doar decorativă."],"Describe the purpose of the image":["Descrie scopul imaginii"],"Add a block":["Adaugă un bloc"],"Block vertical alignment setting label\u0004Change vertical alignment":["Modifică alinierea pe verticală"],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":["Înlocuiește imaginea"],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":["Afișează o piesă tradițională."],"Legacy Widget (Experimental)":["Piesă tradițională (experimentală)"],"Change widget":["Schimbă piesa"],"Legacy Widget":["Piesă tradițională"],"You don't have permissions to use widgets on this site.":["Nu ai permisiunea de a folosi piese pe acest sit."],"Select a legacy widget to display:":["Selectează o piesă tradițională pentru afișare:"],"There are no widgets available.":["Nu este disponibilă nicio piesă."],"Change block type or style":["Modifică tipul sau stilul de bloc"],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":["Termeni de căutare"],"Exit the Editor":["Ieși din editor"],"Block Manager":["Manager de blocuri"],"Class name of the widget.":["Numele clasei piesei."],"Sorry, you are not allowed to access widgets on this site.":["Regret, nu ai voie să accesezi piese pe acest sit."],"Widgets (beta)":["Piese (beta)"],"link":["legătură"],"Embedded content from %s can't be previewed in the editor.":["Conținutul înglobat de pe %s nu poate fi previzualizat în editor."],"Custom Color":["Culoare personalizată"],"Prompt visitors to take action with a button-style link.":["Îndeamnă vizitatorii să acționeze cu o legătură de tipul buton."],"Stick to the top of the blog":["Evidențiază în partea de sus a blogului"],"Read about permalinks":["Citește despre legăturile permanente"],"The last part of the URL.":["Ultima parte a URL-ului."],"URL Slug":["Descriptor URL"],"A cloud of your most used tags.":["Un nor cu cele mai folosite etichete."],"Tag Cloud":["Nor de etichete"],"Taxonomy":["Taxonomie"],"Tag Cloud settings":["Setări nor de etichete"],"- Select -":["- Selectează -"],"Default":[],"find":["găsește"],"Help visitors find your content.":["Ajută-ți vizitatorii să-ți găsească conținutul."],"Search":["Caută"],"Add button text…":["Adaugă text buton..."],"Button text":["Text buton"],"Optional placeholder…":["Substituent opțional..."],"Optional placeholder text":["Text substituent opțional"],"Add label…":["Adaugă etichetă..."],"Label text":["Text etichetă"],"image %1$d of %2$d in gallery":[],"archive":["arhivă"],"posts":["articole"],"A calendar of your site’s posts.":["Un calendar al articolelor de pe situl tău."],"Calendar":["Calendar"],"by":["de"],"An error has occurred, which probably means the feed is down. Try again later.":["A apărut o eroare, care, probabil, înseamnă că fluxul nu funcționează. Reîncercă mai târziu."],"RSS Error:":["Eroare RSS:"],"block style\u0004Default":["Implicit"],"Fullscreen mode deactivated":["Mod ecran întreg dezactivat"],"Fullscreen mode activated":["Mod ecran întreg activat"],"Spotlight mode deactivated":["Mod centrat pe bloc dezactivat"],"Spotlight mode activated":["Mod centrat pe bloc activat"],"Top toolbar deactivated":["Bara de unelte de sus dezactivată"],"Top toolbar activated":["Bara de unelte de sus activată"],"Back":["Înapoi"],"Feature activated":["Funcționalitate activată"],"Feature deactivated":["Funcționalitate dezactivată"],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":["flux"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Afișează intrările din toate fluxurile RSS sau Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Număr maxim de cuvinte în rezumat"],"Display excerpt":["Afișează rezumatul"],"Display date":["Afișează data"],"Display author":["Afișează autorul"],"RSS settings":["Setări RSS"],"Edit RSS URL":["Editează URL-ul RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Conținutul găsit înainte de acest bloc va fi arătat în rezumatul din pagina ta arhive."],"Hide the excerpt on the full content page":["Ascunde rezumatul pe pagina cu conținut complet"],"The excerpt is visible.":["Rezumatul este vizibil."],"The excerpt is hidden.":["Rezumatul este ascuns."],"Sorry, this content could not be embedded.":["Regret, acest conținut nu a putut fi înglobat."],"Embed Amazon Kindle content.":["Înglobează conținut Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Înglobează conținut Crowdsignal (fostul Polldaddy)."],"Focal Point Picker":["Selector punct de focalizare"],"Underline":["Subliniere"],"Attempt Block Recovery":["Încearcă recuperarea blocului"],"Word count type. Do not translate!\u0004words":["cuvinte"],"content placeholder\u0004Content…":["Conținut..."],"button label\u0004Convert to link":["Convertește în legătură"],"button label\u0004Try again":["Încearcă din nou"],"Editor tips":[],"Block (selected)":["Bloc (selectat)"],"Document (selected)":["Document (selectat)"],"%d word":["%d cuvânt","%d cuvinte","%d de cuvinte"],"Top toolbar":["Bara de unelte de sus"],"Link Rel":[],"Link CSS Class":["Clasă CSS legătură"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Creează conținut și salvează-l pentru a fi refolosit, de tine și de ceilalți contributori, pe tot situl. Actualizează blocul, iar modificările se aplică oriunde este folosit."],"To edit the featured image, you need permission to upload media.":["Pentru a edita imaginea reprezentativă, ai nevoie de permisiunea de a încărca elemente media."],"To edit this block, you need permission to upload media.":["Pentru a edita acest bloc, ai nevoie de permisiunea de a încărca elemente media."],"(selected block)":["(bloc selectat)"],"Block tools":["Unelte pentru blocuri"],"Permalink":["Legătură permanentă"],"This image has an empty alt attribute":["Această imagine are atributul alt gol."],"This image has an empty alt attribute; its file name is %s":["Această imagine are atributul alt gol; numele fișierului este %s"],"Block area reverted to draft.":["Zona blocurilor a revenit la ciornă."],"Block area published privately.":["Zona blocurilor a fost publicată privat."],"No block areas found in Trash.":["Nicio zonă de blocuri găsită la gunoi."],"Block\u0004Add New":["Adaugă bloc nou"],"add new on admin bar\u0004Block Area":["Zonă blocuri"],"Link inserted.":["Legătură inserată."],"Warning: the link has been inserted but may have errors. Please test it.":["Avertizare: legătura a fost inserată dar poate avea erori. Te rog testeaz-o."],"%s block selected.":["%s bloc selectat.","%s blocuri selectate.","%s de blocuri selectate."],"Thumbnail":["Miniatură"],"Full Size":["Dimensiune completă"],"Link selected.":["Legătură selectată."],"Start writing with text or HTML":["Începe să scrii text sau HTML"],"Type text or HTML":["Tastează text sau HTML"],"Block icon":["Icon bloc"],"Align text right":["Aliniază textul la dreapta"],"Align text center":["Aliniază textul pe centru"],"Align text left":["Aliniază textul la stânga"],"Start writing or type / to choose a block":["Începe să scrii sau tastează „/” pentru a alege un bloc"],"Empty block; start writing or type forward slash to choose a block":["Bloc gol; începe să scrii sau tastează slash pentru a alege un bloc"],"Paragraph block":["Bloc paragraf"],"Page Break":["Sfârșit de pagină"],"Stack on mobile":["Rearanjează pentru mobil"],"Annotation":["Adnotare"],"Drag images, upload new ones or select files from your library.":["Trage imagini, încarcă unele noi sau selectează fișiere din biblioteca ta."],"blocks\u0004Most used":["Cele mai folosite"],"imperative verb\u0004Resolve":["Rezolvă"],"font size name\u0004Huge":["Foarte mare"],"font size name\u0004Large":["Mare"],"font size name\u0004Medium":["Mediu"],"font size name\u0004Small":["Mic"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importă"],"button label\u0004Download":["Descarcă"],"button label\u0004Embed":["Înglobează"],"block title\u0004Embed":[],"block title\u0004Classic":["Clasic"],"block style\u0004Large":["Mare"],"block style\u0004Rounded":[],"%s (opens in a new tab)":["%s (se deschide într-o filă nouă)"],"Link edited.":["Legătură editată."],"Link removed.":["Legătură înlăturată."],"media":[],"Double-check your settings before publishing.":["Verifică-ți de două ori setările înainte de publicare."],"Generating preview…":["Generez previzualizarea..."],"Edit or update the image":["Editează sau actualizează imaginea"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navighează la cea mai apropiată bară de unelte."],"Document tools":["Instrumente pentru documente"],"Document and block tools":["Instrumente pentru documente și blocuri"],"Embed a video from your media library or upload a new one.":["Înglobează un video din biblioteca media sau încarcă unul nou."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Inserează o poezie. Folosește formatele speciale de spațiere. Sau citează versurile cântecului."],"Add white space between blocks and customize its height.":["Adaugă spațiu gol între blocuri și le personalizează înălțimea."],"Insert additional custom elements with a WordPress shortcode.":["Inserează elemente personalizate suplimentare cu un scurtcod WordPress."],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Accentuează vizual textul citat. „Citând pe alții, ne cităm pe noi înșine.” — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Accentuează vizual un citat din textul tău."],"Start with the building block of all narrative.":["Începe cu blocul pentru construirea întregii narațiuni."],"Separate your content into a multi-page experience.":["Separă-ți conținutul într-o experiență pe mai multe pagini."],"Set media and words side-by-side for a richer layout.":["Setează media și cuvintele adiacente media pentru un aranjament mai bogat."],"Media & Text settings":["Setări media și text"],"Create a bulleted or numbered list.":["Creează o listă cu buline sau numerotată."],"Display a list of your most recent comments.":["Afișează o listă cu cele mai recente comentarii."],"Insert an image to make a visual statement.":["Inserează o imagine pentru a avea o expunere vizuală."],"Add custom HTML code and preview it as you edit.":["Adaugă cod HTML personalizat și previzualizează-l pe măsură ce editezi."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introdu secțiuni noi și organizează conținutul pentru a ajuta vizitatorii (și motoarele de căutare) să înțeleagă structura conținutului tău."],"Display multiple images in a rich gallery.":["Afișează mai multe imagini într-o galerie bogată."],"Add a link to a downloadable file.":["Adaugă o legătură la un fișier ce poate fi descărcat."],"Embed videos, images, tweets, audio, and other content from external sources.":["Înglobează videouri, imagini, twituri, fișiere audio și alt conținut din surse externe."],"Resize for smaller devices":["Redimensionează pentru dispozitive mai mici"],"This embed may not preserve its aspect ratio when the browser is resized.":["Această înglobare ar putea să nu-și păstreze raportul de aspect când navigatorul este redimensionat."],"This embed will preserve its aspect ratio when the browser is resized.":["Această înglobare își va păstra raportul de aspect când navigatorul este redimensionat."],"Embed an Animoto video.":["Înglobează un video Animoto."],"Embed a Vimeo video.":["Înglobează un video Vimeo."],"Embed Flickr content.":["Înglobează conținut Flickr."],"Embed Spotify content.":["Înglobează conținut Spotify."],"Embed SoundCloud content.":["Înglobează conținut SoundCloud."],"Embed a WordPress post.":["Înglobează un articol WordPress."],"Embed an Instagram post.":["Înglobează un articol Instagram."],"Embed a Facebook post.":["Înglobează un articol Facebook."],"Embed a WordPress.tv video.":["Înglobează un video WordPress.tv."],"Embed a VideoPress video.":["Înglobează un video VideoPress."],"Embed a Tumblr post.":["Înglobează un articol Tumblr."],"Embed a TED video.":["Înglobează un video TED."],"Embed Speaker Deck content.":["Înglobează conținut Speaker Deck."],"Embed a YouTube video.":["Înglobează un video YouTube."],"Embed SmugMug content.":["Înglobează conținut SmugMug."],"Embed Slideshare content.":["Înglobează conținut Slideshare."],"Embed Scribd content.":["Înglobează conținut Scribd."],"Embed Screencast content.":["Înglobează conținut Screencast."],"Embed ReverbNation content.":["Înglobează conținut ReverbNation."],"Embed a Reddit thread.":["Înglobează un fir Reddit."],"Embed Polldaddy content.":["Înglobează conținut Polldaddy."],"Embed Mixcloud content.":["Înglobează conținut Mixcloud."],"Embed a tweet.":["Înglobează un twit."],"Embed Meetup.com content.":["Înglobează conținut Meetup.com."],"Embed Kickstarter content.":["Înglobează conținut Kickstarter."],"Embed Issuu content.":["Înglobează conținut Issuu."],"Embed Imgur content.":["Înglobează conținut Imgur."],"Embed Hulu content.":["Înglobează conținut Hulu."],"Embed a Dailymotion video.":["Înglobează un video Dailymotion."],"Embed CollegeHumor content.":["Înglobează conținut CollegeHumor."],"Embed Cloudup content.":["Înglobează conținut Cloudup."],"Add an image or video with a text overlay — great for headers.":["Adaugă o imagine sau un video cu o suprapunere de text — excelentă pentru anteturi."],"Display code snippets that respect your spacing and tabs.":["Afișează fragmente de cod care respectă spațierea și filele."],"Use the classic WordPress editor.":["Folosește editorul clasic WordPress."],"Display a list of all categories.":["Afișează o listă cu toate categoriile."],"Embed a simple audio player.":["Înglobează un player audio simplu."],"noun\u0004View":["Vizualizare"],"editor button\u0004Left to right":["De la stânga la dreapta"],"Save as Pending":["Salvează ca în așteptare"],"%s address":["Adresă %s"],"Paste or type URL":["Plasează sau introdu URL-ul"],"Insert from URL":["Inserează din URL"],"Block Navigator":[],"Styles":["Stiluri"],"Advanced panels":["Panouri avansate"],"Document panels":["Panouri cu documente"],"General":["Generale"],"Open the block navigation menu.":["Deschide meniul de navigare în blocuri."],"Work without distraction":["Lucrezi fără distragerea atenției"],"Focus on one block at a time":["Te concentrezi numai pe un bloc la un moment dat"],"Access all block and document tools in a single place":["Accesezi toate instrumentele pentru blocuri și documente dintr-un singur loc"],"Options":["Opțiuni"],"(opens in a new tab)":["(se deschide într-o filă nouă)"],"Minutes":["Minute"],"Hours":["Ore"],"Time":[],"Year":["An"],"Day":["Zi"],"December":["Decembrie"],"November":["Noiembrie"],"October":["Octombrie"],"September":["Septembrie"],"August":["August"],"July":["Iulie"],"June":["Iunie"],"May":["Mai"],"April":["Aprilie"],"March":["Martie"],"February":["Februarie"],"January":["Ianuarie"],"Month":["Lună"],"Date":["Dată"],"Go to the first (home) or last (end) day of a week.":["Mergi la prima sau la ultima zi a săptămânii."],"Home/End":["Prima/ultima"],"Home and End":["Prima și ultima"],"Move backward (PgUp) or forward (PgDn) by one month.":["Mută înapoi (PgUp) sau înainte (PgDn) cu o lună."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Pagină înainte și pagină înapoi"],"Move backward (up) or forward (down) by one week.":["Mută înapoi (în sus) și înainte (în jos) cu o săptămână."],"Up and Down Arrows":["Săgeți sus și jos"],"Move backward (left) or forward (right) by one day.":["Mută înapoi (stânga) și înainte (dreapta) cu o zi."],"Left and Right Arrows":["Săgeți stânga și dreapta"],"Select the date in focus.":["Selectează data dorită."],"Navigating with a keyboard":["Navigare cu o tastatură"],"Click the desired day to select it.":["Dă clic pe ziua dorită pentru a o selecta."],"Click the right or left arrows to select other months in the past or the future.":["Dă clic pe săgeata dreapta sau stânga pentru a selecta luni anterioare sau următoare."],"Click to Select":["Dă clic pentru a selecta"],"Calendar Help":["Ajutor pentru calendar"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Folosește tastele săgeți pentru a modifica culoarea de bază. Mută în sus pentru culori mai deschise, în jos pentru culori mai închise, la stânga pentru a reduce saturația și la dreapta pentru a crește saturația."],"Choose a shade":["Alege o umbră"],"Change color format":["Modifică formatul de culoare"],"Color value in HSL":["Valori de culoare în HSL"],"Color value in RGB":["Valori de culoare în RGB"],"Color value in hexadecimal":["Valori de culoare în hexazecimal"],"RGB mode active":["Modul RGB este activ"],"Hex color mode active":[],"Hue/saturation/lightness mode active":["Modul nuanță/saturație/luminozitate este activ"],"Move the arrow left or right to change hue.":["Mută cu săgeata stânga sau dreapta pentru a modifica nuanța."],"Hue value in degrees, from 0 to 359.":["Valoarea nuanței măsurată în grade pe cercul de culoare, de la 0 la 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Valoarea alfa, de la 0 (transparent) la 1 (complet opac)."],"Stripes":["Dungi"],"Your site doesn’t include support for this block.":["Situl tău nu include suport pentru acest bloc."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Situl tău nu include suport pentru blocul „%s”. Poți lăsa acest bloc intact sau îl poți înlătura complet."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Situl tău nu include suport pentru blocul „%s”. Poți lăsa acest bloc intact, îi poți converti conținutul într-un bloc HTML personalizat sau îl poți înlătura complet."],"Media area":["Zonă media"],"Media & Text":["Media și text"],"Show media on right":["Arată media în dreapta"],"Show media on left":["Arată media în stânga"],"Open in New Tab":["Deschide într-o filă nouă"],"Cover":["Copertă"],"Border settings":["Setări chenar"],"Medium":[],"Paste URL or type to search":[],"Terms":["Termeni"],"Your work will be published at the specified date and time.":["Lucrarea ta va fi publicată la data și ora specificate."],"Are you ready to schedule?":["Ești pregătit ca să programezi?"],"Always show pre-publish checks.":["Arată întotdeauna verificările înainte de publicare."],"Take Over":["Preia controlul"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["În prezent, la acest articol lucrează un alt utilizator, asta înseamnă că nu poți face modificări decât dacă preiei controlul."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["În prezent, la acest articol lucrează %s, asta înseamnă că nu poți face modificări decât dacă preiei controlul."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["În prezent, un alt utilizator are controlul editării acestui articol. Nu te impacienta, modificările pe care le-ai făcut până acum au fost salvate."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["În prezent, %s are controlul editării acestui articol. Nu te impacienta, modificările pe care le-ai făcut până acum au fost salvate."],"Avatar":["Avatar"],"This post is already being edited.":["Acest articol este editat acum."],"Someone else has taken over this post.":["Altcineva a preluat controlul acestui articol."],"This block contains unexpected or invalid content.":["Acest bloc conține conținut neașteptat sau invalid."],"Resolve Block":["Corectează blocul"],"Convert to HTML":["Convertește în HTML"],"This block can only be used once.":["Acest bloc poate fi folosit numai o singură dată."],"Exit Code Editor":["Ieși din editorul de cod"],"Editing Code":["Editez codul"],"Solid Color":["Culoare densă"],"Main Color":["Culoare principală"],"HTML":["HTML"],"Write HTML…":["Scrie HTML…"],"Media settings":["Setări media"],"Overlay":["Suprapune"],"Insert Media":["Inserează media"],"Reusable block imported successfully!":["Blocurile reutilizabile au fost importate cu succes!"],"Invalid Reusable Block JSON file":[],"Invalid JSON file":["Fișier JSON invalid"],"Import from JSON":["Importă din JSON"],"Backtick":["Apostrof"],"Period":["Perioadă"],"Comma":["Virgulă"],"Change type of %d block":[],"Current":[],"After Conversion":["După conversie"],"Change alignment":["Modifică alinierea"],"Change text alignment":["Modifică alinierea textului"],"%d block":["Un bloc","%d blocuri","%d de blocuri"],"Forward-slash":["Bară înclinată dreapta"],"No archives to show.":["Nicio arhivă de arătat."],"This file is empty.":["Acest fișier este gol."],"Sorry, this file type is not supported here.":["Regret, acest tip de fișier nu este acceptat aici."],"Manage all reusable blocks":["Administrează toate blocurile reutilizabile"],"Title":["Titlu"],"Fullscreen mode":["Mod ecran întreg"],"Beautiful landscape":["Peisaj frumos"],"Close panel":["Închide panoul"],"Convert to Classic Block":["Convertește în bloc clasic"],"Remove Poster Image":["Înlătură imaginea poster"],"Select Poster Image":["Selectează imaginea pentru poster"],"Poster Image":["Imagine poster"],"This block is deprecated. Please use the Columns block instead.":["Acest bloc este învechit. Te rog folosește în schimb blocul Coloane."],"Text Columns (deprecated)":["Coloane text (învechit)"],"Create":[],"Row Count":["Număr de rânduri"],"Column Count":["Număr de coloane"],"This block is deprecated. Please use the Paragraph block instead.":["Acest bloc este învechit. Te rog folosește în schimb blocul Paragraf."],"Subheading (deprecated)":["Subtitlu (învechit)"],"blockquote":["citat"],"Change the block type after adding a new paragraph.":["Schimbă tipul de bloc după adăugarea unui paragraf nou."],"Spotlight mode":["Mod centrat pe bloc"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etichetele ajută utilizatorii și motoarele de căutare să navigheze pe situl tău și să-ți găsească conținutul. Adaugă câteva cuvinte cheie pentru a-ți descrie articolul."],"Add tags":["Adaugă etichete"],"Apply the \"%1$s\" format.":["Aplică formatul „%1$s”."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tema ta folosește formate de articol pentru a evidenția diverse tipuri de conținut, cum ar fi imagini sau videouri. Folosește un format de articol pentru a vedea care-i stilul său special."],"Use a post format":["Folosește un format de articol"],"Insert After":["Inserează după"],"Insert Before":["Inserează înainte"],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":["Inserează un bloc nou înainte de blocul selectat (blocurile selectate)."],"Remove the selected block(s).":["Înlătură blocul selectat (blocurile selectate)."],"Duplicate the selected block(s).":[],"Block shortcuts":[],"Clear selection.":[],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":["Înlătură o legătură."],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Îți mulțumim pentru testarea Gutenberg!"],"Help build Gutenberg":["Ajută la construirea Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Dacă vrei să afli mai multe despre cum să construiești blocuri suplimentare sau dacă ești interesat să ajuți proiectul, mergi la depozitarul GitHub."],"The WordPress community":["Comunitatea WordPress"],"Code is Poetry":["Codul este poezie"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":["Identificator unic pentru obiect."],"Untitled Reusable Block":["Bloc reutilizabil fără titlu"],"Small":["Mic"],"Reusable":["Reutilizabil"],"Remove from Reusable blocks":["Înlătură din blocuri reutilizabile"],"Add to Reusable blocks":["Adaugă în blocuri reutilizabile"],"Keep as HTML":[],"Edit URL":["Editează URL-ul"],"Color settings":["Setări culoare"],"The response is not a valid JSON response.":["Răspunsul nu este un răspuns valid JSON."],"Editor publish":[],"Muted":["Fără sunet"],"Video settings":["Setări video"],"recent comments":["comentarii recente"],"Latest Comments":["Ultimele comentarii"],"Display Excerpt":["Afișează rezumatul"],"Display Date":["Afișează data"],"Display Avatar":["Afișează avatar"],"Latest comments settings":["Setări ultimele comentarii"],"Number of Comments":["Număr de comentarii"],"Background Opacity":["Opacitate fundal"],"Auto":["Automat"],"Preload":["Pre-încărcare"],"Audio settings":["Setări audio"],"Display a monthly archive of your posts.":["Afișează o arhivă lunară a articolelor tale."],"Display as Dropdown":["Afișează ca listă derulantă"],"Show Post Counts":["Arată numărul de articole"],"Archives settings":["Setări arhive"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Suport"],"No comments to show.":["Niciun comentariu de arătat."],"%1$s on %2$s":["%1$s pe %2$s"],"Select Post":["Selectează articolul"],"Select Week":["Selectează săptămâna"],"Select Day":["Selectează ziua"],"Select Month":["Selectează luna"],"Select Year":["Selectează anul"],"Archives":["Arhive"],"Very dark gray":["Gri foarte închis"],"Cyan bluish gray":["Gri albăstrui cyan"],"Very light gray":["Gri foarte deschis"],"Vivid cyan blue":["Albastru cyan viu"],"Pale cyan blue":["Albastru cyan pal"],"Vivid green cyan":["Cyan verde viu"],"Light green cyan":["Cyan verde deschis"],"Luminous vivid amber":["Chihlimbar viu luminos"],"Luminous vivid orange":["Portocaliu viu luminos"],"Vivid red":["Roșu viu"],"Pale pink":["Roz pal"],"Inline image":["Imagine în-linie"],"Available block types":["Tipuri de bloc disponibile"],"Transform To:":["Transformă în:"],"Remove Block":["Înlătură blocul"],"Open publish panel":["Deschide panoul de publicare"],"Dots":["Puncte"],"Wide Line":["Linie lată"],"Large":["Mare"],"Show download button":["Arată butonul de descărcare"],"Download button settings":["Setări buton de descărcare"],"Link To":["Legătură la"],"Text link settings":["Setări legătură text"],"download":["descarcă"],"pdf":["PDF"],"document":["document"],"Copy URL":["Copiază URL-ul"],"Write file name…":["Scrie numele fișierului..."],"File":["Fișier"],"A single column within a columns block.":["O singură coloană într-un bloc de coloane."],"Column":["Coloană"],"Outline":["Contur"],"Loop":["Buclă"],"Autoplay":["Redare automată"],"Playback Controls":["Comenzi redare"],"Close dialog":["Închide dialogul"],"Sorry, this file type is not permitted for security reasons.":["Regret, acest tip de fișier nu este permis din motive de securitate."],"Disable tips":["Dezactivează sfaturi"],"Got it":["Am înțeles"],"See next tip":["Vezi următorul sfat"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Când ești gata, trimite-ți lucrarea pentru a fi revizuită și un editor o va putea aproba pentru tine."],"Are you ready to submit for review?":["Ești gata să trimiți spre revizuire?"],"Replace image":["Înlocuiește imaginea"],"Remove image":["Înlătură imaginea"],"Error while uploading file %s to the media library.":["Eroare în timpul încărcării fișierului %s în biblioteca media."],"This file exceeds the maximum upload size for this site.":["Fișierul depășește dimensiunea maximă de încărcare pentru acest sit."],"View the autosave":["Vezi salvarea automată"],"There is an autosave of this post that is more recent than the version below.":["Există o salvare automată a acestui articol care este mai recentă decât versiunea de mai jos."],"Autosaving":["Salvare automată"],"Enter URL here…":["Introdu URL-ul aici..."],"Pin to toolbar":["Fixează în bara de unelte"],"Unpin from toolbar":["Anulează fixarea din bara de unelte"],"Insert a table — perfect for sharing charts and data.":["Inserează un tabel — perfect pentru partajarea diagramelor și datelor."],"Fixed width table cells":["Celule de tabel cu lățime fixă"],"Table settings":["Setări tabel"],"Add text that respects your spacing and tabs, and also allows styling.":["Adaugă text care respectă spațierea și filele și permite, de asemenea, designul."],"Display a list of your most recent posts.":["Afișează o listă cu cele mai recente articole."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Adaugă un bloc care afișează conținut extras de pe alte situri, cum ar fi Twitter, Instagram sau YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Adaugă un bloc care afișează conținut pe mai multe coloane, apoi adaugă blocurile de conținut dorite."],"Error loading block: %s":["Eroare la încărcarea blocului: %s"],"Unknown error":["Eroare necunoscută"],"Embed Handler":[],"term\u0004Remove %s":["Înlătură %s"],"Copy the permalink":["Copiază legătura permanentă"],"Permalink copied":["Legătură permanentă copiată"],"Height in pixels":["Înălțimea în pixeli"],"Spacer settings":["Setări distanțier"],"Spacer":["Distanțier"],"Toggle to show a large initial letter.":["Comută pentru a arăta o literă inițială mare."],"Showing large initial letter.":["Arată litera inițială mare."],"Name:":["Nume:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s din %3$s)"],"Remove item":["Înlătură elementul"],"Color code: %s":["Cod culoare: %s"],"Skip to the selected block":["Sari la blocul selectat"],"Publish…":["Publică..."],"Schedule…":["Programează..."],"Edit post permalink":["Editează legătura permanentă a articolului"],"Show Block Settings":["Arată setări bloc"],"Hide Block Settings":["Ascunde setări bloc"],"Block settings closed":["Setări bloc închise"],"Close plugin":["Închide modulul"],"Editor settings":["Setări editor"],"Link settings":["Setări legătură"],"Unlink":["Anulează legătura"],"Page break":["Sfârșit de pagină"],"pagination":["paginație"],"next page":["pagina următoare"],"Image Size":["Dimensiune imagine"],"Height":["Înălțime"],"Width":["Lățime"],"Image Dimensions":["Dimensiuni imagine"],"Thumbnails are not cropped.":["Miniaturile nu sunt decupate."],"Thumbnails are cropped to align.":["Miniaturile sunt decupate pentru aliniere."],"Media Library":["Bibliotecă Media"],"Advanced":["Avansat"],"Add item":["Adaugă element"],"Reset the template":["Resetează șablonul"],"Keep it as is":["Păstrează-l așa cum este"],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":["Resetarea șablonului poate duce la pierderea conținutului, vrei să continui?"],"Document Statistics":["Statistici document"],"is now scheduled. It will go live on":["este programat acum. Va fi live pe"],"Scheduled":["Programat"],"Scheduling…":["Programez..."],"Code editor selected":["Editor de cod selectat"],"Visual editor selected":["Editor vizual selectat"],"Plugins":["Module"],"Custom Size":["Dimensiune personalizată"],"Layout elements":["Elemente aranjament"],"term\u0004%s removed":["%s înlăturat"],"term\u0004%s added":["%s adăugat"],"imperative verb\u0004Preview":["Previzualizează"],"Block deleted.":["Bloc șters."],"Block updated.":["Bloc actualizat."],"Block created.":["Bloc creat."],"Trashing failed":["Aruncarea la gunoi a eșuat."],"Updating failed.":["Actualizarea a eșuat."],"Scheduling failed.":["Programarea a eșuat."],"Publishing failed.":["Publicarea a eșuat."],"View post":["Vezi articolul"],"You have unsaved changes. If you proceed, they will be lost.":["Ai modificări nesalvate. Dacă continui, ele se vor pierde."],"Document Outline":[],"Paragraphs":["Paragrafe"],"Headings":[],"Words":["Cuvinte"],"Content structure":["Structură conținut"],"Public":["Public"],"Protected with a password you choose. Only those with the password can view this post.":["Protejat cu o parolă pe care o alegi. Numai cei care au parola pot vedea acest articol."],"Password Protected":["Protejat cu parolă"],"Only visible to site admins and editors.":["Vizibil numai pentru administratorii și editori sitului."],"Private":["Privat"],"Visible to everyone.":["Vizibil pentru toată lumea."],"Post Visibility":["Vizibilitate articol"],"Would you like to privately publish this post now?":[],"Use a secure password":["Folosește o parolă sigură"],"Create password":["Crează parolă"],"Move to Trash":["Aruncă la gunoi"],"Parent Term":["Termen părinte"],"Parent Category":["Categorie părinte"],"Add new term":["Adaugă termen nou"],"Add new category":["Adaugă categorie nouă"],"Term":["Termen"],"Tag":["Etichetă"],"Add new Term":["Adaugă termen nou"],"Add new tag":["Adaugă etichetă nouă"],"Switch to draft":["Comută la ciornă"],"Are you sure you want to unpublish this post?":["Sigur vrei să anulezi publicarea acestui articol?"],"Immediately":["Imediat"],"Save Draft":["Salvează ciorna"],"Saving":["Salvez"],"Publish:":["Publică:"],"Visibility:":["Vizibilitate:"],"Are you ready to publish?":[],"Copy Link":["Copiază legătura"],"What’s next?":["Ce urmează?"],"is now live.":["este live acum."],"Published":["Publicat"],"Schedule":["Programează"],"Update":["Actualizează"],"Submit for Review":[],"Updating…":["Actualizez..."],"Publishing…":["Public..."],"Allow pingbacks & trackbacks":["Permite pingback-uri și trackback-uri"],"Permalink:":[],"Pending review":[],"%d Revision":[],"Suggestion:":["Sugestie:"],"Post Format":[],"Chat":[],"Status":["Stare"],"Standard":["Standard"],"Aside":["Notă"],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":[],"Write an excerpt (optional)":[],"Allow comments":[],"Template:":["Șablon:"],"no parent":["fără părinte"],"no title":["fără titlu"],"Order":["Ordine"],"No blocks found.":["Niciun bloc găsit."],"%d result found.":[],"Saved":["Salvat"],"Embeds":["Înglobări"],"Blocks":["Blocuri"],"Search for a block":["Caută un bloc"],"Add block":["Adaugă bloc"],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":["Încearcă recuperarea"],"The editor has encountered an unexpected error.":["Editorul a găsit o eroare neașteptată."],"Undo":["Revenire"],"Redo":[],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":["Stiluri bloc"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":["Mai multe opțiuni"],"Edit visually":["Editează vizual"],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":["Blocurile nu pot fi mutate jos deoarece ele sunt deja în partea de jos"],"Blocks cannot be moved up as they are already at the top":["Blocurile nu pot fi mutate sus deoarece sunt deja în partea de sus"],"Block %1$s is at the beginning of the content and can’t be moved right":["Blocul %1$s este la începutul conținutului și nu poate fi mutat în dreapta"],"Block %1$s is at the end of the content and can’t be moved right":["Blocul %1$s este la sfârșitul conținutului și nu poate fi mutat în dreapta"],"Block %s is the only block, and cannot be moved":["Blocul %s este singurul bloc și nu poate fi mutat"],"Edit as HTML":["Editează ca HTML"],"Convert to Blocks":[],"Block: %s":["Bloc: %s"],"This block has encountered an error and cannot be previewed.":["Acest bloc a găsit o eroare și nu poate fi previzualizat."],"No block selected.":["Niciun bloc selectat."],"Transform into:":[],"Remove":[],"Find original":[],"Copy all content":[],"Copied!":[],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":[],"Status & visibility":["Stare și vizibilitate"],"Page attributes":["Atribute pagină"],"Block":["Bloc","%d blocuri","%d de blocuri"],"Document":["Document"],"Close settings":["Închide setările"],"Editor content":[],"Tools":["Unelte"],"Editor":["Editor"],"Code editor":["Editor de cod"],"Visual editor":["Editor vizual"],"Editor top bar":["Bară sus editor"],"Settings":["Setări"],"Reset":["Resetează"],"Dismiss this notice":[],"Item removed.":["Element înlăturat."],"Item added.":["Element adăugat."],"Drop files to upload":[],"PM":[],"AM":[],"An unknown error occurred.":[],"No results.":[],"%d result found, use up and down arrow keys to navigate.":[],"(no title)":[],"URL":["URL"],"Submit":["Trimite"],"Close":["Închide"],"Insert link":[],"Edit link":[],"Link":["Legătură"],"Strikethrough":["Barare"],"Italic":["Cursiv"],"Bold":["Aldin"],"Remove link":[],"Number of items":[],"All":[],"Category":[],"Z → A":[],"A → Z":[],"Oldest to Newest":[],"Newest to Oldest":[],"Order by":[],"Select":[],"Select or Upload Media":[],"Video":[],"Write…":[],"poetry":[],"Verse":[],"New Column":[],"Delete Column":[],"Add Column After":[],"Add Column Before":[],"Delete Row":[],"Add Row After":[],"Add Row Before":[],"Edit table":[],"Table":[],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":[],"horizontal-line":[],"Separator":[],"Quote":[],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":[],"Preformatted":[],"text":[],"Paragraph":[],"Font Size":[],"Drop Cap":[],"Text settings":[],"Read more":[],"Write list…":[],"numbered list":[],"ordered list":[],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":[],"Convert to unordered list":[],"List":[],"recent posts":[],"No posts found.":[],"Latest Posts":[],"Display post date":[],"Grid view":[],"List view":[],"photo":[],"Image settings":[],"Image":[],"Preview":[],"embed":[],"Custom HTML":[],"subtitle":[],"title":[],"Heading":[],"Write heading…":[],"Heading %d":[],"Level":[],"Heading settings":[],"photos":[],"images":[],"None":[],"Media File":[],"Attachment Page":[],"Link to ":[],"Crop Images":[],"Gallery settings":[],"Gallery":[],"Classic":[],"video":[],"audio":[],"music":[],"image":[],"blog":[],"post":[],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":[],"Embedding…":[],"Write title…":[],"Fixed Background":[],"Edit image":[],"Columns":[],"Experiments":[],"Code":[],"Write code…":[],"Categories":[],"Show Hierarchy":[],"Show post counts":[],"Categories settings":[],"Add text…":[],"Button":[],"Apply":[],"Text Color":[],"Background Color":[],"Block has been deleted or is unavailable.":[],"Reusable blocks":[],"Cancel":[],"Edit":[],"Write caption…":[],"Use URL":[],"Audio":[],"Upload":[],"Additional CSS Class(es)":[],"HTML Anchor":[],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":[],"Custom color picker":[],"Color: %s":[],"Full width":[],"Wide width":[],"Widgets":[],"Formatting":[],"Common blocks":["Blocuri comune"],"Align right":["Aliniază la dreapta"],"Align center":["Aliniază la centru"],"Align left":["Aliniază la stânga"],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["Adaugă titlu"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Autor"],"Slug":["Descriptor"],"Discussion":["Discuții"],"Custom fields":["Câmpuri personalizate"],"Excerpt":["Rezumat"],"Publish":["Publică"],"Metadata":["Metadate"],"Save":["Salvează"],"Documentation":["Documentație"],"Select Category":["Selectează categoria"],"(Untitled)":["(Fără titlu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Pentru a funcționa corect, Gutenberg necesită WordPress %s sau o versiune ulterioară. Te rog actualizează WordPress înainte de a activa Gutenberg."],"Gutenberg Team":["Echipa Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demonstrație"],"%s ago":["Acum %s"],"Block style name must be a string.":["Numele stilului blocului trebuie să fie un șir de caractere."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ru.json b/bundle/android/raw/i18ncache_data_ru.json
new file mode 100644
index 0000000000..c19202b0bc
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ru.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Показать значок подменю для элементов верхнего уровня"],"Display settings":["Показать настройки"],"Choose variation":["Выберите вариант"],"Angle":["Угол"],"%s Block":["%s Блок"],"%1$s Block. %2$s":["%1$s Блок. %2$s"],"%s Block. Column %d":["%s Блок. Столбец %d"],"%1$s Block. Column %2$d. %3$s":["%1$s Блок. Столбец %2$d. %3$s"],"%s Block. Row %d":["%s Блок. Строка %d"],"%1$s Block. Row %2$d. %3$s":["%1$s Блок. Строка %2$d. %3$s"],"Post Excerpt":["Выдержка"],"Post Date":["Дата записи"],"No Date":["Нет даты"],"Post Author":["Автор записи"],"Choose":["Выбрать"],"twentytwenty":["twentytwenty"],"Theme":["Тема"],"Choose a template part by slug and theme, or create a new one.":["Выберите часть шаблона по ярлыку и теме или создайте новый."],"Error adding template.":["Ошибка добавления шаблона."],"Footer label":["Ярлык подвала"],"Header label":["Ярлык заголовка"],"Unsupported":["Не поддерживается"],"The description will be displayed in the menu if the current theme supports it.":["Описание будет отображаться в меню, если текущая тема поддерживает его."],"Level %1$s. %2$s":["Уровень %1$s. %2$s"],"Level %s. Empty.":["Уровень %s. Пустой."],"Empty":["Пусто"],"Search results for %s":["Результаты поиска для %s"],"Recently updated":["Недавно обновлённые"],"Multiple selected blocks":["Несколько выбранных блоков"],"By %s":["От %s"],"Inspector":["Инспектор"],"Site editor advanced settings.":["Расширенные настройки редактора сайта"],"(beta)":["(бета)"],"Site Editor":["Редактор сайта"],"Site editor top bar.":["Верхняя панель редактора сайта."],"Briefly describe the link to help screen reader users.":["Кратко опишите ссылку, чтобы помочь пользователям с программой чтения с экрана."],"Link Label":["Ярлык ссылки"],"%s label":["%s ярлык"],"poem":["стих"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nОкно,очень маленькое вдалеке, освещено.\nВсе вокруг - это почти полностью черный экран. Теперь, когда камера медленно движется к окну, которое является почти почтовой маркой в кадре, появляются другие формы;"],"Full Post":["Полная запись"],"Show:":["Показать:"],"Create from all top-level pages":["Создать из всех страниц верхнего уровня"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Побудите посетителей к действию с помощью группы ссылок в стиле кнопок."],"Buttons":["Кнопки"],"Background":["Фон"],"Background & Text Color":["Фон и цвет текста"],"Images Size":["Размер изображения"],"Remove multiple selected blocks.":["Удалите несколько выбранных блоков."],"(%s: gradient %s)":["(%s: градиент %s)"],"(%s: color %s)":["(%s: цвет %s)"],"(Gradient: %s)":["(Градиент: %s)"],"(Color: %s)":["(Цвет: %s)"],"Here's a detailed guide.":["Вот вам подробное руководство."],"New to the Block Editor? Want to learn more about using it? ":["Новичок в Редакторе блоков? Хотите узнать больше о его использовании?"],"Learn how to use the Block Editor":["Узнайте, как использовать Редактор блоков"],"Help":["Помощь"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s иконка блока"],"Submit for Review…":["Отправить на рассмотрение..."],"Update…":["Обновление..."],"Select items to save.":["Выберите элементы для сохранения."],"What do you want to save?":["Что вы хотите сохранить?"],"Untitled":["Без заголовка"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["Редактор блоков включает в себя экспериментальные функции, которые можно использовать в процессе разработки. Выберите те, которые вы хотите включить. Эти функции, скорее всего, изменятся, поэтому избегайте их использования на рабочем сайте."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Включите полное редактирование сайта (Предупреждение: это заменит вашу тему и приведет к потенциально необратимым изменениям на вашем сайте. Мы рекомендуем использовать это только в среде разработки.)"],"Site Editor (beta)":["Редактор сайта (бета)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// \"Блок\" - это абстрактный термин, используемый\n// для описания единиц разметки, которые\n// совместно, формируют\n// контент или макет страницы.\nregisterBlockType( name, settings );"],"You are probably offline.":["Вы, вероятно, не в сети."],"Justify items right":["Выравнивание элементов справа"],"Justify items center":["Выравнивание элементов по центру"],"Justify items left":["Выравнивание элементов слева"],"Change items justification":["Изменить выравнивание элементов"],"The media file has been replaced":["Медиафайл был заменён"],"Replace":["Заменить"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["В настоящее время вы находитесь в режиме редактирования. Чтобы вернуться в режим навигации, нажмите клавишу Escape."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["В данный момент Вы находитесь в режиме навигации. Навигация по блокам осуществляется с помощью клавиши Tab. Для выхода из режима навигации и редактирования выбранного блока нажмите клавишу Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Используйте клавиши со стрелками влево или вправо или перетащите с помощью мыши, чтобы изменить положение градиента. Нажмите кнопку, чтобы изменить цвет или удалить контрольную точку."],"Gradient control point at position %1$s with color code %2$s.":["Контрольная точка градиента в позиции %1$s с кодом цвета %2$s."],"Preset Size":["Установить размер"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Инструменты предлагают различные взаимодействия для выбора и редактирования блоков. Чтобы выбрать - нажмите Escape, чтобы вернуться к редактированию - нажмите Enter."],"Open Media Library":["Открыть библиотеку файлов"],"Next":["Вперёд"],"Previous":["Назад"],"Finish":["Готово"],"Page %1$d of %2$d":["Страница %1$d из %2$d"],"Guide controls":["Управление инструкцией"],"Remove Control Point":["Удалить контрольную точку"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Каждый блок поставляется со своим собственным набором элементов управления. Для изменения таких вещей как: цвет, ширина и выравнивание. Они будут отображаться и скрываться автоматически, когда у вас есть выбранный блок."],"Make each block your own":["Сделайте каждый блок собственным"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["В редакторе WordPress каждый абзац, изображение или видео представлены в виде отдельного \"блока\" содержимого."],"ADD MEDIA":["ДОБАВИТЬ МЕДИА"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Все доступные вам блоки находятся в библиотеке блоков. Вы найдете её везде, где видите иконку."],"Get to know the Block Library":["Познакомьтесь с библиотекой блоков"],"Welcome Guide":["Начальная инструкция"],"Enable page templates":["Включить страницу шаблонов"],"Page Templates":["Страница шаблонов"],"Enable Full Site Editing demo templates":["Включить полное редактирование сайта демо-шаблоны"],"Full Site Editing Demo Templates":["Полное редактирование сайта демо-шаблоны"],"Welcome to the Block Editor":["Добро пожаловать в редактор блоков"],"Get started":["Начало работы"],"inserter":["Вставка"],"Post Title":["Заголовок записи"],"Add nofollow to link":["Добавить nofollow в ссылку"],"Add submenu":["Добавить подменю"],"Add link…":["Добавить ссылку..."],"Dark":["Тёмный"],"Light":["Светлый"],"recording":["запись"],"podcast":["подкаст"],"sound":["звук"],"Array of instance changes":["Массив изменений экземпляра"],"Current widget instance":["Текущий экземпляр виджета"],"Template parts to include in your templates.":["Части шаблона для включения в ваши шаблоны."],"Template parts list":["Список частей шаблона"],"Template parts list navigation":["Навигация по списку частей шаблона"],"Filter template parts list":["Фильтр списка частей шаблона"],"Uploaded to this template part":["Загружено в эту часть шаблона"],"Insert into template part":["Вставить в часть шаблона"],"Template part archives":["Архивы частей шаблона"],"No template parts found in Trash.":["В корзине нет частей шаблона."],"No template parts found.":["Частей шаблона не найдено."],"Parent Template Part:":["Родительская часть шаблона:"],"Search Template Parts":["Поиск частей шаблона"],"All Template Parts":["Все части шаблона"],"View Template Part":["Просмотр части шаблона"],"Edit Template Part":["Изменить часть шаблона"],"New Template Part":["Новая часть шаблона"],"Add New Template Part":["Добавить новую часть шаблона"],"Template Part\u0004Add New":["Добавить новый"],"Admin Menu text\u0004Template Parts":["Части шаблона"],"Template Part":["Часть шаблона"],"Template Parts":["Части шаблона"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Над чем развозился великий бог Пан,\nВнизу в камышах на реке?\nНаносит повсюду разор да изъян,\nПлескаясь и брызжа козлиной ногой,\nКувшинкам помял он убор золотой,\nСтрекоз разогнал по реке."],"Navigation":["Навигация"],"Loading Navigation…":["Загрузка навигации…"],"Navigation Structure":["Структура навигации"],"Create empty":["Создать пустой"],"Create a Navigation from all existing pages, or create an empty one.":["Создайте навигацию из всех существующих страниц или создайте пустую."],"Navigation Link":["Ссылка навигации"],"(Note: many devices and browsers do not display this text.)":["(Примечание: многие устройства и браузеры не отображают этот текст.)"],"Describe the role of this image on the page.":["Опишите роль этого изображения на странице."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Переключение между использованием одного и того же значения для всех размеров экрана или с использованием уникального значения для каждого размера экрана."],"Use the same %s on all screensizes.":["Используйте один и тот же %s на всех экранах."],"Large screens":["Большие экраны"],"Medium screens":["Средние экраны"],"Small screens":["Маленькие экраны"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Управляет свойством %1$s для %2$s области просмотра."],"Currently selected":["В настоящее время выбрано"],"Search or type url":["Введите поисковый запрос или URL"],"Press ENTER to add this link":["Нажмите кнопку ENTER, чтобы добавить эту ссылку"],"Currently selected link settings":["Текущие настройки выбранной ссылки"],"Generic label for block inserter button\u0004Add block":["Добавить блок"],"directly add the only allowed block\u0004Add %s":["Добавить %s"],"%s block added":["%s блок добавлен"],"Move %s":["Переместить %s"],"Extra Large":["Очень крупный"],"Block breadcrumb":["Блок хлебных крошек"],"Editor footer":["Редактор подвала"],"Site Title":["Название сайта"],"Open Colors Selector":["Открыть выбор цвета"],"Templates list":["Список шаблонов"],"Templates list navigation":["Навигация по списку шаблонов"],"Filter templates list":["Фильтр списка шаблонов"],"Uploaded to this template":["Загружено в этот шаблон"],"Insert into template":["Вставить в шаблон"],"Template archives":["Архивы шаблонов"],"No templates found in Trash.":["Нет шаблонов в корзине."],"No templates found.":["Шаблоны не найдены."],"Parent Template:":["Родительский шаблон:"],"Search Templates":["Поиск шаблонов"],"All Templates":["Все шаблоны"],"View Template":["Просмотреть шаблон"],"Edit Template":["Изменить шаблон"],"New Template":["Новый шаблон"],"Add New Template":["Добавить новый шаблон"],"Template\u0004Add New":["Добавить новый"],"Admin Menu text\u0004Templates":["Шаблоны"],"Template":["Шаблон"],"No matching template found":["Соответствующие шаблоны не найдены."],"Gradient: %s":["Градиент: %s"],"Gradient code: %s":["Код градиента: %s"],"All content copied.":["Всё содержимое было скопировано."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Загрузка медиафайла не удалась. Если это фотография или изображение большого размера, уменьшите его и попробуйте снова."],"Gradient":["Градиент"],"Gradient Presets":["Настройки градиента"],"No Preview Available.":["Предварительный просмотр недоступен."],"Midnight":["Полуночный"],"Electric grass":["Электрическая трава"],"Pale ocean":["Бледный океан"],"Luminous dusk":["Светящиеся сумерки"],"Blush bordeaux":["Пурпурно-красный"],"Blush light purple":["Пастельный светло-фиолетовый"],"Cool to warm spectrum":["Холодный к тёплому спектру"],"Very light gray to cyan bluish gray":["Светло-серый к голубовато-серому"],"Luminous vivid orange to vivid red":["Ярко-оранжевый к ярко-красному"],"Luminous vivid amber to luminous vivid orange":["Янтарный к ярко-оранжевому"],"Light green cyan to vivid green cyan":["Светло-зеленый к ярко-зелёному"],"Vivid cyan blue to vivid purple":["Ярко-синий к ярко-фиолетовому"],"https://wordpress.org/support/article/excerpt/":["https://ru.wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 декабря 2018"],"February 21, 2019":["21 февраля 2019"],"May 7, 2019":["7 мая 2019"],"Release Date":["Дата выхода"],"Jazz Musician":["Джазовый музыкант"],"Version":["Версия"],"Six.":["Шесть."],"Five.":["Пять."],"Four.":["Четыре."],"Three.":["Три."],"Two.":["Два."],"One.":["Один."],"One of the hardest things to do in technology is disrupt yourself.":["One of the hardest things to do in technology is disrupt yourself."],"— Kobayashi Issa (一茶)":[" — Кобаяси Исса (一茶)"],"The wren
Earns his living
Noiselessly.":["Клюв свой раскрыв,
Запеть не успел крапивник.
Кончился день."],"Welcome to the wonderful world of blocks…":["Добро пожаловать в удивительный мир блоков..."],"Snow Patrol":["Снежный патруль"],"Dimensions":["Размеры"],"Minimum height in pixels":["Минимальная высота в пикселях"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Призыв к действию"],"In quoting others, we cite ourselves.":["Цитируя других, мы цитируем себя."],"cite":["цитировать"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc appears—still, snowy, and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["В скромной деревушке провинции Ламанчи жил идальго, по имени Дон Кехана. Как и всякий дворянин, он гордился своим благородным происхождением, свято хранил древний щит и родовое копье и держал у себя на дворе тощую клячу и борзую собаку."],"Block navigation":["Навигация по блокам"],"Full Site Editing":["Полное редактирование сайта"],"Templates to include in your theme.":["Шаблоны для включения в вашу тему."],"Templates":["Шаблоны"],"Inserter help panel":["Панель помощи по вставке"],"Pre-publish checks":["Проверки перед публикацией"],"Please contact your site administrator to install new blocks.":["Для установки новых блоков обратитесь к администратору сайта."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["В вашей библиотеке нет блоков. Для установки новых блоков обратитесь к администратору сайта."],"No blocks found in your library.":["В вашей библиотеке нет блоков."],"No blocks found in your library. These blocks can be downloaded and installed:":["В вашей библиотеке нет блоков. Эти блоки можно скачать и установить:"],"No blocks found in your library. We did find %d block available for download.":["В вашей библиотеке нет блоков. Мы нашли %d блок, доступный для загрузки.","В вашей библиотеке нет блоков. Мы нашли %d блока, доступных для загрузки.","В вашей библиотеке нет блоков. Мы нашли %d блоков, доступных для загрузки."],"Block previews can’t load.":["Предпросмотр блока не загружается."],"Retry":["Повторить"],"Block previews can't install.":["Не удается установить предпросмотр блока."],"Updated %s":["Обновлено %s"],"%d active installation":["%d активная установка","%d активных установки","%d активных установок"],"This author has %d block, with an average rating of %d.":["Этот автор имеет %d блок, со средним рейтингом %d.","Этот автор имеет %d блока, со средним рейтингом %d.","Этот автор имеет %d блоков, со средним рейтингом %d."],"Authored by %s":["Предоставленные %s"],"%d total rating":["%d всего оценка","%d всего оценки","%d всего оценок"],"%s out of 5 stars":["%s из 5 звёзд"],"Enter Address":["Введите адрес"],"Pill Shape":["Форма таблетки"],"Logos Only":["Только логотипы"],"Create a block of links to your social media or external sites":["Создайте блок ссылок на ваши социальные сети или внешние сайты"],"Social links":["Ссылки на соцсети"],"Open block navigator":["Навигация по открытым блокам"],"Attachment page":["Страница вложения"],"Fill":["Заполнить"],"Link rel":["rel ссылки"],"Border Radius":["Закругление углов"],"Write gallery caption…":["Написать заголовок галереи…"],"Content blocks":["Содержимое блоков"],"Restore the backup":["Восстановить из резервной копии"],"The backup of this post in your browser is different from the version below.":["Резервная копия этой записи в вашем браузере отличается от версии ниже."],"Enable block directory search":["Включить поиск в каталоге блоков"],"Block Directory":["Каталог блоков"],"Unable to connect to the filesystem. Please confirm your credentials.":["Не удалось подключиться к файловой системе. Пожалуйста, подтвердите свои учетные данные."],"Sorry, you are not allowed to install blocks.":["К сожалению, вы не можете установить блоки."],"%1$d block is disabled.":["%1$d блок отключен.","%1$d блока отключено.","%1$d блоков отключено."],"Reverse List Numbering":["Обратная нумерация списка"],"Start Value":["Начальное значение"],"Ordered list settings":["Настройки упорядоченного списка"],"Clear Media":["Очистить медиа"],"Default Style":["Стиль по умолчанию"],"Not set":["Не установлен"],"While writing, you can press / to quickly insert new blocks.":["Во время написания, вы можете нажать /, чтобы быстро вставить новые блоки."],"Browse through the library to learn more about what each block does.":["Просмотрите библиотеку, чтобы узнать больше о том, что делает каждый блок."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Есть блоки, доступные для всех видов контента: вставьте текст, заголовки, изображения, списки, видео, таблицы и многое другое."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Добро пожаловать в удивительный мир блоков! Блоки являются основой всего содержимого в редакторе."],"Version of the content block format used by the object.":["Версия формата блоков содержимого, используемая объектом."],"HTML content for the object, transformed for display.":["HTML содержимое для объекта, преобразованное для показа."],"Content for the object, as it exists in the database.":["Содержимое для объекта, как оно существует в базе данных."],"The content for the object.":["Содержимое для объекта."],"Change column alignment":["Изменить выравнивание столбца"],"Align Column Right":["Выровнять столбец справа"],"Align Column Center":["Выровнять столбец по центру"],"Align Column Left":["Выровнять столбец слева"],"Color":["Цвет"],"Vivid purple":["яркий фиолетовый"],"Disable & Reload":["Отключить и перезагрузить"],"Enable & Reload":["Включить и перезагрузить"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Для этого изменения требуется перезагрузить страницу. Убедитесь в том, что вы сохранили содержимое перед перезагрузкой."],"Display these keyboard shortcuts.":["Показывать эти горячие клавиши"],"Experiments Settings":["Экспериментальные настройки"],"Enable Widgets screen and Legacy Widgets block":["Включить экран виджетов и блок старых виджетов"],"Experimental settings":["Экспериментальные настройки"],"Block name name must be a string.":["Имя блока должно быть строкой."],"Custom":["Произвольный"],"Draft":["Черновик"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Блок \"%1$s\" не содержит стиля с именем \"%2$s.\"."],"Learn more about anchors":["Узнайте больше об якорях"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Введите слово или два - без пробелов - чтобы создать уникальный веб-адрес только для этого заголовка, который называется “якорь“. Затем вы сможете напрямую ссылаться на этот раздел своей страницы."],"Widget Blocks (Experimental)":["Блоки виджетов (Экспериментальное)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Загрузите видеофайл, выберите его из медиабиблиотеки или добавьте URL-адрес."],"Upload an image file, pick one from your media library, or add one with a URL.":["Загрузите файл изображения, выберите из медиабиблиотеки или добавьте URL-адрес."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Загрузите аудиофайл, выберите его из медиабиблиотеки или добавьте URL-адрес."],"Upload a media file or pick one from your media library.":["Загрузите медиафайл или выберите его из медиабиблиотеки."],"Skip":["Пропустить"],"Select a variation to start with.":["Выберите вариант для начала."],"Add a page, link, or another item to your navigation.":["Добавьте страницу, ссылку или другой элемент в навигацию."],"What's this?":["Что это?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Не позволяет поисковым системам переходить по этой ссылке."],"Provide more context about where the link goes.":["Предоставьте больше контекста о том, куда идет ссылка."],"Title Attribute":["Атрибут title"],"SEO settings":["Настройки СЕО"],"Description":["Описание"],"Open in new tab":["Открыть в новой вкладке"],"links":["ссылки"],"navigation":["навигация"],"menu":["меню"],"Add a navigation block to your site.":["Добавьте блок навигации на свой сайт."],"Upload a file or pick one from your media library.":["Загрузите файл или выберите его из медиабиблиотеки."],"Learn more about embeds":["Узнайте больше о встраиваниях"],"https://wordpress.org/support/article/embeds/":["https://codex.wordpress.org/Вставка_объектов"],"Paste a link to the content you want to display on your site.":["Вставьте ссылку на контент, который вы хотите отобразить на своем сайте."],"Upload an image or video file, or pick one from your media library.":["Загрузите изображение или видеофайл или выберите его из медиабиблиотеки."],"Three columns; wide center column":["Три колонки; широкая центральная колонка"],"Three columns; equal split":["Три колонки; равное разделение"],"Two columns; two-thirds, one-third split":["Две колонки; две трети, одна треть разделение"],"Two columns; one-third, two-thirds split":["Две колонки; одна треть, две трети разделение"],"Two columns; equal split":["Две колонки; равное разделение"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["На вашем сайте нет %s, поэтому здесь нечего показывать."],"More tools & options":["Больше инструментов и возможностей"],"Create Table":["Создать таблицу"],"Insert a table for sharing data.":["Создать таблицу для представления данных."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Разгруппировать"],"verb\u0004Group":["Группировать"],"Separate with commas or the Enter key.":["Разделяйте запятыми или клавишей Enter."],"Separate with commas, spaces, or the Enter key.":["Разделяйте запятыми, пробелами или клавишей Enter."],"Separate multiple classes with spaces.":["Разделите несколько классов пробелами."],"Move image forward":["Переместить изображение вперёд"],"Move image backward":["Переместить изображение назад"],"Sorry, you are not allowed to edit sidebars.":["К сожалению, вы не можете редактировать области виджетов."],"Sorry, you are not allowed to read sidebars.":["К сожалению, вы не можете читать области виджетов."],"The sidebar’s ID.":["ID области виджетов."],"Displays a set of blocks":["Отображает набор блоков"],"Blocks Area":["Область блоков"],"Block rendered as empty.":["Блок отображается как пустой."],"Inline Code":["Встроенный код"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Заметка: Автоматическое воспроизведение видео может вызвать проблемы с использованием у некоторых посетителей."],"Footer section":["Область подвала"],"Header section":["Область заголовка"],"Sorting and filtering":["Сортировка и фильтрация"],"Post meta settings":["Настройки метаданных записи"],"Post Content":["Содержимое записи"],"Post content settings":["Настройки содержимого записи"],"Percentage width":["Ширина в процентах"],"Column settings":["Настройки столбца"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Заметка: Автоматическое воспроизведение звука может вызвать проблемы с использованием у некоторых посетителей."],"Block area updated.":["Область блоков обновлена."],"Block area scheduled.":["Область блоков запланирована к публикации."],"Block area published.":["Область блоков опубликована."],"Block areas list":["Список областей блоков"],"Block areas list navigation":["Навигация по списку областей блоков"],"Filter block areas list":["Отфильтровать список областей блоков"],"No block area found.":["Область блоков не найдена."],"Search Block Areas":["Поиск областей блоков"],"All Block Areas":["Все области блоков"],"View Block Area":["Посмотреть область блоков"],"Edit Block Area":["Изменить область блоков"],"New Block Area":["Новая область блоков"],"Add New Block Area":["Добавить новую область блоков"],"admin menu\u0004Block Areas":["Области блоков"],"post type singular name\u0004Block Area (Experimental)":["Область блоков (Экспериментальное)"],"post type general name\u0004Block Area (Experimental)":["Область блоков (Экспериментальное)"],"Experimental custom post type that will store block areas referenced by themes.":["Экспериментальный пользовательский тип записи, сохраняющий области блоков, на которые ссылаются темы."],"Widgets screen content":["Содержимое экрана виджетов"],"header":["заголовок"],"Widgets advanced settings":["Расширенные настройки виджетов"],"(experimental)":["(экспериментальный)"],"Block Areas":["Области Блока"],"Widgets screen top bar":["Верхняя панель экрана виджетов"],"This color combination may be hard for people to read.":["Это сочетание цветов может быть трудным для чтения людьми."],"There is no poster image currently selected":["В данный момент изображение постера не выбрано"],"The current poster image url is %s":["Текущий URL изображения постера %s"],"section":["раздел"],"row":["строка"],"wrapper":["обёртка"],"container":["контейнер"],"A block that groups other blocks.":["Блок, который группирует другие блоки."],"Group":["Группа"],"Crop image to fill entire column":["Обрезать изображение для заполнения всего столбца"],"Play inline":["Воспроизводить встроенным"],"Leave empty if the image is purely decorative.":["Оставьте пустым, если изображение чисто декоративное."],"Describe the purpose of the image":["Опишите назначение изображения"],"Add a block":["Добавить блок"],"Block vertical alignment setting label\u0004Change vertical alignment":["Изменить вертикальное выравнивание"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Вертикальное выравнивание вниз"],"Block vertical alignment setting\u0004Vertically Align Middle":["Вертикальное выравнивание по центру"],"Replace Image":["Заменить изображение"],"Block vertical alignment setting\u0004Vertically Align Top":["Вертикальное выравнивание вверх"],"Display a legacy widget.":["Показать устаревший виджет."],"Legacy Widget (Experimental)":["Устаревший виджет (Экспериментальное)"],"Change widget":["Изменить виджет"],"Legacy Widget":["Устаревший виджет"],"You don't have permissions to use widgets on this site.":["У вас нет прав на использование виджетов на этом сайте."],"Select a legacy widget to display:":["Выберите устаревший виджет для отображения:"],"There are no widgets available.":["Нет доступных виджетов."],"Change block type or style":["Изменить тип блока или стиль"],"keyboard key\u0004Space":["Пробел"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Больше элементов управления Rich Text"],"Search Terms":["Условия поиска"],"Exit the Editor":["Выход из редактора"],"Block Manager":["Менеджер блоков"],"Class name of the widget.":["Имя класса виджета."],"Sorry, you are not allowed to access widgets on this site.":["Извините, у вас нет доступа к виджетам на этом сайте."],"Widgets (beta)":["Виджеты (бета)"],"link":["ссылка"],"Embedded content from %s can't be previewed in the editor.":["Встроенное содержимое из %s невозможно просмотреть в редакторе."],"Custom Color":["Произвольный цвет"],"Prompt visitors to take action with a button-style link.":["Мотивируйте посетителей к действию ссылкой в виде кнопки."],"Stick to the top of the blog":["Прилепить к верхней части блога"],"Read about permalinks":["Читайте о постоянных ссылках"],"The last part of the URL.":["Последняя часть URL."],"URL Slug":["Ярлык URL"],"A cloud of your most used tags.":["Облако часто используемых меток."],"Tag Cloud":["Облако меток"],"Taxonomy":["Таксономия"],"Tag Cloud settings":["Настройки облака меток"],"- Select -":["- Выбрать -"],"Default":["По умолчанию"],"find":["Найти"],"Help visitors find your content.":["Помогите посетителям найти ваше содержимое."],"Search":["Поиск"],"Add button text…":["Добавить текст кнопки..."],"Button text":["Текст кнопки"],"Optional placeholder…":["Необязательный заполнитель…"],"Optional placeholder text":["Текст необязательного заполнителя"],"Add label…":["Добавить пометку..."],"Label text":["Текст лейбла"],"image %1$d of %2$d in gallery":["изображение %1$d из %2$d в галерее"],"archive":["архив"],"posts":["записи"],"A calendar of your site’s posts.":["Календарь записей вашего сайта."],"Calendar":["Календарь"],"by":["от"],"An error has occurred, which probably means the feed is down. Try again later.":["Произошла ошибка, которая, вероятно, означает, что канал не работает. Повторите попытку позже."],"RSS Error:":["Ошибка RSS:"],"block style\u0004Default":["По умолчанию"],"Fullscreen mode deactivated":["Полноэкранный режим отключен"],"Fullscreen mode activated":["Полноэкранный режим включен"],"Spotlight mode deactivated":["Режим подсветки деактивирован"],"Spotlight mode activated":["Режим подсветки активирован"],"Top toolbar deactivated":["Верхняя панель инструментов отключена"],"Top toolbar activated":["Верхняя панель инструментов включена"],"Back":["Назад"],"Feature activated":["Возможность активирована"],"Feature deactivated":["Возможность деактивирована"],"Vertical Pos.":["Вертикальная позиция"],"Horizontal Pos.":["Горизонтальная позиция"],"feed":["RSS-лента"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Отображение записей из любой RSS-ленты или Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Максимальное количество слов в отрывке"],"Display excerpt":["Показать отрывок"],"Display date":["Показать дату"],"Display author":["Показать автора"],"RSS settings":["Настройки RSS"],"Edit RSS URL":["Изменить RSS URL"],"Content before this block will be shown in the excerpt on your archives page.":["Содержимое перед этим блоком будет показано в отрывке на странице архивов."],"Hide the excerpt on the full content page":["Скрыть отрывок на странице полного содержимого"],"The excerpt is visible.":["Отрывок показан."],"The excerpt is hidden.":["Отрывок скрыт."],"Sorry, this content could not be embedded.":["Извините, это содержимое не может быть встроено."],"Embed Amazon Kindle content.":["Вставить содержимое Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Вставить содержимое Crowdsignal (ранее Polldaddy)."],"Focal Point Picker":["Выбор точки фокуса"],"Underline":["Подчеркивание"],"Attempt Block Recovery":["Попытка восстановления блока"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Содержимое..."],"button label\u0004Convert to link":["Сконвертировать в ссылку"],"button label\u0004Try again":["Попробовать снова"],"Editor tips":["Советы по использованию редактора"],"Block (selected)":["Блок (выбран)"],"Document (selected)":["Документ (выбран)"],"%d word":["%d слово","%d слова","%d слов"],"Top toolbar":["Верхняя панель инструментов"],"Link Rel":["Link Rel"],"Link CSS Class":["CSS класс ссылки"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Создайте контент и сохраните его для себя и других участников, чтобы повторно использовать его на сайте. Обновите блок, и изменения произойдут везде, где он используется."],"To edit the featured image, you need permission to upload media.":["Для редактирования изображения записи вам требуется разрешение на загрузку медиафайлов."],"To edit this block, you need permission to upload media.":["Для редактирования этого блока вам требуется разрешение на загрузку медиафайлов."],"(selected block)":["(выбранный блок)"],"Block tools":["Инструменты блоков"],"Permalink":["Постоянная ссылка"],"This image has an empty alt attribute":["Это изображение имеет пустой атрибут alt"],"This image has an empty alt attribute; its file name is %s":["Это изображение имеет пустой атрибут alt; его имя файла - %s"],"Block area reverted to draft.":["Область блоков возвращена в черновики."],"Block area published privately.":["Область блоков опубликована как личная."],"No block areas found in Trash.":["Нет областей блоков в корзине."],"Block\u0004Add New":["Добавить новый"],"add new on admin bar\u0004Block Area":["Область блоков"],"Link inserted.":["Ссылка вставлена."],"Warning: the link has been inserted but may have errors. Please test it.":["Предупреждение: Ссылка вставлена, но возможно с ошибками. Пожалуйста, проверьте её."],"%s block selected.":["Выбран %s блок.","Выбраны %s блока.","Выбраны %s блоков."],"Thumbnail":["Миниатюра"],"Full Size":["Полноразмерный"],"Link selected.":["Выбрана ссылка."],"Start writing with text or HTML":["Начните писать текст или HTML-код"],"Type text or HTML":["Напишите текст или HTML-код"],"Block icon":["Значок блока"],"Align text right":["Выравнять текст по правому краю"],"Align text center":["Выравнять текст по центру"],"Align text left":["Выравнять текст по левому краю"],"Start writing or type / to choose a block":["Начните писать или нажмите / для выбора блока"],"Empty block; start writing or type forward slash to choose a block":["Пустой блок; начните писать или нажмите прямой слэш (/) для выбора блока"],"Paragraph block":["Блок параграфа"],"Page Break":["Разрыв страницы"],"Stack on mobile":["Группировать друг над другом на мобильных устройствах"],"Annotation":["Примечание"],"Drag images, upload new ones or select files from your library.":["Перетащите изображения, загрузите новые или выберите имеющиеся из медиатеки."],"blocks\u0004Most used":["Часто используемые"],"imperative verb\u0004Resolve":["Исправить"],"font size name\u0004Huge":["Огромный"],"font size name\u0004Large":["Большой"],"font size name\u0004Medium":["Средний"],"font size name\u0004Small":["Маленький"],"font size name\u0004Normal":["Обычный"],"keyboard button\u0004Enter":["Ввод"],"button label\u0004Import":["Импорт"],"button label\u0004Download":["Скачать"],"button label\u0004Embed":["Вставить"],"block title\u0004Embed":["Вставка"],"block title\u0004Classic":["Классический"],"block style\u0004Large":["Большой"],"block style\u0004Rounded":["Закругленный"],"%s (opens in a new tab)":["%s (откроется в новой вкладке)"],"Link edited.":["Ссылка изменена."],"Link removed.":["Ссылка удалена."],"media":["медиафайл"],"Double-check your settings before publishing.":["Дважды проверьте ваши настройки перед публикацией."],"Generating preview…":["Создание предварительного просмотра..."],"Edit or update the image":["Изменить или обновить изображение"],"Media":["Медиафайлы"],"Navigate to the nearest toolbar.":["Навигация по ближайшей панели инструментов."],"Document tools":["Инструменты документа"],"Document and block tools":["Инструменты документа и блоков"],"Embed a video from your media library or upload a new one.":["Вставьте видео из вашей медиатеки или загрузите новое."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Вставить поэтические строфы. Можно использовать специальный формат интервалов или цитировать текст песни."],"Add white space between blocks and customize its height.":["Добавьте пространство между блоками и настройте его высоту."],"Insert additional custom elements with a WordPress shortcode.":["Вставить дополнительные пользовательские элементы с помощью шорткода."],"Create a break between ideas or sections with a horizontal separator.":["Создайте промежуток между идеями или разделами с помощью горизонтального разделителя."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Визуально акцентируйте цитируемый текст. \"Цитируя других, мы цитируем себя.\" - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Визуально акцентируйте цитату из вашего текста."],"Start with the building block of all narrative.":["Начните с создания повествовательного блока."],"Separate your content into a multi-page experience.":["Разделите содержимое на несколько страниц."],"Set media and words side-by-side for a richer layout.":["Установите мультимедиа элемент и текст по бокам от него для богатства макета."],"Media & Text settings":["Настройки мультимедиа и текста"],"Create a bulleted or numbered list.":["Создайте маркированый или нумерованый список."],"Display a list of your most recent comments.":["Покажите список самых свежих комментариев."],"Insert an image to make a visual statement.":["Добавьте изображение для визуального утверждения."],"Add custom HTML code and preview it as you edit.":["Добавьте произвольный код HTML и смотрите на результат в процессе редактирования."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Объявите новые разделы и организуйте содержимое для удобства посетителей (и поисковых систем) в понимании его структуры."],"Display multiple images in a rich gallery.":["Объедините несколько изображений в роскошной галерее."],"Add a link to a downloadable file.":["Добавьте ссылку на скачиваемый файл."],"Embed videos, images, tweets, audio, and other content from external sources.":["Вставить видео, изображения, твиты, аудио и другое содержимое из внешних источников."],"Resize for smaller devices":["Изменить размер для устройств с небольшим экраном"],"This embed may not preserve its aspect ratio when the browser is resized.":["Этот встроенный объект может не сохранять соотношение сторон при изменении размера окна браузера."],"This embed will preserve its aspect ratio when the browser is resized.":["Этот встроенный объект сохранит соотношение сторон при изменении размера окна браузера."],"Embed an Animoto video.":["Вставить видео Animoto."],"Embed a Vimeo video.":["Вставить видео Vimeo."],"Embed Flickr content.":["Вставить содержимое Flickr."],"Embed Spotify content.":["Вставить содержимое Spotify."],"Embed SoundCloud content.":["Вставить содержимое SoundCloud."],"Embed a WordPress post.":["Вставить запись WordPress."],"Embed an Instagram post.":["Вставить запись Instagram."],"Embed a Facebook post.":["Вставить запись Facebook."],"Embed a WordPress.tv video.":["Вставить видео WordPress.tv."],"Embed a VideoPress video.":["Вставить видео VideoPress."],"Embed a Tumblr post.":["Вставить запись Tumblr."],"Embed a TED video.":["Вставить видео TED."],"Embed Speaker Deck content.":["Вставить содержимое Speaker Deck."],"Embed a YouTube video.":["Вставить видео YouTube."],"Embed SmugMug content.":["Вставить содержимое SmugMug."],"Embed Slideshare content.":["Вставить содержимое Slideshare."],"Embed Scribd content.":["Вставить содержимое Scribd."],"Embed Screencast content.":["Вставить содержимое Screencast."],"Embed ReverbNation content.":["Вставить содержимое ReverbNation."],"Embed a Reddit thread.":["Вставить обсуждение Reddit."],"Embed Polldaddy content.":["Вставить содержимое Polldaddy."],"Embed Mixcloud content.":["Вставить содержимое Mixcloud."],"Embed a tweet.":["Вставить твит."],"Embed Meetup.com content.":["Вставить содержимое Meetup.com."],"Embed Kickstarter content.":["Вставить содержимое Kickstarter."],"Embed Issuu content.":["Вставить содержимое Issuu."],"Embed Imgur content.":["Вставить содержимое Imgur."],"Embed Hulu content.":["Вставить содержимое Hulu."],"Embed a Dailymotion video.":["Вставить видео Dailymotion."],"Embed CollegeHumor content.":["Вставить содержимое CollegeHumor."],"Embed Cloudup content.":["Вставить содержимое Cloudup."],"Add an image or video with a text overlay — great for headers.":["Добавьте изображение или видео с текстовым перекрытием — замечательно для заголовков."],"Display code snippets that respect your spacing and tabs.":["Покажите фрагменты кода с интервалами и табуляцией."],"Use the classic WordPress editor.":["Использовать классический редактор WordPress."],"Display a list of all categories.":["Показ списка всех рубрик."],"Embed a simple audio player.":["Вставить простой аудиопроигрыватель."],"noun\u0004View":["Вид"],"editor button\u0004Left to right":["Слева направо"],"Save as Pending":["Сохранить для утверждения"],"%s address":["%s адрес"],"Paste or type URL":["Вставить или ввести URL-адрес"],"Insert from URL":["Вставить с сайта"],"Block Navigator":["Навигация по блокам"],"Styles":["Стили"],"Advanced panels":["Расширенные панели"],"Document panels":["Панели документов"],"General":["Общие"],"Open the block navigation menu.":["Откроет меню навигации по блокам."],"Work without distraction":["Работа без отвлечения внимания"],"Focus on one block at a time":["Сосредоточьтесь на одном блоке"],"Access all block and document tools in a single place":["Доступ ко всем блокам и инструментам в одном месте"],"Options":["Настройки"],"(opens in a new tab)":["(откроется в новой вкладке)"],"Minutes":["Минуты"],"Hours":["Часы"],"Time":["Время"],"Year":["Год"],"Day":["День"],"December":["Декабрь"],"November":["Ноябрь"],"October":["Октябрь"],"September":["Сентябрь"],"August":["Август"],"July":["Июль"],"June":["Июнь"],"May":["Май"],"April":["Апрель"],"March":["Март"],"February":["Февраль"],"January":["Январь"],"Month":["Месяц"],"Date":["Дата"],"Go to the first (home) or last (end) day of a week.":["Перейдите в первый (home) или последний (end) день недели."],"Home/End":["Home/End"],"Home and End":["Home и End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Перемещение назад (PgUp) или вперед (PgDn) на один месяц."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up и Page Down"],"Move backward (up) or forward (down) by one week.":["Перемещение назад (вверх) или вперед (вниз) на одну неделю."],"Up and Down Arrows":["Вверх и Вниз стрелки"],"Move backward (left) or forward (right) by one day.":["Перемещение назад (влево) или вперед (вправо) на один день."],"Left and Right Arrows":["Влево и Вправо стрелки"],"Select the date in focus.":["Выберите дату в фокусе."],"Navigating with a keyboard":["Навигация с помощью клавиатуры"],"Click the desired day to select it.":["Нажмите на нужный день, чтобы выбрать его."],"Click the right or left arrows to select other months in the past or the future.":["Нажмите стрелки вправо или влево для выбора других месяцев в прошлом или в будущем."],"Click to Select":["Нажмите, чтобы выбрать"],"Calendar Help":["Помощь по календарю"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Используйте клавиши со стрелками для изменения цвета. Переместите вверх - чтобы осветлить цвет, вниз - чтобы затемнить, влево - чтобы уменьшить насыщенность, и вправо - чтобы увеличить насыщенность."],"Choose a shade":["Выберите оттенок"],"Change color format":["Изменение цветового формата"],"Color value in HSL":["Значение цвета в HSL"],"Color value in RGB":["Значение цвета в RGB"],"Color value in hexadecimal":["Значение цвета в HEX-формате"],"RGB mode active":["Режим RGB активен"],"Hex color mode active":["HEX режим активен"],"Hue/saturation/lightness mode active":["HSL режим активен"],"Move the arrow left or right to change hue.":["Переместите стрелку влево или вправо, чтобы изменить оттенок."],"Hue value in degrees, from 0 to 359.":["Значение оттенка в градусах, от 0 до 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Значение альфа, от 0 (прозрачный) до 1 (полностью непрозрачный)."],"Stripes":["Полосы"],"Your site doesn’t include support for this block.":["Ваш сайт не поддерживает этот блок."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Ваш сайт не поддерживает \"%s\" блок. Вы можете оставить этот блок нетронутым или полностью удалить его."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Ваш сайт не поддерживает \"%s\" блок. Вы можете оставить этот блок нетронутым, преобразовать его содержимое в произвольный HTML-блок или полностью удалить его."],"Media area":["Область мультимедиа"],"Media & Text":["Медиа и Текст"],"Show media on right":["Показать медиа справа"],"Show media on left":["Показать медиа слева"],"Open in New Tab":["Открыть в новой вкладке"],"Cover":["Обложка"],"Border settings":["Настройки границы"],"Medium":["Средний"],"Paste URL or type to search":["Введите URL или слово для поиска"],"Terms":["Термины"],"Your work will be published at the specified date and time.":["Ваш труд будет опубликован в указанную дату и время."],"Are you ready to schedule?":["Вы готовы запланировать?"],"Always show pre-publish checks.":["Всегда показывать проверки перед публикацией"],"Take Over":["Перехватить"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Другой пользователь уже редактирует эту запись. Вы хотите перехватить?"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s уже редактирует эту запись. Вы хотите перехватить?"],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["В данный момент другой пользователь редактирует эту запись. Не беспокойтесь, все ваши изменения на текущий момент будут сохранены"],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s в данный момент редактирует эту запись. Не беспокойтесь, все ваши изменения на текущий момент будут сохранены"],"Avatar":["Аватар"],"This post is already being edited.":["Запись уже редактируется."],"Someone else has taken over this post.":["Кто-то еще перехватил эту запись."],"This block contains unexpected or invalid content.":["Этот блок имеет неожиданное или неверное содержимое."],"Resolve Block":["Исправить блок"],"Convert to HTML":["Преобразовать в HTML"],"This block can only be used once.":["Этот блок можно использовать только один раз."],"Exit Code Editor":["Выйти из редактора кода"],"Editing Code":["Редактор кода"],"Solid Color":["Сплошной цвет"],"Main Color":["Основной цвет"],"HTML":["HTML"],"Write HTML…":["Пишите HTML..."],"Media settings":["Медиа настройки"],"Overlay":["Наложение"],"Insert Media":["Вставить медиафайл"],"Reusable block imported successfully!":["\"Мой блок\" импортирован успешно!"],"Invalid Reusable Block JSON file":["Невалидный JSON файл для \"Моего блока\""],"Invalid JSON file":["Недопустимый JSON-файл"],"Import from JSON":["Импорт из JSON"],"Backtick":["Кавычка"],"Period":["Точка"],"Comma":["Запятая"],"Change type of %d block":["Изменить тип %d блока","Изменить тип %d блоков","Изменить тип %d блоков"],"Current":["Текущий"],"After Conversion":["После преобразования"],"Change alignment":["Изменить выравнивание"],"Change text alignment":["Изменить выравнивание текста"],"%d block":["%d блок","%d блока","%d блоков"],"Forward-slash":["Обратный слеш"],"No archives to show.":["Нет архивов для просмотра."],"This file is empty.":["Этот файл пуст."],"Sorry, this file type is not supported here.":["К сожалению, этот тип файла здесь не поддерживается."],"Manage all reusable blocks":["Управление всеми \"Моими блоками\""],"Title":["Заголовок"],"Fullscreen mode":["Полноэкранный режим"],"Beautiful landscape":["Прекрасный пейзаж"],"Close panel":["Закрыть панель"],"Convert to Classic Block":["Конвертировать в классический блок"],"Remove Poster Image":["Удалить постер"],"Select Poster Image":["Добавить постер"],"Poster Image":["Постер"],"This block is deprecated. Please use the Columns block instead.":["Этот блок устарел. Вместо этого используйте блок «Столбцы»."],"Text Columns (deprecated)":["Текстовые столбцы (устарел)"],"Create":["Создать"],"Row Count":["Количество строк"],"Column Count":["Количество столбцов"],"This block is deprecated. Please use the Paragraph block instead.":["Этот блок устарел. Вместо этого используйте блок «Параграф»."],"Subheading (deprecated)":["Подзаголовок (устарел)"],"blockquote":["цитата"],"Change the block type after adding a new paragraph.":["Изменить тип блока после добавления нового параграфа."],"Spotlight mode":["Режим подсветки"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Метки помогают пользователям и поисковым системам перемещаться по вашему сайту и находить ваше содержимое. Добавьте несколько ключевых слов для описания вашей записи."],"Add tags":["Добавить метки"],"Apply the \"%1$s\" format.":["Применить формат «%1$s»."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["В вашей теме используются форматы записей, чтобы выделять различные виды содержимого, например изображений или видео. Примените формат записи, чтобы увидеть этот особый стиль."],"Use a post format":["Использовать формат записи"],"Insert After":["Вставить после"],"Insert Before":["Вставить до"],"Move %1$d block from position %2$d down by one place":["Переместить %1$d блок с позиции %2$d вниз на одну позицию","Переместить %1$d блока с позиции %2$d вниз на одну позицию","Переместить %1$d блоков с позиции %2$d вниз на одну позицию"],"Move %1$d block from position %2$d up by one place":["Переместить %1$d блок с позиции %2$d вверх на одну позицию","Переместить %1$d блока с позиции %2$d вверх на одну позицию","Переместить %1$d блоков с позиции %2$d вверх на одну позицию"],"Move %1$s block from position %2$d right to position %3$d":["Переместить %1$s блок из позиции %2$d в позицию %3$d"],"movie":["фильм"],"Insert a new block before the selected block(s).":["Вставить новый блок перед выбранным блоком."],"Remove the selected block(s).":["Удалить выбранный блок(и)."],"Duplicate the selected block(s).":["Дублировать выбранный блок(и)."],"Block shortcuts":["Блоки"],"Clear selection.":["Очистить выбор."],"Select all text when typing. Press again to select all blocks.":["Выбрать все. Нажмите еще раз, чтобы выбрать все блоки."],"Selection shortcuts":["Выбор"],"Switch between Visual editor and Code editor.":["Переключение между визуальным редактором и редактором кода."],"Navigate to the previous part of the editor.":["Перейти к предыдущей части редактора."],"Navigate to the next part of the editor.":["Перейти к следующей части редактора."],"Show or hide the settings sidebar.":["Показать или скрыть боковую панель настроек."],"Redo your last undo.":["Повторить последнюю отмену."],"Undo your last changes.":["Отменить свои последние изменения."],"Save your changes.":["Сохранить изменения."],"Global shortcuts":["Общие"],"Remove a link.":["Удалить ссылку."],"Convert the selected text into a link.":["Преобразовать выделенный текст в ссылку."],"Underline the selected text.":["Подчеркнуть выделенный текст."],"Make the selected text italic.":["Сделать выделенный текст курсивом."],"Make the selected text bold.":["Сделать выделенный текст жирным."],"Text formatting":["Форматирование текста"],"Insert a new block after the selected block(s).":["Вставить новый блок после выбранного блока."],"Keyboard shortcuts":["Горячие клавиши"],"Thanks for testing Gutenberg!":["Спасибо за тестирование Gutenberg!"],"Help build Gutenberg":["Помогите создавать Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Если вы хотите узнать больше о том, как создавать дополнительные блоки, или если вы хотите помочь в развитии проекта, заходите в репозиторий GitHub."],"The WordPress community":["Сообщество WordPress"],"Code is Poetry":["Код — это поэзия."],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Вы можете построить любой интересующий вас блок, статический или динамический, декоративный или простой. Вот блок Выдержка:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Любой блок может быть выровнен. Встраиваемый блок имеет их также выравнивается и является адаптивным по умолчанию:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Выше была галерея с двумя изображениями. Это более простой способ создания визуально привлекательных макетов. Вы также можете легко преобразовать галерею обратно в отдельные изображения, используя блок-переключатель."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Конечно, полномасштабное изображение может быть довольно большим. Но иногда это стоит того."],"Accessibility is important — don’t forget image alt attribute":["Доступность важна — не забывайте атрибут alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Если объединить новые выравнивания по ширине содержимого и на всю ширину с галереями, вы можете создать очень богатый медиа-макет очень быстро:"],"Media Rich":["Медиа"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Вы можете изменить количество столбцов в своих галереях, перетащив ползунок в инспекторе блоков на боковой панели."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Блоки могут быть любыми. Например, вы можете добавить цитату как часть композиции своего текста или вы можете показать гигантский стилизованный текст. Все это доступно в настройках."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Информация о источнике цитаты представляет собой отдельное текстовое поле, аналогичное подписи под изображениями. Поэтому структура цитаты неизменная, даже если вы выбираете, изменяете или удаляете источник. Источник можно легко добавить в любое время."],"Matt Mullenweg, 2017":["Мэтт Мулленвег, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Редактор стремится дать новый опыт создания постов и страниц, который позволит легко создавать насыщенные посты с помощью «блоков» - вместо использующихся сейчас шорткодов, произвольных html или всевозможных махинаций со вставкой кода"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Огромное преимущество блоков заключается в том, что вы можете сразу их редактировать и напрямую манипулировать своим контентом. Вместо того, чтобы изменять поля для редактирования таких вещей, как источник цитаты, или текст кнопки, вы можете напрямую изменить содержимое. Попробуйте отредактировать следующую цитату:"],"Visual Editing":["Визуальное редактирование"],"And Lists like this one of course :)":["И списки, как эти, конечно :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Блоки макетов, кнопки, изображения, разделители и т.д."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Вставки, видео с YouTube, твиты или другие записи WordPress."],"Galleries":["Галереи"],"Images & Videos":["Изображения и видео"],"Text & Headings":["Текст и заголовки"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Попробуйте, WordPress уже может добавить в ваши записи, блоки о которых вы не знали. Вот краткий список того, что вы можете найти в настоящее время:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Представьте, что все, что может сделать WordPress, доступно вам быстро и из одного места. Нет необходимости определять HTML-теги, классы или помнить сложный синтаксис шорткодов. Кнопка (+)
, которую вы увидите около редактора, позволяет просматривать все доступные блоки контента и добавлять их в свою запись. Плагины и темы могут регистрировать свои собственные блоки, открывая все возможности для редактирования и публикации ваших статей."],"The Inserter Tool":["Инструмент вставки"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Попробуйте выбрать, удалить или отредактировать заголовок. Теперь вам не нужно быть осторожным при выборе изображения или другого текста, чтобы не разрушить презентацию."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Если ваша тема поддерживает режим «на всю ширину», вы увидите кнопку «на всю ширину» на панели инструментов. Попробуйте."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Основное внимание в новом редакторе уделяется обработке изображений и мультимедиа с максимальной осторожностью. Надеемся, вы найдете возможности добавления подписи изображения или перехода на полную ширину намного проще и надежнее, чем раньше."],"A Picture is Worth a Thousand Words":["Одна картинка стоит тысячи слов"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Заголовки также являются отдельными блоками, что помогает с организацией вашего содержимого статьи."],"... like this one, which is right aligned.":["... как этот, который выровнен по правому краю."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["То, что вы сейчас читаете, представляет собой параграф. Самый основной блок из всех. Параграф имеет свои собственные элементы управления, которые можно свободно перемещать по записи..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Цель нового редактора - сделать добавление контента в WordPress простым и приятным. Вся эта запись состоит из фрагментов контента, что похоже на LEGO-кирпичи, которые вы можете перемещать и конструировать. Перемещайте курсор, и вы заметите, что различные блоки загораются контурами и стрелками. Нажмите стрелки, чтобы быстро переместить блоки, не опасаясь потерять контент в процессе копирования и вставки."],"Of Mountains & Printing Presses":["Книга гор и морей"],"Welcome to the Gutenberg Editor":["Добро пожаловать в редактор Gutenberg"],"block name\u0004More":["Тег «Далее»"],"button to expand options\u0004More":["Больше настроек"],"Are you sure you want to unschedule this post?":["Вы уверены,что хотите отменить расписание этой записи?"],"Alt Text (Alternative Text)":["Alt (альтернативный текст)"],"Reusable Block":["Мой блок"],"Unique identifier for the object.":["Уникальный идентификатор для объекта."],"Untitled Reusable Block":["Мой блок без названия"],"Small":["Small"],"Reusable":["Мой блок"],"Remove from Reusable blocks":["Удалить из \"Моих блоков\""],"Add to Reusable blocks":["Добавить в \"Мои блоки\""],"Keep as HTML":["Сохранить как HTML"],"Edit URL":["Редактировать URL"],"Color settings":["Настройки цвета"],"The response is not a valid JSON response.":["Ответ не является допустимым ответом JSON."],"Editor publish":["Редактор публикации"],"Muted":["Приглушенный"],"Video settings":["Настройки видео"],"recent comments":["недавние комментарии"],"Latest Comments":["Последние комментарии"],"Display Excerpt":["Показать отрывок"],"Display Date":["Показать дату"],"Display Avatar":["Показать аватар"],"Latest comments settings":["Настройки последних комментариев"],"Number of Comments":["Количество комментариев"],"Background Opacity":["Непрозрачность фона"],"Auto":["Авто"],"Preload":["Предварительная загрузка"],"Audio settings":["Настройки аудио"],"Display a monthly archive of your posts.":["Показывать архивы записей за месяц."],"Display as Dropdown":["Показывать выпадающим списком"],"Show Post Counts":["Показать счётчик записей"],"Archives settings":["Настройки архивов"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Поддержка"],"No comments to show.":["Нет комментариев для просмотра."],"%1$s on %2$s":["%1$s к %2$s"],"Select Post":["Выберите запись"],"Select Week":["Выберите неделю"],"Select Day":["Выберите день"],"Select Month":["Выберите месяц"],"Select Year":["Выберите год"],"Archives":["Архивы"],"Very dark gray":["Тёмно-серый"],"Cyan bluish gray":["Голубовато-серый"],"Very light gray":["Светло-серый"],"Vivid cyan blue":["Ярко-синий"],"Pale cyan blue":["Бледно-голубой"],"Vivid green cyan":["Ярко-зеленый"],"Light green cyan":["Светло-зеленый"],"Luminous vivid amber":["Янтарный"],"Luminous vivid orange":["Ярко-оранжевый"],"Vivid red":["Ярко-красный"],"Pale pink":["Бледно-розовый"],"Inline image":["Встроенное изображение"],"Available block types":["Доступные типы блоков"],"Transform To:":["Преобразовать в:"],"Remove Block":["Удалить блок"],"Open publish panel":["Открыть панель публикации"],"Dots":["Точки"],"Wide Line":["Широкая линия"],"Large":["Большой"],"Show download button":["Показать кнопку загрузки"],"Download button settings":["Настройки кнопки загрузки"],"Link To":["Ссылка"],"Text link settings":["Настройки текстовой ссылки"],"download":["скачать"],"pdf":["pdf"],"document":["документ"],"Copy URL":["Копировать URL"],"Write file name…":["Впишите имя файла ..."],"File":["Файл"],"A single column within a columns block.":["Одна колонка в блоке колонок."],"Column":["Столбец"],"Outline":["Контур"],"Loop":["Зациклить"],"Autoplay":["Автозапуск"],"Playback Controls":["Настройки воспроизведения"],"Close dialog":["Закрыть окно"],"Sorry, this file type is not permitted for security reasons.":["Извините, этот тип файла недопустим по соображениям безопасности."],"Disable tips":["Отключить советы"],"Got it":["Понятно"],"See next tip":["Следующий совет"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Когда вы будете готовы, отправьте свою работу на проверку, и редактор сможет ее одобрить."],"Are you ready to submit for review?":["Вы готовы отправить на рассмотрение?"],"Replace image":["Заменить изображение"],"Remove image":["Удалить изображение"],"Error while uploading file %s to the media library.":["Ошибка загрузки файла %s в медиатеку."],"This file exceeds the maximum upload size for this site.":["Размер файла превышает максимальный для этого сайта."],"View the autosave":["Посмотреть автосохранение"],"There is an autosave of this post that is more recent than the version below.":["Существует более поздняя версия этой записи, чем версия ниже."],"Autosaving":["Автосохранение"],"Enter URL here…":["Введите URL здесь..."],"Pin to toolbar":["Прикрепить к панели инструментов"],"Unpin from toolbar":["Открепить от панели инструментов"],"Insert a table — perfect for sharing charts and data.":["Вставить таблицу — отличный выбор для графиков и данных."],"Fixed width table cells":["Ячейки таблицы с фиксированной шириной"],"Table settings":["Настройки таблицы"],"Add text that respects your spacing and tabs, and also allows styling.":["Добавьте текст, который соответствует вашим интервалам и вкладкам, а также позволяет стилизовать."],"Display a list of your most recent posts.":["Выводит список ваших последних записей."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Добавляет блок, который выводит содержимое с других сайтов, таких как Twitter, Instagram или YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Добавьте блок, который отображает контент в нескольких колонках, а затем в этот блок добавьте любые другие блоки с контентом, которые вы хотите."],"Error loading block: %s":["Ошибка загрузки блока: %s"],"Unknown error":["Неизвестная ошибка"],"Embed Handler":["Вставить обработчик"],"term\u0004Remove %s":["Удалить %s"],"Copy the permalink":["Копировать ссылку"],"Permalink copied":["Ссылка скопирована"],"Height in pixels":["Высота в пикселях"],"Spacer settings":["Настройки интервала"],"Spacer":["Интервал"],"Toggle to show a large initial letter.":["Сделать начальную букву большой."],"Showing large initial letter.":["Отображение большой начальной буквы."],"Name:":["Имя:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s из %3$s)"],"Remove item":["Удалить пункт"],"Color code: %s":["Цвет: %s"],"Skip to the selected block":["Перейти к выбранному блоку"],"Publish…":["Опубликовать..."],"Schedule…":["Запланировать..."],"Edit post permalink":["Редактировать постоянную ссылку"],"Show Block Settings":["Показать параметры блока"],"Hide Block Settings":["Скрыть параметры блока"],"Block settings closed":["Настройки блока закрыты"],"Close plugin":["Закрыть плагин"],"Editor settings":["Настройки редактора"],"Link settings":["Настройки ссылок"],"Unlink":["Убрать ссылку"],"Page break":["Разрыв страницы"],"pagination":["пагинация"],"next page":["следущая страница"],"Image Size":["Размер изображения"],"Height":["Высота"],"Width":["Ширина"],"Image Dimensions":["Размеры изображения"],"Thumbnails are not cropped.":["Миниатюры не обрезаны."],"Thumbnails are cropped to align.":["Миниатюры обрезаются для выравнивания."],"Media Library":["Библиотека файлов"],"Advanced":["Дополнительно"],"Add item":["Добавить элемент"],"Reset the template":["Сбросить шаблон"],"Keep it as is":["Оставить без изменений"],"The content of your post doesn’t match the template assigned to your post type.":["Содержимое не соответствует шаблону, назначенному этому типу записи."],"Resetting the template may result in loss of content, do you want to continue?":["Сброс шаблона может привести к потере содержимого, хотите продолжить?"],"Document Statistics":["Статистика документа"],"is now scheduled. It will go live on":["запланирована и будет опубликована"],"Scheduled":["Запланирован"],"Scheduling…":["Планирование..."],"Code editor selected":["Выбран редактор кода"],"Visual editor selected":["Выбран визуальный редактор"],"Plugins":["Плагины"],"Custom Size":["Произвольный"],"Layout elements":["Элементы разметки"],"term\u0004%s removed":["%s удален"],"term\u0004%s added":["%s добавлен"],"imperative verb\u0004Preview":["Предпросмотр"],"Block deleted.":["Блок удален."],"Block updated.":["Блок обновлен."],"Block created.":["Блок создан."],"Trashing failed":["Удаление в корзину не удалось"],"Updating failed.":["Ошибка обновления."],"Scheduling failed.":["Не удалось запланировать."],"Publishing failed.":["Ошибка публикации."],"View post":["Просмотреть запись"],"You have unsaved changes. If you proceed, they will be lost.":["У вас есть несохраненные изменения. Если вы продолжите, они будут потеряны."],"Document Outline":["Структура документа"],"Paragraphs":["Параграфы"],"Headings":["Заголовки"],"Words":["Слова"],"Content structure":["Структура статьи"],"Public":["Открыто"],"Protected with a password you choose. Only those with the password can view this post.":["Защищена паролем, который вы укажете. Запись смогут посмотреть только те, у кого есть пароль."],"Password Protected":["Защищено паролем"],"Only visible to site admins and editors.":["Видна только администраторам и редакторам."],"Private":["Личное"],"Visible to everyone.":["Видна всем."],"Post Visibility":["Видимость записи"],"Would you like to privately publish this post now?":["Вы хотите опубликовать запись как личную?"],"Use a secure password":["Впишите надежный пароль"],"Create password":["Создать пароль"],"Move to Trash":["Переместить в корзину"],"Parent Term":["Родительский термин"],"Parent Category":["Родительская рубрика"],"Add new term":["Добавить новый термин"],"Add new category":["Добавить новую рубрику"],"Term":["Термин"],"Tag":["Метка"],"Add new Term":["Добавить новый термин"],"Add new tag":["Добавить новую метку"],"Switch to draft":["Переключиться на черновик"],"Are you sure you want to unpublish this post?":["Вы уверены, что хотите отменить публикацию записи?"],"Immediately":["Немедленно"],"Save Draft":["Сохранить"],"Saving":["Сохранение"],"Publish:":["Опубликована:"],"Visibility:":["Видимость:"],"Are you ready to publish?":["Вы готовы опубликовать?"],"Copy Link":["Копировать ссылку"],"What’s next?":["Что дальше?"],"is now live.":["опубликована."],"Published":["Опубликовано"],"Schedule":["Запланировать"],"Update":["Обновить"],"Submit for Review":["Отправить на рассмотрение"],"Updating…":["Обновление..."],"Publishing…":["Публикация..."],"Allow pingbacks & trackbacks":["Разрешить уведомления и обратные ссылки"],"Permalink:":["Постоянная ссылка:"],"Pending review":["На утверждении"],"%d Revision":["%d редакция","%d редакции","%d редакций"],"Suggestion:":["Предложение:"],"Post Format":["Формат записи"],"Chat":["Чат"],"Status":["Статус"],"Standard":["Стандартный"],"Aside":["Заметка"],"Featured image":["Изображение записи"],"Set featured image":["Задать изображение"],"Learn more about manual excerpts":["Подробнее об отрывках"],"Write an excerpt (optional)":["Написать отрывок (необязательно)"],"Allow comments":["Разрешить комментарии"],"Template:":["Шаблон:"],"no parent":["без родителя"],"no title":["без заголовка"],"Order":["Порядок сортировки"],"No blocks found.":["Блоков не найдено."],"%d result found.":["%d результат найден.","%d результата найдено.","%d результатов найдено."],"Saved":["Сохранено"],"Embeds":["Вставки"],"Blocks":["Блоки"],"Search for a block":["Поиск блоков"],"Add block":["Добавить блок"],"Copy Error":["Скопировать текст ошибки"],"Copy Post Text":["Скопировать текст записи"],"Attempt Recovery":["Попытаться восстановить"],"The editor has encountered an unexpected error.":["Произошла непредвиденная ошибка."],"Undo":["Отменить"],"Redo":["Повторить"],"(Multiple H1 headings are not recommended)":["(Не рекомендуется использовать более одного тега H1)"],"(Your theme may already use a H1 for the post title)":["(Ваша тема уже может использовать тег H1 для заголовка записи)"],"(Incorrect heading level)":["(Некорректный уровень заголовка)"],"(Empty heading)":["(Без заголовка)"],"Block Styles":["Стили блоков"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Вы уверены, что хотите удалить этот общий блок?\nВаши действия приведут к удалению его из всех записей и страниц."],"Convert to Regular Block":["Преобразовать в обычный блок"],"More options":["Еще настройки"],"Edit visually":["Редактировать визуально"],"Duplicate":["Дублировать"],"Blocks cannot be moved down as they are already at the bottom":["Блоки не могут быть перемещены вниз, так как они уже находятся в самом низу"],"Blocks cannot be moved up as they are already at the top":["Блоки не могут быть перемещены вверх, так как они уже находятся сверху"],"Block %1$s is at the beginning of the content and can’t be moved right":["Блок %1$s находится в самом верху и не может быть перемещён"],"Block %1$s is at the end of the content and can’t be moved right":["Блок %1$s находится в самом низу и не может быть перемещён правильно"],"Block %s is the only block, and cannot be moved":["Блок %s является единственным блоком и не может быть перемещен"],"Edit as HTML":["Редактировать как HTML"],"Convert to Blocks":["Преобразовать в блоки"],"Block: %s":["Блок: %s"],"This block has encountered an error and cannot be previewed.":["Этот блок содержит ошибку и не может быть просмотрен."],"No block selected.":["Блок не выбран."],"Transform into:":["Преобразовать в:"],"Remove":["Удалить"],"Find original":["Найти оригинал"],"Copy all content":["Скопировать всё содержимое"],"Copied!":["Скопировано!"],"Additional settings are now available in the Editor block settings sidebar":["Дополнительные настройки теперь доступны на боковой панели расширенных настроек"],"Visibility":["Видимость"],"Status & visibility":["Статус и видимость"],"Page attributes":["Атрибуты страницы"],"Block":["Блок"],"Document":["Документ"],"Close settings":["Закрыть настройки"],"Editor content":["Редактор содержимого"],"Tools":["Инструменты"],"Editor":["Редактор"],"Code editor":["Редактор кода"],"Visual editor":["Визуальный редактор"],"Editor top bar":["Панель инструментов"],"Settings":["Настройки"],"Reset":["Сбросить"],"Dismiss this notice":["Закрыть это уведомление"],"Item removed.":["Элемент удален."],"Item added.":["Элемент добавлен."],"Drop files to upload":["Перетащите файлы сюда"],"PM":["ПП"],"AM":["ДП"],"An unknown error occurred.":["Произошла неизвестная ошибка."],"No results.":["Нет результатов."],"%d result found, use up and down arrow keys to navigate.":["Найден %d результат. Используйте стрелки на клавиатуре для навигации.","Найдено %d результата. Используйте стрелки на клавиатуре для навигации.","Найдено %d результатов. Используйте стрелки на клавиатуре для навигации."],"(no title)":["(без названия)"],"URL":["URL"],"Submit":["Отправить"],"Close":["Закрыть"],"Insert link":["Вставить ссылку"],"Edit link":["Изменить ссылку"],"Link":["Ссылка"],"Strikethrough":["Зачеркнутый"],"Italic":["Курсив"],"Bold":["Жирный"],"Remove link":["Удалить ссылку"],"Number of items":["Количество элементов"],"All":["Все"],"Category":["Рубрика"],"Z → A":["Я → А"],"A → Z":["А → Я"],"Oldest to Newest":["От старых к новым"],"Newest to Oldest":["От новых к старым"],"Order by":["Сортировать по"],"Select":["Выбрать"],"Select or Upload Media":["Выбрать или загрузить"],"Video":["Видео"],"Write…":["Напишите..."],"poetry":["поэзия"],"Verse":["Стих"],"New Column":["Новый столбец"],"Delete Column":["Удалить столбец"],"Add Column After":["Добавить столбец после"],"Add Column Before":["Добавить столбец до"],"Delete Row":["Удалить строку"],"Add Row After":["Добавить строку после"],"Add Row Before":["Добавить строку до"],"Edit table":["Редактировать таблицу"],"Table":["Таблица"],"Write subheading…":["Введите подзаголовок..."],"Write shortcode here…":["Введите шорткод здесь..."],"Shortcode":["Шорткод"],"divider":["разделитель"],"horizontal-line":["горизонтальная-линия"],"Separator":["Разделитель"],"Quote":["Цитата"],"Write citation…":["Введите цитату..."],"Write quote…":["Введите цитату..."],"Pullquote":["Выдержка"],"Write preformatted text…":["Напишите предварительно отформатированный текст..."],"Preformatted":["Форматированный"],"text":["текст"],"Paragraph":["Параграф"],"Font Size":["Размер шрифта"],"Drop Cap":["Буквица"],"Text settings":["Настройки текста"],"Read more":["Подробнее"],"Write list…":["Составить список..."],"numbered list":["нумерованный список"],"ordered list":["упорядоченный список"],"bullet list":["маркированный список"],"Indent list item":["Добавить отступ к элементам списка"],"Outdent list item":["Убрать отступ у элементов списка"],"Convert to ordered list":["Преобразовать в нумерованный список"],"Convert to unordered list":["Преобразовать в маркированный список"],"List":["Список"],"recent posts":["последние записи"],"No posts found.":["Записей не найдено."],"Latest Posts":["Последние записи"],"Display post date":["Отображать дату публикации"],"Grid view":["В виде сетки"],"List view":["В виде списка"],"photo":["фотография"],"Image settings":["Настройки изображения"],"Image":["Изображение"],"Preview":["Просмотреть"],"embed":["вставка"],"Custom HTML":["HTML-код"],"subtitle":["подзаголовок"],"title":["заголовок"],"Heading":["Заголовок"],"Write heading…":["Введите заголовок..."],"Heading %d":["Заголовок %s"],"Level":["Уровень"],"Heading settings":["Настройки заголовка"],"photos":["фотографии"],"images":["изображения"],"None":["Нет"],"Media File":["Медиафайл"],"Attachment Page":["Страница вложения"],"Link to ":["Ссылка на"],"Crop Images":["Обрезать изображения"],"Gallery settings":["Настройки галереи"],"Gallery":["Галерея"],"Classic":["Классический"],"video":["видео"],"audio":["аудио"],"music":["музыка"],"image":["изображение"],"blog":["блог"],"post":["запись"],"Embedded content from %s":["Вставленное содержимое с %s"],"Enter URL to embed here…":["Укажите URL для вставки..."],"%s URL":["%s URL"],"Embedding…":["Вставка..."],"Write title…":["Введите заголовок..."],"Fixed Background":["Фиксированный фон"],"Edit image":["Редактировать изображение"],"Columns":["Колонки"],"Experiments":["Экспериментальная функция"],"Code":["Код"],"Write code…":["Введите код..."],"Categories":["Рубрики"],"Show Hierarchy":["Показать иерархию"],"Show post counts":["Показать кол-во записей"],"Categories settings":["Настройки рубрик"],"Add text…":["Добавить текст…"],"Button":["Кнопка"],"Apply":["Применить"],"Text Color":["Цвет текста"],"Background Color":["Цвет фона"],"Block has been deleted or is unavailable.":["Блок удален или недоступен."],"Reusable blocks":["Мои блоки"],"Cancel":["Отмена"],"Edit":["Изменить"],"Write caption…":["Напишите подпись..."],"Use URL":["Использовать URL"],"Audio":["Аудио"],"Upload":["Загрузить"],"Additional CSS Class(es)":["Дополнительный класс(ы) CSS"],"HTML Anchor":["HTML якорь"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Это сочетание цветов может затруднить чтение. Попробуйте использовать более яркий цвет фона и/или более темный цвет текста."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Это сочетание цветов может затруднить чтение. Попробуйте использовать более темный цвет фона и/или более яркий цвет текста."],"Clear":["Сброс"],"Custom color picker":["Произвольный выбор цвета"],"Color: %s":["Цвет: %s"],"Full width":["Во всю ширину"],"Wide width":["По ширине содержимого"],"Widgets":["Виджеты"],"Formatting":["Форматирование"],"Common blocks":["Основные блоки"],"Align right":["По правому краю"],"Align center":["По центру"],"Align left":["По левому краю"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Печатаем с 1440 года. Это разработка плагина для нового редактора блоков в ядре."],"Add title":["Добавить заголовок"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Режим разработки Gutenberg требует компоновки файлов. Запустите npm install
для установки зависимостей, npm run build
для компоновки файлов или npm run dev
для их компоновки и отслеживания изменений. Для более детальной информации ознакомьтесь с файлом об участии."],"Author":["Автор"],"Slug":["Ярлык"],"Discussion":["Обсуждение"],"Custom fields":["Произвольные поля"],"Excerpt":["Отрывок"],"Publish":["Опубликовать"],"Metadata":["Метаданные"],"Save":["Сохранить"],"Documentation":["Документация"],"Select Category":["Выберите рубрику"],"(Untitled)":["(Без названия)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg требуется WordPress %s или выше, для корректной работы. Пожалуйста, обновите WordPress перед активацией Gutenberg."],"Gutenberg Team":["Команда Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Демо"],"%s ago":["%s назад"],"Block style name must be a string.":["Имена типов блоков должны быть строкой."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_sk.json b/bundle/android/raw/i18ncache_data_sk.json
new file mode 100644
index 0000000000..09711dc5ce
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_sk.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":["Blok (zvolený)"],"Document (selected)":["Dokument (zvolený)"],"%d word":["%d slovo","%d slová","%d slov"],"Top toolbar":["Horný panel nástrojov"],"Link Rel":["Rel odkazu"],"Link CSS Class":["CSS trieda odkazu"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Pridajte obsah a uložte ho pre vás a ostatných prispievateľov, aby ste ho mohli znovu využívať na stránke. Aktualizujte blok a zmeny sa prejavia všade, kde je použitý. "],"To edit the featured image, you need permission to upload media.":["Pre úpravu ilustračného obrázku musíte mať opravnenie na nahrávanie médií."],"To edit this block, you need permission to upload media.":["Pre úpravu tohto bloku musíte mať oprávnenie nanahrávanie médií."],"(selected block)":["(zvolený blok)"],"Block tools":["Nástroje bloku"],"Permalink":["Trvalý odkaz"],"This image has an empty alt attribute":["Obrázok má prázdny alt atribút"],"This image has an empty alt attribute; its file name is %s":["Obrázok má prázdny alt atribút; jeho názov je %s"],"Block area reverted to draft.":["Oblasť bloku zmenená na koncept. "],"Block area published privately.":["Oblasť bloku publikovaná ako súkromná."],"No block areas found in Trash.":["V koši sa nenašli žiadne bloky."],"Block\u0004Add New":["Pridať nový "],"add new on admin bar\u0004Block Area":["Oblasť bloku"],"Link inserted.":["Odkaz vložený."],"Warning: the link has been inserted but may have errors. Please test it.":["Upozornenie: odkaz bol vložený ale môže obsahovať chyby. Prosím overte si to. "],"%s block selected.":["%s vybraný blok.","%s vybrané bloky.","%s vybraných blokov."],"Thumbnail":["Náhľad"],"Full Size":["Plná veľkosť"],"Link selected.":["Odkaz vybraný."],"Start writing with text or HTML":["Začnite písať použitím klasického textu alebo HTML"],"Type text or HTML":["Napíšte text alebo HTML"],"Block icon":["Ikona bloku"],"Align text right":["Zarovnať text vpravo"],"Align text center":["Zarovnať text na stred"],"Align text left":["Zarovnať text vľavo"],"Start writing or type / to choose a block":["Začnite písať alebo kliknite na / a vyberte si blok."],"Empty block; start writing or type forward slash to choose a block":["Prázdny blok; začnite písať alebo kliknite na / a zvoľte si blok"],"Paragraph block":["Blok odseku"],"Page Break":["Zlom strany"],"Stack on mobile":["V mobile naskladať na seba"],"Annotation":["Vysvetlivka"],"Drag images, upload new ones or select files from your library.":["Presuňte obrázky, nahrajte nové alebo vyberte súbory z vašej knižnice."],"blocks\u0004Most used":["Najpoužívanejšie"],"imperative verb\u0004Resolve":["Vyriešiť"],"font size name\u0004Huge":["Obrovské"],"font size name\u0004Large":["Veľké"],"font size name\u0004Medium":["Stredné"],"font size name\u0004Small":["Malé"],"font size name\u0004Normal":["Normálne"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importovať"],"button label\u0004Download":["Stiahnuť"],"button label\u0004Embed":["Vložiť"],"block title\u0004Embed":["Vložiť"],"block title\u0004Classic":["Klasický"],"block style\u0004Large":["Veľký"],"block style\u0004Rounded":["Zaoblený"],"%s (opens in a new tab)":["%s (otvoriť v novom okne)"],"Link edited.":["Odkaz upravený."],"Link removed.":["Odkaz odstránený."],"media":["médiá"],"Double-check your settings before publishing.":["Pred publikovaním si skontrolujte vaše nastavenia. "],"Generating preview…":["Vytvára sa náhľad..."],"Edit or update the image":["Upravte alebo aktualizujte obrázok"],"Media":["Médiá"],"Navigate to the nearest toolbar.":["Navigovať k najbližšiemu panelu nástrojov."],"Document tools":["Nástroje dokumentu"],"Document and block tools":["Nástroje dokumentu a bloku"],"Embed a video from your media library or upload a new one.":["Vložte video z vašej knižnice médií alebo nahrajte nové. "],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Vložte poéziu. Použite špeciálne formáty rozmiestnenia alebo citujte text piesne. "],"Add white space between blocks and customize its height.":["Pridajte medzeru medzi bloky a upravte ich výšku."],"Insert additional custom elements with a WordPress shortcode.":["Vložte dodatočné vlastné elementy pomocou WordPress shortcode. "],"Create a break between ideas or sections with a horizontal separator.":["Vytvorte zlom medzi myšlienkami alebo sekciami pomocou horizontálnej čiary. "],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Vizuálne odlíšte citácie. \"Pri citovaní druhých, citujeme sami seba.\" - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Vizuálne odlíšte citáty vo vašom texte. "],"Start with the building block of all narrative.":["Začnite s hlavným stavebným kameňom všetkých príbehov."],"Separate your content into a multi-page experience.":["Rozdeľte váš obsah na viacero stránok."],"Set media and words side-by-side for a richer layout.":["Pre lepšie usporiadanie nastavte médiá a slová bok po boku. "],"Media & Text settings":["Textové a mediálne nastavenia"],"Create a bulleted or numbered list.":["Vytvorte číselný alebo odrážkový zoznam."],"Display a list of your most recent comments.":["Zobraziť zoznam vašich nedávnych komentárov. "],"Insert an image to make a visual statement.":["Vyjadrite sa vizuálne a vložte obrázok."],"Add custom HTML code and preview it as you edit.":["Pridajte vlastný HTML kód a nahliadajte do neho počas úpravy. "],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Predstavte nové sekcie a organizujte obsah, aby ste pomohli návštevníkom (a vyhľadávačom) pochopiť štruktúru vášho obsahu. "],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":["Pridajte odkaz na stiahnuteľný súbor. "],"Embed videos, images, tweets, audio, and other content from external sources.":["Vložte videá, obrázky, tweety, audio a iný obsah z externých zdrojov."],"Resize for smaller devices":["Zmeňte veľkosť pre menšie zariadenia"],"This embed may not preserve its aspect ratio when the browser is resized.":["Tento vložený súbor si pri zmenení veľkosti prehliadača pravdepodobne nezachová svoj pomer strán. "],"This embed will preserve its aspect ratio when the browser is resized.":["Tento vložený súbor si pri zmene veľkosti prehliadača zachová svoj pomer strán."],"Embed an Animoto video.":["Vložte video zo služby Animoto."],"Embed a Vimeo video.":["Vložte Vimeo video."],"Embed Flickr content.":["Vložte obsah z Flickr."],"Embed Spotify content.":["Vložte obsah zo Spotify."],"Embed SoundCloud content.":["Vložte obsah zo SoundCloud."],"Embed a WordPress post.":["Vložte WordPress článok. "],"Embed an Instagram post.":["Vložte príspevok z Instagramu."],"Embed a Facebook post.":["Vložte príspevok z Facebooku."],"Embed a WordPress.tv video.":["Vložte video z WordPress.tv."],"Embed a VideoPress video.":["Vložte video z VideoPress."],"Embed a Tumblr post.":["Vložte príspevok z Tumblr."],"Embed a TED video.":["Vložte TED video."],"Embed Speaker Deck content.":["Vložte obsah zo Speaker Deck. "],"Embed a YouTube video.":["Vložte Youtube video."],"Embed SmugMug content.":["Vložte obsah zo SmugMug."],"Embed Slideshare content.":["Vložte obsah zo Slideshare."],"Embed Scribd content.":["Vložte obsah zo Scribd."],"Embed Screencast content.":["Vložte obsah zo Screencast."],"Embed ReverbNation content.":["Vložte obsah z ReverbNation."],"Embed a Reddit thread.":["Vložte vlákno z Redditu. "],"Embed Polldaddy content.":["Vložte obsah z Polldaddy."],"Embed Mixcloud content.":["Vložte obsah z Mixcloud."],"Embed a tweet.":["Vložte tweet. "],"Embed Meetup.com content.":["Vložte obsah z Meetup.com."],"Embed Kickstarter content.":["Vložte obsah z Kickstarter."],"Embed Issuu content.":["Vložte obsah z Issuu."],"Embed Imgur content.":["Vložte obsah z Imgur."],"Embed Hulu content.":["Vložte obsah z Hulu."],"Embed a Dailymotion video.":["Vložte Dailymotion video. "],"Embed CollegeHumor content.":["Vložte obsah z CollegeHumor."],"Embed Cloudup content.":["Vložte obsah z Cloudup."],"Add an image or video with a text overlay — great for headers.":["Pridajte obrázok alebo video s textovým prekrytím - vhodné v hlavičke stránky."],"Display code snippets that respect your spacing and tabs.":["Display code snippets that respect your spacing and tabs."],"Use the classic WordPress editor.":["Použiť klasický WordPress editor. "],"Display a list of all categories.":["Zobraziť zoznam všetkých kategórií."],"Embed a simple audio player.":["Vložte jednoduchý audio prehrávač. "],"noun\u0004View":["Zobraziť"],"editor button\u0004Left to right":["Zľava do prava"],"Save as Pending":["Uložiť ako čaká na schválenie"],"%s address":["%s adresa"],"Paste or type URL":["Vložte alebo napíšte URL adresu"],"Insert from URL":["Vložiť z URL adresy"],"Block Navigator":["Navigácia bloku"],"Styles":["Štýly"],"Advanced panels":["Pokročilé panely"],"Document panels":["Panely dokumentu"],"General":["Všeobecné"],"Open the block navigation menu.":["Otvorte navigačné menu bloku."],"Work without distraction":["Pracujte bez rozptýlení. "],"Focus on one block at a time":["Sústreďte sa naraz iba na jeden blok"],"Access all block and document tools in a single place":["Pristupujte ku všetkým blokom a nástrojom dokumentu na jednom mieste"],"Options":["Možnosti"],"(opens in a new tab)":["(otvoriť v novej karte)"],"Minutes":["Minúty"],"Hours":["Hodiny"],"Time":["Čas"],"Year":["Rok"],"Day":["Deň"],"December":["December"],"November":["November"],"October":["Október"],"September":["September"],"August":["August"],"July":["Júl"],"June":["Jún"],"May":["Máj"],"April":["Apríl"],"March":["Marec"],"February":["Február"],"January":["Január"],"Month":["Mesiac"],"Date":["Dátum"],"Go to the first (home) or last (end) day of a week.":["Ísť na prvý (home) alebo posledný (end) deň týždňa."],"Home/End":["Home/End"],"Home and End":["Home a End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Posunúť sa späť (PgUp) alebo vpred (PgDn) o jeden mesiac."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up a Page Down"],"Move backward (up) or forward (down) by one week.":["Posunúť sa späť (up) alebo vpred (down) o jeden týždeň."],"Up and Down Arrows":["Šípky Up a Down"],"Move backward (left) or forward (right) by one day.":["Posunúť sa späť (ľavá) alebo vpred (pravá) o jeden deň."],"Left and Right Arrows":["Ľavá a pravá šípka"],"Select the date in focus.":[],"Navigating with a keyboard":["Navigovať pomocou klávesnice"],"Click the desired day to select it.":["Kliknutím vyberiete požadovaný deň. "],"Click the right or left arrows to select other months in the past or the future.":["Kliknite na pravú alebo ľavú šípku pre výber minulých alebo budúcich mesiacov. "],"Click to Select":["Kliknutím vyberte"],"Calendar Help":["Pomocník kalendára"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Vybrať tieň"],"Change color format":["Zmeniť formát farby"],"Color value in HSL":["Hodnota farby v HSL"],"Color value in RGB":["Hodnota farby v RGB"],"Color value in hexadecimal":["Hodnota farby v hexadecimálnom formáte"],"RGB mode active":["RGB režim aktívny"],"Hex color mode active":["Hexadecimálny režim aktívny"],"Hue/saturation/lightness mode active":["Režim odtieň/ sýtosť/ svetlosť aktívny"],"Move the arrow left or right to change hue.":["Pre zmenu odtieňa hýbte šípkou doprava alebo doľava."],"Hue value in degrees, from 0 to 359.":["Hodnota odtieňa v stupňoch, od 0 do 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Aplha hodnota, od 0 (priehladné) po 1 (nepriehladné)."],"Stripes":[],"Your site doesn’t include support for this block.":["Vaša stránka nezahŕňa podporu pre tento blok."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Vaša stránka nezahŕňa podporu pre \"%s\" blok. Môžete tento blok nechať tak alebo ho úplne vymazať. "],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Vaša stránka nezahŕňa podporu pre \"%s\" blok. Môžete tento blok nechať tak, konvertovať jeho obsah na vlastný HTML blok, alebo ho úplne vymazať. "],"Media area":["Oblasť médií"],"Media & Text":["Médiá a text"],"Show media on right":["Zobraziť médiá napravo"],"Show media on left":["Zobraziť médiá naľavo"],"Open in New Tab":["Otvoriť v novom okne"],"Cover":[],"Border settings":[],"Medium":["Stredný"],"Paste URL or type to search":["Pre vyhľadávanie vložte URL adresu alebo začnite písať"],"Terms":["Podmienky"],"Your work will be published at the specified date and time.":["Vaša práca bude publikovaná v konkrétnom dátume a čase."],"Are you ready to schedule?":["Ste pripravený na naplánovanie?"],"Always show pre-publish checks.":[],"Take Over":["Prevziať"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Na tomto článku práve pracuje iný užívateľ. Aby ste mohli vykonávať zmeny, musíte ho prevziať pod svoju správu. "],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s práve pracuje na tomto článku. Aby ste mohli vykonávať zmeny, musíte ho prevziať pod svoju správu. "],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Správu nad týmto článkom prevzal iný užívateľ. Vami vykonané zmeny do tohto momentu boli uložené. "],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s prevzal správu nad týmto článkom. Vami vykonané zmeny do tohto momentu boli uložené. "],"Avatar":[],"This post is already being edited.":["Tento článok je práve upravovaný. "],"Someone else has taken over this post.":["Nad týmto článkom prevzal správu niekto iný. "],"This block contains unexpected or invalid content.":["Tento blok obsahuje neplatný alebo neočakávaný obsah. "],"Resolve Block":[],"Convert to HTML":["Konvertovať na HTML"],"This block can only be used once.":["Tento blok môže byť použitý iba raz. "],"Exit Code Editor":["Zatvoriť editor kódu"],"Editing Code":["Upraviť kód"],"Solid Color":["Plná farba"],"Main Color":["Hlavná farba"],"HTML":["HTML"],"Write HTML…":["Písať v HTML..."],"Media settings":["Nastavenia médií"],"Overlay":["Prekrytie"],"Insert Media":["Vložiť médiá"],"Reusable block imported successfully!":["Znovupoužiteľný blok úspešne importovaný! "],"Invalid Reusable Block JSON file":["Neplatný JSON súbor znovupoužiteľného bloku"],"Invalid JSON file":["Chybný JSON súbor"],"Import from JSON":["Importovať z JSON"],"Backtick":[],"Period":["Bodka"],"Comma":["Čiarka"],"Change type of %d block":["Zmeniť typ %d bloku","Zmeniť typ %d blokov","Zmeniť typ %d blokov"],"Current":["Súčasný"],"After Conversion":["Po konverzii"],"Change alignment":["Zmeniť zarovnanie"],"Change text alignment":["Zmeniť zarovnanie textu"],"%d block":["%d blok","%d bloky","%d blokov"],"Forward-slash":[],"No archives to show.":[],"This file is empty.":["Tento súbor je prázdny."],"Sorry, this file type is not supported here.":["Prepáčte, ale tento typ súboru nie je podporovaný. "],"Manage all reusable blocks":["Spravovať všetky znovupoužiteľné bloky"],"Title":["Nadpis"],"Fullscreen mode":["Na celú obrazovku"],"Beautiful landscape":[],"Close panel":["Zavrieť panel"],"Convert to Classic Block":["Konvertovať na klasický blok"],"Remove Poster Image":[],"Select Poster Image":[],"Poster Image":[],"This block is deprecated. Please use the Columns block instead.":["Tento blok je zastaraný. Prosím namiesto toho použite stĺpcový blok. "],"Text Columns (deprecated)":["Textové stĺpce (zastarané)"],"Create":["Vytvoriť"],"Row Count":["Počet riadkov"],"Column Count":["Počet stĺpcov"],"This block is deprecated. Please use the Paragraph block instead.":["Tento blok je zastaraný. Prosím, namiesto toho použite odstavcový blok."],"Subheading (deprecated)":["Podnadpis (zastarané)"],"blockquote":["citácia"],"Change the block type after adding a new paragraph.":["Po pridaní nového odstavca zmeňte typ bloku. "],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Značky pomáhajú používateľov a vyhľadávače navigovať na vašu webovú stránku a nájsť váš obsah. Pridajte pár kľúčových slov pre popis vášho príspevku."],"Add tags":["Pridajte značky"],"Apply the \"%1$s\" format.":["Použiť formát \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Vaša téma používa formáty príspevkov na zvýraznenie rôznych druhov obsahu, ako napríklad obrázkov alebo videí. Použite formát príspevku pre zobrazenie tohto špeciálneho štýlu."],"Use a post format":["Použiť formát príspevku"],"Insert After":["Vložiť po"],"Insert Before":["Vložiť pred"],"Move %1$d block from position %2$d down by one place":["Presunúť %1$d blok z pozície %2$d o jedno miesto nadol.","Presunúť %1$d bloky z pozície %2$d o jedno miesto nadol.","Presunúť %1$d blokov z pozície %2$d o jedno miesto nadol."],"Move %1$d block from position %2$d up by one place":["Presunúť %1$d blok z pozície %2$d o jedno miesto nahor.","Presunúť %1$d bloky z pozície %2$d o jedno miesto nahor.","Presunúť %1$d blokov z pozície %2$d o jedno miesto nahor."],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Vložiť nový blok pred vybraný blok(y)."],"Remove the selected block(s).":["Odstrániť vybraný blok(y)."],"Duplicate the selected block(s).":["Duplikovať vybraný blok(y)."],"Block shortcuts":["Skratky bloku"],"Clear selection.":["Zrušiť výber."],"Select all text when typing. Press again to select all blocks.":["Vyberte celý text pri písaní. Opätovným stlačením tlačítka vyberte všetky bloky."],"Selection shortcuts":["Skratky výberu"],"Switch between Visual editor and Code editor.":["Prepnúť medzi vizuálnym editorom a editorom kódu."],"Navigate to the previous part of the editor.":["Prejsť na predchádzajúcu časť editora."],"Navigate to the next part of the editor.":["Prejsť na nasledujúcu časť editora."],"Show or hide the settings sidebar.":["Zobraziť alebo skryť nastavenia bočného panelu."],"Redo your last undo.":["Znovu vykonať odvolené zmeny."],"Undo your last changes.":["Odvolať vaše posledné zmeny."],"Save your changes.":["Uložte vaše zmeny."],"Global shortcuts":["Globálne skratky"],"Remove a link.":["Odstráňte odkaz."],"Convert the selected text into a link.":["Previesť vybraný text na odkaz."],"Underline the selected text.":["Podčiarknúť vybraný text."],"Make the selected text italic.":["Nastaviť pre vybraný text kurzívu."],"Make the selected text bold.":["Nastaviť pre vybraný text tučné písmo."],"Text formatting":["Formátovanie textu"],"Insert a new block after the selected block(s).":["Vložte nový blok po vybratom bloku(blokoch)."],"Keyboard shortcuts":["Klávesové skratky"],"Thanks for testing Gutenberg!":["Ďakujeme za testovanie Gutenbergu!"],"Help build Gutenberg":["Pomôžte budovať Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Ak sa chcete dozvedieť viac o tom, ako vytvoriť ďalšie bloky, alebo ak máte záujem pomôcť s projektom, prejdite do GitHub repository."],"The WordPress community":["WordPress komunita"],"Code is Poetry":["Kód je poézia"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Môžete vytvoriť akýkoľvek blok chcete, statický alebo dynamický, dekoratívny alebo jednoduchý. Tu je blok citácie:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Každý blok sa môže zaradiť do týchto zarovnaní. Vložený blok ich má tiež a je ihneď responzívny:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Vyššie je galéria s dvomi obrázkami. Je to jednoduchšia cesta pre vytváranie vizuálne príťažlivých rozložení, bez toho, aby sme museli riešiť floaty. Tiež môžete galériu jednoducho premeniť späť na samostatné obrázky, pomocou prepínača blokov."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Je jasné, že obrázok na celú šírku môže byť pekne veľký. Ale niekedy to stojí za to."],"Accessibility is important — don’t forget image alt attribute":["Prístupnosť je dôležitá — nezabudnite na alt atribút obrázku"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Ak kombinujete nové široké zarovnania a zarovnania na celú šírku s galériami, môžete veľmi rýchlo vytvoriť rozloženie veľmi bohaté na médiá:"],"Media Rich":["Bohaté na médiá"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Množstvo stĺpcov vo vašich galériách môžete zmeniť presunutím slajdru v inšpektore blokov na postrannom paneli."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bloky môžu byť čokoľvek, čo potrebujete. Môžete napríklad pridať tlmené citácie ako časť kompozície vašich textov, alebo naopak ich môžete zobraziť ako veľmi štylizované. Všetky tieto možnosti sú dostupné cez vkladač."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informácie odpovedajúce zdroju citácie sú oddelené textové polia, podobne ako pri titulku obrázku. Štruktúra citácie je tak chránená aj v prípade, že vyberiete, zmeníte alebo zmažete zdroj. Navyše, je vždy ľahké pridať ho späť."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Editor sa bude usilovať o vytvorenie lepšieho zážitku z vytvárania stránok a príspevkov prostredníctvom možnosti jednoduchšieho písania bohatších príspevkov. A má tiež bloky, ktoré uľahčujú to, čo sa dnes musí pracne robiť prostredníctvom shortcódov, vlastného HTML a podobne."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Obrovská výhoda blokov spočíva v tom, že ich môžete upraviť na mieste a manipulovať priamo s obsahom. Namiesto toho, aby ste mali polia na úpravu vecí, ako je zdroj citácie alebo text tlačítka, môžete priamo zmeniť obsah. Skúste upraviť nasledujúcu citáciu:"],"Visual Editing":["Vizuálna úprava"],"And Lists like this one of course :)":["A zoznam ako tento, samozrejme :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Bloky rozloženia, ako tlačítka, Hero obrázky, oddelovače, a pod."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Vložené prvky, ako Youtube, Tweety, alebo iné WordPress príspevky."],"Galleries":["Galérie"],"Images & Videos":["Obrázky & Videá"],"Text & Headings":["Text & Nadpisy"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Vyskúšajte to, môžete objaviť veci, ktoré WordPress už dokáže pridať do vašich príspevkov, o ktorých ste ani netušili. Tu je krátky zoznam toho, čo tu v súčasnosti nájdete:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Predstavte si, že všetko čo WordPress dokáže bude rýchlo dostupné z jedného miesta v používateľskom rozhraní. Už nemusíte zisťovať HTML tagy, triedy, pamätať si komplikovaný syntax shortcódov. To je myšlienka za vkladačom. Tlačítkom (+)
, ktoré uvidíte v editore, ktoré vám umožňuje prechádzať všetkými dostupný blokmi a pridávať ich do príspevkov. Pluginy a témy si môžu pridať svoje vlastné bloky, čo otvára všetky možnosti pre ešte bohatšie publikovanie a úpravy."],"The Inserter Tool":["Nástroj Vkladač"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Pokúste sa vybrať a odstrániť alebo upraviť titulok obrázku, už nemusíte byť opatrní pri mylnom výbere obrázku alebo iného textu a pokazením prezentácie."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Ak to vaša téma podporuje, uvidíte \"široké\" tlačítko na obrázku panela nástrojov. Vyskúšajte to."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Používanie obrázkov a médií s maximálnou starostlivosťou je hlavným cieľom nového editora. Dúfajme, že bude pre vás pridávania titulkov obrázkov alebo ich používanie na celú šírku omnoho jednoduchšie a robustnejšie ako kedykoľvek predtým."],"A Picture is Worth a Thousand Words":["Obrázok hodný tisícov slov"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Nadpisy sú tiež samostatné bloky, ktoré pomáhajú s prehľadom a organizáciou vášho obsahu."],"... like this one, which is right aligned.":["... ako napríklad tento, ktorý je zarovnaný napravo."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["To čo práve čítate je textový blok, najzákladnejší blok zo všetkých. Textový blok má vlastné ovládacie prvky na voľné presúvanie v príspevku..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Cieľom tohto nového editora je jednoduché a príjemné pridávanie bohatého obsahu do WordPressu. Celý tento príspevok sa skladá z kusov obsahu - trochu podobných LEGO tehličkám, s ktorými sa môžete voľne pohybovať a interagovať. Presuňte kurzor a všimnete si, že obrysy jednotlivých blokov sa rozsvietia a získajú šípky. Kliknite na šípky, aby ste rýchlo premiestnili bloky bez toho, aby ste sa museli obávať, že stratíte obsah v procese jeho kopírovania a vkladania."],"Of Mountains & Printing Presses":["Z hôr a tlačiarenských lisov"],"Welcome to the Gutenberg Editor":["Vitajte v Gutenberg editore"],"block name\u0004More":["Viac"],"button to expand options\u0004More":["Viac"],"Are you sure you want to unschedule this post?":["Ste si istí, že chcete zrušiť naplánovanie tohto príspevku?"],"Alt Text (Alternative Text)":["Alt Text (Náhradný Text)"],"Reusable Block":["Znovupoužiteľný Blok"],"Unique identifier for the object.":["Jedinečný identifikátor objektu."],"Untitled Reusable Block":["Nepomenovaný znovupoužiteľný blok"],"Small":["Malý"],"Reusable":["Znovupoužiteľný"],"Remove from Reusable blocks":["Odstrániť zo znovupoužiteľných blokov"],"Add to Reusable blocks":["Pridať k znovupoužiteľným blokom"],"Keep as HTML":["Ponechať ako HTML"],"Edit URL":["Upraviť URL adresy"],"Color settings":["Nastavenia farby"],"The response is not a valid JSON response.":["Táto odpoveď nie je platná JSON odpoveď."],"Editor publish":["Publikovanie editora"],"Muted":["Stlmený"],"Video settings":["Nastavenia videa"],"recent comments":["najnovšie komentáre"],"Latest Comments":["Posledné Komentáre"],"Display Excerpt":["Zobraziť výňatok"],"Display Date":["Zobraziť dátum"],"Display Avatar":["Zobraziť avatar"],"Latest comments settings":["Nastavenia najnovších komentárov"],"Number of Comments":["Počet komentárov"],"Background Opacity":["Priehľadnosť pozadia"],"Auto":["Auto"],"Preload":["Prednačítať"],"Audio settings":["Nastavenia zvuku"],"Display a monthly archive of your posts.":["Zobrazte mesačný archív príspevkov vašej stránky."],"Display as Dropdown":["Zobraziť ako rozbaľovací zoznam"],"Show Post Counts":["Zobraziť počet Príspevkov"],"Archives settings":["Nastavenia archívov"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Podpora"],"No comments to show.":["Žiadne komentáre na zobrazenie."],"%1$s on %2$s":["%1$s na %2$s"],"Select Post":["Vybrať príspevok"],"Select Week":["Vybrať týždeň"],"Select Day":["Vybrať deň"],"Select Month":["Vybrať mesiac"],"Select Year":["Vybrať rok"],"Archives":["Archívy"],"Very dark gray":["Veľmi tmavá šedá"],"Cyan bluish gray":["tyrkysovo šedá"],"Very light gray":["Veľmi svetlá šedá"],"Vivid cyan blue":["Sýta azúrovo modrá"],"Pale cyan blue":["Svetlo azúrovo modrá"],"Vivid green cyan":["sýta zeleno azúrová"],"Light green cyan":["svetlo zeleno azúrová"],"Luminous vivid amber":["žiarivá jantárová"],"Luminous vivid orange":["žiarivá oranžová"],"Vivid red":["Sýta červená"],"Pale pink":["Svetloružová"],"Inline image":["Vložený obrázok"],"Available block types":["Dostupné typy blokov"],"Transform To:":["Zmeniť na:"],"Remove Block":["Odobrať blok"],"Open publish panel":["Otvoriť Publikačný Panel"],"Dots":["Bodky"],"Wide Line":["Široká čiara"],"Large":["Veľká"],"Show download button":["Zobraziť tlačidlo Na stiahnutie"],"Download button settings":["Nastavenia tlačidla Na stiahnutie"],"Link To":["Odkaz na"],"Text link settings":["Nastavenia textového odkazu"],"download":["Stiahnuť"],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopírovať URL adresu"],"Write file name…":["Napíšte názov súboru..."],"File":["Súbor"],"A single column within a columns block.":["Jeden stĺpec v stĺpcovom bloku."],"Column":["Stĺpec"],"Outline":["Orámovanie"],"Loop":["Slučka"],"Autoplay":["Automatické prehrávanie"],"Playback Controls":["Ovládacie prvky prehrávania"],"Close dialog":["Zatvoriť okno"],"Sorry, this file type is not permitted for security reasons.":["Prepáčte, takýto typ súboru nie je povolený z bezpečnostných dôvodov."],"Disable tips":["Vypnúť tipy"],"Got it":["Rozumiem"],"See next tip":["Zobraziť ďaľší tip"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Ak ste pripravený, odošlite svoju prácu na kontrolu a Editor bude môcť tento článok uverejniť."],"Are you ready to submit for review?":["Ste pripravený odoslať článok na kontrolu?"],"Replace image":["Nahradiť obrázok"],"Remove image":["Odobrať obrázok"],"Error while uploading file %s to the media library.":["Nastala chyba pri nahrávaní súboru %s do knižnice médií."],"This file exceeds the maximum upload size for this site.":["Tento súbor prekračuje maximálnu povolenú veľkosť súboru pre nahratie."],"View the autosave":["Zobraziť automatické uloženie"],"There is an autosave of this post that is more recent than the version below.":["Existuje automatické uloženie, ktoré je aktuálnejšie ako verzia nižšie."],"Autosaving":["Automatické ukladanie"],"Enter URL here…":["Sem vložte URL adresu..."],"Pin to toolbar":["Pripnúť na panel nástrojov"],"Unpin from toolbar":["Odopnúť z panela nástrojov"],"Insert a table — perfect for sharing charts and data.":["Vložte tabuľku - perfektné pre zdieľanie grafov a dát."],"Fixed width table cells":["Pevná šírka buniek tabuľky"],"Table settings":["Nastavenia tabuľky"],"Add text that respects your spacing and tabs, and also allows styling.":["Pridajte text, ktorý zachová vaše medzery a odsadenia a bude povolené jeho formátovanie."],"Display a list of your most recent posts.":["Zobraziť zoznam vašich najnovších článkov."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Pridajte blok, ktorý zobrazí obsah z iných webových stránok, napr.: Twitter, Instagram alebo Youtube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Pridajte objekt, ktorý zobrazí obsah vo viacerých stĺpcoch a následne môžete pridať obsah do ktoréhokoľvek z nich."],"Error loading block: %s":["Chyba pri načítaní bloku: %s"],"Unknown error":["Neznáma chyba"],"Embed Handler":["Vložiť Handler"],"term\u0004Remove %s":["Odstrániť %s"],"Copy the permalink":["Kopírovať trvalý odkaz"],"Permalink copied":["Trvalý odkaz skopírovaný"],"Height in pixels":["Výška v pixeloch"],"Spacer settings":["Nastavenia medzery"],"Spacer":["Medzera"],"Toggle to show a large initial letter.":["Prepnúť pre zobrazenie veľkého počiatočného písmena."],"Showing large initial letter.":["Zobraziť veľké počiatočné písmeno."],"Name:":["Meno:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s z %3$s)"],"Remove item":["Odobrať položku"],"Color code: %s":["Kód farby: %s"],"Skip to the selected block":["Preskočiť na zvolený blok"],"Publish…":["Publikovať..."],"Schedule…":["Naplánovať..."],"Edit post permalink":["Upraviť trvalý odkaz"],"Show Block Settings":["Zobraziť nastavenia bloku"],"Hide Block Settings":["Skryť nastavenia bloku"],"Block settings closed":["Nastavenia bloku sú uzavreté"],"Close plugin":["Zatvoriť plugin"],"Editor settings":["Nastavenia editoru"],"Link settings":["Nastavenia odkazu"],"Unlink":["Odobrať odkaz"],"Page break":["Zlom strany"],"pagination":["stránkovanie"],"next page":["ďaľšia strana"],"Image Size":["Veľkosť obrázku"],"Height":["Výška"],"Width":["Šírka"],"Image Dimensions":["Rozmery obrázku"],"Thumbnails are not cropped.":["Náhľady nie sú orezané."],"Thumbnails are cropped to align.":["Náhľady sú orezané aby boli zarovnané."],"Media Library":["Knižnica médií"],"Advanced":["Pokročilé"],"Add item":["Pridať položku"],"Reset the template":["Resetovať šablónu"],"Keep it as is":["Ponechať v stave akom je"],"The content of your post doesn’t match the template assigned to your post type.":["Obsah vášho príspevku neodpovedá šablóne priradenej k typu príspevku."],"Resetting the template may result in loss of content, do you want to continue?":["Resetovanie šablóny môže spôsobiť stratu obsahu, želáte si pokračovať?"],"Document Statistics":["Štatistiky dokumentu"],"is now scheduled. It will go live on":["je teraz naplánovaný. Zverejní sa"],"Scheduled":["Naplánované"],"Scheduling…":["Plánuje sa..."],"Code editor selected":["Zvolený editor kódu"],"Visual editor selected":["Zvolený vizuálny editor"],"Plugins":["Pluginy"],"Custom Size":["Vlastná veľkosť"],"Layout elements":["Prvky rozloženia"],"term\u0004%s removed":["%s odstránený"],"term\u0004%s added":["Výraz %s pridaný"],"imperative verb\u0004Preview":["Náhľad"],"Block deleted.":["Blok zmazaný."],"Block updated.":["Blok aktualizovaný."],"Block created.":["Blok vytvorený."],"Trashing failed":["Odstránenie zlyhalo"],"Updating failed.":["Aktualizácia zlyhala."],"Scheduling failed.":["Plánovanie zlyhalo"],"Publishing failed.":["Publikovanie zlyhalo"],"View post":["Zobraziť článok"],"You have unsaved changes. If you proceed, they will be lost.":["Máte neuložené zmeny. Ak budete pokračovať, stratíte ich."],"Document Outline":["Orámovanie dokumentu"],"Paragraphs":["Odseky"],"Headings":["Nadpisy"],"Words":["Slová"],"Content structure":["Štruktúra obsahu"],"Public":["Verejné"],"Protected with a password you choose. Only those with the password can view this post.":["Chránené heslom, ktoré si vyberiete. Iba tí s heslom si môžu pozrieť tento príspevok."],"Password Protected":["Chránené heslom"],"Only visible to site admins and editors.":["Viditeľné iba pre administrátorov a editorov webovej stránky."],"Private":["Súkromné"],"Visible to everyone.":["Viditeľné pre všetkých."],"Post Visibility":["Viditeľnosť článku"],"Would you like to privately publish this post now?":["Chcete tento článok zverejniť súkromne?"],"Use a secure password":["Použite bezpečné heslo"],"Create password":["Vytvoriť bezpečné heslo"],"Move to Trash":["Zahodiť do koša"],"Parent Term":["Nadradený výraz"],"Parent Category":["Nadradená kategória"],"Add new term":["Pridať nový výraz"],"Add new category":["Pridať novú kategóriu"],"Term":["Výraz"],"Tag":["Značka"],"Add new Term":["Pridať nový výraz"],"Add new tag":["Pridať novú značku"],"Switch to draft":["Zmeniť na koncept"],"Are you sure you want to unpublish this post?":["Naozaj chcete zrušiť uverejnenie tohto článku?"],"Immediately":["Ihneď"],"Save Draft":["Uložiť koncept"],"Saving":["Ukladá sa"],"Publish:":["Publikovať:"],"Visibility:":["Viditeľnosť:"],"Are you ready to publish?":["Pripravený na publikovanie?"],"Copy Link":["Kopírovať odkaz"],"What’s next?":["Čo ďalej?"],"is now live.":["je teraz zverejnený."],"Published":["Zverejnené"],"Schedule":["Naplánovať"],"Update":["Aktualizovať"],"Submit for Review":["Odoslať na kontrolu"],"Updating…":["Prebieha aktualizácia..."],"Publishing…":["Prebieha publikovanie..."],"Allow pingbacks & trackbacks":["Povoliť spätné odkazy a spätné upozornenia"],"Permalink:":["Trvalý odkaz:"],"Pending review":["Čaká na schválenie"],"%d Revision":["%d revízia","%d revízie","%d revízií"],"Suggestion:":["Návrh:"],"Post Format":["Formát článku"],"Chat":["Chat"],"Status":["Status"],"Standard":["Štandardný"],"Aside":["Poznámka"],"Featured image":["Ilustračný obrázok"],"Set featured image":["Nastaviť ilustračný obrázok"],"Learn more about manual excerpts":["Získajte viac informácií o manuálnych úryvkoch"],"Write an excerpt (optional)":["Napíšte zhrnutie (voliteľné)"],"Allow comments":["Povoliť komentáre"],"Template:":["Šablóna:"],"no parent":["žiadny rodič"],"no title":["žiadny nadpis"],"Order":["Poradie"],"No blocks found.":["Žiadny blok sa nenašiel."],"%d result found.":["%d nájdený výsledok.","%d nájdené výsledky.","%d nájdených výsledkov."],"Saved":["Uložené"],"Embeds":["Vložené prvky"],"Blocks":["Bloky"],"Search for a block":["Vyhľadať blok"],"Add block":["Pridať blok"],"Copy Error":["Kopírovať chybu"],"Copy Post Text":["Kopírovať text článku"],"Attempt Recovery":["Pokus o obnovu"],"The editor has encountered an unexpected error.":["Editor zaznamenal neočakávanú chybu."],"Undo":["Späť"],"Redo":["Dopredu"],"(Multiple H1 headings are not recommended)":["(Viacero H1 nadpisov sa neodporúča)"],"(Your theme may already use a H1 for the post title)":["(Vaša téma môže už používať H1 pre názov článku)"],"(Incorrect heading level)":["(Nesprávny level nadpisu)"],"(Empty heading)":["(Prázdny nadpis)"],"Block Styles":["Štýly bloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Ste si istí, že chcete vymazať tento Znovupoužiteľný blok?\n\nBude trvale zmazaný zo všetkých príspevkov a stránok, ktoré ho používajú."],"Convert to Regular Block":["Konvertovať na normálny blok"],"More options":["Viac možností"],"Edit visually":["Upraviť vizuálne"],"Duplicate":["Duplikovať"],"Blocks cannot be moved down as they are already at the bottom":["Bloky nemôžu byť posunuté nadol, pretože sú už na spodku"],"Blocks cannot be moved up as they are already at the top":["Bloky nemôžu byť posunuté nahor, pretože sú už na vrchu"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Blok %s je jediný blok a nemôže byť posunutý"],"Edit as HTML":["Upraviť ako HTML"],"Convert to Blocks":["Konvertovať na bloky"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Tento blok zaznamenal neočakávanú chybu a nemôže byť prezretý."],"No block selected.":["Nie je vybratý žiadny blok."],"Transform into:":["Zmeniť na:"],"Remove":["Odobrať"],"Find original":["Nájsť originál"],"Copy all content":["Kopírovať celý obsah"],"Copied!":["Skopírované!"],"Additional settings are now available in the Editor block settings sidebar":["Dodatočné nastavenia sú teraz dostupné v bočnom paneli nastavení editora. "],"Visibility":["Viditeľnosť"],"Status & visibility":["Stav a Viditeľnosť"],"Page attributes":["Vlastnosti stránky"],"Block":["Blok","%d Bloky","%d Blokov"],"Document":["Dokument"],"Close settings":["Zatvoriť nastavenia"],"Editor content":["Obsah editora"],"Tools":["Nástroje"],"Editor":["Editor"],"Code editor":["Editor kódu"],"Visual editor":["Vizuálny editor"],"Editor top bar":["Top bar editora"],"Settings":["Nastavenia"],"Reset":["Resetovať"],"Dismiss this notice":["Skryť toto oznámenie"],"Item removed.":["Položka odobraná."],"Item added.":["Položka pridaná."],"Drop files to upload":["Presuňte a nahrajte súbory"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Vyskytla sa neznáma chyba."],"No results.":["Žiadne výsledky."],"%d result found, use up and down arrow keys to navigate.":["%d výsledok bol nájdený, použite klávesy hore a dolu pre navigáciu.","%d výsledky boli nájdené, použite klávesy hore a dolu pre navigáciu.","%d výsledkov bolo nájdených, použite klávesy hore a dolu pre navigáciu."],"(no title)":["(bez názvu)"],"URL":["URL"],"Submit":["Odoslať"],"Close":["Zavrieť"],"Insert link":["Vložiť odkaz"],"Edit link":["Upraviť odkaz"],"Link":["Odkaz"],"Strikethrough":["Prečiarknuté"],"Italic":["Kurzíva"],"Bold":["Tučné"],"Remove link":[],"Number of items":["Počet položiek"],"All":["Všetko"],"Category":["Kategória"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Od najstaršieho po najnovšie"],"Newest to Oldest":["Od najnovšieho po najstaršie"],"Order by":["Zoradiť podľa"],"Select":["Vybrať"],"Select or Upload Media":["Vybrať alebo nahrať súbory médií"],"Video":["Video"],"Write…":["Napíšte..."],"poetry":["poézia"],"Verse":["Verš"],"New Column":["Nový stĺpec"],"Delete Column":["Zmazať stĺpec"],"Add Column After":["Pridať stĺpec za"],"Add Column Before":["Pridať stĺpec pred"],"Delete Row":["Zmazať riadok"],"Add Row After":["Pridať riadok po"],"Add Row Before":["Pridať riadok pred"],"Edit table":["Upraviť tabuľku"],"Table":["Tabuľka"],"Write subheading…":["Napíšte podnadpis..."],"Write shortcode here…":["Napíšte sem shortcode..."],"Shortcode":["Shortcode"],"divider":["oddeľovač"],"horizontal-line":["horizontálna čiara"],"Separator":["Oddeľovač"],"Quote":["Citácia"],"Write citation…":["Napíšte citáciu..."],"Write quote…":["Napíšte citáciu..."],"Pullquote":["Citácia"],"Write preformatted text…":["Napíšte predformátovaný text..."],"Preformatted":["Predformátovaný"],"text":["text"],"Paragraph":["Odsek"],"Font Size":["Veľkosť písma"],"Drop Cap":["Drop Cap"],"Text settings":["Nastavenia textu"],"Read more":["Čítať viac"],"Write list…":["Napíšte zoznam..."],"numbered list":["číslovaný zoznam"],"ordered list":["číslovaný zoznam"],"bullet list":["odrážkový zoznam"],"Indent list item":["Položka zoznamu odsadenia"],"Outdent list item":["Položka zoznamu predsadenia"],"Convert to ordered list":["Konvertovať na číslovaný zoznam"],"Convert to unordered list":["Konvertovať na nečíslovaný zoznam"],"List":["Zoznam"],"recent posts":["nedávny článok"],"No posts found.":["Žiadne články nenájdené."],"Latest Posts":["Najnovšie články"],"Display post date":["Zobraziť dátum článku"],"Grid view":["Mriežkové zobrazenie"],"List view":["Zobraziť zoznam"],"photo":["fotka"],"Image settings":["Nastavenia obrázku"],"Image":["Obrázok"],"Preview":["Náhľad"],"embed":["vložiť"],"Custom HTML":["Vlastné HTML"],"subtitle":["podtitulok"],"title":["titulok"],"Heading":["Nadpis"],"Write heading…":["Napíšte nadpis..."],"Heading %d":["Nadpis %d"],"Level":["Úroveň"],"Heading settings":["Nastavenia nadpisu"],"photos":["fotky"],"images":["obrázky"],"None":["Žiadny"],"Media File":["Súbor médií"],"Attachment Page":["Stránka prílohy"],"Link to ":["Odkaz na"],"Crop Images":["Orezať obrázky"],"Gallery settings":["Nastavenia galérie"],"Gallery":["Galéria"],"Classic":["Klasický"],"video":["video"],"audio":["audio"],"music":["hudba"],"image":["obrázok"],"blog":["blog"],"post":["článok"],"Embedded content from %s":["Vložiť obsah z %s"],"Enter URL to embed here…":["Zadajte URL adresu, ktorá sa sem vloží..."],"%s URL":["%s URL adresa"],"Embedding…":["Vkladanie..."],"Write title…":["Napíšte titulok..."],"Fixed Background":["Nemenné pozadie"],"Edit image":["Upraviť obrázok"],"Columns":["Stĺpce"],"Experiments":[],"Code":["Kód"],"Write code…":["Napísať kód..."],"Categories":["Kategórie"],"Show Hierarchy":["Zobraziť hierarchiu"],"Show post counts":["Zobraziť počet článkov"],"Categories settings":["Nastavenia kategórií"],"Add text…":["Pridať text..."],"Button":["Tlačidlo"],"Apply":["Použiť"],"Text Color":["Farba textu"],"Background Color":["Farba pozadia"],"Block has been deleted or is unavailable.":["Blok bol zmazaný alebo je nedostupný."],"Reusable blocks":["Znovupoužiteľné bloky"],"Cancel":["Zrušiť"],"Edit":["Upraviť"],"Write caption…":["Napíšte titulok..."],"Use URL":["Použiť URL adresu"],"Audio":["Audio"],"Upload":["Nahrať"],"Additional CSS Class(es)":["Dodatočné CSS triedy"],"HTML Anchor":["HTML kotva"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Táto farebná kombinácia môže byť pre ľudí ťažšie čitateľná. Skúste použiť jasnejšiu farbu pozadia a / alebo tmavšiu farbu textu."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Táto farebná kombinácia môže byť pre ľudí ťažšie čitateľná. Skúste použiť tmavšiu farbu pozadia a / alebo svetlejšiu farbu textu. "],"Clear":["Vyčistiť"],"Custom color picker":["Vlastný výber farby"],"Color: %s":["Farba: %s"],"Full width":["Plná širka"],"Wide width":["Na celú šírku"],"Widgets":["Widgety"],"Formatting":["Formátovanie"],"Common blocks":["Bežné bloky"],"Align right":["Zarovnať vpravo"],"Align center":["Zarovnať na stred"],"Align left":["Zarovnať vľavo"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Tlač od roku 1440. Toto je vývojový plugin pre nový editor blokov v jadre."],"Add title":["Zadajte nadpis"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Autor"],"Slug":["Slug"],"Discussion":["Diskusia"],"Custom fields":["Vlastné polia"],"Excerpt":["Výňatok"],"Publish":["Publikovať"],"Metadata":["Metadata"],"Save":["Uložiť"],"Documentation":["Dokumentácia"],"Select Category":["Zvoľte kategóriu"],"(Untitled)":["(Bez názvu)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg vyžaduje WordPress %s alebo novší pre správne fungovanie. Pred aktiváciou Gutenberg prosím aktualizujte WordPress."],"Gutenberg Team":["Gutenberg tím"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["pred %s"],"Block style name must be a string.":["Názov štýlu bloku musí byť reťazec."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_sq.json b/bundle/android/raw/i18ncache_data_sq.json
new file mode 100644
index 0000000000..5ed001d217
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_sq.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["Shfaq ikonë nënmenuje për objekte të shkallës së epërme"],"Display settings":["Rregullime ekrani"],"Choose variation":["Zgjidhni variant"],"Angle":["Kënd"],"%s Block":["Bllok %s"],"%1$s Block. %2$s":["Bllok %1$s. %2$s"],"%s Block. Column %d":["Bllok %s. Shtyllë %d"],"%1$s Block. Column %2$d. %3$s":["Bllok %1$s. Shtyllë %2$d. %3$s"],"%s Block. Row %d":["Bllok %s. Rresht %d"],"%1$s Block. Row %2$d. %3$s":["Bllok %1$s. Rresht %2$d. %3$s"],"Post Excerpt":["Copëz Postimi"],"Post Date":["Datë Postimi"],"No Date":["Pa Datë"],"Post Author":["Autor Postimi"],"Choose":["Zgjidhni"],"twentytwenty":["twentytwenty"],"Theme":["Temë"],"Choose a template part by slug and theme, or create a new one.":["Zgjidhni një pjesë gjedheje përmes identifikuesi ose teme, ose krijoni një të re."],"Error adding template.":["Gabim në shtim gjedheje."],"Footer label":["Etiketë fundfaqeje"],"Header label":["Etiketë kryesh"],"Unsupported":["I pambuluar"],"The description will be displayed in the menu if the current theme supports it.":["Përshkrimi do të shfaqet te menuja, nëse kjo mbulohet nga tema e tanishme."],"Level %1$s. %2$s":["Nivel %1$s. %2$s"],"Level %s. Empty.":["Nivel %s. I zbrazët."],"Empty":["I zbrazët"],"Search results for %s":["Përfundime kërkimi për %s"],"Recently updated":["Përditësuar së fundi më"],"Multiple selected blocks":["Blloqe të shumtë të përzgjedhur"],"By %s":["Nga %s"],"Inspector":["Mbikëqyrës"],"Site editor advanced settings.":["Rregullimi të mëtejshme përpunuesi sajti."],"(beta)":["(beta)"],"Site Editor":["Përpunues Sajti"],"Site editor top bar.":["Shtyllë e sipërme përpunuesi sajti."],"Briefly describe the link to help screen reader users.":["Përshkruajeni shkurt lidhjen që të ndihmoni përdoruesit e lexuesit të ekranit."],"Link Label":["Etiketë Lidhjeje"],"%s label":["Etiketë %s"],"poem":["poemë"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURË)\nDritare, shumë e vogël në largësi, e ndriçuar.\nGjithçka përreth kësaj gjendet në një skenë thuajse tërësisht të errët. Tani, teksa kamera shkon ngadalë drejt dritares, e cila në kuadër është sa një pullë poste, zënë e duken forma të tjera;"],"Full Post":["Tërë Postimi"],"Show:":["Shfaq:"],"Create from all top-level pages":["Krijo prej krejt faqeve të epërme"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Kërkojuni vizitorëve të ndërmarrin një veprim, përmes një lidhje në stil butoni."],"Buttons":["Butona"],"Background":["Sfond"],"Background & Text Color":["Ngjyrë Sfondi & Teksti"],"Images Size":["Madhësi Figurash"],"Remove multiple selected blocks.":["Hiq blloqe të shumtë të përzgjedhur."],"(%s: gradient %s)":["(%s: gradient %s)"],"(%s: color %s)":["(%s: ngjyrë %s)"],"(Gradient: %s)":["(Gradient: %s)"],"(Color: %s)":["(Ngjyrë: %s)"],"Here's a detailed guide.":["Ja një udhërrëfyes i hollësishëm."],"New to the Block Editor? Want to learn more about using it? ":["S’e njihni Përpunuesin Me Blloqe? Dëshironi të mësoni më tepër rreth tij duke e përdorur? \t"],"Learn how to use the Block Editor":["Mësoni si të përdorni Përpunuesin Me Blloqe"],"Help":["Ndihmë"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["Ikonë blloku %s"],"Submit for Review…":["Parashtroni për Shqyrtim…"],"Update…":["Përditësoni…"],"Select items to save.":["Përzgjidhni objekte për ruajtje."],"What do you want to save?":["Ç’doni të ruani?"],"Untitled":["Pa titull"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["Përpunuesi me blloqe përfshin veçori eksperimentale që mund të përdoren, teksa janë ende duke u zhvilluar. Përzgjidhni ato që doni të aktivizohen. Këto veçori ka shumë gjasa të ndryshojnë, ndaj shmangni përdorimin e tyre në prodhim."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Aktivizo Përpunim të Plotë të Sajtit (Kujdes: kjo do të zëvendësojë temën tuaj dhe, potencialisht, do të shkaktojë ndryshime të paprapakthyeshme në sajtin tuaj. Këshillojmë ta përdorni vetëm në mjedis zhvillimi.)"],"Site Editor (beta)":["Përpunues Sajti (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Një “bllok” është termi abstrakt\n// i përdorur për të përshkruar njësi\n// formatimi teksti që kur përdoren\n// tok, formojnë lëndën ose skemën\n// grafike të një faqeje.\nregisterBlockType( emër, rregullime );"],"You are probably offline.":["Gjasat janë të jeni offline."],"Justify items right":["Përligji objektet djathtas"],"Justify items center":["Përligji objektet në qendër"],"Justify items left":["Përligji objektet majtas"],"Change items justification":["Ndrysho përligje objektesh"],"The media file has been replaced":["Kartela media është zëvendësuar"],"Replace":["Zëvendësoje"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Aktualisht gjendeni nën mënyrën përpunim. Që të riktheheni te mënyra lëvizje, shtypni tastin Esc
."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Aktualisht gjendeni nën mënyrën lëvizje. Lëvizni nëpër blloqe duke përdorur tastin Tab
. Për të dalë nga mënyra lavizje dhe për të përpunuar bllokun e përzgjedhur, shtypni tastin Enter
."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Që të ndryshoni pozicion gradienti, përdorni tastet shigjetë majtas ose djathtas se teknikën “merr dhe vër” me miun. Që të ndryshoni ngjyrën ose hiqni pikën e kontrollit, shtypni butonin."],"Gradient control point at position %1$s with color code %2$s.":["Pikë kontrolli gradienti në pozicionin %1$s me kod ngjyre %2$s."],"Preset Size":["Madhësi e paracaktuar"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Mjetet ofrojnë ndërveprime të ndryshme për përzgjedhje & përpunim blloqesh. Që të përzgjidhni, shtypni tastin Esc
, që t’i riktheheni përpunimit, shtypni tastin Enter
."],"Open Media Library":["Hap Mediatekë"],"Next":["Pasuesi"],"Previous":["I mëparshmi"],"Finish":["Përfundoje"],"Page %1$d of %2$d":["Faqja %1$d nga %2$d"],"Guide controls":["Kontrolle udhërrëfyesi"],"Remove Control Point":["Hiq Pikë Kontrolli"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Çdo bllok vjen me grupin e vet të kontrolleve për ndryshim gjërash të tilla si ngjyrë, gjerësi dhe drejtim. Këto do të shfaqen dhe zhduken automatikisht kur keni të përzgjedhur një bllok."],"Make each block your own":["Bëjeni çdo bllok si e doni"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["Te përpunuesi në WordPress, çdo paragraf, figurë ose video paraqitet me një “bllok” të dallueshëm lënde."],"ADD MEDIA":["SHTONI MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Krejt blloqet e përdorshëm prej jush, live te Libraria e Blloqeve. Do ta gjeni kurdo që shihni ikonën ."],"Get to know the Block Library":["Njihuni me Librarinë e Blloqeve"],"Welcome Guide":["Udhërrëfyes Mirëseardhjeje"],"Enable page templates":["Aktivizo gjedhe faqesh"],"Page Templates":["Gjedhe Faqesh"],"Enable Full Site Editing demo templates":["Aktivizo gjedhe demonstrimi përpunimi të plotë të sajtit"],"Full Site Editing Demo Templates":["Gjedhe Demonstrimi Përpunimi të Plotë të Sajtit"],"Welcome to the Block Editor":["Mirë se vini te Përpunuesi Me Blloqe"],"Get started":["Fillojani"],"inserter":["futës"],"Post Title":["Titull Postimi"],"Add nofollow to link":["Shto nofollow te lidhje"],"Add submenu":["Shtoni nënmenu"],"Add link…":["Shtoni lidhje…"],"Dark":["E errët"],"Light":["E çelët"],"recording":["incizim"],"podcast":["podkast"],"sound":["tingull"],"Array of instance changes":["Varg ndryshimesh instance"],"Current widget instance":["Instancë e tanishme e widget-it"],"Template parts to include in your templates.":["Pjesë gjedhesh për t’i përfshirë te gjedhet tuaja."],"Template parts list":["Listë pjesësh gjedheje"],"Template parts list navigation":["Lëvizje te listë pjesësh gjedheje"],"Filter template parts list":["Filtroni listë pjesësh gjedheje"],"Uploaded to this template part":["U ngarkua te kjo pjesë gjedheje"],"Insert into template part":["Futeni te pjesë gjedheje"],"Template part archives":["Arkiv pjesësh gjedheje"],"No template parts found in Trash.":["S’u gjetën pjesë gjedheje te Hedhurinat."],"No template parts found.":["S’u gjetën pjesë gjedheje."],"Parent Template Part:":["Pjesë Gjedheje Mëmë:"],"Search Template Parts":["Kërkoni Pjesë Gjedheje"],"All Template Parts":["Krejt Pjesët e Gjedhes"],"View Template Part":["Shihni Pjesë Gjedheje"],"Edit Template Part":["Përpunoni Pjesë Gjedheje"],"New Template Part":["Pjesë e Re Gjedheje"],"Add New Template Part":["Shtoni Pjesë të Re Gjedheje"],"Template Part\u0004Add New":["Shtoni të Re"],"Admin Menu text\u0004Template Parts":["Pjesë Gjedhesh"],"Template Part":["Pjesë Gjedheje"],"Template Parts":["Pjesë Gjedheje"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Udhës me zor gjarpëronin të lodhur\nPa pritur gjë nga nata dhe i ftohti\nShpresat pas shumë herët kishin lënë\nDhe nuk besonin më as dhe te Zoti\nTë mundur, të harruar dhe drejt fundit\nHije të vetmuara të asgjëkundit."],"Navigation":["Lëvizje"],"Loading Navigation…":["Po ngarkohet Lëvizja…"],"Navigation Structure":["Strukturë Lëvizjeje"],"Create empty":["Krijo të zbrazët"],"Create a Navigation from all existing pages, or create an empty one.":["Krijoni një Lëvizje prej krejt faqeve ekzistuese, ose krijoni një të zbrazët."],"Navigation Link":["Lidhje Lëvizjeje"],"(Note: many devices and browsers do not display this text.)":["(Shënim: mjaft pajisje dhe shfletues nuk e shfaqin këtë tekst.)"],"Describe the role of this image on the page.":["Përshkruani rolin e kësaj figure te faqja."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Kalim nga përdorimi i të njëjtës vlerë për krejt madhësitë e ekranit te përdorimi i një vlere unike për madhësi ekrani, ose anasjelltas."],"Use the same %s on all screensizes.":["Përdor të njëjtën %s në krejt madhësinë e ekranit."],"Large screens":["Ekrane të mëdhenj"],"Medium screens":["Ekrane të mesëm"],"Small screens":["Ekrane të vegjël"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Kontrollon vetinë %1$s për kanale parjeje %2$s."],"Currently selected":["E përzgjedhur për çastin"],"Search or type url":["Kërkoni ose shtypni URL"],"Press ENTER to add this link":["Shtypni Enter që të shtohet kjo lidhje"],"Currently selected link settings":["Rregullime lidhjeje të përzgjedhur aktualisht"],"Generic label for block inserter button\u0004Add block":["Shtoni bllok"],"directly add the only allowed block\u0004Add %s":["Shtoni %s"],"%s block added":["Blloku %s u shtua"],"Move %s":["Lëvizeni %s"],"Extra Large":["Ekstra e Gjerë"],"Block breadcrumb":["Elementë breadcrumb blloku"],"Editor footer":["Fundfaqe përpunuesi"],"Site Title":["Titull Sajti"],"Open Colors Selector":["Hapni Përzgjedhës Ngjyrash"],"Templates list":["Listë gjedhesh"],"Templates list navigation":["Lëvizje te listë gjedhesh"],"Filter templates list":["Filtroni listë gjedhesh"],"Uploaded to this template":["U ngarkua te kjo gjedhe"],"Insert into template":["Futeni te gjedhe"],"Template archives":["Arkiva gjedhesh"],"No templates found in Trash.":["S’u gjetën gjedhe te Hedhurinat."],"No templates found.":["S’u gjetën gjedhe."],"Parent Template:":["Gjedhe Mëmë:"],"Search Templates":["Kërkoni Për Gjedhe"],"All Templates":["Krejt Gjedhet"],"View Template":["Shihni Gjedhe"],"Edit Template":["Përpunoni Gjedhe"],"New Template":["Gjedhe e Re"],"Add New Template":["Shtoni Gjedhe të Re"],"Template\u0004Add New":["Shtoni të Re"],"Admin Menu text\u0004Templates":["Gjedhe"],"Template":["Gjedhe"],"No matching template found":["S’u gjet gjedhe me përputhje"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Kod gradienti: %s"],"All content copied.":["U kopjua krejt lënda."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Ngarkimi i medias dështoi. Nëse kjo është një foto ose një figurë e madhe, ju lutemi, ripërmasojeni me zvogëlim dhe riprovoni."],"Gradient":["Gradient"],"Gradient Presets":["Paracaktime Gradienti"],"No Preview Available.":["S’ka Paraparje."],"Midnight":["Mesnatë"],"Electric grass":["Bar elektrik"],"Pale ocean":["Oqean i zbehtë"],"Luminous dusk":["Muzg i ndritshëm"],"Blush bordeaux":["Bordo e zbehtë"],"Blush light purple":["E purpur e çelët e zbehtë"],"Cool to warm spectrum":["Spektri nga të ftohta te të ngrohta"],"Very light gray to cyan bluish gray":["Gri shumë e çelët në gri blu në të gjelbër me nuanca bluje"],"Luminous vivid orange to vivid red":["Portokalli e ndritshme e ndezur në të kuqe të ndezur"],"Luminous vivid amber to luminous vivid orange":["Ngjyrë mjalti e ndezur e ndritshme në portokalli të ndezur të ndritshme"],"Light green cyan to vivid green cyan":["Blu e gjelbër në të gjelbër e çelët në blu të gjelbër në të gjelbër të ndezur"],"Vivid cyan blue to vivid purple":["Blu e gjelbër në blu e ndezur në të purpur të ndezur"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 dhjetor, 2018"],"February 21, 2019":["21 shkurt, 2019"],"May 7, 2019":["7 maj 2009"],"Release Date":["Datë Hedhjeje Në Qarkullim"],"Jazz Musician":["Muzikant Jazz-i"],"Version":["Version"],"Six.":["Gjashtë."],"Five.":["Pesë."],"Four.":["Katër."],"Three.":["Tre."],"Two.":["Dy."],"One.":["Një."],"One of the hardest things to do in technology is disrupt yourself.":["Një nga gjërat më të zorshme në teknologji është të ndërpresësh vetveten."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Cinxamiu
e nxjerr bukën e gojës
pa zhurmë e bujë."],"Welcome to the wonderful world of blocks…":["Mirë se vini në botën e mrekullueshme të blloqeve…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Përmasa"],"Minimum height in pixels":["Lartësi minimum në piksel"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim ultricies commodo."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit, eget faucibus urna pulvinar."],"Call to Action":["Thirrje Për Veprim"],"In quoting others, we cite ourselves.":["Duke cituar të tjerët, ne citojmë vetveten."],"cite":["citoni"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc appears—still, snowy, and serene."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["Për sa i përket botimit, pavarësisht nga kriteret, motivet dhe synimet e botuesve, mund të themi se fjalët tona të urta radhiten ndërmjet atyre zhanreve folklorike që kanë pasur më shumë fat. Ato kanë tërhequr prej kohësh vëmendjen e folkloristëve, gjuhëtarëve, letrarëve dhe dijetarëve shqiptarë (edhe të huaj.)"],"Block navigation":["Lëvizje në bllok"],"Full Site Editing":["Përpunim i Krejt Sajtit"],"Templates to include in your theme.":["Gjedhe për t’u përfshirë te tema juaj."],"Templates":["Gjedhe"],"Inserter help panel":["Panel ndihme për futësin"],"Pre-publish checks":["Kontrolle para-publikimi"],"Please contact your site administrator to install new blocks.":["Që të instaloni blloqe të rinj, ju lutemi, lidhuni me përgjegjësin e sajtit tuaj."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["S’u gjetën blloqe te bllokoteka juaj. Që të instaloni blloqe të rinj, ju lutemi, lidhuni me përgjegjësin e sajtit tuaj."],"No blocks found in your library.":["S’u gjetën blloqe te bllokoteka juaj."],"No blocks found in your library. These blocks can be downloaded and installed:":["S’u gjetën blloqe në bllokotekën tuaj. Mund të shkarkohen dhe instalohen këto blloqe:"],"No blocks found in your library. We did find %d block available for download.":["S’u gjetën blloqe në bllokotekën tuaj. Gjetëm %d bllok të gatshëm për shkarkim.","S’u gjetën blloqe në bllokotekën tuaj. Gjetëm %d blloqe të gatshëm për shkarkim."],"Block previews can’t load.":["S’mund të ngarkohen paraparje blloqesh."],"Retry":["Riprovo"],"Block previews can't install.":["S’mund të instalohen paraparje blloqesh."],"Updated %s":["%s u përditësua"],"%d active installation":["%d instalim aktiv","%d instalime aktive"],"This author has %d block, with an average rating of %d.":["Ky autor ka %d bllok, me vlerësim mesatar prej %d.","Ky autor ka %d blloqe, me vlerësim mesatar prej %d."],"Authored by %s":["Me autor %s"],"%d total rating":["%d vlerësim gjithsej","%d vlerësime gjithsej"],"%s out of 5 stars":["%s nga 5 yje të mundshëm"],"Enter Address":["Jepni Adresë"],"Pill Shape":["Kokërr"],"Logos Only":["Vetëm Stema"],"Create a block of links to your social media or external sites":["Krijoni një bllok lidhjesh për te mediat tuaja shoqërore ose sajte të jashtëm"],"Social links":["Lidhje shoqërorësh"],"Open block navigator":["Hapni lëzizëz nëpër blloqe"],"Attachment page":["Faqe bashkëngjitje"],"Fill":["Mbushe"],"Link rel":["Atribut “rel” lidhjeje"],"Border Radius":["Rreze Anësh"],"Write gallery caption…":["Shkruani titull galerie…"],"Content blocks":["Blloqe lënde"],"Restore the backup":["Riktheje kopjeruajtjen"],"The backup of this post in your browser is different from the version below.":["Kopjeruajtja e këtij postimi te shfletuesi juaj është e ndryshme nga versioni më poshtë."],"Enable block directory search":["Aktivizo kërkim në drejtori blloqesh"],"Block Directory":["Drejtori Blloqesh"],"Unable to connect to the filesystem. Please confirm your credentials.":["S’arrihet të lidhet me sistemin e kartelave. Ju lutemi, ripohoni kredencialet tuaja."],"Sorry, you are not allowed to install blocks.":["Na ndjeni, nuk keni leje të instaloni blloqe."],"%1$d block is disabled.":["Është çaktivizuar %1$d bllok.","Janë çaktivizuar %1$d blloqe."],"Reverse List Numbering":["Numërim Liste Së Prapthi"],"Start Value":["Vlerë Fillimi"],"Ordered list settings":["Rregullime listash të renditura"],"Clear Media":["Spastro Mediat"],"Default Style":["Stil Parazgjedhje"],"Not set":["E parregulluar"],"While writing, you can press / to quickly insert new blocks.":["Teksa shkruani, mund të shtypni / që të futni shpejt e shpejt blloqe të rinj."],"Browse through the library to learn more about what each block does.":["Shfletoni nëpër librari që të mësoni më tepër se ç’bën secili bllok."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Ka blloqe të gatshëm për krejt llojet e lëndës: futni tekst, tituj, lista, video, tabela, dhe plot të tjera."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Mirë se vini te bota e mrekullueshme e blloqeve! Blloqet janë baza e krejt lëndës brenda te përpunuesi."],"Version of the content block format used by the object.":["Version i formatit të bllokut të lëndës përdorur nga objekti."],"HTML content for the object, transformed for display.":["Lëndë HTML për objektin, e shndërruar për shfaqje."],"Content for the object, as it exists in the database.":["Lëndë për objektin, siç gjendet te baza e të dhënave."],"The content for the object.":["Lënda për objektin."],"Change column alignment":["Ndryshoni drejtim shtylle"],"Align Column Right":["Vendose Shtyllën Djathtas"],"Align Column Center":["Vendose Shtyllën Në Qendër"],"Align Column Left":["Vendose Shtyllën Majtas"],"Color":["Ngjyrë"],"Vivid purple":["E purpur e gjallë"],"Disable & Reload":["Çaktivizoje & Ringarkoje"],"Enable & Reload":["Aktivizoje & Ringarkoje"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Për këtë ndryshim është i nevojshëm ringarkimi i faqes. Përpara ringarkimit, sigurohuni se keni ruajtur lëndën tuaj."],"Display these keyboard shortcuts.":["Shfaq këto shkurtore tastiere."],"Experiments Settings":["Rregullime Eksperimentesh"],"Enable Widgets screen and Legacy Widgets block":["Aktivizo Skenë Widget-esh dhe bllok Widget-esh të Dikurshëm"],"Experimental settings":["Rregullime eksperimentale"],"Block name name must be a string.":["Emri i bllokut duhet të jetë një varg."],"Custom":["Vetjake"],"Draft":["Skicë"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blloku \"%1$s\" s’përmban ndonjë stil të emërtuar \"%2$s.\"."],"Learn more about anchors":["Mësoni më tepër mbi spirancat"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Jepni një a dy fjalë — pa hapësira — për të krijuar një adresë web unike sa për këtë krye, që quhet “spirancë”. Mandej do të jeni në gjendje të lidhni diçka drejtpërsëdrejti me këtë ndarje të faqes tuaj."],"Widget Blocks (Experimental)":["Blloqe Widget-esh (Eksperimentale)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Ngarkoni një kartelë video, zgjidhni një prej mediatekës tuaj, ose shtoni një të tillë përmes URL-je."],"Upload an image file, pick one from your media library, or add one with a URL.":["Ngarkoni një kartelë figure, zgjidhni një prej mediatekës tuaj, ose shtoni një të tillë përmes URL-je."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Ngarkoni një kartelë audio, zgjidhni një prej mediatekës tuaj, ose shtoni një të tillë përmes URL-je."],"Upload a media file or pick one from your media library.":["Ngarkoni një kartelë media ose zgjidhni një nga mediateka juaj."],"Skip":["Anashkaloje"],"Select a variation to start with.":["Përzgjidhni një variant me të cilin t’ia fillohet."],"Add a page, link, or another item to your navigation.":["Shtoni te menuja juaj e lëvizjeve një faqe, lidhje ose element tjetër."],"What's this?":["Ç’është ky?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Mos i lejo motorët e kërkimeve të ndjekin këtë lidhje."],"Provide more context about where the link goes.":["Jepni më tepër kontekst rreth se ku shkon kjo lidhje."],"Title Attribute":["Atribut Titulli"],"SEO settings":["Rregullime SEO"],"Description":["Përshkrim"],"Open in new tab":["Hape në skedë të re"],"links":["lidhje"],"navigation":["lëvizje"],"menu":["menu"],"Add a navigation block to your site.":["Shtoni te sajti juaj një bllok lëvizjesh."],"Upload a file or pick one from your media library.":["Ngarkoni një kartelë ose zgjidhni një nga mediateka juaj."],"Learn more about embeds":["Mësoni më tepër rreth trupëzimeve"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Ngjitni një lidhje për te lënda që doni të shfaqet te sajti juaj."],"Upload an image or video file, or pick one from your media library.":["Ngarkoni një kartelë figure ose video, ose zgjidhni një që nga mediateka juaj."],"Three columns; wide center column":["Tre shtylla; shtyllë e gjerë në qendër"],"Three columns; equal split":["Tre shtylla; ndarje e barabartë"],"Two columns; two-thirds, one-third split":["Dy shtylla; ndarje dy të treta, një të tretë"],"Two columns; one-third, two-thirds split":["Dy shtylla; ndarje një të tretë; dy të treta"],"Two columns; equal split":["Dy shtylla; ndarje e barabartë"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Sajti juaj s’ka ndonjë %s, ndaj hëpërhë s’ka gjë për t’u shfaqur këtu."],"More tools & options":["Më tepër mjete & mundësi"],"Create Table":["Krijo Tabelë"],"Insert a table for sharing data.":["Futni një tabelë për të ndarë të dhëna."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Hiqua grupin"],"verb\u0004Group":["Grupoje"],"Separate with commas or the Enter key.":["Ndajini me presje ose me tastin Enter."],"Separate with commas, spaces, or the Enter key.":["Ndajini me presje, hapësira, ose me tastin Enter."],"Separate multiple classes with spaces.":["Ndajini klasat e shumta me hapësira."],"Move image forward":["Lëvize figurën përpara"],"Move image backward":["Lëvize figurën mbrapsht"],"Sorry, you are not allowed to edit sidebars.":["Na ndjeni, s’keni leje të përpunoni anështylla."],"Sorry, you are not allowed to read sidebars.":["Na ndjeni, s’keni leje të lexoni anështylla."],"The sidebar’s ID.":["ID-ja e anështyllës."],"Displays a set of blocks":["Shfaq një grup blloqesh"],"Blocks Area":["Fushë Blloqesh"],"Block rendered as empty.":["Blloku u vizatua si i zbrazët."],"Inline Code":["Kod Brendazi"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Shënim: Luajtja e vetvetishme e videove mund të shkaktojë probleme përdorimi për disa vizitorë."],"Footer section":["Ndarje fundfaqe"],"Header section":["Ndarje krye"],"Sorting and filtering":["Renditje dhe filtrim"],"Post meta settings":["Rregullime Meta postimi"],"Post Content":["Lëndë Postimi"],"Post content settings":["Rregullime lënde postimi"],"Percentage width":["Gjerësi përqindjeje"],"Column settings":["Rregullime shtylle"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Shënim: Luajtja e vetvetishme e audios mund të shkaktojë probleme përdorimi për disa vizitorë."],"Block area updated.":["Zona e blloqeve u përditësua."],"Block area scheduled.":["Zona e blloqeve u vu në plan për botim."],"Block area published.":["Zona e blloqeve u botua."],"Block areas list":["Listë zonash blloqesh"],"Block areas list navigation":["Lëvizje në listë zonash blloqesh"],"Filter block areas list":["Filtroni listë zonash blloqesh"],"No block area found.":["S’u gjet zonë blloqesh."],"Search Block Areas":["Kërkoni Zona Blloqesh"],"All Block Areas":["Krejt Zonat e Blloqeve"],"View Block Area":["Shihni Zonë Blloqesh"],"Edit Block Area":["Përpunoni Zonë Blloqesh"],"New Block Area":["Zonë e Re Blloqesh"],"Add New Block Area":["Shtoni Zonë të Re Blloqesh"],"admin menu\u0004Block Areas":["Zona Blloqesh"],"post type singular name\u0004Block Area (Experimental)":["Zonë Blloqesh (Eksperimentale)"],"post type general name\u0004Block Area (Experimental)":["Zonë Blloqesh (Eksperimentale)"],"Experimental custom post type that will store block areas referenced by themes.":["Lloj postimi vetjak eksperimental që do të depozitojë zona blloqesh të referencuara nga tema."],"Widgets screen content":["Lëndë skene widget-esh"],"header":["krye"],"Widgets advanced settings":["Rregullime të mëtejshme widget-esh"],"(experimental)":["(eksperimentale)"],"Block Areas":["Zona Blloqesh"],"Widgets screen top bar":["Shtyllë e sipërme skene widget-esh"],"This color combination may be hard for people to read.":["Kjo ndërthurje ngjyrash mund të vështirësojë leximin nga njerëzit."],"There is no poster image currently selected":["S’ka të përzgjedhur figurë afisheje"],"The current poster image url is %s":["URL-ja e figurës së tanishme afishe është %s"],"section":["ndarje"],"row":["rresht"],"wrapper":["mbështjellëse"],"container":["kontejner"],"A block that groups other blocks.":["Një bllok që grupon blloqe të tjera."],"Group":["Grup"],"Crop image to fill entire column":["Qetheni figurën që ta nxërë krejt shtylla"],"Play inline":["Luaje brendazi"],"Leave empty if the image is purely decorative.":["Lëreni të zbrazët, nëse figura është thjesht dekorative."],"Describe the purpose of the image":["Përshkruani qëllimin e figurës"],"Add a block":["Shtoni një bllok"],"Block vertical alignment setting label\u0004Change vertical alignment":["Ndryshojini drejtimin vertikal"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vendose Vertikalisht Në Fund"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vendose Vertikalisht Në Mes"],"Replace Image":["Zëvendësoni Figurën"],"Block vertical alignment setting\u0004Vertically Align Top":["Vendose Vertikalisht Sipër"],"Display a legacy widget.":["Shfaqni një widget të dikurshëm."],"Legacy Widget (Experimental)":["Widget i Dikurshëm (Eksperimentale)"],"Change widget":["Ndryshoni widget-in"],"Legacy Widget":["Widget i Dikurshëm"],"You don't have permissions to use widgets on this site.":["S’keni leje të përdorni widget-e në këtë sajt."],"Select a legacy widget to display:":["Përzgjidhni për shfaqje një widget të dikurshëm:"],"There are no widgets available.":["S’ka widget-e të gatshëm."],"Change block type or style":["Ndryshoni lloj ose stil blloku"],"keyboard key\u0004Space":["Hapësirë"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Më tepër kontrolle për tekst të pasur"],"Search Terms":["Terma Kërkimesh"],"Exit the Editor":["Dil Nga Përpunues"],"Block Manager":["Përgjegjës Blloqesh"],"Class name of the widget.":["Emër klase e widget-it."],"Sorry, you are not allowed to access widgets on this site.":["Na ndjeni, s’keni leje të hyni te widget-e në këtë sajt."],"Widgets (beta)":["Widget-e (beta)"],"link":["lidhje"],"Embedded content from %s can't be previewed in the editor.":["Lëndës së trupëzuar nga %s s’mund t’i bëhet paraparje te përpunuesi."],"Custom Color":["Ngjyrë Vetjake"],"Prompt visitors to take action with a button-style link.":["Kërkojuni vizitorëve të ndërmarrin një veprim, përmes një lidhje në stil butoni."],"Stick to the top of the blog":["Ngjite në krye të blogut"],"Read about permalinks":["Lexoni mbi permalidhje"],"The last part of the URL.":["Pjesa e fundit e URL-së."],"URL Slug":["Identifikues URL-je"],"A cloud of your most used tags.":["Një re e etiketave tuaja më të përdorura."],"Tag Cloud":["Re Etiketash"],"Taxonomy":["Klasifikim"],"Tag Cloud settings":["Rregullime Reje Etiketash"],"- Select -":["- Përzgjidhni -"],"Default":["Parazgjedhje"],"find":["gjej"],"Help visitors find your content.":["Lejojuni vizitorëve të gjejnë lëndë tuajën."],"Search":["Kërko"],"Add button text…":["Shtoni tekst butoni…"],"Button text":["Tekst butoni"],"Optional placeholder…":["Vendmbajtëse opsionale…"],"Optional placeholder text":["Tekst opsional vendmbajtëseje"],"Add label…":["Shtoni etiketë…"],"Label text":["Tekst etikete"],"image %1$d of %2$d in gallery":["figura %1$d nga %2$d në galeri"],"archive":["arkiv"],"posts":["postime"],"A calendar of your site’s posts.":["Një kalendar i postimeve në sajtin tuaj."],"Calendar":["Kalendar"],"by":["nga"],"An error has occurred, which probably means the feed is down. Try again later.":["Ndodhi një gabim, i cili, sipas gjasash, do të thotë që prurja s’po funksionon. Riprovoni më vonë."],"RSS Error:":["Gabim RSS-je:"],"block style\u0004Default":["Parazgjedhje"],"Fullscreen mode deactivated":["Mënyra Sa Tërë Ekrani u çaktivizua"],"Fullscreen mode activated":["Mënyra Sa Tërë Ekrani u aktivizua"],"Spotlight mode deactivated":["Mënyra projektor u çaktivizua"],"Spotlight mode activated":["Mënyra projektor u aktivizua"],"Top toolbar deactivated":["Paneli i sipërm u çaktivizua"],"Top toolbar activated":["Paneli i sipërm u aktivizua"],"Back":["Mbrapsht"],"Feature activated":["Veçoria u aktivizua"],"Feature deactivated":["Veçoria u çaktivizua"],"Vertical Pos.":["Poz. Vertikal"],"Horizontal Pos.":["Poz. Horizontal"],"feed":["prurje"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Shfaqni zëra prej çfarëdo prurjeje RSS ose Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Numër maksimum fjalësh në copëz"],"Display excerpt":["Shfaq copëz"],"Display date":["Shfaq datë"],"Display author":["Shfaq autorin"],"RSS settings":["Rregullime RSS-je"],"Edit RSS URL":["Përpunoni URL RSS-je"],"Content before this block will be shown in the excerpt on your archives page.":["Lënda përpara këtij blloku do të shfaqet te copëza, te faqja juaj e arkivave."],"Hide the excerpt on the full content page":["Fshihe copëzën në një faqe lënde të plotë"],"The excerpt is visible.":["Copëza është e dukshme.."],"The excerpt is hidden.":["Copëza është e fshehur."],"Sorry, this content could not be embedded.":["Na ndjeni, kjo lëndë s’u trupëzua dot."],"Embed Amazon Kindle content.":["Trupëzoni lëndë Amazon Kindle."],"ebook":["ebook"],"Embed Crowdsignal (formerly Polldaddy) content.":["Trupëzoni lëndë Crowdsignal (dikur Polldaddy)."],"Focal Point Picker":["Zgjedhës Vatre"],"Underline":["Nënvijë"],"Attempt Block Recovery":["Provo Rimarrje Blloku"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Lëndë…"],"button label\u0004Convert to link":["Shndërroje në lidhje"],"button label\u0004Try again":["Riprovoni"],"Editor tips":["Ndihmëza redaktori"],"Block (selected)":["Bllok (përzgjedhur)"],"Document (selected)":["Dokument (përzgjedhur)"],"%d word":["%d fjalë","%d fjalë"],"Top toolbar":["Paneli i epërm"],"Link Rel":["Atribut « Rel » i Lidhjes"],"Link CSS Class":["Klasë CSS Lidhjeje"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Krijoni lëndë dhe ruajeni për veten dhe kontribues të tjerë për ta ripërdorur nëpër sajtin tuaj. Përditësojeni bllokun, dhe ndryshimet zbatohen kudo që ai është përdorur."],"To edit the featured image, you need permission to upload media.":["Që të përpunoni figurën e zgjedhur, ju duhen leje për të ngarkuar media."],"To edit this block, you need permission to upload media.":["Që të përpunoni këtë bllok, ju duhen leje të ngarkoni media."],"(selected block)":["(blloku i përzgjedhur)"],"Block tools":["Mjete blloqesh"],"Permalink":["Permalidhje"],"This image has an empty alt attribute":["Kjo figurë ka një atribut alt të zbrazët"],"This image has an empty alt attribute; its file name is %s":["Kjo figurë ka një atribut alt të zbrazët; emri i kartelës për të është %s"],"Block area reverted to draft.":["Zona e blloqeve u kthye te versioni skicë."],"Block area published privately.":["Zona e blloqeve u botua privatisht."],"No block areas found in Trash.":["S’u gjetën zona blloqesh te Hedhurinat."],"Block\u0004Add New":["Shtoni të Ri"],"add new on admin bar\u0004Block Area":["Zonë Blloqesh"],"Link inserted.":["Lidhja u fut."],"Warning: the link has been inserted but may have errors. Please test it.":["Kujdes: lidhja është futur, por mund të ketë gabime. Ju lutemi, testojeni."],"%s block selected.":["U përzgjodh %s bllok.","U përzgjodhën %s blloqe."],"Thumbnail":["Miniaturë"],"Full Size":["Madhësi e Plotë"],"Link selected.":["Lidhja u përzgjodh."],"Start writing with text or HTML":["Filloni të shkruani me tekst ose HTML"],"Type text or HTML":["Shtypni tekst ose HTML"],"Block icon":["Ikonë blloku"],"Align text right":["Vëre tekstin djathtas"],"Align text center":["Vëre tekstin në qendër"],"Align text left":["Vëre tekstin majtas"],"Start writing or type / to choose a block":["Filloni të shkruani ose shtypni tastin / që të zgjidhni një bllok"],"Empty block; start writing or type forward slash to choose a block":["Bllok i zbrazët; filloni të shkruani ose shtypni tastin pjerrake përpara që të zgjidhni një bllok"],"Paragraph block":["Bllok paragraf"],"Page Break":["Ndërprerje Faqeje"],"Stack on mobile":["Njëra sipër tjetrës, në celular"],"Annotation":["Shënim"],"Drag images, upload new ones or select files from your library.":["Tërhiqni këtu figura, ngarkoni të reja ose përzgjidhni kartela nga fototeka juaj."],"blocks\u0004Most used":["Më të përdorurit"],"imperative verb\u0004Resolve":["Zgjidheni"],"font size name\u0004Huge":["Të stërmëdha"],"font size name\u0004Large":["Të mëdha"],"font size name\u0004Medium":["Mesatare"],"font size name\u0004Small":["Të vogla"],"font size name\u0004Normal":["Normale"],"keyboard button\u0004Enter":["Tasti Enter"],"button label\u0004Import":["Importo"],"button label\u0004Download":["Shkarkim"],"button label\u0004Embed":["Trupëzojeni"],"block title\u0004Embed":["Trupëzim"],"block title\u0004Classic":["Klasik"],"block style\u0004Large":["I madh"],"block style\u0004Rounded":["Rrumbullak"],"%s (opens in a new tab)":["%s (hapet në dritare të re)"],"Link edited.":["Lidhja u përpunua."],"Link removed.":["Lidhja u hoq."],"media":["media"],"Double-check your settings before publishing.":["Përpara se të botoni, kontrolloni edhe një herë rregullimet tuaja."],"Generating preview…":["Po prodhohet paraparja…"],"Edit or update the image":["Përpunoni ose përditësoni figurën"],"Media":["Media"],"Navigate to the nearest toolbar.":["Kalo te paneli më i afërt."],"Document tools":["Mjete dokumentesh"],"Document and block tools":["Mjete dokumentesh dhe blloqesh"],"Embed a video from your media library or upload a new one.":["Trupëzoni një video nga mediateka juaj ose ngarkoni një të re."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Futni poezi. Përdorni formate speciale për hapësirat. Ose citoni vargje kënge."],"Add white space between blocks and customize its height.":["Shtoni hapësirë të zbrazët mes blloqesh dhe përshtatni lartësinë e tyre."],"Insert additional custom elements with a WordPress shortcode.":["Futni elementë vetjakë shtesë, përmes një kodi të shkurtër WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Krijoni një ndërprerje mes idesh apo seksionesh, me një ndarës horizontal."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Jepini tekstit të cituar një theksim pamor. \"Duke cituar të tjerët, ne citojmë vetveten.\" — Hulio Kortazar"],"Give special visual emphasis to a quote from your text.":["Jepini theksim të veçantë pamor një citimi prej tekstit tuaj."],"Start with the building block of all narrative.":["Fillojani me bllokun themelor të krejt rrëfimit."],"Separate your content into a multi-page experience.":["Ndajeni lëndën tuaj në një formë shumë faqesh."],"Set media and words side-by-side for a richer layout.":["Vini krah për krah media dhe fjalë, për një skemë më të larmishme."],"Media & Text settings":["Rregullime për Media & Tekst"],"Create a bulleted or numbered list.":["Krijoni një listë me toptha ose të numërtuar."],"Display a list of your most recent comments.":["Shfaqni një listë të komenteve tuaja më të reja."],"Insert an image to make a visual statement.":["Futni një figurë për të lënë përshtypje."],"Add custom HTML code and preview it as you edit.":["Shtoni kod HTML vetjak dhe shihni një paraparje të tij, në përpunim e sipër."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Përdorni ndarje të reja dhe sistemojeni lëndën tuaj për t’i ndihmuar vizitorët (dhe motorët e kërkimit) të kuptojnë strukturë e saj."],"Display multiple images in a rich gallery.":["Shfaqni figura të shumta në një galeri të larmishme."],"Add a link to a downloadable file.":["Shtoni një lidhje te një kartelë e shkarkueshme."],"Embed videos, images, tweets, audio, and other content from external sources.":["Trupëzoni video, figura, mesazhe nga Twitter, audio, dhe lëndë tjetër nga burime të jashtme."],"Resize for smaller devices":["Ripërmasoje për pajisje më të vogla"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ky trupëzim mund të mos ruajë përpjesëtimet e veta, kur shfletuesi ripërmasohet."],"This embed will preserve its aspect ratio when the browser is resized.":["Ky trupëzim do të ruajë përpjesëtimet e veta, kur shfletuesi ripërmasohet."],"Embed an Animoto video.":["Trupëzoni video Animoto."],"Embed a Vimeo video.":["Trupëzoni video Vimeo."],"Embed Flickr content.":["Trupëzoni lëndë Flickr."],"Embed Spotify content.":["Trupëzoni lëndë Spotify."],"Embed SoundCloud content.":["Trupëzoni lëndë SoundCloud."],"Embed a WordPress post.":["Trupëzoni një postim WordPress."],"Embed an Instagram post.":["Trupëzoni postim Instagram."],"Embed a Facebook post.":["Trupëzoni postim Facebook."],"Embed a WordPress.tv video.":["Trupëzoni një video WordPress.tv."],"Embed a VideoPress video.":["Trupëzoni një video VideoPress."],"Embed a Tumblr post.":["Trupëzoni një postim Tumblr."],"Embed a TED video.":["Trupëzoni një video TED."],"Embed Speaker Deck content.":["Trupëzoni lëndë Speaker Deck."],"Embed a YouTube video.":["Trupëzoni video YouTube."],"Embed SmugMug content.":["Trupëzoni lëndë SmugMug."],"Embed Slideshare content.":["Trupëzoni lëndë Slideshare."],"Embed Scribd content.":["Trupëzoni lëndë Scribd."],"Embed Screencast content.":["Trupëzoni lëndë Screencast."],"Embed ReverbNation content.":["Trupëzoni lëndë ReverbNation."],"Embed a Reddit thread.":["Trupëzoni rrjedhë Reddit."],"Embed Polldaddy content.":["Trupëzoni lëndë Polldaddy."],"Embed Mixcloud content.":["Trupëzoni lëndë Mixcloud."],"Embed a tweet.":["Trupëzoni një cicërimë Twitter."],"Embed Meetup.com content.":["Trupëzoni lëndë Meetup.com."],"Embed Kickstarter content.":["Trupëzoni lëndë Kickstarter."],"Embed Issuu content.":["Trupëzoni lëndë Issuu."],"Embed Imgur content.":["Trupëzoni lëndë Imgur."],"Embed Hulu content.":["Trupëzoni lëndë Hulu."],"Embed a Dailymotion video.":["Trupëzoni një video Dailymotion."],"Embed CollegeHumor content.":["Trupëzoni lëndë CollegeHumor."],"Embed Cloudup content.":["Trupëzoni lëndë Cloudup."],"Add an image or video with a text overlay — great for headers.":["Shtoni një figurë ose video me njëfarë teksti përsipër - e shkëlqyer për krye."],"Display code snippets that respect your spacing and tabs.":["Shfaqni copëza kodi që respektojnë hapësirat dhe tabulacionet tuaja."],"Use the classic WordPress editor.":["Përdorni përpunuesin klasik WordPress."],"Display a list of all categories.":["Shfaq një listë të krejt kategorive."],"Embed a simple audio player.":["Trupëzoni një lojtës të thjeshtë audio."],"noun\u0004View":["Pamje"],"editor button\u0004Left to right":["Nga e majta në të djathtë"],"Save as Pending":["Ruaje si Në Pritje të Miratimit"],"%s address":["Adresë %s"],"Paste or type URL":["Hidhni ose shtypni URL-në"],"Insert from URL":["Futni prej URL-je"],"Block Navigator":["Lëvizje Në Blloqe"],"Styles":["Stile"],"Advanced panels":["Panele të mëtejshëm"],"Document panels":["Panele dokumentesh"],"General":["Të përgjithshme"],"Open the block navigation menu.":["Hap menunë e lëvizjes nëpër blloqe."],"Work without distraction":["Punoni pa shpërqendrim"],"Focus on one block at a time":["Përqendrohuni mbi një bllok në herë"],"Access all block and document tools in a single place":["Përdorni krejt blloqet dhe mjetet e dokumenteve nga një vend i vetëm"],"Options":["Mundësi"],"(opens in a new tab)":["(hapet në dritare të re)"],"Minutes":["Minuta"],"Hours":["Orë"],"Time":["Kohë"],"Year":["Vit"],"Day":["Ditë"],"December":["Dhjetor"],"November":["Nëntor"],"October":["Tetor"],"September":["Shtator"],"August":["Gusht"],"July":["Korrik"],"June":["Qershor"],"May":["Maj"],"April":["Prill"],"March":["Mars"],"February":["Shkurt"],"January":["Janar"],"Month":["Muaj"],"Date":["Datë"],"Go to the first (home) or last (end) day of a week.":["Kaloni te dita e parë (tasti Home) ose e fundit (tasti End) e javës."],"Home/End":["Tastet Home/End"],"Home and End":["Tastet Home dhe End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Lëvizni mbrapa (tasti PgUp) ose përpara (tasti PgDn) me një muaj."],"PgUp/PgDn":["Tastet PgUp/PgDn"],"Page Up and Page Down":["Tastet Page Up dhe Page Down"],"Move backward (up) or forward (down) by one week.":["Lëvizni mbrapa (tasti Up) ose përpara (tasti Down) me një javë."],"Up and Down Arrows":["Tastet shigjetë Sipër dhe Poshtë"],"Move backward (left) or forward (right) by one day.":["Lëvizni mbrapa (tasti shigjetë majtas) dhe përpara (tasti shigjetë djathtas) me një ditë."],"Left and Right Arrows":["Tastet shigjetë Majtas dhe Djathtas"],"Select the date in focus.":["Përzgjidh datën që ka fokusin."],"Navigating with a keyboard":["Lëvizje me tastierë"],"Click the desired day to select it.":["Klikoni ditën e dëshiruar që të përzgjidhet."],"Click the right or left arrows to select other months in the past or the future.":["Klikoni mbi shigjetat djathtas dhe majtas për të përzgjedhur muaj të tjerë në të kaluarën apo të ardhmen."],"Click to Select":["Klikoni që të Përzgjidhet"],"Calendar Help":["Ndihmë për Kalendarin"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Përdorni tastet shigjetë që të ndryshoni ngjyrën bazë. Shigjetën sipër për ta çelur ngjyrën, atë poshtë për ta bërë më të errët, atë majtas për t’i shtuar ngopjen, dhe atë djathtas për t’ia zvogëluar."],"Choose a shade":["Zgjidhni një hije"],"Change color format":["Ndryshoni format ngjyrash"],"Color value in HSL":["Vlerë ngjyre në HSL"],"Color value in RGB":["Vlerë ngjyre në RGB"],"Color value in hexadecimal":["Vlerë ngjyre në gjashtëmbëdhjetësh"],"RGB mode active":["Mënyra RGB aktive"],"Hex color mode active":["Mënyra ngjyra gjashtëmbëdhjetëshe aktive"],"Hue/saturation/lightness mode active":["Mënyra ton/ngopje/ndriçim aktive"],"Move the arrow left or right to change hue.":["Lëvizeni shigjetën majtas ose djathtas që të ndryshoni tonin e ngjyrës."],"Hue value in degrees, from 0 to 359.":["Vlera hue-je në gradë, nga 0 në 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Vlera alfa, nga 0 (e tejdukshme) në 1 (plotësisht e marrtë)."],"Stripes":["Vija"],"Your site doesn’t include support for this block.":["Sajti juaj nuk përmban mbulim për këtë bllok."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Sajti juaj nuk përmban mbulim për bllokun \"%s\". Këtë bllok mund ta lini të paprekur ose ta hiqni fare."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Sajti juaj nuk përmban mbulim për bllokun \"%s\". Këtë bllok mund ta lini të paprekur, ta shndërroni në një bllok HTML-je Vetjake, ose ta hiqni fare."],"Media area":["Zonë mediash"],"Media & Text":["Media & Tekst"],"Show media on right":["Median shfaqe djathtas"],"Show media on left":["Median shfaqe majtas"],"Open in New Tab":["Hape në Skedë të Re"],"Cover":["Mbulesë"],"Border settings":["Rregullime Anësh"],"Medium":["Medium"],"Paste URL or type to search":["Hidhni URL-në ose shtypni që të kërkohet"],"Terms":["Terma"],"Your work will be published at the specified date and time.":["Postimi juaj do të botohet në datën dhe kohën e përcaktuar."],"Are you ready to schedule?":["Jeni gati të planifikoni?"],"Always show pre-publish checks.":["Shfaq përherë kontrolle para-publikimi."],"Take Over":["Merreni Në Dorë"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Mbi këtë postim është duke punuar hëpërhë një tjetër përdorues, që do të thotë se nuk mund të bëni ndryshime, veç në e marrshi ju në dorë punën."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["Mbi këtë postim është duke punuar hëpërhë %s, që do të thotë se nuk mund të bëni ndryshime, veç në e marrshi ju në dorë punën."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Mbi këtë postim tani ka kontroll përpunimi një tjetër përdorues. Mos u bëni merak, ndryshimet tuaja deri në këtë çast janë ruajtur."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Mbi këtë postim tani ka kontroll përpunimi %s. Mos u bëni merak, ndryshimet tuaja deri në këtë çast janë ruajtur."],"Avatar":["Avatar"],"This post is already being edited.":["Ky postim gjendet tashmë nën përpunim."],"Someone else has taken over this post.":["Dikush tjetër e ka marrë në dorë këtë postim."],"This block contains unexpected or invalid content.":["Ky bllok përmban lëndë të papritur ose të pavlefshme."],"Resolve Block":["Zgjidheni Bllokun"],"Convert to HTML":["Shndërroje në HTML"],"This block can only be used once.":["Ky bllok mund të përdoret vetëm një herë."],"Exit Code Editor":["Dil Nga Përpunues Kodi"],"Editing Code":["Përpunim Kodi"],"Solid Color":["Ngjyrë e Plotë"],"Main Color":["Ngjyrë Bazë"],"HTML":["HTML"],"Write HTML…":["Shkruani HTML…"],"Media settings":["Rregullime për media"],"Overlay":["Shtresë Përsipër"],"Insert Media":["Futni Media"],"Reusable block imported successfully!":["U importua me sukses bllok i ripërdorshëm!"],"Invalid Reusable Block JSON file":["Kartelë e Pavlefshme JSON Blloku të Ripërdorshëm"],"Invalid JSON file":["Kartelë JSON e pavlefshme"],"Import from JSON":["Importo nga JSON"],"Backtick":["Apostrof së prapthi"],"Period":["Pikë"],"Comma":["Presje"],"Change type of %d block":["Ndryshoni llojin e %d blloku","Ndryshoni llojin e %d blloqeve"],"Current":["I tanishmi"],"After Conversion":["Pas Shndërrimi"],"Change alignment":["Ndryshoji drejtimin"],"Change text alignment":["Ndryshoni drejtim teksti"],"%d block":["%d bllok","%d blloqe"],"Forward-slash":["Pjerrake përpara"],"No archives to show.":["S’ka arkiva për shfaqje."],"This file is empty.":["Kjo kartelë është e zbrazët."],"Sorry, this file type is not supported here.":["Na ndjeni, ky lloj kartele këtu nuk mbulohet."],"Manage all reusable blocks":["Administroni krejt blloqet e ripërdorshëm"],"Title":["Titull"],"Fullscreen mode":["Mënyra “sa krejt ekrani”"],"Beautiful landscape":["Panoramë e bukur"],"Close panel":["Mbylle panelin"],"Convert to Classic Block":["Shndërroje në Bllok Klasik"],"Remove Poster Image":["Hiqe Figurën e Afishes"],"Select Poster Image":["Përzgjidhni Figurë Afishe"],"Poster Image":["Figurë Afishe"],"This block is deprecated. Please use the Columns block instead.":["Ky bllok është nxjerrë nga përdorimi. Në vend të tij, ju lutemi, përdorni bllokun Shtylla."],"Text Columns (deprecated)":["Shtylla Teksti (nxjerrë nga përdorimi)"],"Create":["Krijoje"],"Row Count":["Numër Rreshti"],"Column Count":["Numër Shtylle"],"This block is deprecated. Please use the Paragraph block instead.":["Ky bllok është nxjerrë nga përdorimi. Në vend të tij, ju lutemi, përdorni bllokun Paaragraf."],"Subheading (deprecated)":["Nënkrye (nxjerrë nga përdorimi)"],"blockquote":["bllok citimi"],"Change the block type after adding a new paragraph.":["Ndryshoni llojin e bllokut pasi të keni shtuar një paragraf të ri."],"Spotlight mode":["Mënyra projektor"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etiketat i ndihmojnë përdoruesit dhe motorët e kërkimeve të lëvizin nëpër sajtin tuaj dhe të gjejnë lëndën tuaj. Shtoni ndoca fjalëkyçe për të përshkruar postimin tuaj."],"Add tags":["Shtoni etiketa"],"Apply the \"%1$s\" format.":["Apliko formatin \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Tema juaj përdor formate postimesh për të theksuar lloje të ndryshme lënde, bie fjala figura ose video. Që të shihni këtë stilizim të veçantë, aplikoni një format postimi."],"Use a post format":["Përdorim një format postimesh"],"Insert After":["Fute Pas"],"Insert Before":["Fute Para"],"Move %1$d block from position %2$d down by one place":["Kalo %1$d bllok nga pozicioni %2$d një vend më poshtë","Kaloje %1$d blloqet nga pozicioni %2$d një vend më poshtë"],"Move %1$d block from position %2$d up by one place":["Kalo %1$d bllok nga pozicioni %2$d një vend më sipër","Kalo %1$d blloqe nga pozicioni %2$d një vend më sipër"],"Move %1$s block from position %2$d right to position %3$d":["Kaloje bllokun %1$s nga pozicioni %2$d djathtas te pozicioni %3$d"],"movie":["film"],"Insert a new block before the selected block(s).":["Futni një bllok të ri para bllokut(qeve) të përzgjedhur."],"Remove the selected block(s).":["Hiqe bllokun(qet) e përzgjedhur(a)."],"Duplicate the selected block(s).":["Përsëdytni bllokun(qet) e përzgjedhur."],"Block shortcuts":["Shkurtore blloku"],"Clear selection.":["Pastroje përzgjedhjen."],"Select all text when typing. Press again to select all blocks.":["Përzgjidhni krejt tekstin kur shtypet. Rishtypeni që të përzgjidhen krejt blloqet."],"Selection shortcuts":["Shkurtore përzgjedhjesh"],"Switch between Visual editor and Code editor.":["Hidhuni nga përpunues Pamor në atë të Kodit dhe anasjelltas."],"Navigate to the previous part of the editor.":["Kalo te pjesa e mëparshme e përpunuesit."],"Navigate to the next part of the editor.":["Kalo te pjesa pasuese e përpunuesit."],"Show or hide the settings sidebar.":["Shfaqni ose fshihni anështyllën e rregullimeve."],"Redo your last undo.":["Ribëni zhbërjen tuaj të fundit."],"Undo your last changes.":["Zhbëni ndryshimet tuaja të fundit."],"Save your changes.":["Rruani ndryshimet tuaja."],"Global shortcuts":["Shkurtore të përgjithshme"],"Remove a link.":["Hiqni një lidhje."],"Convert the selected text into a link.":["Shndërroje tekstin e përzgjedhur në një lidhje."],"Underline the selected text.":["Nënvizoje tekstin e përzgjedhur."],"Make the selected text italic.":["Tekstin e përzgjedhur kaloje nën të pjerrëta."],"Make the selected text bold.":["Tekstin e përzgjedhur kaloje nën të trasha."],"Text formatting":["Formatim teksti"],"Insert a new block after the selected block(s).":["Futni një bllok të ri pas bllokut(ve) të përzgjedhur."],"Keyboard shortcuts":["Shkurtore tastiere"],"Thanks for testing Gutenberg!":["Faleminderit që testoni Gutenberg-un!"],"Help build Gutenberg":["Ndihmoni në ngritjen e Gutenberg-ut"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Nëse doni të mësoni më tepër rreth se si të krijohen blloqe shtesë, ose nëse interesoheni të ndihmoni në projekt, shkoni te depoja në GitHub."],"The WordPress community":["Bashkësia WordPress"],"Code is Poetry":["Kodi është Poezi"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Mund të krijoni çfarëdo blloku që doni, statik ose dinamik, zbukurues ose të thjeshtë. Ja një bllok për citime:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Më sipër keni një galeri me vetëm dy figura. Bëhet fjalë për një rrugë më të lehtë për krijim skemash tërheqëse nga ana pamore, pa u dashur të merreni me elementë pezull. Galerinë mund ta riktheni lehtësisht te figura individuale, duke përdorur këmbyesin e bllokut."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Sigurisht, figura në madhësi të plotë mund të jetë goxha e madhe. Por ngandonjëherë figura e ka hak këtë."],"Accessibility is important — don’t forget image alt attribute":["Përdorshmëria nga kushdo është e rëndësishme — mos harroni të shtoni atribut alt për figurat"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Nëse ndërthurni drejtimet e reja i gjerë dhe gjerësi e plotë me galeri, mund të krijoni një skemë shumë të larmishme për media, dhe shumë shpejt:"],"Media Rich":["I pasur Me Media"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Sasinë e shtyllave në galerinë tuaj mund të ndryshoni duke tërhequr një rrëshqitës te mbikëqyrësi i bllokut, te anështylla."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Blloqet mund të jenë ç’të keni nevojë. Për shembull, mund të doni të shtoni një citim si pjesë e hartimit të tekstit tuaj, ose mund të doni të shfaqni një të tillë gjigant dhe të stilizuar. Krejt këto mundësi i gjeni te futësi."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Të dhënat që i përgjigjen burimit të citimit janë një fushë teksti më vete, si titujt nën figura, kështu që struktura e citimit është e mbrojtur edhe kur përzgjidhni, modifikoni ose e hiqni fare burimin. Është përherë e lehtë ta shtoni më vonë."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Përpunuesi do të përpiqet të krijojë një metodë të re ndërtimi faqesh dhe postimesh, e cila e bën të pamundimshëm shkrimin e postimeve të pasur, dhe përmban “blloqe” për ta bërë të kollajtë atë për të cilën sot duhen kode të shkurtër, HTML vetjake, apo nuhatje rreth përmbajtjes së trupëzimeve të mistershme."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Një përfitim shumë i madh nga blloqet është se mund t’i përpunoni ata në vend dhe të manipuloni lëndën e tyre drejtpërsëdrejti. Në vend të fushave për përpunim gjërash të tilla si burimi i një citimi, apo teksti i një butoni, mund të ndryshoni lëndën drejtpërdrejt. Provoni të përpunoni citimin vijues:"],"Visual Editing":["Përpunim Pamor"],"And Lists like this one of course :)":["Dhe Lista si kjo, sigurisht :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Blloqe skeme, f.v. Butona, Figura Hero, Ndarës, etj."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Trupëzime, b.f., nga YouTube, Tweets, apo postime të tjera WordPress."],"Galleries":["Galeri"],"Images & Videos":["Figura & Video"],"Text & Headings":["Tekst & Krye"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Provojeni, mund të zbuloni gjëra që s’e dinit se WordPress-i mund t’i shtojë tashmë te postimet tuaja. Ja një listë e shkurtër se ç’mund të gjeni:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Përfytyroni gjithçka që mund të bëjë WordPress-i ta keni në dorë shpejt dhe në të njëjtin vend te ndërfaqja. Pa u dashur të merrni vesh etiketa HTML, klasa, apo të mbani mend sintaksë të ndërlikuar kodesh të shkurtër. Kjo është ideja pas futësit—butoni (+)
që do të shihni nëpër përpunues—i cili ju lejon të shfletoni krejt blloqet e gatshëm të lëndës dhe t’i shtoni ata te postimi juaj. Shtojcat dhe temat janë në gjendje të regjistrojnë blloqe të tyret, duke hapur rrugën për gjithë llojet e mundësive për përpunim dhe botim të pasur."],"The Inserter Tool":["Mjeti i Futjeve"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Provoni të përzgjidhni ose përpunoni përshkrimin, tani nuk ju duhet të më të jeni i kujdesshëm se mos përzgjidhni gabimisht figurën apo tjetër tekst dhe të rrënoni paraqitjen."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Nëse mbulohet nga tema juaj, do të shihni butonin \"e gjerë\" te paneli i figurave. Provojeni."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Trajtimi me kujdesin më të madh të figurave dhe objekteve media është objektivi i parë i përpunuesit të ri. Shpresojmë se shtimi i legjendave apo kalimi në gjerësi të plotë i figurave tuaja do t’ju duken shumë të lehta dhe të fuqishme se më parë."],"A Picture is Worth a Thousand Words":["Një Pamje vlen Sa Një Mijë Fjalë"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Tituj janë gjithashtu blloqe më vete, gjë që ndihmon në përvijimin dhe sistemimin e lëndës tuaj."],"... like this one, which is right aligned.":["… si kjo, që është e vendosur majtas."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Ajo që po lexoni tani është një bllok teksti, blloku më i themelor nga të tërë. Blloku i tekstit ka kontrollet e veta për t’u lëvizur lirisht nëpër postim…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Synimi i përpunuesit të ri është ta bëjë të thjeshtë dhe të pëlqyeshëm shtimin e lëndës së pasur te WordPress. Ky postim përbëhet i tëri nga pjesë lënde—diçka e ngjashme me blloqet LEGO—që mund t’i lëvizni dhe ndërveproni me to. Lëvizeni kursorin tuaj përqark dhe do të vini re që blloqe të ndryshëm sikur përmenden, me përvijime dhe shigjeta. Shtypni shigjetat që t’i ripozicioni blloqet shpejt e shpejt, pa frikë se mos humbë gjë gjatë procesit të kopjimit dhe ngjitjes."],"Of Mountains & Printing Presses":["Mbi Malet & Shtypshkronjat"],"Welcome to the Gutenberg Editor":["Mirë e vini te Përpunuesi Gutenberg"],"block name\u0004More":["Më tepër"],"button to expand options\u0004More":["Më tepër"],"Are you sure you want to unschedule this post?":["Jeni i sigurt se doni t’i hiqet planifikimi për botim këtij postimi?"],"Alt Text (Alternative Text)":["Tekst Alt (Text Alternativ)"],"Reusable Block":["Bllok i Ripërdorshëm"],"Unique identifier for the object.":["Identifikues unik për objektin."],"Untitled Reusable Block":["Bllok i Ripërdorshëm Pa Titull"],"Small":["I vogël"],"Reusable":["I ripërdorshëm"],"Remove from Reusable blocks":["Hiqe prej blloqesh të Ripërdorshëm"],"Add to Reusable blocks":["Shtoje te blloqe të Ripërdorshëm"],"Keep as HTML":["Mbaje si HTML"],"Edit URL":["Përpunojeni URL-në"],"Color settings":["Rregullime ngjyrash"],"The response is not a valid JSON response.":["Përgjigja s’është përgjigje JSON e vlefshme."],"Editor publish":["Publikime nga Redaktori"],"Muted":["Pa zë"],"Video settings":["Rregullime për videon"],"recent comments":["komente së fundi"],"Latest Comments":["Komentet Më të Reja"],"Display Excerpt":["Shfaq Copëzën"],"Display Date":["Shfaq Datën"],"Display Avatar":["Shfaq Avatarin"],"Latest comments settings":["Rregullime për komentet më të reja"],"Number of Comments":["Numër Komentesh"],"Background Opacity":["Patejdukshmëri Sfondi"],"Auto":["Auto"],"Preload":["Parangarkim"],"Audio settings":["Rregullime për audion"],"Display a monthly archive of your posts.":["Shfaqni një arkiv mujor të postimeve tuaja."],"Display as Dropdown":["Shfaqe si Hapmbyll"],"Show Post Counts":["Shfaq Numër Postimesh"],"Archives settings":["Rregullime arkivash"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Asistencë"],"No comments to show.":["S’ka komente për shfaqje."],"%1$s on %2$s":["%1$s në %2$s"],"Select Post":["Përzgjidhni Postim"],"Select Week":["Përzgjidhni Javë"],"Select Day":["Përzgjidhni Ditë"],"Select Month":["Përzgjidhni Muaj"],"Select Year":["Përzgjidhni Vit"],"Archives":["Arkiva"],"Very dark gray":["Gri shumë e errët"],"Cyan bluish gray":["Gri e kaltër e gjelbër në blu"],"Very light gray":["Gri shumë e çelët"],"Vivid cyan blue":["Blu e kaltër e gjelbër e ndezur"],"Pale cyan blue":["Blu e kaltër e gjelbër e zbehtë"],"Vivid green cyan":["Blu e kaltër e gjelbër e ndezur"],"Light green cyan":["E kaltër e gjelbër e zbehtë"],"Luminous vivid amber":["E qelibartë"],"Luminous vivid orange":["Portokalli e ndritshme e ndezur"],"Vivid red":["E kuqe e ndezur"],"Pale pink":["Vjollcë e zbehtë"],"Inline image":["Figurë brendazi"],"Available block types":["Lloje blloqesh të gatshëm"],"Transform To:":["Shndërroje Në:"],"Remove Block":["Hiqe Bllokun","Hiq Blloqe"],"Open publish panel":["Hap panel publikimesh"],"Dots":["Pika"],"Wide Line":["Vijë e Gjerë"],"Large":["E madhe"],"Show download button":["Shfaq buton shkarkimesh"],"Download button settings":["Rregullime butoni shkarkimesh"],"Link To":["Lidhje Te"],"Text link settings":["Rregullime lidhjesh tekst"],"download":["shkarkim"],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopjoji URL-në"],"Write file name…":["Shkruani emër kartele…"],"File":["Kartelë"],"A single column within a columns block.":["Një shtyllë njëshe brenda blloku shtyllash."],"Column":["Shtyllë"],"Outline":["Ravijëzim"],"Loop":["Loop"],"Autoplay":["Vetëluaje"],"Playback Controls":["Kontrolle Luajtjeje"],"Close dialog":["Mbylleni dialogun"],"Sorry, this file type is not permitted for security reasons.":["Na ndjeni, për arsye sigurie ky lloj kartele nuk lejohet."],"Disable tips":["Çaktivizoni ndihmëza"],"Got it":["E kuptova"],"See next tip":["Shihni ndihmëzën pasuese"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Kur të jeni gati, parashtrojeni punën tuaj për shqyrtim, dhe një Redaktor do të jetë në gjendje ta miratojë për ju."],"Are you ready to submit for review?":["Jeni gati ta parashtroni për shqyrtim?"],"Replace image":["Zëvendëso figurën"],"Remove image":["Hiqe figurën"],"Error while uploading file %s to the media library.":["Gabim teksa ngarkohej kartela %s te mediateka."],"This file exceeds the maximum upload size for this site.":["Kartela e tejkalon madhësinë maksimum të ngarkimit për këtë sajt."],"View the autosave":["Shiheni vetëruajtjen"],"There is an autosave of this post that is more recent than the version below.":["Ka një vetëruajtje për këtë postim, e cila është më e freskët se sa versioni më poshtë."],"Autosaving":["Po vetëruhet"],"Enter URL here…":["Jepeni këtu URL-në…"],"Pin to toolbar":["Fiksoje në panel"],"Unpin from toolbar":["Shfiksoje nga paneli"],"Insert a table — perfect for sharing charts and data.":["Futni një tabelë — e përsosur për të ndarë me të tjerët grafikë dhe të dhëna."],"Fixed width table cells":["Kutiza tabele me gjerësi të fiksuar"],"Table settings":["Rregullime tabelash"],"Add text that respects your spacing and tabs, and also allows styling.":["Shtoni tekst që respekton hapësirat dhe tabulacionet tuaja, lejon gjithashtu stilizim."],"Display a list of your most recent posts.":["Shfaqni një listë të postimeve tuaja më të reja."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Shtoni një bllok që shfaq lëndë të marrë nga sajte të tjerë, b.f. Twitter, Instagram ose YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Shtoni një bllok që e shfaq lëndën në shumë shtylla, mandej shtoni çfarëdo blloqesh lënde që doni."],"Error loading block: %s":["Gabim në ngarkimin e bllokut: %s"],"Unknown error":["Gabim i panjohur"],"Embed Handler":["Trajtues Trupëzimesh"],"term\u0004Remove %s":["Hiqe %s"],"Copy the permalink":["Kopjoje permalidhjen"],"Permalink copied":["Permalidhja u kopjua"],"Height in pixels":["Lartësi në piksel"],"Spacer settings":["Rregullime ndarësi"],"Spacer":["Ndarës"],"Toggle to show a large initial letter.":["Klikojeni që të shfaqet një shkronjë fillestare e madhe."],"Showing large initial letter.":["Shfaqje shkronje fillestare të madhe."],"Name:":["Emër:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s nga %3$s)"],"Remove item":["Hiqe elementin"],"Color code: %s":["Kod ngjyre: %s"],"Skip to the selected block":["Kalo te blloku i përzgjedhur"],"Publish…":["Botoni…"],"Schedule…":["Planifikoni…"],"Edit post permalink":["Përpunoni permalidhjen e postimit"],"Show Block Settings":["Shfaqi Rregullimet e Bllokut"],"Hide Block Settings":["Fshihi Rregullimet e Bllokut"],"Block settings closed":["Rregullimet e bllokut u mbyllën"],"Close plugin":["Mbylle shtojcën"],"Editor settings":["Rregullime përpunuesi"],"Link settings":["Rregullime lidhjesh"],"Unlink":["Hiqjani lidhjen"],"Page break":["Ndërprerje faqeje"],"pagination":["faqosje"],"next page":["faqja pasuese"],"Image Size":["Madhësi Figure"],"Height":["Lartësi"],"Width":["Gjerësi"],"Image Dimensions":["Përmasa Figure"],"Thumbnails are not cropped.":["Miniaturat s’janë qethur."],"Thumbnails are cropped to align.":["Miniaturat janë qethur për drejtim."],"Media Library":["Mediatekë"],"Advanced":["Të mëtejshme"],"Add item":["Shtoni element"],"Reset the template":["Riktheje gjedhen në fillimet"],"Keep it as is":["Mbaje siç është"],"The content of your post doesn’t match the template assigned to your post type.":["Lënda e postimit tuaj s’përkon me gjedhen caktuar llojit tuaj të postimit."],"Resetting the template may result in loss of content, do you want to continue?":["Rikthimi i gjedhes në fillimet mund të sjellë humbje të lëndës, doni të vazhdohet?"],"Document Statistics":["Statistika Dokumenti"],"is now scheduled. It will go live on":["tani është vënë në plan. Do të bëhet publik më"],"Scheduled":["I planifikuar"],"Scheduling…":["Po vihet në plan…"],"Code editor selected":["U përzgjodh përpunuesi i kodit"],"Visual editor selected":["U përzgjodh përpunuesi pamor"],"Plugins":["Shtojca"],"Custom Size":["Madhësi Vetjake"],"Layout elements":["Elementë skicimi"],"term\u0004%s removed":["%s u hoq"],"term\u0004%s added":["%s u shtua"],"imperative verb\u0004Preview":["Bëjini Paraparje"],"Block deleted.":["Blloku u fshi."],"Block updated.":["Blloku u përditësua."],"Block created.":["Blloku u krijua."],"Trashing failed":["Shpënia në hedhurina dështoi"],"Updating failed.":["Përditësimi dështoi."],"Scheduling failed.":["Vënia në plan dështoi."],"Publishing failed.":["Botimi dështoi."],"View post":["Shihni postimin"],"You have unsaved changes. If you proceed, they will be lost.":["Ka ndryshime të paruajtura. Nëse vazhdoni, ato do të humbin."],"Document Outline":["Përvijim Dokumenti"],"Paragraphs":["Paragrafë"],"Headings":["Krye"],"Words":["Fjalë"],"Content structure":["Strukturë lënde"],"Public":["Publik"],"Protected with a password you choose. Only those with the password can view this post.":["Mbrojtur me një fjalëkalim që zgjidhni. Vetëm ata me këtë fjalëkalim mund ta shohin këtë postim."],"Password Protected":["Mbrojtur me Fjalëkalim"],"Only visible to site admins and editors.":["I dukshëm vetëm për përgjegjës sajti dhe redaktorë."],"Private":["Privat"],"Visible to everyone.":["I dukshëm për këdo."],"Post Visibility":["Dukshmëri Postimi"],"Would you like to privately publish this post now?":["Do të donit ta botonit privatisht këtë postim tani?"],"Use a secure password":["Përdorni një fjalëkalim të sigurt"],"Create password":["Krijoni fjalëkalim"],"Move to Trash":["Shpjere te Hedhurinat"],"Parent Term":["Term Mëmë"],"Parent Category":["Kategori Mëmë"],"Add new term":["Shtoni term të ri"],"Add new category":["Shtoni kategori të re"],"Term":["Term"],"Tag":["Etiketë"],"Add new Term":["Shtoni Term të ri"],"Add new tag":["Shtoni etiketë të re"],"Switch to draft":["Kalo te skica"],"Are you sure you want to unpublish this post?":["Jeni i sigurt se doni të shbotohet ky postim?"],"Immediately":["Menjëherë"],"Save Draft":["Ruaje Skicën"],"Saving":["Po ruhet"],"Publish:":["Publikoje:"],"Visibility:":["Dukshmëri:"],"Are you ready to publish?":["Jeni gati për botim?"],"Copy Link":["Kopjoji Lidhjen"],"What’s next?":["Ç’vjen më pas?"],"is now live.":["tani është publik."],"Published":["U botua"],"Schedule":["Vëreni në plan"],"Update":["Përditësoje"],"Submit for Review":["Parashtrojeni për Shqyrtim"],"Updating…":["Po përditësohet…"],"Publishing…":["Po botohet…"],"Allow pingbacks & trackbacks":["Lejo pingback-e & pasgjurmime"],"Permalink:":["Permalidhje:"],"Pending review":["Në pritje të shqyrtimit"],"%d Revision":["%d Rishikim","%d Rishikime"],"Suggestion:":["Sugjerim:"],"Post Format":["Format Postimesh"],"Chat":["Fjalosje"],"Status":["Gjendje"],"Standard":["Standard"],"Aside":["Anësore"],"Featured image":["Figurë e zgjedhur"],"Set featured image":["Vëre si figurë të zgjedhur"],"Learn more about manual excerpts":["Mësoni më tepër rreth copëzash të krijuara dorazi"],"Write an excerpt (optional)":["Shkruani një copëz (opsionale)"],"Allow comments":["Lejo komente"],"Template:":["Gjedhe:"],"no parent":["pa mëmë"],"no title":["pa titull"],"Order":["Renditje"],"No blocks found.":["S’u gjetën blloqe."],"%d result found.":["U gjet %d përfundim.","U gjetën %d përfundime."],"Saved":["U ruajt"],"Embeds":["Trupëzime"],"Blocks":["Blloqe"],"Search for a block":["Kërkoni për një bllok"],"Add block":["Shtoni bllok"],"Copy Error":["Gabim Kopjimi"],"Copy Post Text":["Kopjo Tekst Postimi"],"Attempt Recovery":["Provo Rimarrjen"],"The editor has encountered an unexpected error.":["Përpunuesi hasi një gabim të papritur."],"Undo":["Zhbëje"],"Redo":["Ribëje"],"(Multiple H1 headings are not recommended)":["(Nuk këshillohen krye H1 të shumëfishta)"],"(Your theme may already use a H1 for the post title)":["(Tema juaj mund të përdorë tashmë një H1 për titullin e postimit)"],"(Incorrect heading level)":["(Shkallë e pasaktë kryesh)"],"(Empty heading)":["(Krye e zbrazët)"],"Block Styles":["Stile Blloku"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Jeni i sigurt se doni të fshihet ky Bllok i Ripërdorshëm?\n\nDo të hiqet përgjithmonë prej krejt postimeve dhe faqeve që e përdorin."],"Convert to Regular Block":["Shndërroje Në Bllok të Rregullt"],"More options":["Më tepër mundësi"],"Edit visually":["Përpunoje në rrugë pamore"],"Duplicate":["Përdytësoje"],"Blocks cannot be moved down as they are already at the bottom":["Blloqet s’mund të ulen poshtë, ngaqë gjenden tashmë në fund"],"Blocks cannot be moved up as they are already at the top":["Blloqet s’mund të ngjiten sipër, ngaqë gjenden tashmë në krye"],"Block %1$s is at the beginning of the content and can’t be moved right":["Blloku %1$s gjendet në fillim të lëndës dhe s’mund të kalohet djathtas"],"Block %1$s is at the end of the content and can’t be moved right":["Blloku %1$s gjendet në fund të lëndës dhe s’mund të lëvizet djathtas"],"Block %s is the only block, and cannot be moved":["Blloku %s është i vetmi bllok, ndaj s’mund të lëvizet"],"Edit as HTML":["Përpunojeni si HTML"],"Convert to Blocks":["Shndërroje në Blloqe"],"Block: %s":["Blloku: %s"],"This block has encountered an error and cannot be previewed.":["Për këtë bllok u has një gabim dhe s’mund t’i bëhet paraparje."],"No block selected.":["S’u përzgjodh bllok."],"Transform into:":["Shndërroje në:"],"Remove":["Hiqe"],"Find original":["Gjej origjinalin"],"Copy all content":["Kopjo krejt lëndën"],"Copied!":["U kopjua!"],"Additional settings are now available in the Editor block settings sidebar":["Te anështylla e rregullimeve të blloqeve, te Përpunuesi, tani ka rregullime shtesë"],"Visibility":["Dukshmëri"],"Status & visibility":["Gjendje & dukshmëri"],"Page attributes":["Atribute faqeje"],"Block":["Bllok"],"Document":["Dokument"],"Close settings":["Mbylli rregullimet"],"Editor content":["Lëndë përpunuesi"],"Tools":["Mjete"],"Editor":["Përpunues"],"Code editor":["Përpunues kodi"],"Visual editor":["Përpunues pamor"],"Editor top bar":["Shtyllë e sipërme përpunuesi"],"Settings":["Rregullime"],"Reset":["Ricaktoje"],"Dismiss this notice":["Shpërfille këtë shënim"],"Item removed.":["Objekti u hoq."],"Item added.":["Objekti u shtua."],"Drop files to upload":["Hidhni këtu kartela për ngarkim"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Ndodhi një gabim i panjohur."],"No results.":["S’ka përfundime."],"%d result found, use up and down arrow keys to navigate.":["U gjet %d përfundim, për lëvizje përdorni tastet shigjetë sipër dhe poshtë.","U gjetën %d përfundime, për lëvizje përdorni tastet Shigjetë sipër dhe poshtë."],"(no title)":["(pa titull)"],"URL":["URL"],"Submit":["Parashtroje"],"Close":["Mbylle"],"Insert link":["Futni lidhje"],"Edit link":["Përpunoni lidhje"],"Link":["Lidhje"],"Strikethrough":["Hequrvije"],"Italic":["Të pjerrëta"],"Bold":["Të trasha"],"Remove link":["Hiqe lidhjen"],"Number of items":["Numër artikujsh"],"All":["Krejt"],"Category":["Kategori"],"Z → A":["Z-A"],"A → Z":["Z-A"],"Oldest to Newest":["Nga Më i Vjetri te Më i Riu"],"Newest to Oldest":["Nga Më i Riu te Më i Vjetri"],"Order by":["Renditi sipas"],"Select":["Përzgjidhni"],"Select or Upload Media":["Përzgjidhni ose Ngarkoni Media"],"Video":["Video"],"Write…":["Shkruani…"],"poetry":["poezi"],"Verse":["Varg"],"New Column":["Shtyllë e Re"],"Delete Column":["Fshije Shtyllën"],"Add Column After":["Shto Shtyllë Pas"],"Add Column Before":["Shto Shtyllë Para"],"Delete Row":["Fshije Rreshtin"],"Add Row After":["Shtoni Rresht Pas"],"Add Row Before":["Shto Rresht Para"],"Edit table":["Përpunoni tabelë"],"Table":["Tabelë"],"Write subheading…":["Shkruani nënkrye…"],"Write shortcode here…":["Shkruani këtu kod të shkurtë…"],"Shortcode":["Kod i shkurtër"],"divider":["ndarës"],"horizontal-line":["vijë horizontale"],"Separator":["Ndarës"],"Quote":["Citim"],"Write citation…":["Shkruani përmendje…"],"Write quote…":["Shkruani citim…"],"Pullquote":["Citim"],"Write preformatted text…":["Shkruani tekst të paraformatuar…"],"Preformatted":["E paraformatuar"],"text":["tekst"],"Paragraph":["Paragraf"],"Font Size":["Madhësi Shkronjash"],"Drop Cap":["Kryeshkronjë"],"Text settings":["Rregullime teksti"],"Read more":["Lexoni më tepër"],"Write list…":["Shkruani listë…"],"numbered list":["listë e numërtuar"],"ordered list":["listë e renditur"],"bullet list":["listë me toptha"],"Indent list item":["Zhvendose elementin e listës për brenda"],"Outdent list item":["Zhvendose elementin e listës për jashtë"],"Convert to ordered list":["Shndërroje në listë të renditur"],"Convert to unordered list":["Shndërroje në listë të parenditur"],"List":["Listë"],"recent posts":["postime së fundi"],"No posts found.":["S’u gjetën postime."],"Latest Posts":["Postimet Më të Reja"],"Display post date":["Shfaq datë postimesh"],"Grid view":["Pamje mozaik"],"List view":["Pamje listë"],"photo":["foto"],"Image settings":["Rregullime figurash"],"Image":["Figurë"],"Preview":["Paraparje"],"embed":["trupëzim"],"Custom HTML":["HTML Vetjake"],"subtitle":["nëntitull"],"title":["titull"],"Heading":["Krye"],"Write heading…":["Shkruani titull…"],"Heading %d":["Krye %d"],"Level":["Nivel"],"Heading settings":["Rregullime kryesh"],"photos":["foto"],"images":["figura"],"None":["Asnjë"],"Media File":["Kartelë Media"],"Attachment Page":["Faqe Bashkëngjitjesh"],"Link to ":["Lidhje për te "],"Crop Images":["Qethi Figurat"],"Gallery settings":["Rregullime galerie"],"Gallery":["Galeri"],"Classic":["Klasike"],"video":["video"],"audio":["audio"],"music":["muzikë"],"image":["figurë"],"blog":["blog"],"post":["postim"],"Embedded content from %s":["Lëndë e trupëzuar nga %s"],"Enter URL to embed here…":["Jepni këtu URL-në për trupëzim…"],"%s URL":["URL %s"],"Embedding…":["Po trupëzohet…"],"Write title…":["Shkruani një titull…"],"Fixed Background":["Sfond i Palëvizshëm"],"Edit image":["Përpunoni figurën"],"Columns":["Shtylla"],"Experiments":["Eksperimente"],"Code":["Kod"],"Write code…":["Shkruani kod…"],"Categories":["Kategori"],"Show Hierarchy":["Shfaq Hierarkinë"],"Show post counts":["Shfaq numrin e postimeve"],"Categories settings":["Rregullime kategorish"],"Add text…":["Shtoni tekst…"],"Button":["Buton"],"Apply":["Zbatoje"],"Text Color":["Ngjyrë Teksti"],"Background Color":["Ngjyrë Sfondi"],"Block has been deleted or is unavailable.":["Blloku është fshirë ose s’mund të kihet."],"Reusable blocks":["Blloqe të ripërdorshëm"],"Cancel":["Fshije"],"Edit":["Përpunoni"],"Write caption…":["Shkruani titullin…"],"Use URL":["Përdore URL-në"],"Audio":["Audio"],"Upload":["Ngarko"],"Additional CSS Class(es)":["Klasë(a) CSS Shtesë"],"HTML Anchor":["Spiranca HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Kjo ndërthurje ngjyrash mund të vështirësojë leximin nga njerëzit. Provoni të përdorni një ngjyrë sfondi më të ndritshme dhe/ose një ngjyrë të errët teksti."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Kjo ndërthurje ngjyrash mund të vështirësojë leximin nga njerëzit. Provoni të përdorni një ngjyrë sfondi më të errët dhe/ose një ngjyrë të ndritshme teksti."],"Clear":["Fshije"],"Custom color picker":["Zgjedhës ngjyrash vetjake"],"Color: %s":["Ngjyrë: %s"],"Full width":["Gjerësi e plotë"],"Wide width":["Gjerësi e madhe"],"Widgets":["Widget-e"],"Formatting":["Formatim"],"Common blocks":["Blloqe të rëndomtë"],"Align right":["Vendose djathtas"],"Align center":["Vendose në qendër"],"Align left":["Vendose majtas"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Shtypim që nga 1440-a. Kjo është shtojca e zhvillimit për përpunuesin e ri të blloqeve për pjesën bazë."],"Add title":["Shtoni titull"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Që të montohet, mënyra zhvillim për Gutenberg-un lyp kartela. Xhironi npm install
që të instaloni varësitë, npm run build
që të montohen kartelat, ose npm run dev
që të montohen kartelat dhe të shihet për ndryshime. Për më tepër të dhëna, lexoni te kartela the dhënie ndihmese."],"Author":["Autor"],"Slug":["Identifikues"],"Discussion":["Diskutim"],"Custom fields":["Fusha vetjake"],"Excerpt":["Copëza"],"Publish":["Botoje"],"Metadata":["Tejtëdhëna"],"Save":["Ruaje"],"Documentation":["Dokumentim"],"Select Category":["Përzgjidhni Kategori"],"(Untitled)":["(I patitull)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Që të funksionojë si duhet, Gutenbergu lyp WordPress %s ose të mëvonshëm. Ju lutemi, përmirësoni WordPress-in, përpara se të aktivizoni Gutenberg-un."],"Gutenberg Team":["Ekipi Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s më parë"],"Block style name must be a string.":["Emri për stil blloku duhet të jetë një varg."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_sr.json b/bundle/android/raw/i18ncache_data_sr.json
new file mode 100644
index 0000000000..410120efdc
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_sr.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":["Додај блок"],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":["Прикажите застарели виџет."],"Legacy Widget (Experimental)":["Застарели виџет (експерименталнo)"],"Change widget":["Промени виџет"],"Legacy Widget":["Застарели виџет"],"You don't have permissions to use widgets on this site.":["Немате дозволе за коришћење виџета на овом веб месту."],"Select a legacy widget to display:":["Одаберите застарели виџет за приказ:"],"There are no widgets available.":["Нема расположивих виџета."],"Change block type or style":["Промени врсту или стил блока"],"keyboard key\u0004Space":["Размак"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":[],"Search Terms":[],"Exit the Editor":["Изађи из уређивача"],"Block Manager":["Управљач блокова"],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":["Угнежђен садржај са %s не може бити прегледан у уређивачу."],"Custom Color":["Прилагођена боја"],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":["Залепи на врх блога"],"Read about permalinks":["Прочитајте више сталним везама"],"The last part of the URL.":[],"URL Slug":["Подложак URL-а"],"A cloud of your most used tags.":["Облак ваших најкоришћенијих ознака."],"Tag Cloud":["Облак ознака"],"Taxonomy":["Таксономија"],"Tag Cloud settings":[],"- Select -":["- Изабери -"],"Default":[],"find":[],"Help visitors find your content.":["Помозите посетиоцима да пронађу ваш садржај."],"Search":[],"Add button text…":["Додајте текст дугмета…"],"Button text":["Текст дугмета"],"Optional placeholder…":["Необавезни држач места…"],"Optional placeholder text":["Текст необавезног држача места"],"Add label…":["Додајте натпис…"],"Label text":["Текст натписа"],"image %1$d of %2$d in gallery":["слика %1$d од %2$d у галерији"],"archive":["архива"],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":["Блок (изабрано)"],"Document (selected)":["Документ (изабрано)"],"%d word":["%d реч","%d речи","%d речи"],"Top toolbar":[],"Link Rel":["Rel везе"],"Link CSS Class":["CSS класа везе"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Направите садржај и сачувајте га да бисте га ви и ваши сарадници поновно користили на вашем веб месту. Ажурирајте блок и измене ће бити примењене свуда где се користи."],"To edit the featured image, you need permission to upload media.":["Да бисте уредили изабрану слику, морате имати дозволу да отпремите садржај."],"To edit this block, you need permission to upload media.":["Да бисте уредили овај блок, морате имати дозволу да отпремите садржај."],"(selected block)":["(изабрани блок)"],"Block tools":["Алатке блока"],"Permalink":["Стална веза"],"This image has an empty alt attribute":["Ова слика има празан alt атрибут"],"This image has an empty alt attribute; its file name is %s":["Ова слика има празан alt атрибут; име њене датотеке је %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["Додај нови"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["Упозорење: веза је уметнута али можда има грешке. Молимо вас да је испробате."],"%s block selected.":["%s блок је одабран.","%s блока су одабрана.","%s блокова је одабрано."],"Thumbnail":["Умањена слика"],"Full Size":["Пуна величина"],"Link selected.":[],"Start writing with text or HTML":["Започните писање са текстом или HTML-ом"],"Type text or HTML":["Откуцајте текст или HTML"],"Block icon":["Иконица блока"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Започните са писањем или откуцајте / да бисте одабрали блок"],"Empty block; start writing or type forward slash to choose a block":["Празан блок; започните са писањем или откуцајте косу црту да бисте одабрали блок"],"Paragraph block":["Блок Пасус"],"Page Break":["Прелом странице"],"Stack on mobile":["Наслагање на преносивом"],"Annotation":[],"Drag images, upload new ones or select files from your library.":["Превуците слике, отпремите нове или изаберите датотеке из своје библиотеке."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Реши"],"font size name\u0004Huge":["Огромна"],"font size name\u0004Large":["Велика"],"font size name\u0004Medium":["Средња"],"font size name\u0004Small":["Мала"],"font size name\u0004Normal":["Нормална"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Увези"],"button label\u0004Download":["Преузми"],"button label\u0004Embed":["Угнезди"],"block title\u0004Embed":["Угнежђивање"],"block title\u0004Classic":["Класични"],"block style\u0004Large":["Велики"],"block style\u0004Rounded":["Заобљени"],"%s (opens in a new tab)":["%s (отвара се у новом језичку)"],"Link edited.":["Веза је уређена."],"Link removed.":["Веза је уклоњена."],"media":["садржај"],"Double-check your settings before publishing.":["Два пута проверите своја подешавања пре објављивања."],"Generating preview…":["Прављење прегледа…"],"Edit or update the image":["Уреди или ажурирај слику"],"Media":["Садржај"],"Navigate to the nearest toolbar.":["Крећи се на најближу траку са алаткама."],"Document tools":["Алатке документа"],"Document and block tools":["Алатке документа и блока"],"Embed a video from your media library or upload a new one.":["Угнездите видео запис из своје библиотеке садржаја или отпремите нов."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Уметните поезију. Користите посебно обликовање прореда. Или цитирате текст песме."],"Add white space between blocks and customize its height.":["Додајте празни простор између блокова и прилагодите његову висину."],"Insert additional custom elements with a WordPress shortcode.":["Уметните додатне прилагођене елементе са Вордпресовим кратким кôдом."],"Create a break between ideas or sections with a horizontal separator.":["Направите прекид између замисли или одељака са водоравним растављачем."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":["Почните са блоком за прављење приче."],"Separate your content into a multi-page experience.":["Поделите свој садржај у више страница."],"Set media and words side-by-side for a richer layout.":["Поставите садржај и речи раме уз раме за богатији распоред."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Направите неуређен или нумерисан списак."],"Display a list of your most recent comments.":["Прикажите списак својих скорашњих коментара."],"Insert an image to make a visual statement.":["Уметните слику да бисте направили видљив исказ."],"Add custom HTML code and preview it as you edit.":["Додајте прилагођени HTML и прегледајте га док га уређујете."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Представите нове одељке и организујте садржај да помогнете посетиоцима (и претраживачима веба) да разумеју структуру вашег садржаја."],"Display multiple images in a rich gallery.":["Прикажите више слика у богатој галерији."],"Add a link to a downloadable file.":["Додајте везу ка датотеци за преузимање."],"Embed videos, images, tweets, audio, and other content from external sources.":["Угнездите видео записе, слике, аудио записе, твитове и други садржај из спољашњих извора."],"Resize for smaller devices":["Промени величину за мање уређаје"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ово угнежђивање можда неће сачувати пропорције када прегледач веба промени величину."],"This embed will preserve its aspect ratio when the browser is resized.":["Ово угнежђивање ће сачувати пропорције када прегледач веба промени величину."],"Embed an Animoto video.":["Угнездите Animoto видео запис."],"Embed a Vimeo video.":["Угнездите Vimeo видео запис."],"Embed Flickr content.":["Угнездите садржај са Flickr-а."],"Embed Spotify content.":["Угнездите садржај са Spotify-а."],"Embed SoundCloud content.":["Угнездите садржај са SoundCloud-а."],"Embed a WordPress post.":["Угнездите Вордпресов чланак."],"Embed an Instagram post.":["Угнездите Инстаграмов чланак."],"Embed a Facebook post.":["Угнездите Фејсбуков чланак."],"Embed a WordPress.tv video.":["Угнездите WordPress.tv видео запис."],"Embed a VideoPress video.":["Угнездите VideoPress видео запис."],"Embed a Tumblr post.":["Угнездите Tumblr-ов чланак."],"Embed a TED video.":["Угнездите TED видео запис."],"Embed Speaker Deck content.":["Угнездите садржај са Speaker Deck-а."],"Embed a YouTube video.":["Угнездите Јутјубов видео запис."],"Embed SmugMug content.":["Угнездите садржај са SmugMug-а."],"Embed Slideshare content.":["Угнездите садржај са Slideshare-а."],"Embed Scribd content.":["Угнездите садржај са Scribd-а."],"Embed Screencast content.":["Угнездите садржај са Screencast-а."],"Embed ReverbNation content.":["Угнездите садржај са ReverbNation-а."],"Embed a Reddit thread.":["Угнездите Редитову нит."],"Embed Polldaddy content.":["Угнездите садржај са Polldaddy-а."],"Embed Mixcloud content.":["Угнездите садржај са Mixcloud-а."],"Embed a tweet.":["Угнездите твит."],"Embed Meetup.com content.":["Угнездите садржај са Meetup.com-а."],"Embed Kickstarter content.":["Угнездите садржај са Kickstarter-а."],"Embed Issuu content.":["Угнездите садржај са Issuu-а."],"Embed Imgur content.":["Угнездите садржај са Imgur-а."],"Embed Hulu content.":["Угнездите садржај са Hulu-а."],"Embed a Dailymotion video.":["Угнездите Dailymotion видео запис."],"Embed CollegeHumor content.":["Угнездите садржај са CollegeHumor-а."],"Embed Cloudup content.":["Угнездите садржај са Cloudup-а."],"Add an image or video with a text overlay — great for headers.":["Додајте слику или видео запис са слојем текста преко ње — одлично за заглавља."],"Display code snippets that respect your spacing and tabs.":["Додајте исечке кôда који поштују ваше прореде и табулаторе."],"Use the classic WordPress editor.":["Користите класични Вордпресов уређивач."],"Display a list of all categories.":["Прикажите списак свих категорија."],"Embed a simple audio player.":["Угнездите једноставан прегледач звучног записа."],"noun\u0004View":["Поглед"],"editor button\u0004Left to right":["Лево ка десно"],"Save as Pending":["Сачувај као „На чекању“"],"%s address":[],"Paste or type URL":["Налепите URL или куцајте"],"Insert from URL":["Уметни са URL-а"],"Block Navigator":[],"Styles":["Стилови"],"Advanced panels":[],"Document panels":[],"General":["Опште"],"Open the block navigation menu.":["Отвори изборник кретања блока."],"Work without distraction":["Радите без ометања"],"Focus on one block at a time":["Усредсредите се на један блок истовремено"],"Access all block and document tools in a single place":["Приступите свим алаткама блокова и документа са једног места"],"Options":["Могућности"],"(opens in a new tab)":["(отвара се у новом језичку)"],"Minutes":["Минути"],"Hours":["Сати"],"Time":["Време"],"Year":["Година"],"Day":["Дан"],"December":["децембар"],"November":["новембар"],"October":["октобар"],"September":["септембар"],"August":["август"],"July":["јул"],"June":["јун"],"May":["мај"],"April":["април"],"March":["март"],"February":["фебруар"],"January":["јануар"],"Month":["Месец"],"Date":["Датум"],"Go to the first (home) or last (end) day of a week.":["Идите на први (home) или последњи (end) дан седмице."],"Home/End":["Home/End"],"Home and End":["Home и End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Померите се уназад (PgUp) или напред (PgDn) за један месец."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up и Page Down"],"Move backward (up) or forward (down) by one week.":["Померите се уназад (горе) или напред (доле) за једну седмицу."],"Up and Down Arrows":["Горе и доле стрелице"],"Move backward (left) or forward (right) by one day.":["Померите се уназад (лево) или напред (десно) за један дан."],"Left and Right Arrows":["Лево и десно стрелице"],"Select the date in focus.":["Ставите датум у фокус."],"Navigating with a keyboard":["Кретање са тастатуром"],"Click the desired day to select it.":["Притисните жељени дан да бисте га изабрали."],"Click the right or left arrows to select other months in the past or the future.":["Притисните леву или десну стрелицу да бисте изабрали друге месеце у прошлости или будућности."],"Click to Select":["Притисните за избор"],"Calendar Help":["Помоћ за календар"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["Одабери сенку"],"Change color format":["Промени облик боја"],"Color value in HSL":["Вредност боје у HSL-у"],"Color value in RGB":["Вредност боје у RGB-у"],"Color value in hexadecimal":["Вредност боје у хексадецималама"],"RGB mode active":["RGB режим је укључен"],"Hex color mode active":["Hex режим боје је укључен"],"Hue/saturation/lightness mode active":["Режим нијансе/засићење/светлине је укључен"],"Move the arrow left or right to change hue.":["Померите стрелицу лево или десно да промените нијансу."],"Hue value in degrees, from 0 to 359.":["Вредност нијансе у степенима, од 0 до 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Алфа вредност, од 0 (провидно) до 1 (потпуно непровидно)."],"Stripes":["Штрафте"],"Your site doesn’t include support for this block.":["Ваше веб место не укључује подршку за овај блок."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Ваше веб место не укључује подршку за блок „%s“. Можете оставити овај блок нетакнутим или га у целости уклонити."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Ваше веб место не укључује подршку за блок „%s“. Можете оставити овај блок нетакнутим, претворити га у блок Прилагођени HTML или га у целости уклонити."],"Media area":["Простор садржаја"],"Media & Text":["Садржај и текст"],"Show media on right":["Прикажи садржај десно"],"Show media on left":["Прикажи садржај лево"],"Open in New Tab":["Отвори у новом језичку"],"Cover":["Прекривач"],"Border settings":[],"Medium":["Средња"],"Paste URL or type to search":["Налепите URL или куцајте за претрагу"],"Terms":[],"Your work will be published at the specified date and time.":["Ваш рад ће бити објављен у наведени датум и време."],"Are you ready to schedule?":["Да ли сте спремни за заказивање?"],"Always show pre-publish checks.":["Увек прикажи провере пре објављивања."],"Take Over":["Преузми"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Други корисник тренутно ради на овом чланку, што значи да ви не можете да правите измене осим ако не преузмете."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s тренутно ради на овом чланку, што значи да ви не можете да правите измене осим ако не преузмете."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Други корисник сада има контролу над уређивањем овог чланка. Не брините, ваше измене до овог тренутка су сачуване."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s сада има контролу над уређивањем овог чланка. Не брините, ваше измене до овог тренутка су сачуване."],"Avatar":["Аватар"],"This post is already being edited.":["Овај чланак се већ уређује."],"Someone else has taken over this post.":["Неко други је преузео овај чланак."],"This block contains unexpected or invalid content.":["Овај блок садржи неочекивани или неважећи садржај."],"Resolve Block":["Реши блок"],"Convert to HTML":["Претвори у HTML"],"This block can only be used once.":["Овај блок може да се користи само једном."],"Exit Code Editor":["Изађи из уређивача кôда"],"Editing Code":["Уређивање кôда"],"Solid Color":[],"Main Color":["Главна боја"],"HTML":["HTML"],"Write HTML…":["Напишите HTML…"],"Media settings":[],"Overlay":["Прекривач"],"Insert Media":["Уметни садржај"],"Reusable block imported successfully!":["Блок за вишекратну употребу је успешно увезен!"],"Invalid Reusable Block JSON file":["Неисправна JSON датотека блока за вишекратну употребу"],"Invalid JSON file":["Неисправна JSON датотека"],"Import from JSON":["Увези из JSON-а"],"Backtick":["Обрнути полунаводник"],"Period":["Тачка"],"Comma":["Запета"],"Change type of %d block":["Промени врсту %d блока","Промени врсту %d блока","Промени врсту %d блокова"],"Current":["Тренутно"],"After Conversion":["Након претварања"],"Change alignment":[],"Change text alignment":[],"%d block":["%d блок","%d блока","%d блокова"],"Forward-slash":["Коса црта"],"No archives to show.":["Нема архива за приказ."],"This file is empty.":["Ова датотека је празна."],"Sorry, this file type is not supported here.":["Жао нам је, ова врста датотека овде није подржана."],"Manage all reusable blocks":[],"Title":["Наслов"],"Fullscreen mode":[],"Beautiful landscape":["Предиван пејзаж"],"Close panel":["Затвори таблу"],"Convert to Classic Block":["Претвори у класични блок"],"Remove Poster Image":["Уклони слику плаката"],"Select Poster Image":["Изабери слику плаката"],"Poster Image":["Слика плаката"],"This block is deprecated. Please use the Columns block instead.":["Овај блок је застарео. Молимо вас да уместо тога користите блок Ступци."],"Text Columns (deprecated)":["Текстуални ступци (застарело)"],"Create":["Направи"],"Row Count":["Број редова"],"Column Count":["Број ступаца"],"This block is deprecated. Please use the Paragraph block instead.":["Овај блок је застарео. Молимо вас да уместо тога користите блок Пасус."],"Subheading (deprecated)":["Поднаслов (застарело)"],"blockquote":[],"Change the block type after adding a new paragraph.":["Промени врсту блока након додавања новог пасуса."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Ознаке помажу корисницима и претраживачима веба да се крећу кроз ваше веб место и пронађу садржај. Додајте пар речи да опишете свој чланак."],"Add tags":["Додај ознаке"],"Apply the \"%1$s\" format.":["Примени облик „%1$s“."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ваша тема користи облике чланака да истакне различите врсте садржаја, попут слика и видео записа. Примените облик чланка да видите ово посебно стилизовање."],"Use a post format":["Користи облик чланка"],"Insert After":["Уметни после"],"Insert Before":["Уметни пре"],"Move %1$d block from position %2$d down by one place":["Померите %1$d блок са места %2$d надоле за једно место","Померите %1$d блока са места %2$d надоле за једно место","Померите %1$d блокова са места %2$d надоле за једно место"],"Move %1$d block from position %2$d up by one place":["Померите %1$d блок са места %2$d нагоре за једно место","Померите %1$d блока са места %2$d нагоре за једно место","Померите %1$d блокова са места %2$d нагоре за једно место"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["филм"],"Insert a new block before the selected block(s).":["Уметни нови блок пре изабраног блока."],"Remove the selected block(s).":["Уклони изабрани блок."],"Duplicate the selected block(s).":["Дуплирај изабрани блок."],"Block shortcuts":["Пречице блока"],"Clear selection.":["Очисти избор."],"Select all text when typing. Press again to select all blocks.":["Изабери сав текст за време куцања. Притисни поново за одабир свих блокова."],"Selection shortcuts":["Пречице одабира"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Крећи се на претходни део уређивача."],"Navigate to the next part of the editor.":["Крећи се на следећи део уређивача."],"Show or hide the settings sidebar.":["Прикажи или сакриј бочну траку подешавања."],"Redo your last undo.":["Понови своје последње враћање."],"Undo your last changes.":["Врати своје последње измене."],"Save your changes.":["Сачувај своје измене."],"Global shortcuts":["Опште пречице"],"Remove a link.":["Уклони везу."],"Convert the selected text into a link.":["Претвори изабрани текст у везу."],"Underline the selected text.":["Подвуци изабрани текст."],"Make the selected text italic.":["Направи изабрани текст искошеним."],"Make the selected text bold.":["Направи изабрани текст подебљаним."],"Text formatting":["Обликовање текста"],"Insert a new block after the selected block(s).":["Уметни нови блок после изабраног блока."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Хвала вам за испробавање Гутенберга!"],"Help build Gutenberg":["Помози градњу Гутенберга"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Уколико желите да сазнате више о прављењу додатних блокова или сте заинтересовани у помагању пројекту, идите на GitHub складиште."],"The WordPress community":["Вордпресова заједница"],"Code is Poetry":["Кôд је поезија"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Можете направити било какве блокове које желите, непокретне или динамичне, украсне или просте:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Сваки блок може да користи ова поравнања. Блок угнежђивања их такође има, и одмах је одговарајући:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":["Приступачност је важна — немојте заборавити alt атрибут"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["Богат садржајем"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Можете променити број ступаца у својим галеријама превлачећи клизач у инспектору блока у бочној траци."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Мет Муленвег, 2017."],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Велика предност блокова је да их можете уредити у месту и директно руковати својим садржајем. Уместо поља за уређивање ствари као што је извор цитата или текст дугмета, можете директно променити садржај. Пробајте уређивање цитата:"],"Visual Editing":["Видљиво уређивање"],"And Lists like this one of course :)":["И спискови као овај, наравно :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Блокови распореда, као што су Дугмад, Прекривне слике, Растављачи и сл."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Угнежђивања, као што је Јутјуб, Твитер или други Вордпресови чланци."],"Galleries":["Галерије"],"Images & Videos":["Слике и видео записи"],"Text & Headings":["Текстови и заглавља"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Дајте му прилику, можда ћете открити ствари које Вордпрес већ може да дода у ваше чланке за које нисте знали. Ево кратког списка шта ту тренутно можете пронаћи:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Замислите да све што Вордпрес може да уради за вас је доступно брзо и на истом месту у сучељу. Нема потребе да схватите HTML ознаке, класе или запамтите компликовану синтаксу кратких кôдова. То је дух иза уметача—дугмета (+)
које ћете видети у уређивачу—које вам дозвољава да прегледате све доступне блокове садржаја и да их додајете у свој чланак. Додаци и теме могу да региструју сопствене, отварајући много могућности за богато уређивање и објављивање."],"The Inserter Tool":["Алатка Уметач"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Пробајте одабир и уклањање или уређивање натписа, сада не морате да будете пажљиви са одабиром слике или друго текста због грешке или упропашћавања презентације."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Уколико ваша тема то подржава, видећете дугме „Широко“ на траци са алаткама слике. Пробајте."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Ношење са сликама и садржајем са највећом пажњом је примарни фокус новог уређивача. Надамо се да ћете додавање натписа или мењање у пуну величину слика пронаћи много лакшим и робустнијим него пре."],"A Picture is Worth a Thousand Words":["Слика вреди хиљаду речи"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Заглавља су такође посебни блокови, што помаже са обрисом и организацијом вашег садржаја."],"... like this one, which is right aligned.":["... као овај који је поравнат десно."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Оно што тренутно читате је текстуални блок, најједноставнији блок од свих. Текстуални блок има сопствене контроле за померање унутар чланка…"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Циљ новог уређивача је једноставно и пријатно додавање богатог садржаја у Вордпресу. Цео овај чланак је састављен од делова садржаја—донекле сличним Лего коцкицама—које можете да померите около и да узајамно делујете са њима. Померите свој курсор около и примећићете да се различити блокови осветљавају са обрисима и стрелицама. Притисните стрелице да брзо промените место блокова, без страха од губљења ствари током поступка умножавања и лепљења."],"Of Mountains & Printing Presses":["Од планина и штампарских преса"],"Welcome to the Gutenberg Editor":["Добро дошли у уређивач Гутенберг"],"block name\u0004More":["Више"],"button to expand options\u0004More":["Више"],"Are you sure you want to unschedule this post?":["Да ли сигурно желите да овај чланак више не буде заказан?"],"Alt Text (Alternative Text)":["Резервни текст (текстуална замена)"],"Reusable Block":["Блок за вишекратну употребу"],"Unique identifier for the object.":["Јединствени идентификатор предмета."],"Untitled Reusable Block":["Неименован блок за вишекратну употребу"],"Small":[],"Reusable":["За вишекратну употребу"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Остави као HTML"],"Edit URL":["Уреди URL"],"Color settings":[],"The response is not a valid JSON response.":["Одговор није исправан JSON одговор."],"Editor publish":["Објава уређивача"],"Muted":["Утишано"],"Video settings":[],"recent comments":["скорашњи коментари"],"Latest Comments":["Последњи коментари"],"Display Excerpt":["Прикажи исечак"],"Display Date":["Прикажи датум"],"Display Avatar":["Прикажи аватар"],"Latest comments settings":[],"Number of Comments":["Број коментара"],"Background Opacity":["Непрозирност позадине"],"Auto":["Аутоматски"],"Preload":["Учитај унапред"],"Audio settings":[],"Display a monthly archive of your posts.":["Прикажите месечну архиву својих чланака."],"Display as Dropdown":["Прикажи као падајуће"],"Show Post Counts":["Прикажи број чланака"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Подршка"],"No comments to show.":["Нема коментара за приказ."],"%1$s on %2$s":["%1$s на %2$s"],"Select Post":["Изабери чланак"],"Select Week":["Изабери седмицу"],"Select Day":["Изабери дан"],"Select Month":["Изабери месец"],"Select Year":["Изабери годину"],"Archives":["Архиве"],"Very dark gray":["Веома тамно сива"],"Cyan bluish gray":["Плавичасто сиви цијан"],"Very light gray":["Веома светло сива"],"Vivid cyan blue":["Јарко плави цијан"],"Pale cyan blue":["Бледо плави цијан"],"Vivid green cyan":["Јарко зелени цијан"],"Light green cyan":["Светло зелени цијан"],"Luminous vivid amber":["Блиставо јарки ћилибар"],"Luminous vivid orange":["Блиставо јарко наранџаста"],"Vivid red":["Јарко црвена"],"Pale pink":["Бледо роза"],"Inline image":[],"Available block types":["Доступне врсте блока"],"Transform To:":["Претвори у:"],"Remove Block":["Уклони блок"],"Open publish panel":["Отвори таблу објаве"],"Dots":["Тачке"],"Wide Line":["Широки ред"],"Large":["Велика"],"Show download button":[],"Download button settings":[],"Link To":["Веза ка"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["документ"],"Copy URL":["Умножи URL"],"Write file name…":["Напишите име датотеке…"],"File":["Датотека"],"A single column within a columns block.":["Један ступац унутар блока ступаца."],"Column":["Ступац"],"Outline":["Обрис"],"Loop":["Петља"],"Autoplay":["Самопуштање"],"Playback Controls":["Контроле репродукције"],"Close dialog":["Затвори дијалог"],"Sorry, this file type is not permitted for security reasons.":["Жао нам је, ова врста датотека није дозвољена из безбедоносних разлога."],"Disable tips":["Онемогући савете"],"Got it":["Разумем"],"See next tip":["Види следећи савет"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Када сте спремни, предајте свој рад на преглед и уредник ће моћи да га одобри за вас."],"Are you ready to submit for review?":["Да ли сте спремни за предавање на преглед?"],"Replace image":["Замени слику"],"Remove image":["Уклони слику"],"Error while uploading file %s to the media library.":["Грешка приликом отпремања датотеке %s у библиотеку садржаја."],"This file exceeds the maximum upload size for this site.":["Ова датотека превазилази највећу дозвољену величину за отпремање овог веб места."],"View the autosave":["Види аутоматски снимљено издање"],"There is an autosave of this post that is more recent than the version below.":["Постоји аутоматски снимљено издање овог чланка које је новије него издање испод."],"Autosaving":["Аутоматско снимање"],"Enter URL here…":["Овде унесите URL…"],"Pin to toolbar":["Закачи на траку са алаткама"],"Unpin from toolbar":["Откачи са траке са алаткама"],"Insert a table — perfect for sharing charts and data.":["Уметните табелу — савршено за дељење графикона и података."],"Fixed width table cells":["Непромењива ширина ћелија табеле"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Додајте текст који поштује ваше прореде и табулаторе и такође омогућава стилизовање."],"Display a list of your most recent posts.":["Прикажите списак својих скорашњих чланака."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Додајте блок који приказује садржај повучен са других веб места као што су Твитер, Инстаграм или Јутјуб."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Додајте блок који приказује садржај у више ступаца, затим додајте који год блок садржаја желите."],"Error loading block: %s":["Грешка приликом учитавања блока: %s"],"Unknown error":["Непозната грешка"],"Embed Handler":["Држач угнежђивања"],"term\u0004Remove %s":["Уклони %s"],"Copy the permalink":["Умножи сталну везу"],"Permalink copied":["Стална веза је умножена"],"Height in pixels":["Висина у пикселима"],"Spacer settings":[],"Spacer":["Размакница"],"Toggle to show a large initial letter.":["Изокрени приказ великог почетног слова."],"Showing large initial letter.":["Приказује се велико почетно слово."],"Name:":["Име:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s од %3$s)"],"Remove item":["Уклони ставку"],"Color code: %s":["Кôд боје: %s"],"Skip to the selected block":["Скочи на изабрани блок"],"Publish…":["Објави…"],"Schedule…":["Закажи…"],"Edit post permalink":["Уреди сталну везу чланка"],"Show Block Settings":["Прикажи подешавања блока"],"Hide Block Settings":["Сакриј подешавања блока"],"Block settings closed":["Подешавања блока су затворена"],"Close plugin":["Затвори додатак"],"Editor settings":["Подешавања уређивача"],"Link settings":[],"Unlink":["Уклони везу"],"Page break":["Прелом странице"],"pagination":["обележавање страница"],"next page":["следећа страница"],"Image Size":["Величина слике"],"Height":["Висина"],"Width":["Ширина"],"Image Dimensions":["Величине слике"],"Thumbnails are not cropped.":["Умањене слике нису опсечене."],"Thumbnails are cropped to align.":["Умањене слике су опсечене за поравнање."],"Media Library":["Библиотека садржаја"],"Advanced":["Напредно"],"Add item":["Додај ставку"],"Reset the template":["Ресетуј шаблон"],"Keep it as is":["Остави га какав јесте"],"The content of your post doesn’t match the template assigned to your post type.":["Садржај вашег чланка се не поклапа са шаблоном додељеном вашој врсти чланака."],"Resetting the template may result in loss of content, do you want to continue?":["Ресетовање шаблона може да произведе губитак садржаја. Да ли желите да наставите?"],"Document Statistics":["Статистике документа"],"is now scheduled. It will go live on":["је сада заказан. Ићи ће уживо"],"Scheduled":["Заказано"],"Scheduling…":["Заказивање…"],"Code editor selected":["Уређивач кôда је изабран"],"Visual editor selected":["Видљиви уређивач је изабран"],"Plugins":["Додаци"],"Custom Size":["Прилагођена величина"],"Layout elements":[],"term\u0004%s removed":["%s је уклоњено"],"term\u0004%s added":["%s је додато"],"imperative verb\u0004Preview":["Прегледај"],"Block deleted.":["Блок је обрисан."],"Block updated.":["Блок је ажуриран."],"Block created.":["Блок је направљен."],"Trashing failed":["Померање на отпад није успело"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Имате несачуване измене. Уколико наставите, оне ће бити изгубљене."],"Document Outline":["Обрис документа"],"Paragraphs":["Пасуси"],"Headings":["Заглавља"],"Words":["Речи"],"Content structure":["Структура садржаја"],"Public":["Јавно"],"Protected with a password you choose. Only those with the password can view this post.":["Заштићен лозинком коју одаберете. Само они са лозинком могу да виде чланак."],"Password Protected":["Заштићено лозинком"],"Only visible to site admins and editors.":["Видљив само управницима веб места и уредницима."],"Private":["Приватно"],"Visible to everyone.":["Видљив свима."],"Post Visibility":["Видљивост чланка"],"Would you like to privately publish this post now?":["Да ли желите да одмах приватно објавите овај чланак?"],"Use a secure password":["Користите сигурну лозинку"],"Create password":["Направи лозинку"],"Move to Trash":[],"Parent Term":["Надређени члан"],"Parent Category":["Надређена категорија"],"Add new term":["Додај новог члана"],"Add new category":["Додај нову категорију"],"Term":["Члан"],"Tag":["Ознака"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Да ли сигурно желите да овај чланак више не буде објављен?"],"Immediately":["Одмах"],"Save Draft":["Сачувај нацрт"],"Saving":["Снимање"],"Publish:":["Објављује се:"],"Visibility:":["Видљивост:"],"Are you ready to publish?":["Да ли сте спремни за објављивање?"],"Copy Link":["Умножи везу"],"What’s next?":["Шта је следеће?"],"is now live.":["сада иде уживо."],"Published":["Објављен"],"Schedule":["Закажи"],"Update":["Ажурирај"],"Submit for Review":["Предај на преглед"],"Updating…":["Ажурирање…"],"Publishing…":["Објављивање…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Стална веза:"],"Pending review":[],"%d Revision":["%d ревизија","%d ревизије","%d ревизија"],"Suggestion:":["Предлог:"],"Post Format":["Облик чланка"],"Chat":["Ћаскање"],"Status":["Стање"],"Standard":["Уобичајен"],"Aside":["Са стране"],"Featured image":["Издвојена слика"],"Set featured image":[],"Learn more about manual excerpts":["Сазнајте више о ручним одломцима"],"Write an excerpt (optional)":["Напишите одломак (необавезно)"],"Allow comments":[],"Template:":["Шаблон:"],"no parent":["нема родитеља"],"no title":["нема наслова"],"Order":["Поредак"],"No blocks found.":["Нема пронађених блокова."],"%d result found.":["%d резултат је пронађен.","%d резултата су пронађена.","%d резултата је пронађено."],"Saved":["Сачувано"],"Embeds":["Угнежђивања"],"Blocks":["Блокови"],"Search for a block":["Тражи блок"],"Add block":["Додај блок"],"Copy Error":["Умножи грешку"],"Copy Post Text":["Умножи текст чланка"],"Attempt Recovery":["Покушај опоравак"],"The editor has encountered an unexpected error.":["Догодила се неочекивана грешка са уређивачем."],"Undo":["Врати"],"Redo":["Понови"],"(Multiple H1 headings are not recommended)":["(Више H1 заглавља нису препоручена)"],"(Your theme may already use a H1 for the post title)":["(Ваша тема можда већ користи H1 за наслов чланка)"],"(Incorrect heading level)":["(Неправилни ниво заглавља)"],"(Empty heading)":["(Празно заглавље)"],"Block Styles":["Стилови блока"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Да ли сте сигурни да желите да обришете овај блок за вишекратну употребу?\n\nБиће трајно уклоњен са свих чланака и страна које га користе."],"Convert to Regular Block":["Претвори у редован блок"],"More options":["Више могућности"],"Edit visually":["Уреди видљиво"],"Duplicate":["Дуплирај"],"Blocks cannot be moved down as they are already at the bottom":["Блокови не могу бити померени надоле зато што су већ на дну"],"Blocks cannot be moved up as they are already at the top":["Блокови не могу бити померени нагоре зато што су већ на врху"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Блок %s је једини блок и не може бити померен"],"Edit as HTML":["Уреди као HTML"],"Convert to Blocks":["Претвори у блокове"],"Block: %s":["Блок: %s"],"This block has encountered an error and cannot be previewed.":["Догодила се грешка са овим блоком и не може бити прегледан."],"No block selected.":["Нема одабраног блока."],"Transform into:":["Претвори у:"],"Remove":["Уклони"],"Find original":["Пронађи изворни"],"Copy all content":[],"Copied!":["Умножено!"],"Additional settings are now available in the Editor block settings sidebar":["Додатна подешавања су сада доступна у бочној траци подешавања уређивача блока"],"Visibility":["Видљивост"],"Status & visibility":[],"Page attributes":[],"Block":["Блок"],"Document":["Документ"],"Close settings":["Затвори подешавања"],"Editor content":["Садржај уређивача"],"Tools":["Алатке"],"Editor":["Уређивач"],"Code editor":[],"Visual editor":[],"Editor top bar":["Трака на врху уређивача"],"Settings":["Подешавања"],"Reset":["Ресетуј"],"Dismiss this notice":["Занемари ову напомену"],"Item removed.":["Ставка је уклоњена."],"Item added.":["Ставка је додата."],"Drop files to upload":["Превуци датотеке за отпремање"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Догодила се непозната грешка."],"No results.":["Нема резултата."],"%d result found, use up and down arrow keys to navigate.":["%d резултат је пронађен, користите стрелице за горе и доле за кретање.","%d резултата су пронађена, користите стрелице за горе и доле за кретање.","%d резултата су пронађена, користите стрелице за горе и доле за кретање."],"(no title)":["(нема наслова)"],"URL":["URL"],"Submit":["Предај"],"Close":["Затвори"],"Insert link":[],"Edit link":[],"Link":["Веза"],"Strikethrough":["Прецртано"],"Italic":["Искошено"],"Bold":["Подебљано"],"Remove link":[],"Number of items":["Број ставки"],"All":["Сви"],"Category":["Категорија"],"Z → A":["Ш \t А"],"A → Z":["А \t Ш"],"Oldest to Newest":["Од најстаријих до најновијих"],"Newest to Oldest":["Од најновијих до најстаријих"],"Order by":["Поређај по"],"Select":["Изабери"],"Select or Upload Media":["Одаберите или отпремите садржај"],"Video":["Видео запис"],"Write…":["Пишите…"],"poetry":["поезија"],"Verse":["Стих"],"New Column":["Нови ступац"],"Delete Column":["Обриши ступац"],"Add Column After":["Додај ступац после"],"Add Column Before":["Додај ступац пре"],"Delete Row":["Обриши ред"],"Add Row After":["Додај ред после"],"Add Row Before":["Додај ред пре"],"Edit table":[],"Table":["Табела"],"Write subheading…":["Напишите поднаслов…"],"Write shortcode here…":["Овде напишите кратки кôд…"],"Shortcode":["Кратки кôд"],"divider":["делилац"],"horizontal-line":["водоравни-ред"],"Separator":["Растављач"],"Quote":["Цитат"],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":["Напишите текст обликован унапред…"],"Preformatted":["Обликовано унапред"],"text":["текст"],"Paragraph":["Пасус"],"Font Size":["Величина словног лика"],"Drop Cap":["Иницијал"],"Text settings":[],"Read more":["Прочитај више"],"Write list…":["Напишите списак…"],"numbered list":["нумерисан списак"],"ordered list":["уређен списак"],"bullet list":["тачкасти списак"],"Indent list item":["Увуци ставку списка"],"Outdent list item":["Извуци ставку списка"],"Convert to ordered list":["Претвори у нумерисани списак"],"Convert to unordered list":["Претвори у неуређени списак"],"List":["Списак"],"recent posts":["скорашњи чланци"],"No posts found.":["Нема нађених чланака."],"Latest Posts":["Последњи чланци"],"Display post date":["Прикажи датум чланка"],"Grid view":[],"List view":[],"photo":["фотографија"],"Image settings":[],"Image":["Слика"],"Preview":["Преглед"],"embed":["угнежђивање"],"Custom HTML":["Прилагођени HTML"],"subtitle":["поднапис"],"title":["наслов"],"Heading":["Заглавље"],"Write heading…":["Напишите заглавље…"],"Heading %d":["Заглавље %d"],"Level":["Ниво"],"Heading settings":[],"photos":["фотографије"],"images":["слике"],"None":["Нема"],"Media File":["Датотеци садржаја"],"Attachment Page":["Страници прилога"],"Link to ":[],"Crop Images":["Опсецање слика"],"Gallery settings":[],"Gallery":["Галерија"],"Classic":["Класични"],"video":["видео запис"],"audio":["звучни запис"],"music":["музика"],"image":["слика"],"blog":["блог"],"post":["чланак"],"Embedded content from %s":["Угнежђени садржај са %s"],"Enter URL to embed here…":["Овде унесите URL за угнежђивање…"],"%s URL":[],"Embedding…":["Угнежђивање…"],"Write title…":["Напишите наслов…"],"Fixed Background":["Непокретна позадина"],"Edit image":["Уреди слику"],"Columns":["Ступци"],"Experiments":[],"Code":["Кôд"],"Write code…":["Напишите кôд…"],"Categories":["Категорије"],"Show Hierarchy":["Прикажи хијерархију"],"Show post counts":["Покажи број чланака"],"Categories settings":[],"Add text…":["Додајте текст…"],"Button":["Дугме"],"Apply":["Примени"],"Text Color":["Боја текста"],"Background Color":["Боја позадине"],"Block has been deleted or is unavailable.":["Блок је обрисан обрисан или је недоступан."],"Reusable blocks":[],"Cancel":["Одустани"],"Edit":["Уреди"],"Write caption…":["Напишите натпис…"],"Use URL":["Користи URL"],"Audio":["Звучни запис"],"Upload":["Отпреми"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML сидро"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Ова комбинација боја је можда тешка за читање. Пробајте да користите светлију боју позадине и/или тамнију боју текста."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Ова комбинација боја је можда тешка за читање. Пробајте да користите тамнију боју позадине и/или светлију боју текста."],"Clear":["Очисти"],"Custom color picker":["Бирач прилагођене боје"],"Color: %s":["Боја: %s"],"Full width":[],"Wide width":[],"Widgets":["Виџети"],"Formatting":["Обликовање"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Штампање од 1440. Ово је додатак у изградњи за нови уређивач блокова у основи."],"Add title":["Додај наслов"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Аутор"],"Slug":["Подложак"],"Discussion":["Дискусија"],"Custom fields":[],"Excerpt":["Одломак"],"Publish":["Објави"],"Metadata":["Метаподаци"],"Save":["Сачувај"],"Documentation":["Документација"],"Select Category":["Изабери категорију"],"(Untitled)":["(Без наслова)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Тим Гутенберг"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Гутенберг"],"Demo":["Показивање"],"%s ago":["%s раније"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_sv.json b/bundle/android/raw/i18ncache_data_sv.json
new file mode 100644
index 0000000000..4b32cbbe89
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_sv.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":["Välj variation"],"Angle":["Vinkel"],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":["%s block. Rad %d"],"%1$s Block. Row %2$d. %3$s":["%1$s block. Rad %2$d. %3$s"],"Post Excerpt":["Inläggsutdrag"],"Post Date":["Inläggsdatum"],"No Date":["Inget datum"],"Post Author":["Inläggsförfattare"],"Choose":["Välj"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":["Tom"],"Search results for %s":["Sökresultat för %s"],"Recently updated":[],"Multiple selected blocks":[],"By %s":["Av %s"],"Inspector":["Inspektör"],"Site editor advanced settings.":["Avancerade inställningar för webbplatsredigeraren."],"(beta)":["(beta)"],"Site Editor":["Webbplatsredigerare"],"Site editor top bar.":["Toppanel i webbplatsredigeraren."],"Briefly describe the link to help screen reader users.":["Beskriv kortfattat länken för dem som använder skärmläsare."],"Link Label":["Länketikett"],"%s label":["Etikett för %s"],"poem":["dikt"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;"],"Full Post":["Fullständigt inlägg"],"Show:":["Visa:"],"Create from all top-level pages":["Skapa från alla sidor i huvudnivån"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Uppmana besökarna att göra något med hjälp av en grupp länkar, utformade som knappar."],"Buttons":["Knappar"],"Background":["Bakgrund"],"Background & Text Color":["Bakgrund och textfärg"],"Images Size":["Bildstorlek"],"Remove multiple selected blocks.":["Ta bort flera markerade block."],"(%s: gradient %s)":["(%s: gradient %s)"],"(%s: color %s)":["(%s: färg %s)"],"(Gradient: %s)":["(Gradient: %s)"],"(Color: %s)":["(Färg: %s)"],"Here's a detailed guide.":[" Här är en detaljerad guide."],"New to the Block Editor? Want to learn more about using it? ":["Har du just börjat med blockredigeraren? Vill du veta mer om hur du använder den?"],"Learn how to use the Block Editor":[" Lär dig hur du använder blockredigeraren"],"Help":["Hjälp"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s blockikon"],"Submit for Review…":["Skicka till granskning ..."],"Update…":["Uppdatera ..."],"Select items to save.":["Välj objekt att spara."],"What do you want to save?":["Vad vill du spara?"],"Untitled":["Utan rubrik"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["Blockredigeraren innehåller experimentella funktioner som kan vara nyttiga även om de fortfarande utvecklas. Välj vilka funktioner du vill aktivera. Funktionerna kommer troligtvis att förändras, undvik därför att använda dem i produktion."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Aktivera redigering av hela webbplatsen (Varning: detta kommer att ersätta ditt tema och kan leda till oåterkalleliga ändringar på webbplatsen. Vi rekommenderar att du endast använder denna funktion i utvecklingsmiljö.)"],"Site Editor (beta)":["Webbplatsredigerare (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// Ett ”block” är den abstrakta termen\n// som beskriver enheter i märkspråket\n// som tillsammans formar innehållet\n// eller layouten för en sida.\nregisterBlockType( namn, inställningar );"],"You are probably offline.":["Du är förmodligen offline."],"Justify items right":["Högerställ objekt"],"Justify items center":["Centrera objekt"],"Justify items left":["Vänsterställ objekt"],"Change items justification":["Ändra justering för objekt"],"The media file has been replaced":["Mediafilen har ersatts"],"Replace":["Ersätt"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Du befinner dig i redigeringsläge. Tryck på Escape för att återgå till navigeringsläge."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Du befinner dig i navigeringsläge. Navigera mellan block med Tab-tangenten. Avsluta navigeringsläget och börja redigera ett block genom att trycka på Enter."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Använd tangenterna vänster- och högerpil eller dra och släpp med musen för för att ändra gradientens position. Tryck på knappen för att ändra färgen eller ta bort styrpunkten."],"Gradient control point at position %1$s with color code %2$s.":["Styrpunkt för gradient i läge %1$s med färgkoden %2$s."],"Preset Size":["Förinställ storlek"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Verktygen erbjuder olika vägar att hantera markering och redigering av block. Tryck på Escape för att välja, tryck på Enter för att återgå till redigering."],"Open Media Library":["Öppna mediabibliotek"],"Next":["Nästa"],"Previous":["Föregående"],"Finish":["Slutför"],"Page %1$d of %2$d":["Sida %1$d av %2$d"],"Guide controls":["Guidningsreglage"],"Remove Control Point":["Ta bort kontrollpunkt"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Varje block innehåller sin egen uppsättning reglage för att ändra sådana saker som färg, bredd och justering. Dessa visas och döljs automatiskt när du väljer olika block."],"Make each block your own":["Gör varje block till ditt eget"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["I WordPress redigerare visas varje textstycke, bild eller videoklipp som ett separat ”innehållsblock”."],"ADD MEDIA":["LÄGG TILL MEDIA"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Alla blocken är tillgängliga direkt i blockbiblioteket. Du hittar det överallt där du ser ikonen ."],"Get to know the Block Library":["Lär känna blockbiblioteket"],"Welcome Guide":["Välkomstguide"],"Enable page templates":["Aktivera sidmallar"],"Page Templates":["Sidmallar"],"Enable Full Site Editing demo templates":["Aktivera demomaller för redigering av hela webbplatsen"],"Full Site Editing Demo Templates":["Demomallar för redigering av hela webbplatsen"],"Welcome to the Block Editor":["Välkommen till blockredigeraren"],"Get started":["Kom igång"],"inserter":["infogaren"],"Post Title":["Inläggsrubrik"],"Add nofollow to link":["Addera ”nofollow” till länken"],"Add submenu":["Lägg till undermeny"],"Add link…":["Lägg till länk ..."],"Dark":["Mörk"],"Light":["Ljus"],"recording":["inspelning"],"podcast":["podcast"],"sound":["ljud"],"Array of instance changes":["Array med instansförändringar"],"Current widget instance":["Aktuell widget-instans"],"Template parts to include in your templates.":["Malldelar som behöver inkluderas i dina mallar."],"Template parts list":["Lista med malldelar"],"Template parts list navigation":["Navigering i lista med malldelar"],"Filter template parts list":["Filtrera listan med malldelar"],"Uploaded to this template part":["Uppladdad till denna malldel"],"Insert into template part":["Infoga i malldel"],"Template part archives":["Malldelsarkiv"],"No template parts found in Trash.":["Inga malldelar hittades i papperskorgen."],"No template parts found.":["Inga malldelar hittades."],"Parent Template Part:":["Överordnad malldel:"],"Search Template Parts":["Sök malldelar"],"All Template Parts":["Alla malldelar"],"View Template Part":["Visa malldel"],"Edit Template Part":["Redigera malldel"],"New Template Part":["Ny malldel"],"Add New Template Part":["Lägg till ny malldel"],"Template Part\u0004Add New":["Lägg till ny"],"Admin Menu text\u0004Template Parts":["Malldelar"],"Template Part":["Malldel"],"Template Parts":["Malldelar"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river."],"Navigation":["Navigation"],"Loading Navigation…":["Hämtar navigation ..."],"Navigation Structure":["Navigationsstruktur"],"Create empty":["Skapa tom"],"Create a Navigation from all existing pages, or create an empty one.":["Skapa navigeringsmeny från alla befintliga sidor, eller skapa en tom."],"Navigation Link":["Navigationslänk"],"(Note: many devices and browsers do not display this text.)":["(Obs: många enheter och webbläsare visar inte denna text.)"],"Describe the role of this image on the page.":["Beskriv rollen för denna bild på sidan."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Växla mellan att använda samma värde för alla skärmstorlekar och att använda ett unikt värde för varje skärmstorlek."],"Use the same %s on all screensizes.":["Använd samma %s på alla skärmstorlekar."],"Large screens":["Stora skärmar"],"Medium screens":["Medelstora skärmar"],"Small screens":["Små skärmar"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Styr egenskapen %1$s för visningsområde (viewport) %2$s."],"Currently selected":["Vald för närvarande"],"Search or type url":["Sök eller skriv URL"],"Press ENTER to add this link":["Tryck ENTER för att lägga till denna länk"],"Currently selected link settings":["För närvarande valda inställningar för länkar"],"Generic label for block inserter button\u0004Add block":["Lägg till block"],"directly add the only allowed block\u0004Add %s":["Lägg till %s"],"%s block added":["Block av typen %s tillagt"],"Move %s":["Flytta %s"],"Extra Large":["Extra stor"],"Block breadcrumb":["Blockera synlig sökväg"],"Editor footer":["Sidfotsredigerare"],"Site Title":["Webbplatsrubrik"],"Open Colors Selector":["Öppna färgväljare"],"Templates list":["Mallista"],"Templates list navigation":["Navigation i mallista"],"Filter templates list":["Filtrera mallistan"],"Uploaded to this template":["Uppladdad till denna mall"],"Insert into template":["Infoga i mall"],"Template archives":["Mallarkiv"],"No templates found in Trash.":["Inga mallar hittades i papperskorgen."],"No templates found.":["Inga mallar hittades."],"Parent Template:":["Överordnad mall:"],"Search Templates":["Sök mallar"],"All Templates":["Alla mallar"],"View Template":["Visa mall"],"Edit Template":["Redigera mall"],"New Template":["Ny mall"],"Add New Template":["Lägg till ny mall"],"Template\u0004Add New":["Lägg till ny"],"Admin Menu text\u0004Templates":["Mallar"],"Template":["Mall"],"No matching template found":["Ingen matchande mall hittades"],"Gradient: %s":["Gradient: %s"],"Gradient code: %s":["Gradientkod: %s"],"All content copied.":["Allt innehåll har kopierats."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Uppladdningen av mediafilen misslyckades. Om det är ett foto eller en stor bild bör du minska dess storlek och försöka igen."],"Gradient":["Gradient"],"Gradient Presets":["Förinställda gradienter"],"No Preview Available.":["Ingen förhandsvisning tillgänglig."],"Midnight":["Midnatt"],"Electric grass":["Elektriskt gräs"],"Pale ocean":["Blekt hav"],"Luminous dusk":["Ljus skymning"],"Blush bordeaux":["Bordeaux-rodnad"],"Blush light purple":["Ljuslila rodnad"],"Cool to warm spectrum":["Kallt till varmt spektrum"],"Very light gray to cyan bluish gray":["Mycket ljust grått till cyanblågrått"],"Luminous vivid orange to vivid red":["Intensivt lysande orange till intensivt rött"],"Luminous vivid amber to luminous vivid orange":["Intensivt lysande gult till intensivt lysande orange"],"Light green cyan to vivid green cyan":["Ljusgrön cyan till intensivt lysande cyan"],"Vivid cyan blue to vivid purple":["Intensivt cyanfärgat blått till intensivt lila"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 december 2018"],"February 21, 2019":["21 februari 2019"],"May 7, 2019":["7 maj 2019"],"Release Date":["Release-datum"],"Jazz Musician":["Jazzmusiker"],"Version":["Version"],"Six.":["Sex."],"Five.":["Fem."],"Four.":["Fyra."],"Three.":["Tre."],"Two.":["Två."],"One.":["Ett."],"One of the hardest things to do in technology is disrupt yourself.":["Något av det svåraste i teknikutveckling är att bryta mot sitt eget tankesätt."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Gärdsmygen
förtjänar levebrödet
i det tysta."],"Welcome to the wonderful world of blocks…":["Välkommen till den underbara världen av block…"],"Snow Patrol":["Snow Patrol"],"Dimensions":["Dimensioner"],"Minimum height in pixels":["Minsta höjd i pixlar"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Uppmaning till åtgärd"],"In quoting others, we cite ourselves.":["Genom att citera andra, citerar vi oss själva."],"cite":["citera"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc uppenbarar sig — stilla, snötäckt och fridfullt."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["I en by i La Mancha, vars namn jag icke gitter draga mig till minnes, levde för icke länge sedan en av det slags adelsjunkrar, som äga en lans i dess ställ, en gammaldags lädersköld, ett ök och en vinthund."],"Block navigation":["Navigering mellan block"],"Full Site Editing":["Fullständig webbplatsredigering"],"Templates to include in your theme.":["Mall att inkludera i ditt tema."],"Templates":["Mallar"],"Inserter help panel":["Hjälppanel för infogaren"],"Pre-publish checks":["Kontroller innan publicering"],"Please contact your site administrator to install new blocks.":["Kontakta din webbplatsadministratör för att installera nya block."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Inga block hittades i ditt bibliotek. Kontakta din webbplatsadministratör för att installera nya block."],"No blocks found in your library.":["Inga block hittades i ditt bibliotek."],"No blocks found in your library. These blocks can be downloaded and installed:":["Inga block hittades i ditt bibliotek. Dessa block kan laddas ner och installeras:"],"No blocks found in your library. We did find %d block available for download.":["Inga block hittades i ditt bibliotek. Vi hittade %d block tillgängligt för nedladdning.","Inga block hittades i ditt bibliotek. Vi hittade %d block tillgängliga för nedladdning."],"Block previews can’t load.":["Blockförhandsgranskningar kan inte ladda."],"Retry":["Försök igen"],"Block previews can't install.":["Blockförhandsgranskningar kan inte installera."],"Updated %s":["Uppdaterade %s"],"%d active installation":["%d aktiv installation","%d aktiva installationer"],"This author has %d block, with an average rating of %d.":["Denna författare har %d block, med ett genomsnittligt betyg på %d.","Denna författare har %d block, med ett genomsnittligt betyg på %d."],"Authored by %s":["Författad av %s"],"%d total rating":["Totalt %d recension","Totalt %d recensioner"],"%s out of 5 stars":["%s av 5 stjärnor"],"Enter Address":["Ange adress"],"Pill Shape":["Pillerform"],"Logos Only":["Endast loggor"],"Create a block of links to your social media or external sites":["Skapa ett block med länkar till dina sociala medier eller externa webbplatser"],"Social links":["Sociala länkar"],"Open block navigator":["Öppna blocknavigatorn"],"Attachment page":["Sida för bilaga"],"Fill":["Fyll"],"Link rel":["Länk-rel"],"Border Radius":["Kantradie"],"Write gallery caption…":["Skriv galleribildtext…"],"Content blocks":["Innehållsblock"],"Restore the backup":["Återställ säkerhetskopian"],"The backup of this post in your browser is different from the version below.":["Säkerhetskopian av detta inlägg i din webbläsare skiljer sig från versionen nedan."],"Enable block directory search":["Aktivera sökning i blockkatalogen"],"Block Directory":["Blockkatalog"],"Unable to connect to the filesystem. Please confirm your credentials.":["Kunde inte ansluta till filsystemet. Vänligen kontrollera dina uppgifter."],"Sorry, you are not allowed to install blocks.":["Du saknar behörighet för att installera block."],"%1$d block is disabled.":["%1$d block är inaktiverat.","%1$d block är inaktiverade."],"Reverse List Numbering":["Omvänd listnumrering"],"Start Value":["Startvärde"],"Ordered list settings":[],"Clear Media":["Rensa media"],"Default Style":["Standardstil"],"Not set":["Inte inställd"],"While writing, you can press / to quickly insert new blocks.":["När du skriver kan du trycka på / för att snabbt infoga nya block."],"Browse through the library to learn more about what each block does.":["Bläddra igenom biblioteket för att lära dig mer om vad varje block gör."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Det finns block tillgängligt för allt slags innehåll: infogning av text, rubriker, bilder, listor, videoklipp, tabeller och mycket mer."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Välkommen till den underbara världen av block! Block är grunden för allt innehåll i redigeraren."],"Version of the content block format used by the object.":["Version av innehållsblockformat som används av objektet."],"HTML content for the object, transformed for display.":["HTML-innehåll för objektet, omvandlat för visning."],"Content for the object, as it exists in the database.":["Objektets innehåll, så som det ser ut i databasen."],"The content for the object.":["Innehållet för objektet."],"Change column alignment":["Ändra kolumnens justering"],"Align Column Right":["Högerställ kolumnen"],"Align Column Center":["Centrera kolumnen"],"Align Column Left":["Vänsterställ kolumnen"],"Color":["Färg"],"Vivid purple":["Häftigt lila"],"Disable & Reload":["Inaktivera och ladda om"],"Enable & Reload":["Aktivera och ladda om"],"A page reload is required for this change. Make sure your content is saved before reloading.":["För denna ändring krävs det att sidan laddas om. Se till att du har sparat innehållet innan du laddar om sidan."],"Display these keyboard shortcuts.":["Visa dessa snabbkommandon för tangentbordet."],"Experiments Settings":["Experimentella inställningar"],"Enable Widgets screen and Legacy Widgets block":["Aktivera widget-vy och block för traditionella widgetar"],"Experimental settings":["Experimentella inställningar"],"Block name name must be a string.":["Blocknamn måste vara en sträng."],"Custom":["Anpassat"],"Draft":["Utkast"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["Blocket ”%1$s” innehåller inte någon stil med namnet ”%2$s”."],"Learn more about anchors":["Lär dig mer om ankare"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["Skriv in ett eller ett par ord – utan mellanslag – för att skapa en unik webbadress för just denna rubrik, ett så kallat ”ankare”. Sedan kommer du att kunna länka direkt till just denna sektion på sin sida."],"Widget Blocks (Experimental)":["Widget-block (experimentellt)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Ladda upp en videofil, välj en från mediabiblioteket eller lägg till en med dess URL."],"Upload an image file, pick one from your media library, or add one with a URL.":["Ladda upp en bild, välj en från mediabiblioteket eller lägg till en med dess URL."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Ladda upp en ljudfil, välj en från mediabiblioteket eller lägg till en med dess URL."],"Upload a media file or pick one from your media library.":["Ladda upp en mediafil eller välj en från mediabiblioteket."],"Skip":["Hoppa över"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":["Lägg till en sida, länk eller ett annat objekt till din navigering."],"What's this?":["Vad är detta?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Låt inte sökmotorer följa denna länk."],"Provide more context about where the link goes.":["Ge mer kontext om vart länken leder."],"Title Attribute":["Rubrikattribut"],"SEO settings":["SEO-inställningar"],"Description":["Beskrivning"],"Open in new tab":["Öppna i ny flik"],"links":["länkar"],"navigation":["navigation"],"menu":["meny"],"Add a navigation block to your site.":["Lägg till ett navigeringsblock på webbplatsen."],"Upload a file or pick one from your media library.":["Ladda upp en fil eller välj en i mediabiblioteket."],"Learn more about embeds":["Lär dig mer om inbäddningar"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Klistra in en länk till innehållet du vill visa på din webbplats."],"Upload an image or video file, or pick one from your media library.":["Ladda upp en bild- eller videofil eller välj en från mediabiblioteket."],"Three columns; wide center column":["Tre kolumner med bred kolumn i mitten"],"Three columns; equal split":["Tre jämnbreda kolumner"],"Two columns; two-thirds, one-third split":["Två kolumner uppdelade två resp. en tredjedel"],"Two columns; one-third, two-thirds split":["Två kolumner uppdelade en resp. två tredjedelar"],"Two columns; equal split":["Två jämnbreda kolumner"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Din webbplats saknar %s, så det finns inget att visa just nu."],"More tools & options":["Fler verktyg och alternativ"],"Create Table":["Skapa tabell"],"Insert a table for sharing data.":["Infoga en tabell för att dela data."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Lös upp grupp"],"verb\u0004Group":["Gruppera"],"Separate with commas or the Enter key.":["Separera med kommatecken eller Enter-tangenten."],"Separate with commas, spaces, or the Enter key.":["Separera med kommatecken, mellanslag eller Enter-tangenten."],"Separate multiple classes with spaces.":["Separera flera klasser med mellanslag."],"Move image forward":["Flytta bilden framåt"],"Move image backward":["Flytta bilden bakåt"],"Sorry, you are not allowed to edit sidebars.":["Du har inte behörighet att redigera sidopaneler."],"Sorry, you are not allowed to read sidebars.":["Du har inte behörighet att läsa sidopaneler."],"The sidebar’s ID.":["Sidopanelens ID."],"Displays a set of blocks":["Visar en uppsättning block"],"Blocks Area":["Blockområden"],"Block rendered as empty.":["Blocket visas tomt."],"Inline Code":["Programkod inline"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Obs: Vissa självstartande videoklipp kan orsaka åtkomlighetsproblem för en del besökare."],"Footer section":["Sidfotssektion"],"Header section":["Sidhuvudssektion"],"Sorting and filtering":["Sortering och filtrering"],"Post meta settings":[],"Post Content":["Inläggsinnehåll"],"Post content settings":["Inställningar för inläggsinnehåll"],"Percentage width":["Bredd i procent"],"Column settings":["Kolumninställningar"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Obs: Självstartande ljud kan orsaka åtkomlighetsproblem för en del besökare."],"Block area updated.":["Blockområde uppdaterat."],"Block area scheduled.":["Blockområdet är schemalagt."],"Block area published.":["Blockområdet är publicerat."],"Block areas list":["Lista med blockområden"],"Block areas list navigation":["Navigering i blockområdeslista"],"Filter block areas list":["Filtrera blockområdeslista"],"No block area found.":["Inga blockområden hittades."],"Search Block Areas":["Sök blockområden"],"All Block Areas":["Alla blockområden"],"View Block Area":["Visa blockområde"],"Edit Block Area":["Redigera blockområde"],"New Block Area":["Nytt blockområde"],"Add New Block Area":["Lägg till nytt blockområde"],"admin menu\u0004Block Areas":["Blockområden"],"post type singular name\u0004Block Area (Experimental)":["Blockområde (experimentellt)"],"post type general name\u0004Block Area (Experimental)":["Blockområde (experimentellt)"],"Experimental custom post type that will store block areas referenced by themes.":["Experimentell inläggstyp som sparar blockområden som används av teman."],"Widgets screen content":["Widget-skärmens innehåll"],"header":["sidhuvud"],"Widgets advanced settings":["Avancerade widget-inställningar"],"(experimental)":["(experimentellt)"],"Block Areas":["Blockområden"],"Widgets screen top bar":["Widget-skärm i topplisten"],"This color combination may be hard for people to read.":["Denna färgkombination kan vara svår för människor att läsa."],"There is no poster image currently selected":["För närvarande är ingen posterbild vald"],"The current poster image url is %s":["URL för den aktuella posterbilden är %s"],"section":["sektion"],"row":["rad"],"wrapper":["omslag"],"container":["container"],"A block that groups other blocks.":["Ett block som grupperar andra block."],"Group":["Grupp"],"Crop image to fill entire column":["Beskär bilden så att den fyller hela kolumnen"],"Play inline":["Spela upp direkt i texten"],"Leave empty if the image is purely decorative.":["Lämna tomt om bilden endast har dekorativ funktion."],"Describe the purpose of the image":["Beskriv syftet med bilden"],"Add a block":["Lägg till ett block"],"Block vertical alignment setting label\u0004Change vertical alignment":["Ändra vertikal positionering"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertikal justering botten"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertikal justering mitten"],"Replace Image":["Ersätt bild"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertikal justering topp"],"Display a legacy widget.":["Visa en widget av äldre typ."],"Legacy Widget (Experimental)":["Widget av äldre typ (experimentell)"],"Change widget":["Ändra widget"],"Legacy Widget":["Widget av äldre typ"],"You don't have permissions to use widgets on this site.":["Du har inte behörighet att använda widgetar på denna webbplats."],"Select a legacy widget to display:":["Välj vilken widget av äldre typ du vill visa:"],"There are no widgets available.":["Inga widgetar är tillgängliga."],"Change block type or style":["Ändra blocktyp eller stil"],"keyboard key\u0004Space":["Mellanslag"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["Fler kontroller för formaterad text"],"Search Terms":["Söktermer"],"Exit the Editor":["Stäng redigeraren"],"Block Manager":["Blockhantering"],"Class name of the widget.":["Widgetens klassnamn."],"Sorry, you are not allowed to access widgets on this site.":["Du har inte behörighet att komma åt widgetar på denna webbplats."],"Widgets (beta)":["Widgetar (beta)"],"link":["länk"],"Embedded content from %s can't be previewed in the editor.":["Inbäddat innehåll från %s kan inte förhandsgranskas i redigeraren."],"Custom Color":["Anpassad färg"],"Prompt visitors to take action with a button-style link.":["Uppmana besökare att göra något med hjälp av en länk, utformad som en knapp."],"Stick to the top of the blog":["Klistra längst upp i bloggen"],"Read about permalinks":["Läs om permalänkar"],"The last part of the URL.":["Den sista delen av URL:en."],"URL Slug":["URL-slug"],"A cloud of your most used tags.":["Ett moln med dina mest använda etiketter."],"Tag Cloud":["Etikettmoln"],"Taxonomy":["Taxonomi"],"Tag Cloud settings":["Inställningar för etikettmoln"],"- Select -":["- Välj -"],"Default":["Standard"],"find":["hitta"],"Help visitors find your content.":["Hjälp besökare att hitta ditt innehåll."],"Search":["Sök"],"Add button text…":["Lägg till knapptext..."],"Button text":["Knapptext"],"Optional placeholder…":["Valfri platsmarkör..."],"Optional placeholder text":["Valfri text för platsmarkering"],"Add label…":["Lägg till etikett..."],"Label text":["Text i etikett"],"image %1$d of %2$d in gallery":["bild %1$d av %2$d i galleriet"],"archive":["arkiv"],"posts":["inlägg"],"A calendar of your site’s posts.":["En kalender över inläggen på din webbplats."],"Calendar":["Kalender"],"by":["av"],"An error has occurred, which probably means the feed is down. Try again later.":["Ett fel har inträffat, vilket troligen innebär att webbflödet inte fungerar. Försök igen senare."],"RSS Error:":["RSS-fel:"],"block style\u0004Default":["Standard"],"Fullscreen mode deactivated":["Fullskärmsläge inaktiverat"],"Fullscreen mode activated":["Fullskärmsläge aktiverat"],"Spotlight mode deactivated":["Spotlight-läge inaktiverat"],"Spotlight mode activated":["Spotlight-läge aktiverat"],"Top toolbar deactivated":["Verktygsfältet längst upp är inaktiverat"],"Top toolbar activated":["Verktygsfältet längst upp är aktiverat"],"Back":["Tillbaka"],"Feature activated":["Funktionen är aktiverad"],"Feature deactivated":["Funktionen är inaktiverad"],"Vertical Pos.":["Vertikal placering"],"Horizontal Pos.":["Horisontell placering"],"feed":["webbflöde"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Visa inlägg från valfritt webbflöde i format RSS eller Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Max antal ord i utdrag"],"Display excerpt":["Visa utdrag"],"Display date":["Visa datum"],"Display author":["Visa författare"],"RSS settings":["RSS-inställningar"],"Edit RSS URL":["Redigera RSS-URL"],"Content before this block will be shown in the excerpt on your archives page.":["Innehållet före detta block kommer att visas i utdraget på din arkivsida."],"Hide the excerpt on the full content page":["Dölj utdraget på sidan med hela innehållet"],"The excerpt is visible.":["Utdraget är synligt."],"The excerpt is hidden.":["Utdraget är dolt."],"Sorry, this content could not be embedded.":["Detta innehåll gick tyvärr inte att bädda in."],"Embed Amazon Kindle content.":["Bädda in innehåll från Amazon Kindle."],"ebook":["e-bok"],"Embed Crowdsignal (formerly Polldaddy) content.":["Bädda in innehåll från Crowdsignal (f.d. Polldaddy)."],"Focal Point Picker":["Fokalpunktsväljare"],"Underline":["Understreck"],"Attempt Block Recovery":["Försök att återskapa block"],"Word count type. Do not translate!\u0004words":["words"],"content placeholder\u0004Content…":["Innehåll…"],"button label\u0004Convert to link":["Konvertera till länk"],"button label\u0004Try again":["Försök igen"],"Editor tips":["Redigeringstips"],"Block (selected)":["Block (valt)"],"Document (selected)":["Dokument (valt)"],"%d word":["%d ord","%d ord"],"Top toolbar":["Verktygsfält i toppen"],"Link Rel":["Länk-rel"],"Link CSS Class":["CSS-klass för länk"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Skapa innehåll och spara det så att du och andra upphovsmän kan återanvända det överallt på er webbplats. Om blocket uppdateras kommer ändringarna att slå igenom överallt där blocket används."],"To edit the featured image, you need permission to upload media.":["För att redigera den utvalda bilden behöver du behörighet att ladda upp mediafiler."],"To edit this block, you need permission to upload media.":["För att redigera detta block behöver du behörighet att ladda upp media."],"(selected block)":["(valt block)"],"Block tools":["Blockverktyg"],"Permalink":["Permalänk"],"This image has an empty alt attribute":["Denna bild har ett alt-attribut som är tomt."],"This image has an empty alt attribute; its file name is %s":["Denna bild har ett alt-attribut som är tomt. Dess filnamn är %s"],"Block area reverted to draft.":["Blockområdet har återställts till utkast."],"Block area published privately.":["Blockområde har publicerats privat."],"No block areas found in Trash.":["Inga blockområden hittades i papperskorgen."],"Block\u0004Add New":["Lägg till nytt"],"add new on admin bar\u0004Block Area":["Blockområde"],"Link inserted.":["Länken har lagts in."],"Warning: the link has been inserted but may have errors. Please test it.":["Varning: länken har lagts till men kan innehålla fel. Vänligen testa den."],"%s block selected.":["%s block markerad.","%s block markerade."],"Thumbnail":["Miniatyr"],"Full Size":["Full storlek"],"Link selected.":["Länken är markerad."],"Start writing with text or HTML":["Börja skriva in text eller HTML"],"Type text or HTML":["Skriv in text eller HTML"],"Block icon":["Blockikon"],"Align text right":["Högerställ text"],"Align text center":["Centrera text"],"Align text left":["Vänsterställ text"],"Start writing or type / to choose a block":["Börja skriva eller tryck på ”/” för att välja ett block"],"Empty block; start writing or type forward slash to choose a block":["Tomt block. Börja skriva eller tryck på snedstreck för att välja ett block"],"Paragraph block":["Textstyckesblock"],"Page Break":["Sidbrytning"],"Stack on mobile":["Stapla på mobil"],"Annotation":["Beskrivning"],"Drag images, upload new ones or select files from your library.":["Dra bilder, ladda upp nya eller välj filer från ditt bibliotek."],"blocks\u0004Most used":["Mest använda"],"imperative verb\u0004Resolve":["Lös upp"],"font size name\u0004Huge":["Enorm"],"font size name\u0004Large":["Stor"],"font size name\u0004Medium":["Medium"],"font size name\u0004Small":["Liten"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Importera"],"button label\u0004Download":["Ladda ner"],"button label\u0004Embed":["Bädda in"],"block title\u0004Embed":["Bädda in"],"block title\u0004Classic":["Klassisk"],"block style\u0004Large":["Stor"],"block style\u0004Rounded":["Rundade hörn"],"%s (opens in a new tab)":["%s (öppnas i en ny flik)"],"Link edited.":["Länk redigerad."],"Link removed.":["Länk borttagen."],"media":["media"],"Double-check your settings before publishing.":["Dubbelkontrollera dina inställningar innan du publicerar."],"Generating preview…":["Genererar förhandsgranskning…"],"Edit or update the image":["Redigera eller uppdatera bilden"],"Media":["Media"],"Navigate to the nearest toolbar.":["Navigera till närmaste verktygsfält."],"Document tools":["Dokumentverktyg"],"Document and block tools":["Dokument och blockverktyg"],"Embed a video from your media library or upload a new one.":["Bädda in ett videoklipp från ditt mediebibliotek eller ladda upp ett nytt."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Lägg in poesi. Använd specialformat för radavstånd. Eller citera några rader ur en sångtext."],"Add white space between blocks and customize its height.":["Lägg in ett tomt utrymme mellan block och anpassa dess höjd."],"Insert additional custom elements with a WordPress shortcode.":["Lägg in andra anpassade element med hjälp av en WordPress-kortkod."],"Create a break between ideas or sections with a horizontal separator.":["Skapa en avgränsning mellan olika idéer eller sektioner med hjälp av en horisontell avgränsare."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Framhäv ett citat visuellt. ”När vi citerar andra, citerar vi oss själva.” — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Ge särskild visuell betoning på ett citat från din text."],"Start with the building block of all narrative.":["Starta med byggstenen för alla berättelser."],"Separate your content into a multi-page experience.":["Dela upp ditt innehåll till en upplevelse som sträcker sig över flera sidor."],"Set media and words side-by-side for a richer layout.":["Placera media och ord sida vid sida för en rikare layout."],"Media & Text settings":["Inställningar för media och text"],"Create a bulleted or numbered list.":["Skapa en punktlista eller en numrerad lista."],"Display a list of your most recent comments.":["Visa en lista med de senaste kommentarerna."],"Insert an image to make a visual statement.":["Lägg in en bild för att berätta visuellt."],"Add custom HTML code and preview it as you edit.":["Lägg till anpassad HTML-kod och förhandsgranska det när du redigerar."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Introducera nya sektioner och organisera innehåll för att hjälpa besökare (och sökmotorer) att förstå strukturen på ditt innehåll."],"Display multiple images in a rich gallery.":["Visa flera bilder i ett fullödigt galleri."],"Add a link to a downloadable file.":["Lägg till en länk till en nedladdningsbar fil."],"Embed videos, images, tweets, audio, and other content from external sources.":["Bädda in videoklipp, bilder, tweets, ljud och annat innehåll från externa källor."],"Resize for smaller devices":["Ändra storlek för mindre enheter"],"This embed may not preserve its aspect ratio when the browser is resized.":["Denna inbäddning kanske inte behåller sitt bildförhållande om storleken på webbläsarens fönster ändras."],"This embed will preserve its aspect ratio when the browser is resized.":["Denna inbäddning behåller sitt bildförhållande när storleken på webbläsarens fönster ändras."],"Embed an Animoto video.":["Bädda in en video från Animoto."],"Embed a Vimeo video.":["Bädda in en video från Vimeo."],"Embed Flickr content.":["Bädda in innehåll från Flickr."],"Embed Spotify content.":["Bädda in innehåll från Spotify."],"Embed SoundCloud content.":["Bädda in innehåll från SoundCloud."],"Embed a WordPress post.":["Bädda in ett inlägg från WordPress."],"Embed an Instagram post.":["Bädda in ett inlägg från Instagram."],"Embed a Facebook post.":["Bädda in ett inlägg från Facebook."],"Embed a WordPress.tv video.":["Bädda in en video från WordPress.tv."],"Embed a VideoPress video.":["Bädda in en video från VideoPress."],"Embed a Tumblr post.":["Bädda in ett inlägg från Tumblr."],"Embed a TED video.":["Bädda in en video från TED."],"Embed Speaker Deck content.":["Bädda in innehåll från Speaker Deck."],"Embed a YouTube video.":["Bädda in en video från YouTube."],"Embed SmugMug content.":["Bädda in innehåll från SmugMug."],"Embed Slideshare content.":["Bädda in innehåll från Slideshare."],"Embed Scribd content.":["Bädda in innehåll från Scribd."],"Embed Screencast content.":["Bädda in innehåll från Screencast."],"Embed ReverbNation content.":["Bädda in innehåll från ReverbNation."],"Embed a Reddit thread.":["Bädda in en tråd från Reddit."],"Embed Polldaddy content.":["Bädda in innehåll från Polldaddy."],"Embed Mixcloud content.":["Bädda in innehåll från Mixcloud."],"Embed a tweet.":["Bädda in en status från Twitter."],"Embed Meetup.com content.":["Bädda in innehåll från Meetup.com."],"Embed Kickstarter content.":["Bädda in innehåll från Kickstarter."],"Embed Issuu content.":["Bädda in innehåll från Issuu."],"Embed Imgur content.":["Bädda in innehåll från Imgur."],"Embed Hulu content.":["Bädda in innehåll från Hulu."],"Embed a Dailymotion video.":["Bädda in en video från Dailymotion."],"Embed CollegeHumor content.":["Bädda in innehåll från CollegeHumor."],"Embed Cloudup content.":["Bädda in innehåll från Cloudup."],"Add an image or video with a text overlay — great for headers.":["Lägg till en bild eller videoklipp med ett textöverlägg – bra för rubriker."],"Display code snippets that respect your spacing and tabs.":["Visa programkodsutdrag som respekterar dina mellanslag och tabbtecken."],"Use the classic WordPress editor.":["Använd den klassiska WordPress-redigeraren."],"Display a list of all categories.":["Visa en lista på alla kategorier."],"Embed a simple audio player.":["Bädda in en enkel ljudspelare."],"noun\u0004View":["Visa"],"editor button\u0004Left to right":["Vänster till höger"],"Save as Pending":["Spara som väntande"],"%s address":["Adress för %s"],"Paste or type URL":["Klistra in eller skriv URL"],"Insert from URL":["Infoga från URL"],"Block Navigator":["Blocknavigering"],"Styles":["Stilar"],"Advanced panels":["Avancerade paneler"],"Document panels":["Dokumentpaneler"],"General":["Allmänt"],"Open the block navigation menu.":["Öppna blocknavigationsmenyn."],"Work without distraction":["Arbeta utan att distraheras"],"Focus on one block at a time":["Fokusera på ett block i taget"],"Access all block and document tools in a single place":["Få åtkomst till alla block- och dokumentverktyg på en enda plats"],"Options":["Alternativ"],"(opens in a new tab)":["(öppnas i en ny flik)"],"Minutes":["Minuter"],"Hours":["Öppettider"],"Time":["Tid"],"Year":["År"],"Day":["Dag"],"December":["december"],"November":["november"],"October":["oktober"],"September":["september"],"August":["augusti"],"July":["juli"],"June":["juni"],"May":["maj"],"April":["april"],"March":["mars"],"February":["februari"],"January":["januari"],"Month":["Månad"],"Date":["Datum"],"Go to the first (home) or last (end) day of a week.":["Gå till veckans första (Home) eller sista (End) dag."],"Home/End":["Home/End"],"Home and End":["Home och End"],"Move backward (PgUp) or forward (PgDn) by one month.":["Gå bakåt (PgUp) eller framåt (PgDn) en månad."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up och Page Down"],"Move backward (up) or forward (down) by one week.":["Gå bakåt (upp) eller framåt (ned) en vecka."],"Up and Down Arrows":["Uppåt- och nedåtpil"],"Move backward (left) or forward (right) by one day.":["Gå bakåt (vänster) eller framåt (höger) en dag."],"Left and Right Arrows":["Vänsterpil och och högerpil"],"Select the date in focus.":["Välj det datum som befinner sig i fokus."],"Navigating with a keyboard":["Navigera med ett tangentbord"],"Click the desired day to select it.":["Klicka på önskad dag för att välja den."],"Click the right or left arrows to select other months in the past or the future.":["Klicka på höger- eller vänsterpilarna för att välja en annan månad i förfluten tid eller i framtiden."],"Click to Select":["Klicka för att välja"],"Calendar Help":["Kalenderhjälp"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Använd piltangenterna för att ändra grundfärg. Flytta uppåt för ljusare färg, nedåt för mörkare, till vänster för minskad mättnad och till höger för att öka mättnaden."],"Choose a shade":["Välj skugga"],"Change color format":["Ändra färgformat"],"Color value in HSL":["Färgvärde i HSL"],"Color value in RGB":["Färgvärde i RGB"],"Color value in hexadecimal":["Färgvärde i hexadecimal"],"RGB mode active":["RGB-läge aktiv"],"Hex color mode active":["Hexadecimalt färgläget (RGB) är aktivt"],"Hue/saturation/lightness mode active":["Arbetsläget kulör/mättnadsgrad/ljushet är aktivt (hue/saturation/lightness)"],"Move the arrow left or right to change hue.":["Flytta pilen åt vänster eller höger för att ändra nyans."],"Hue value in degrees, from 0 to 359.":["Nyansvärde i grader, från 0 till 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa-värde, från 0 (transparent) till 1 (helt ogenomskinligt)."],"Stripes":["Ränder"],"Your site doesn’t include support for this block.":["Din webbplats inkluderar inte stöd för detta block."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Din webbplats inkluderar inte stöd för block ”%s”. Du kan lämna detta block intakt eller ta bort det helt."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Din webbplats inkluderar inte stöd för blocket ”%s”. Du kan lämna detta block som det är, konvertera innehållet till ett block med anpassad HTML eller ta bort det helt."],"Media area":["Mediaområde"],"Media & Text":["Media och text"],"Show media on right":["Visa media till höger"],"Show media on left":["Visa media till vänster"],"Open in New Tab":["Öppna i ny flik"],"Cover":["Omslag"],"Border settings":["Raminställningar"],"Medium":["Medium"],"Paste URL or type to search":["Klistra in URL eller skriv för att söka"],"Terms":["Termer"],"Your work will be published at the specified date and time.":["Ditt arbete kommer att publiceras på angivet datum och tid."],"Are you ready to schedule?":["Är du redo att schemalägga?"],"Always show pre-publish checks.":["Visa alltid kontroller innan publicering sker."],"Take Over":["Ta över"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["En annan användare arbetar för närvarande med detta inlägg, vilket innebär att du inte kan göra ändringar, såvida du inte tar över."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbetar för närvarande med detta inlägg, vilket innebär att du inte kan göra ändringar, såvida du inte tar över."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["En annan användare har nu redigeringskontroll av detta inlägg. Oroa dig inte, dina ändringar fram till nu har sparats."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s har nu redigeringskontroll av detta inlägg. Oroa dig inte, dina ändringar fram till nu har sparats."],"Avatar":["Profilbild"],"This post is already being edited.":["Detta inlägg redigeras redan."],"Someone else has taken over this post.":["Någon annan har tagit över detta inlägg."],"This block contains unexpected or invalid content.":["Detta block innehåller oväntat eller ogiltigt innehåll"],"Resolve Block":["Lös upp blocket"],"Convert to HTML":["Konvertera till HTML"],"This block can only be used once.":["Detta block kan bara användas en gång."],"Exit Code Editor":["Avsluta kodredigerare"],"Editing Code":["Att redigera kod"],"Solid Color":["Solid färg"],"Main Color":["Huvudfärg"],"HTML":["HTML"],"Write HTML…":["Skriv HTML…"],"Media settings":["Inställningar för media"],"Overlay":["Överlägg"],"Insert Media":["Infoga media"],"Reusable block imported successfully!":["Återanvändbart block importerat utan problem."],"Invalid Reusable Block JSON file":["Ogiltig JSON-fil för återanvändbart block"],"Invalid JSON file":["Ogiltig JSON-fil"],"Import from JSON":["Importera från JSON"],"Backtick":["Backtick (`)"],"Period":["Period"],"Comma":["Komma"],"Change type of %d block":["Ändra typ hos %d block","Ändra typ hos %d block"],"Current":["Nuvarande"],"After Conversion":["Efter konvertering"],"Change alignment":["Ändra justering"],"Change text alignment":["Ändra textens justering"],"%d block":["%d block","%d block"],"Forward-slash":["Snedstreck"],"No archives to show.":["Inga arkiv att visa."],"This file is empty.":["Filen är tom."],"Sorry, this file type is not supported here.":["Denna filtyp stöds inte här."],"Manage all reusable blocks":["Hantera alla återanvändbara block"],"Title":["Titel"],"Fullscreen mode":["Helskärmsläge"],"Beautiful landscape":["Vackert landskap"],"Close panel":["Stäng panel"],"Convert to Classic Block":["Konvertera till Klassiskt block"],"Remove Poster Image":["Ta bort posterbild"],"Select Poster Image":["Välj bildposter"],"Poster Image":["Bildposter"],"This block is deprecated. Please use the Columns block instead.":["Detta block är taget ur bruk. Använd blocket ”Kolumner” i stället."],"Text Columns (deprecated)":["Textkolumner (taget ur bruk)"],"Create":["Skapa"],"Row Count":["Radantal"],"Column Count":["Kolumnantal"],"This block is deprecated. Please use the Paragraph block instead.":["Detta block är taget ur bruk. Använd blocket ”Stycke” i stället."],"Subheading (deprecated)":["Underrubrik (taget ur bruk)"],"blockquote":["blockcitat"],"Change the block type after adding a new paragraph.":["Ändra blocktypen när ett nytt stycke lagts till."],"Spotlight mode":["Spotlight-läge"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etiketter hjälper användare och sökmotorer att navigera runt på webbplatsen och hitta innehållet. Lägg till några nyckelord som beskriver inlägget."],"Add tags":["Lägg till etiketter"],"Apply the \"%1$s\" format.":["Tillämpa formatet ”%1$s”."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ditt tema använder inläggsformat för att markera olika typer av innehåll, t.ex. bilder eller video. Använd ett inläggsformat för att visa detta speciella utseende."],"Use a post format":["Använd ett inläggsformat"],"Insert After":["Infoga efter"],"Insert Before":["Infoga före"],"Move %1$d block from position %2$d down by one place":["Flytta %1$d block från position %2$d en plats nedåt","Flytta %1$d block från position %2$d en plats nedåt"],"Move %1$d block from position %2$d up by one place":["Flytta %1$d block från position %2$d en plats uppåt","Flytta %1$d block från position %2$d en plats uppåt"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["film"],"Insert a new block before the selected block(s).":["Skjut in ett nytt block före det markerade bloket (blocken)."],"Remove the selected block(s).":["Ta bort det markerade blocket (blocken)."],"Duplicate the selected block(s).":["Duplicera markerat/markerade block."],"Block shortcuts":["Kortkoder för block"],"Clear selection.":["Ta bort markeringen."],"Select all text when typing. Press again to select all blocks.":["Välj all text vid inmatning. Tryck en gång till för att välja alla block."],"Selection shortcuts":["Genvägar för markering"],"Switch between Visual editor and Code editor.":["Växla mellan visuell redigerare och kodredigerare."],"Navigate to the previous part of the editor.":["Gå till föregående del av redigeraren."],"Navigate to the next part of the editor.":["Navigera till nästa del av redigeraren."],"Show or hide the settings sidebar.":["Visa eller dölj sidopanelen för inställningar."],"Redo your last undo.":["Gör om den senast ångrade åtgärden."],"Undo your last changes.":["Ångra dina senaste ändringar."],"Save your changes.":["Spara dina ändringar."],"Global shortcuts":["Globala genvägar"],"Remove a link.":["Ta bort en länk."],"Convert the selected text into a link.":["Konvertera den valda texten till en länk."],"Underline the selected text.":["Gör understrykning av den markerade texten."],"Make the selected text italic.":["Ändra den markerade texten till kursiv."],"Make the selected text bold.":["Ändra den markerade texten till fetstil."],"Text formatting":["Textformatering"],"Insert a new block after the selected block(s).":["Infoga ett nytt block efter markerat/markerade block."],"Keyboard shortcuts":["Tangentbordsgenvägar"],"Thanks for testing Gutenberg!":["Tack för att du provar Gutenberg!"],"Help build Gutenberg":["Hjälp till att bygga Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Om du vill läsa mer om hur du kan bygga nya block eller om du vill hjälpa till i projektet är du välkommen över till filförvaret på GitHub."],"The WordPress community":["WordPress-gemenskapen"],"Code is Poetry":["Kod är poesi"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Du kan bygga alla typer av block du känner för, statiska eller dynamiska, dekorativa eller enkla. Här är ett pullquote-block som kan lyfta fram ett citat ur din text:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Alla block kan välja att följa dessa justeringar. Även inbäddningsblocken har dem och de är responsive direkt från start:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Ovanstående är ett galleri som består av bara två bilder. Det är ett enklare sätt att skapa visuellt tilltalande layouter utan att behöva hantera s.k. floats. Det är också enkelt att åter konvertera galleriet till enskilda bilder med hjälp av blockväxlaren."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Jovisst, en fullbred bild kan bli riktigt stor. Men ibland är bilden värd det."],"Accessibility is important — don’t forget image alt attribute":["Det är viktigt med åtkomlighet – glöm inte attributet alt för bilder"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Genom att kombinera de nya justeringarna bred bredd och fullbred bredd med gallerier kan du mycket snabbt skapa en mycket mediarik layout:"],"Media Rich":["Mediarik"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Du kan ändra antalet kolumner i dina gallerier med hjälp av ett skjutreglage i blockinspekteraren i sidopanelen."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Block kan vara vad helst du behöver. Du kanske vill lägga till ett nedtonat citat när du komponerar din text. Eller så föredrar du ett citat som är stiliserat i jätteformat. Med infogaren har du alla dessa alternativ."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Informationen som motsvarar citatets upphovsman är ett separat textfält, på samma sätt som bildtexter under bilder, vilket gör att citatets struktur skyddas även om du markerar, modifierar eller tar bort uppgiften om upphovsmannen. Det är alltid enkelt att lägga in uppgiften igen."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Redigeraren kommer att sträva efter en ny upplevelse för hur man bygger en sida eller ett inlägg så att det blir enklare att skriva inlägg med rikt innehåll och där man använder ”block” för att enkelt skapa det som idag kan behöva kortkoder, anpassad html-kod eller ”hemliga ingredienser” för upptäckt av länkar till inbäddat material."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["En enorm fördel med block är att du kan redigera dem på plats och direkt manipulera ditt innehåll. I stället för att använda fält för att redigera saker som upphovsmannen till ett citat eller en knapptext kan du nu direkt ändra innehållet. Prova att redigera nedanstående citat:"],"Visual Editing":["Visuell redigering"],"And Lists like this one of course :)":["Och listor som den här, förstås :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Layout-block, såsom knappar, hero-bilder, avgränsare m.m."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Inbäddat material, såsom YouTube, Twitter eller andra WordPress-inlägg."],"Galleries":["Gallerier"],"Images & Videos":["Bilder och videoklipp"],"Text & Headings":["Text och rubriker"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Ta och prova nu. Du kanske upptäcker att WordPress redan kan lägga in olika saker i dina inlägg som du inte kände till. Här är en kort lista med saker som du för närvarande kan hitta där:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Tänk dig att allt WordPress kan göra är snabbt och smidigt tillgängligt för dig på en och samma plats i gränssnittet. Du behöver inte leta reda på HTML-taggar, klasser eller minnas någon komplicerad syntax för kortkoder. Det är idén med infogaren – knappen (+)
som du ser på olika platser i redigeraren, vilken låter dig bläddra bland alla tillgängliga innehållsblock och lägga till dem i ditt inlägg. Tillägg och teman kan registrera egna block, något som skapar rika möjligheter för redigering och publicering."],"The Inserter Tool":["Verktyget infogaren"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Prova att markera och ta bort eller ändra bildtexten. Du behöver inte längre vara rädd för att råka markera bilden eller annan text av misstag och förstöra utseendet."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Om ditt tema har stöd för det kommer du att se knappen ”bred” i verktygsfältet för bilder. Ta och prova den!"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["I den nya redigeraren är ett centralt fokus att hantera bilder och mediafiler med stor försiktighet. Förhoppningsvis kommer du att upptäcka att det blivit mycket enklare och stabilare än tidigare att göra sådana saker som att lägga till bildtexter eller ange att en bild ska vara fullbred."],"A Picture is Worth a Thousand Words":["En bild säger mer än tusen ord"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Även rubriker är block, vilka hjälper dig att strukturera och organisera ditt innehåll."],"... like this one, which is right aligned.":["... och även detta, som är högerjusterat."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Det du läser nu är ett textblock, det mest grundläggande blocket av alla. Textblocket har sina egna inställningar som gör att det fritt kan flyttas runt inom inlägget..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Målet för den nya redigeraren är att göra det enkelt och skojigt att lägga till rikt innehåll i WordPress. Hela inlägget består av innehållsbitar– ungefär som LEGO-bitar – som du kan flytta runt och interagera med. Om du flyttar din pekare märker du hur olika block markeras med ramar och pilar. Klicka på pilarna för att snabbt flytta blocken utan någon risk att förlora någonting medan du håller på att kopiera och klistra in."],"Of Mountains & Printing Presses":["Se vad du kan göra med Gutenberg"],"Welcome to the Gutenberg Editor":["Välkommen till Gutenberg-redigeraren"],"block name\u0004More":["Mer"],"button to expand options\u0004More":["Mer"],"Are you sure you want to unschedule this post?":["Är du säker på att du vill ta bort schemaläggningen av detta inlägg?"],"Alt Text (Alternative Text)":["Alt-text (alternativ text)"],"Reusable Block":["Återanvändbart block"],"Unique identifier for the object.":["Unik beteckning för objektet."],"Untitled Reusable Block":["Block utan rubrik som kan återanvändas"],"Small":["Liten"],"Reusable":["Återanvändbar"],"Remove from Reusable blocks":["Ta bort från återanvändbara block"],"Add to Reusable blocks":["Lägg till i återanvändbara block"],"Keep as HTML":["Behåll som HTML"],"Edit URL":["Ändra URL"],"Color settings":["Färginställningar"],"The response is not a valid JSON response.":["Svaret är inget giltigt JSON-svar."],"Editor publish":["Redigerarens publicera-område"],"Muted":["Tystad"],"Video settings":["Videoinställningar"],"recent comments":["senaste kommentarerna"],"Latest Comments":["Senaste kommentarerna"],"Display Excerpt":["Visa utdrag"],"Display Date":["Visa datum"],"Display Avatar":["Visa profilbild"],"Latest comments settings":["Inställningar för senaste kommentarerna"],"Number of Comments":["Antal kommentarer"],"Background Opacity":["Bakgrundens opacitet"],"Auto":["Auto"],"Preload":["Förhandsladda"],"Audio settings":["Ljudinställningar"],"Display a monthly archive of your posts.":["Visa ett månadsarkiv på dina inlägg."],"Display as Dropdown":["Visa som rullgardinsmeny"],"Show Post Counts":["Visa antal inlägg"],"Archives settings":["Arkivinställningar"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Support"],"No comments to show.":["Inga kommentarer att visa."],"%1$s on %2$s":["%1$s on %2$s"],"Select Post":["Välj inlägg"],"Select Week":["Välj vecka"],"Select Day":["Välj dag"],"Select Month":["Välj månad"],"Select Year":["Välj år"],"Archives":["Arkiv"],"Very dark gray":["Mycket mörkgrå"],"Cyan bluish gray":["Cyan blågrå"],"Very light gray":["Mycket ljusgrå"],"Vivid cyan blue":["Intensivt cyanblå"],"Pale cyan blue":["Blek cyanblå"],"Vivid green cyan":["Intensivt cyangrönt"],"Light green cyan":["Ljusgrön cyan"],"Luminous vivid amber":["Lysande intensivt gult"],"Luminous vivid orange":["Lysande intensivt orange"],"Vivid red":["Intensivt röd"],"Pale pink":["Blek rosa"],"Inline image":["Bild inlagd i texten"],"Available block types":["Tillgängliga blocktyper"],"Transform To:":["Omvandla till:"],"Remove Block":["Ta bort block"],"Open publish panel":["Öppna publiceringspanel"],"Dots":["Punkter"],"Wide Line":["Bred linje"],"Large":["Stor"],"Show download button":["Visa nedladdningsknapp"],"Download button settings":["Inställningar för nedladdningsknapp"],"Link To":["Länk till"],"Text link settings":["Inställningar för länktext"],"download":["ladda ner"],"pdf":["pdf"],"document":["dokument"],"Copy URL":["Kopiera URL"],"Write file name…":["Skriv filnamn…"],"File":["Fil"],"A single column within a columns block.":["En enstaka kolumn inom ett block med kolumner."],"Column":["Kolumn"],"Outline":["Markera ytterkanter"],"Loop":["Loop"],"Autoplay":["Spela upp automatiskt"],"Playback Controls":["Uppspelningsreglage"],"Close dialog":["Stäng dialogruta"],"Sorry, this file type is not permitted for security reasons.":["Denna filtyp är inte tillåten av säkerhetsskäl."],"Disable tips":["Inaktivera tips"],"Got it":["Jag förstår"],"See next tip":["Se nästa tips"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["När du är klar, skicka in ditt arbete för granskning, och en redaktör kommer att kunna godkänna det åt dig."],"Are you ready to submit for review?":["Är du redo att skicka in en recension?"],"Replace image":["Ersätt bild"],"Remove image":["Ta bort bild"],"Error while uploading file %s to the media library.":["Ett fel inträffade när filen %s laddades upp till mediebiblioteket."],"This file exceeds the maximum upload size for this site.":["Filen överskrider den maximala storleken för filuppladdningar på denna webbplats."],"View the autosave":["Visa autosparad version"],"There is an autosave of this post that is more recent than the version below.":["Det finns en autosparad version av detta inlägg som är nyare än nedanstående version."],"Autosaving":["Autosparar"],"Enter URL here…":["Ange URL här…"],"Pin to toolbar":["Fäst i verktygsfältet"],"Unpin from toolbar":["Lossa från verktygsfältet"],"Insert a table — perfect for sharing charts and data.":["Lägg en tabell – utmärkt för att publicera tabeller och data."],"Fixed width table cells":["Tabellceller med fast bredd"],"Table settings":["Tabellinställningar"],"Add text that respects your spacing and tabs, and also allows styling.":["Lägg in text som respekterar dina mellanrum och tabbtecken, och samtidigt kan formateras."],"Display a list of your most recent posts.":["Visa en lista över dina senaste inlägg."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Lägg till ett block med innehåll som hämtas från andra webbplatser, såsom Twitter, Instagram eller YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Lägg till ett block som visar innehåll i flera kolumner där du sedan lägger till de innehållsblock du behöver."],"Error loading block: %s":["Ett fel inträffade vid laddning av block: %s"],"Unknown error":["Okänt fel"],"Embed Handler":["Inbäddningshanterare"],"term\u0004Remove %s":["Ta bort %s"],"Copy the permalink":["Kopiera permalänken"],"Permalink copied":["Permalänken kopierad"],"Height in pixels":["Höjd i pixlar"],"Spacer settings":[],"Spacer":["Distanselement"],"Toggle to show a large initial letter.":["Slå på/av visning av anfang (förstorad första bokstav)."],"Showing large initial letter.":["Visar anfang (förstorad första bokstav)."],"Name:":["Namn:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s av %3$s)"],"Remove item":["Ta bort objektet"],"Color code: %s":["Färgkod: %s"],"Skip to the selected block":["Hoppa över till det valda blocket"],"Publish…":["Publicera..."],"Schedule…":["Schemalägg..."],"Edit post permalink":["Redigera inläggets permalänk"],"Show Block Settings":["Visa blockinställningar"],"Hide Block Settings":["Dölj blockinställningar"],"Block settings closed":["Blockets inställningar är stängda"],"Close plugin":["Stäng tillägget"],"Editor settings":["Inställningar för redigeraren"],"Link settings":["Länkinställningar"],"Unlink":["Ta bort länkning"],"Page break":["Sidbrytning"],"pagination":["sidindelning"],"next page":["nästa sida"],"Image Size":["Bildstorlek"],"Height":["Höjd"],"Width":["Bredd"],"Image Dimensions":["Bilddimensioner"],"Thumbnails are not cropped.":["Miniatyrerna är inte beskurna."],"Thumbnails are cropped to align.":["Miniatyrbilder kantklipps så att de passar in."],"Media Library":["Mediabibliotek"],"Advanced":["Avancerat"],"Add item":["Lägg till objekt"],"Reset the template":["Återställ mallen"],"Keep it as is":["Behåll det som det är"],"The content of your post doesn’t match the template assigned to your post type.":["Innehållet i ditt inlägg matchar inte mallen som tilldelats till din inläggstyp."],"Resetting the template may result in loss of content, do you want to continue?":["Återställning av mallen kan det leda till förlust av innehåll, vill du fortsätta?"],"Document Statistics":["Dokumentstatistik"],"is now scheduled. It will go live on":["är tidsinställt och publiceras"],"Scheduled":["Schemalagd"],"Scheduling…":["Schemalägger..."],"Code editor selected":["Kodredigerare vald"],"Visual editor selected":["Visuell redigerare vald"],"Plugins":["Tillägg"],"Custom Size":["Anpassad storlek"],"Layout elements":["Layoutelement"],"term\u0004%s removed":["%s togs bort"],"term\u0004%s added":["%s har lagts till"],"imperative verb\u0004Preview":["Förhandsgranska"],"Block deleted.":["Block borttaget."],"Block updated.":["Block uppdaterad."],"Block created.":["Block skapad."],"Trashing failed":["Borttagning misslyckades"],"Updating failed.":["Uppdatering misslyckades."],"Scheduling failed.":["Schemaläggning misslyckades."],"Publishing failed.":["Publicering misslyckades."],"View post":["Visa inlägg"],"You have unsaved changes. If you proceed, they will be lost.":["Du har osparade ändringar. Om du fortsätter kommer de att gå förlorade."],"Document Outline":["Dokumentöversikt"],"Paragraphs":["Stycken"],"Headings":["Rubriker"],"Words":["Ord"],"Content structure":["Innehållsstruktur"],"Public":["Offentlig"],"Protected with a password you choose. Only those with the password can view this post.":["Skyddad med ett lösenord du väljer. Endast de som har lösenordet kan se det här inlägget."],"Password Protected":["Lösenordsskyddat"],"Only visible to site admins and editors.":["Endast synlig för webbplatsadministratörer och redigerare."],"Private":["Privat"],"Visible to everyone.":["Synlig för alla."],"Post Visibility":["Inläggets synlighet"],"Would you like to privately publish this post now?":["Vill du publicera detta inlägg privat nu?"],"Use a secure password":["Använd ett säkert lösenord"],"Create password":["Skapa lösenord"],"Move to Trash":["Flytta till papperskorg"],"Parent Term":["Överordnad term"],"Parent Category":["Överordnad kategori"],"Add new term":["Lägg till ny term"],"Add new category":["Lägg till ny kategori"],"Term":["Term"],"Tag":["Etikett"],"Add new Term":["Lägg till ny term"],"Add new tag":["Lägg till en ny etikett"],"Switch to draft":["Byt till utkast"],"Are you sure you want to unpublish this post?":["Är du säker på att du vill avpublicera detta inlägg?"],"Immediately":["Genast"],"Save Draft":["Spara utkast"],"Saving":["Sparar"],"Publish:":["Publicera:"],"Visibility:":["Synlighet:"],"Are you ready to publish?":["Är du redo att publicera?"],"Copy Link":["Kopiera länk"],"What’s next?":["Vad kommer härnäst?"],"is now live.":["är nu live."],"Published":["Publicerat"],"Schedule":["Tidsinställ"],"Update":["Uppdatera"],"Submit for Review":["Skicka in för recension"],"Updating…":["Uppdaterar…"],"Publishing…":["Publicerar…"],"Allow pingbacks & trackbacks":["Tillåt pingbacks och trackbacks"],"Permalink:":["Permalänk:"],"Pending review":["Inväntar granskning"],"%d Revision":["%d version","%d versioner"],"Suggestion:":["Förslag:"],"Post Format":["Inläggsformat"],"Chat":["Chatt"],"Status":["Status"],"Standard":["Standard"],"Aside":["Notis"],"Featured image":["Utvald bild"],"Set featured image":["Ställ in utvald bild"],"Learn more about manual excerpts":["Lär dig mer om manuella utdrag"],"Write an excerpt (optional)":["Skriv ett utdrag (valfritt)"],"Allow comments":["Tillåt kommentarer"],"Template:":["Mall:"],"no parent":["ingen överordnad"],"no title":["ingen rubrik"],"Order":["Ordning"],"No blocks found.":["Inga block hittades."],"%d result found.":["%d resultat hittades.","%d resultat hittades."],"Saved":["Sparat"],"Embeds":["Inbäddningar"],"Blocks":["Block"],"Search for a block":["Sök efter ett block"],"Add block":["Lägg till block"],"Copy Error":["Kopieringsfel"],"Copy Post Text":["Kopiera inläggstext"],"Attempt Recovery":["Försök återställning"],"The editor has encountered an unexpected error.":["Redigeraren har stött på ett oväntat fel."],"Undo":["Ångra"],"Redo":["Gör om"],"(Multiple H1 headings are not recommended)":["(Flera H1-rubriker rekommenderas inte)"],"(Your theme may already use a H1 for the post title)":["(Ditt tema kan redan använda en H1 för inläggsrubriken)"],"(Incorrect heading level)":["(Felaktig rubriknivå)"],"(Empty heading)":["(Tom rubrik)"],"Block Styles":["Blockstilar"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Är du säker på att du vill ta bort detta återanvändbara block?\n\nDet kommer att tas bort permanent från alla inlägg och sidor som använder det."],"Convert to Regular Block":["Konvertera till vanlig block"],"More options":["Fler alternativ"],"Edit visually":["Redigera visuellt"],"Duplicate":["Duplicera"],"Blocks cannot be moved down as they are already at the bottom":["Block kan inte flyttas ner eftersom de redan är längst ner"],"Blocks cannot be moved up as they are already at the top":["Block kan inte flyttas upp eftersom de redan är högst upp"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Block %s är det enda blocket och kan inte flyttas"],"Edit as HTML":["Redigera som HTML"],"Convert to Blocks":["Konvertera till block"],"Block: %s":["Block: %s"],"This block has encountered an error and cannot be previewed.":["Detta block har stött på ett fel och kan inte förhandsgranskas."],"No block selected.":["Inga block valda."],"Transform into:":["Omvandla till:"],"Remove":["Ta bort"],"Find original":["Hitta original"],"Copy all content":["Kopiera allt innehåll"],"Copied!":["kopierad!"],"Additional settings are now available in the Editor block settings sidebar":["Ytterligare inställningar finns nu tillgängliga i Redigerarens sidopanelen med blockinställningar"],"Visibility":["Synlighet"],"Status & visibility":["Status och synlighet"],"Page attributes":["Sidattribut"],"Block":["Block"],"Document":["Dokument"],"Close settings":["Stäng inställningar"],"Editor content":["Innehållsredigerare"],"Tools":["Verktyg"],"Editor":["Redigerare"],"Code editor":["Kodredigerare"],"Visual editor":["Visuell redigerare"],"Editor top bar":["Redigerarens toppband"],"Settings":["Inställningar"],"Reset":["Återställ"],"Dismiss this notice":["Avfärda denna notis"],"Item removed.":["Objekt borttaget."],"Item added.":["Objekt tillagt."],"Drop files to upload":["Släpp filer för att ladda upp"],"PM":["e m"],"AM":["f m"],"An unknown error occurred.":["Ett okänt fel uppstod."],"No results.":["Inga resultat."],"%d result found, use up and down arrow keys to navigate.":["%d resultat hittades, använd upp och nedpilarna för att navigera.","%d resultat hittades, använd upp och nedpilarna för att navigera."],"(no title)":["(utan rubrik)"],"URL":["URL"],"Submit":["Skicka"],"Close":["Stäng"],"Insert link":["Infoga länk"],"Edit link":["Redigera länken"],"Link":["Länk"],"Strikethrough":["Genomstruken"],"Italic":["Kursiv"],"Bold":["Fet"],"Remove link":["Ta bort länk"],"Number of items":["Antal objekt"],"All":["Alla"],"Category":["Kategori"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Äldsta till nyaste"],"Newest to Oldest":["Nyaste till äldsta"],"Order by":["Sortera efter"],"Select":["Välj"],"Select or Upload Media":["Välj eller ladda upp media"],"Video":["Video"],"Write…":["Skriv…"],"poetry":["poesi"],"Verse":["Vers"],"New Column":["Ny kolumn"],"Delete Column":["Ta bort kolumn"],"Add Column After":["Lägg till kolumn efter"],"Add Column Before":["Lägg till kolumn före"],"Delete Row":["Ta bort rad"],"Add Row After":["Lägg till rad efter"],"Add Row Before":["Lägg till rad före"],"Edit table":["Redigera tabell"],"Table":["Tabell"],"Write subheading…":["Skriv underrubrik ..."],"Write shortcode here…":["Skriv kortkod här…"],"Shortcode":["Kortkod"],"divider":["avdelare"],"horizontal-line":["horisontell-linje"],"Separator":["Avgränsare"],"Quote":["Citat"],"Write citation…":["Skriv citat..."],"Write quote…":["Skriv in citat..."],"Pullquote":["Markerat citat"],"Write preformatted text…":["Skriv förformaterad text…"],"Preformatted":["Förformaterad"],"text":["text"],"Paragraph":["Stycke"],"Font Size":["Textstorlek"],"Drop Cap":["Anfang"],"Text settings":["Textinställningar"],"Read more":["Läs mer"],"Write list…":["Skriv lista…"],"numbered list":["numrerad lista"],"ordered list":["numrerad lista"],"bullet list":["punktlista"],"Indent list item":["Sänk listobjektet en nivå"],"Outdent list item":["Lyft listobjektet en nivå"],"Convert to ordered list":["Konvertera till numrerad lista"],"Convert to unordered list":["Konvertera till punktlista"],"List":["Lista"],"recent posts":["senaste inlägget"],"No posts found.":["Hittade inga inlägg."],"Latest Posts":["Senaste inläggen"],"Display post date":["Visa inläggsdatum"],"Grid view":["Rutnätsvy"],"List view":["Listvy"],"photo":["foto"],"Image settings":["Bildinställningar"],"Image":["Bild"],"Preview":["Förhandsgranska"],"embed":["bädda in"],"Custom HTML":["Anpassad HTML"],"subtitle":["underrubrik"],"title":["rubrik"],"Heading":["Rubrik"],"Write heading…":["Skriv rubrik…"],"Heading %d":["Rubriknivå %d"],"Level":["Nivå"],"Heading settings":["Rubrikinställningar"],"photos":["foton"],"images":["bilder"],"None":["Inget"],"Media File":["Mediafil"],"Attachment Page":["Sida för bilaga"],"Link to ":["Länk till "],"Crop Images":["Beskär bilder"],"Gallery settings":["Galleriinställningar"],"Gallery":["Galleri"],"Classic":["Klassisk"],"video":["video"],"audio":["ljud"],"music":["musik"],"image":["bild"],"blog":["blogg"],"post":["inlägg"],"Embedded content from %s":["Inbäddat innehåll från %s"],"Enter URL to embed here…":["Ange URL att bädda in här…"],"%s URL":["%s URL"],"Embedding…":["Bäddar in…"],"Write title…":["Skriv rubrik…"],"Fixed Background":["Fixerad bakgrund"],"Edit image":["Redigera bild"],"Columns":["Kolumner"],"Experiments":["Experiment"],"Code":["Kod"],"Write code…":["Skriv kod…"],"Categories":["Kategorier"],"Show Hierarchy":["Visa hierarki"],"Show post counts":["Visa antal inlägg"],"Categories settings":["Kategoriinställningar"],"Add text…":["Lägg till text…"],"Button":["Knapp"],"Apply":["Verkställ"],"Text Color":["Textfärg"],"Background Color":["Färg för bakgrund"],"Block has been deleted or is unavailable.":["Block har tagits bort eller är inte tillgängligt."],"Reusable blocks":["Återanvändbara block"],"Cancel":["Avbryt"],"Edit":["Redigera"],"Write caption…":["Skriv bildtext…"],"Use URL":["Använd URL"],"Audio":["Ljud"],"Upload":["Ladda upp"],"Additional CSS Class(es)":["Ytterligare CSS-klass(er)"],"HTML Anchor":["HTML-ankare"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Denna färgkombination kan vara svår för människor att läsa. Försök använda en ljusare bakgrundsfärg och/eller en mörkare textfärg."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Denna färgkombination kan vara svår för människor att läsa. Försök använda en mörkare bakgrundsfärg och/eller en ljusare textfärg."],"Clear":["Rensa"],"Custom color picker":["Anpassad färgväljare"],"Color: %s":["Färg: %s"],"Full width":["Full bredd"],"Wide width":["Bred bredd"],"Widgets":["Widgetar"],"Formatting":["Formatering"],"Common blocks":["Vanliga block"],"Align right":["Högerställ"],"Align center":["Justera centrerat"],"Align left":["Vänsterställ"],"Printing since 1440. This is the development plugin for the new block editor in core.":["Trycker sedan 1440. Detta är utvecklingstillägget för den nya blockredigeraren i kärnan."],"Add title":["Lägg till rubrik"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenbergs utvecklingsläge kräver att filer byggs. Kör npm install
för att installera beroenden, npm run build
för att bygga filerna eller npm run dev
för att bygga filerna och granska efter ändringar. Läs filen contributing för mer information."],"Author":["Författare"],"Slug":["Permalänk"],"Discussion":["Diskussion"],"Custom fields":["Anpassade fält"],"Excerpt":["Utdrag"],"Publish":["Publicera"],"Metadata":["Metadata"],"Save":["Spara"],"Documentation":["Dokumentation"],"Select Category":["Välj kategori"],"(Untitled)":["(Utan titel)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg kräver WordPress %s eller senare för att fungera korrekt. Uppdatera WordPress innan du aktiverar Gutenberg."],"Gutenberg Team":["Gutenberg teamet"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s sedan"],"Block style name must be a string.":["Namn på blocktyper måste bestå av strängar."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_th.json b/bundle/android/raw/i18ncache_data_th.json
new file mode 100644
index 0000000000..affbb20948
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_th.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":[],"button label\u0004Convert to link":[],"button label\u0004Try again":[],"Editor tips":[],"Block (selected)":[],"Document (selected)":[],"%d word":["%d คำ"],"Top toolbar":[],"Link Rel":[],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":[],"To edit the featured image, you need permission to upload media.":["ในการแก้ไขภาพหน้าปก คุณจำเป็นต้องมีสิทธิ์ในการอัพโหลดไฟล์สื่อ"],"To edit this block, you need permission to upload media.":["ในการแก้ไขบล็อกนี้ คุณจำเป็นต้องมีสิทธิ์ในการอัพโหลดไฟล์สื่อ"],"(selected block)":["(บล็อกที่ถูกเลือก)"],"Block tools":["เครื่องมือบล็อก"],"Permalink":["ลิงก์ถาวร"],"This image has an empty alt attribute":["ภาพนี้ไม่ได้ระบุแอตทริบิวต์ alt"],"This image has an empty alt attribute; its file name is %s":["ภาพนี้ไม่ได้ระบุแอตทริบิวต์ alt, ชื่อไฟล์ของไฟล์นี้คือ %s"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":[],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":[],"%s block selected.":[],"Thumbnail":[],"Full Size":[],"Link selected.":[],"Start writing with text or HTML":[],"Type text or HTML":[],"Block icon":[],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":[],"Empty block; start writing or type forward slash to choose a block":[],"Paragraph block":[],"Page Break":[],"Stack on mobile":[],"Annotation":[],"Drag images, upload new ones or select files from your library.":[],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":[],"font size name\u0004Huge":[],"font size name\u0004Large":[],"font size name\u0004Medium":[],"font size name\u0004Small":[],"font size name\u0004Normal":[],"keyboard button\u0004Enter":[],"button label\u0004Import":[],"button label\u0004Download":[],"button label\u0004Embed":[],"block title\u0004Embed":[],"block title\u0004Classic":[],"block style\u0004Large":[],"block style\u0004Rounded":[],"%s (opens in a new tab)":[],"Link edited.":[],"Link removed.":[],"media":[],"Double-check your settings before publishing.":[],"Generating preview…":[],"Edit or update the image":[],"Media":[],"Navigate to the nearest toolbar.":[],"Document tools":[],"Document and block tools":[],"Embed a video from your media library or upload a new one.":[],"Insert poetry. Use special spacing formats. Or quote song lyrics.":[],"Add white space between blocks and customize its height.":[],"Insert additional custom elements with a WordPress shortcode.":[],"Create a break between ideas or sections with a horizontal separator.":[],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":[],"Give special visual emphasis to a quote from your text.":[],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":[],"Set media and words side-by-side for a richer layout.":[],"Media & Text settings":[],"Create a bulleted or numbered list.":[],"Display a list of your most recent comments.":[],"Insert an image to make a visual statement.":[],"Add custom HTML code and preview it as you edit.":[],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":[],"Display multiple images in a rich gallery.":[],"Add a link to a downloadable file.":[],"Embed videos, images, tweets, audio, and other content from external sources.":[],"Resize for smaller devices":[],"This embed may not preserve its aspect ratio when the browser is resized.":[],"This embed will preserve its aspect ratio when the browser is resized.":[],"Embed an Animoto video.":[],"Embed a Vimeo video.":[],"Embed Flickr content.":[],"Embed Spotify content.":[],"Embed SoundCloud content.":[],"Embed a WordPress post.":[],"Embed an Instagram post.":[],"Embed a Facebook post.":[],"Embed a WordPress.tv video.":[],"Embed a VideoPress video.":[],"Embed a Tumblr post.":[],"Embed a TED video.":[],"Embed Speaker Deck content.":[],"Embed a YouTube video.":[],"Embed SmugMug content.":[],"Embed Slideshare content.":[],"Embed Scribd content.":[],"Embed Screencast content.":[],"Embed ReverbNation content.":[],"Embed a Reddit thread.":[],"Embed Polldaddy content.":[],"Embed Mixcloud content.":[],"Embed a tweet.":[],"Embed Meetup.com content.":[],"Embed Kickstarter content.":[],"Embed Issuu content.":[],"Embed Imgur content.":[],"Embed Hulu content.":[],"Embed a Dailymotion video.":[],"Embed CollegeHumor content.":[],"Embed Cloudup content.":[],"Add an image or video with a text overlay — great for headers.":[],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":[],"Display a list of all categories.":[],"Embed a simple audio player.":[],"noun\u0004View":[],"editor button\u0004Left to right":[],"Save as Pending":[],"%s address":[],"Paste or type URL":[],"Insert from URL":[],"Block Navigator":[],"Styles":[],"Advanced panels":[],"Document panels":[],"General":[],"Open the block navigation menu.":[],"Work without distraction":[],"Focus on one block at a time":[],"Access all block and document tools in a single place":[],"Options":[],"(opens in a new tab)":[],"Minutes":[],"Hours":[],"Time":[],"Year":[],"Day":[],"December":[],"November":[],"October":[],"September":[],"August":[],"July":[],"June":[],"May":[],"April":[],"March":[],"February":[],"January":[],"Month":[],"Date":[],"Go to the first (home) or last (end) day of a week.":[],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":[],"PgUp/PgDn":[],"Page Up and Page Down":[],"Move backward (up) or forward (down) by one week.":[],"Up and Down Arrows":[],"Move backward (left) or forward (right) by one day.":[],"Left and Right Arrows":[],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":[],"Click to Select":[],"Calendar Help":[],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":[],"Change color format":[],"Color value in HSL":[],"Color value in RGB":[],"Color value in hexadecimal":[],"RGB mode active":[],"Hex color mode active":[],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":[],"Cover":[],"Border settings":[],"Medium":[],"Paste URL or type to search":[],"Terms":[],"Your work will be published at the specified date and time.":[],"Are you ready to schedule?":[],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":[],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":[],"This block can only be used once.":[],"Exit Code Editor":[],"Editing Code":[],"Solid Color":[],"Main Color":[],"HTML":[],"Write HTML…":[],"Media settings":[],"Overlay":[],"Insert Media":[],"Reusable block imported successfully!":["นำเข้าบล็อกใช้ซ้ำสำเร็จ!"],"Invalid Reusable Block JSON file":["ไฟล์ JSON สำหรับบล็อกใช้ซ้ำไม่ถูกต้อง"],"Invalid JSON file":["ไฟล์ JSON ไม่ถูกต้อง"],"Import from JSON":["นำเข้าจากไฟล์ JSON"],"Backtick":["เกรฟ (`)"],"Period":["จุด (.)"],"Comma":["คอมม่า (,)"],"Change type of %d block":["เปลี่ยนประเภทบล็อกทั้ง %d บล็อก"],"Current":["ปัจจุบัน"],"After Conversion":["หลังการแปลง"],"Change alignment":[],"Change text alignment":[],"%d block":["%d บล็อก"],"Forward-slash":[],"No archives to show.":[],"This file is empty.":["ไฟล์นี้เป็นไฟล์เปล่า"],"Sorry, this file type is not supported here.":["ขออภัย, ไฟล์ดังกล่าวไม่ใช่รูปแบบที่รองรับ"],"Manage all reusable blocks":[],"Title":["หัวข้อ"],"Fullscreen mode":[],"Beautiful landscape":[],"Close panel":["ปิดแถบ"],"Convert to Classic Block":["แปลงเป็นบล็อกแก้ไขแบบเดิม"],"Remove Poster Image":["นำภาพตัวอย่างออก"],"Select Poster Image":["เลือกภาพตัวอย่าง"],"Poster Image":["ภาพตัวอย่าง"],"This block is deprecated. Please use the Columns block instead.":["บล็อกนี้ถูกเลิกใช้แล้ว กรุณาใช้บล็อกคอลัมน์แทน"],"Text Columns (deprecated)":["บล็อกข้อความ (เลิกใช้แล้ว)"],"Create":["สร้าง"],"Row Count":["จำนวนแถว"],"Column Count":["จำนวนคอลัมน์"],"This block is deprecated. Please use the Paragraph block instead.":["บล็อกนี้ถูกเลิกใช้แล้ว กรุณาใช้บล็อกย่อหน้าแทน"],"Subheading (deprecated)":["หัวข้อย่อย (เลิกใช้แล้ว)"],"blockquote":["อ้างอิงข้อความ"],"Change the block type after adding a new paragraph.":["เปลี่ยนประเภทบล็อกหลังจากขึ้นย่อหน้าใหม่"],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":[],"Add tags":["เพิ่มป้ายกำกับ"],"Apply the \"%1$s\" format.":[],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":[],"Use a post format":[],"Insert After":["แทรกต่อท้าย"],"Insert Before":["แทรกก่อนหน้า"],"Move %1$d block from position %2$d down by one place":[],"Move %1$d block from position %2$d up by one place":[],"Move %1$s block from position %2$d right to position %3$d":[],"movie":[],"Insert a new block before the selected block(s).":["แทรกบล็อกใหม่ก่อนหน้าบล็อกที่เลือก"],"Remove the selected block(s).":["นำบล็อกที่เลือกออก"],"Duplicate the selected block(s).":["ทำสำเนาบล็อกที่เลือก"],"Block shortcuts":[],"Clear selection.":["ล้างค่าที่เลือก"],"Select all text when typing. Press again to select all blocks.":[],"Selection shortcuts":[],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":[],"Navigate to the next part of the editor.":[],"Show or hide the settings sidebar.":[],"Redo your last undo.":[],"Undo your last changes.":[],"Save your changes.":[],"Global shortcuts":[],"Remove a link.":[],"Convert the selected text into a link.":[],"Underline the selected text.":[],"Make the selected text italic.":[],"Make the selected text bold.":[],"Text formatting":[],"Insert a new block after the selected block(s).":[],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":[],"Help build Gutenberg":[],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":[],"Code is Poetry":[],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":[],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":[],"And Lists like this one of course :)":[],"Layout blocks, like Buttons, Hero Images, Separators, etc.":[],"Embeds, like YouTube, Tweets, or other WordPress posts.":[],"Galleries":[],"Images & Videos":[],"Text & Headings":[],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":[],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":[],"block name\u0004More":[],"button to expand options\u0004More":[],"Are you sure you want to unschedule this post?":[],"Alt Text (Alternative Text)":[],"Reusable Block":[],"Unique identifier for the object.":["ตัวระบุเฉพาะของออพเจ็กท์"],"Untitled Reusable Block":["บล็อกไม่มีชื่อที่ใช้ซ้ำได้"],"Small":[],"Reusable":["ใช้ซ้ำได้"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["บันทึกเป็น HTML"],"Edit URL":["แก้ไข URL"],"Color settings":[],"The response is not a valid JSON response.":["ผลลัพธ์ไม่ใช่รูปแบบ JSON ที่ถูกต้อง"],"Editor publish":[],"Muted":["ปิดเสียงแล้ว"],"Video settings":[],"recent comments":["ความเห็นเมื่อเร็วๆ นี้"],"Latest Comments":["ความเห็นล่าสุด"],"Display Excerpt":["แสดงส่วนเกริ่นนำ"],"Display Date":["แสดงวันที่"],"Display Avatar":["แสดงภาพแทนตัว"],"Latest comments settings":[],"Number of Comments":["จำนวนความเห็น"],"Background Opacity":["ความทึบแสงของพื้นหลัง"],"Auto":["อัตโนมัติ"],"Preload":["โหลดล่วงหน้า"],"Audio settings":[],"Display a monthly archive of your posts.":["แสดงคลังเก็บรายเดือนสำหรับโพสต์บนเว็บไซต์"],"Display as Dropdown":["แสดงเป็นดร็อปดาวน์"],"Show Post Counts":["แสดงตัวนับโพสต์"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["การสนับสนุน"],"No comments to show.":["ไม่มีความเห็นแสดง"],"%1$s on %2$s":[],"Select Post":["เลือกโพสต์"],"Select Week":["เลือกสัปดาห์"],"Select Day":["เลือกวัน"],"Select Month":["เลือกเดือน"],"Select Year":["เลือกปี"],"Archives":["คลังเก็บ"],"Very dark gray":["สีเทาเข้มมาก"],"Cyan bluish gray":["สีเทาอมน้ำเงินเขียว"],"Very light gray":["สีเทาอ่อนมาก"],"Vivid cyan blue":["สีฟ้าอมน้ำเงินเขียวสด"],"Pale cyan blue":[],"Vivid green cyan":[],"Light green cyan":[],"Luminous vivid amber":[],"Luminous vivid orange":[],"Vivid red":[],"Pale pink":[],"Inline image":[],"Available block types":["ประเภทบล็อกที่ใช้ได้"],"Transform To:":["เปลี่ยนเป็น:"],"Remove Block":["ลบบล็อก"],"Open publish panel":["เปิดแถบการเผยแพร่"],"Dots":["จุด"],"Wide Line":["เส้นยาว"],"Large":["ขนาดใหญ่"],"Show download button":[],"Download button settings":[],"Link To":["ลิงก์ไปยัง"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["เอกสาร"],"Copy URL":["คัดลอก URL"],"Write file name…":["เขียนชื่อไฟล์"],"File":["ไฟล์"],"A single column within a columns block.":["คอลัมน์เดี่ยวในบล็อกคอลัมน์"],"Column":["คอลัมน์"],"Outline":[],"Loop":["เล่นซ้ำ"],"Autoplay":["เล่นอัตโนมัติ"],"Playback Controls":["ตัวควบคุมการเล่น"],"Close dialog":["ปิดหน้าต่าง"],"Sorry, this file type is not permitted for security reasons.":["ขออภัย, ไม่อนุญาตไฟล์ประเภทนี้ด้วยเหตุผลด้านความปลอดภัย"],"Disable tips":["ปิดทิปส์"],"Got it":["รับทราบ"],"See next tip":["ดูทิปถัดไป"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["เมื่อคุณพร้อมแล้ว ให้ส่งผลงานของคุณเพื่อตรวจสอบได้แล้ว แล้ว Editor จะเข้ามาตรวงสอบและเผยแพร่บทความให้คุณเอง"],"Are you ready to submit for review?":["คุณพร้อมที่จะส่งเนื้อหาเพื่อตรวจสอบแล้วใช่ไหม?"],"Replace image":["แทนที่รูปภาพ"],"Remove image":["นำรูปภาพออก"],"Error while uploading file %s to the media library.":[],"This file exceeds the maximum upload size for this site.":["%s มีขนาดเกินกว่าขนาดสูงสุดที่อัพโหลดได้ของเว็บนี้"],"View the autosave":["ดูบันทึกอัตโนมัติ"],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":["กำลังบันทึกอัตโนมัติ"],"Enter URL here…":[],"Pin to toolbar":[],"Unpin from toolbar":[],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":[],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":[],"Unknown error":[],"Embed Handler":[],"term\u0004Remove %s":[],"Copy the permalink":[],"Permalink copied":[],"Height in pixels":[],"Spacer settings":[],"Spacer":[],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":[],"%1$s (%2$s of %3$s)":[],"Remove item":[],"Color code: %s":[],"Skip to the selected block":[],"Publish…":[],"Schedule…":[],"Edit post permalink":[],"Show Block Settings":[],"Hide Block Settings":[],"Block settings closed":[],"Close plugin":[],"Editor settings":[],"Link settings":[],"Unlink":[],"Page break":[],"pagination":[],"next page":[],"Image Size":[],"Height":[],"Width":[],"Image Dimensions":[],"Thumbnails are not cropped.":[],"Thumbnails are cropped to align.":[],"Media Library":[],"Advanced":[],"Add item":[],"Reset the template":[],"Keep it as is":[],"The content of your post doesn’t match the template assigned to your post type.":[],"Resetting the template may result in loss of content, do you want to continue?":[],"Document Statistics":[],"is now scheduled. It will go live on":[],"Scheduled":[],"Scheduling…":[],"Code editor selected":[],"Visual editor selected":[],"Plugins":["ปลั๊กอิน"],"Custom Size":["ขนาดที่กำหนดเอง"],"Layout elements":[],"term\u0004%s removed":["%s ถูกนำออกแล้ว"],"term\u0004%s added":["%s ถูกเพิ่มแล้ว"],"imperative verb\u0004Preview":["แสดงตัวอย่าง"],"Block deleted.":["บล็อกถูกลบแล้ว"],"Block updated.":["อัพเดทบล็อกแล้ว"],"Block created.":["สร้างบล็อกแล้ว"],"Trashing failed":[],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["คุณมีเนื้อหาที่ยังไม่ได้บันทึก ซึ่งเนื้อหานี้จะหายไปหากคุณดำเนินการต่อ"],"Document Outline":["เค้าโครงเอกสาร"],"Paragraphs":["ย่อหน้า"],"Headings":["หัวข้อ"],"Words":["คำ"],"Content structure":["โครงสร้างเนื้อหา"],"Public":["สาธารณะ"],"Protected with a password you choose. Only those with the password can view this post.":["ปกป้องโพสต์ด้วยรหัสผ่านที่คุณตั้ง และเฉพาะผู้ที่รู้รหัสผ่านเท่านั้นจึงจะอ่านโพสต์นี้ได้"],"Password Protected":["ถูกปกป้องด้วยรหัสผ่าน"],"Only visible to site admins and editors.":["เห็นเฉพาะผู้ควบคุมและบรรณาธิการของเว็บเท่านั้น"],"Private":["ส่วนตัว"],"Visible to everyone.":["ทุกคนมองเห็นได้"],"Post Visibility":["การมองเห็นของโพสต์"],"Would you like to privately publish this post now?":["คุณต้องการเผยแพร่โพสต์นี้แบบส่วนตัวเดี๋ยวนี้หรือไม่?"],"Use a secure password":["ใช้รหัสผ่านที่ปลอดภัย"],"Create password":["สร้างรหัสผ่าน"],"Move to Trash":[],"Parent Term":[],"Parent Category":[],"Add new term":["เพิ่มป้ายคำใหม่"],"Add new category":["เพิ่มหมวดหมู่ใหม่"],"Term":["ป้ายคำ"],"Tag":["แท็ก"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["คุณต้องการยกเลิกการเผยแพร่โพสต์นี้ใช่หรือไม่?"],"Immediately":["เดี๋ยวนี้"],"Save Draft":["บันทึกแบบร่าง"],"Saving":["กำลังบันทึก"],"Publish:":["เผยแพร่:"],"Visibility:":["การมองเห็น:"],"Are you ready to publish?":["คุณพร้อมที่จะเผยแพร่แล้วหรือไม่?"],"Copy Link":["คัดลอกลิงก์"],"What’s next?":["อะไรต่อ?"],"is now live.":[],"Published":["เผยแพร่แล้ว"],"Schedule":["ตั้งเวลา"],"Update":["อัปเดท"],"Submit for Review":["ส่งให้ตรวจสอบ"],"Updating…":["กำลังอัปเดท..."],"Publishing…":["กำลังเผยแพร่..."],"Allow pingbacks & trackbacks":[],"Permalink:":["ลิงก์ถาวร:"],"Pending review":[],"%d Revision":["%d ประวัติการแก้ไข"],"Suggestion:":["คำแนะนำ:"],"Post Format":["รูปแบบโพสต์"],"Chat":["แชท"],"Status":["สถานะ"],"Standard":["ปกติ"],"Aside":["ด้านข้าง"],"Featured image":[],"Set featured image":[],"Learn more about manual excerpts":["อ่านเพิ่มเติมเกี่ยวกับการกรอกข้อความเกริ่นนำเอง"],"Write an excerpt (optional)":["เขียนข้อความเกริ่นนำ (ไม่บังคับ)"],"Allow comments":[],"Template:":["เท็มเพลต:"],"no parent":[],"no title":["ไม่มีชื่อ"],"Order":["เรียงลำดับ"],"No blocks found.":["ไม่พบบล็อก"],"%d result found.":[],"Saved":["บันทึกแล้ว"],"Embeds":[],"Blocks":["บล็อก"],"Search for a block":["ค้นหาบล็อก"],"Add block":["เพิ่มบล็อก"],"Copy Error":[],"Copy Post Text":[],"Attempt Recovery":[],"The editor has encountered an unexpected error.":[],"Undo":["เลิกทำ"],"Redo":["ทำซ้ำ"],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":[],"(Incorrect heading level)":[],"(Empty heading)":[],"Block Styles":["รูปแบบบล็อก"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":["เปลี่ยนเป็นบล็อกทั่วไป"],"More options":["ตัวเลือกเพิ่มเติม"],"Edit visually":[],"Duplicate":[],"Blocks cannot be moved down as they are already at the bottom":[],"Blocks cannot be moved up as they are already at the top":[],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":["แก้โค้ด HTML"],"Convert to Blocks":["แปลงเป็นบล็อก"],"Block: %s":["บล็อก: %s"],"This block has encountered an error and cannot be previewed.":[],"No block selected.":["ไม่มีบล็อกถูกเลือก"],"Transform into:":[],"Remove":[],"Find original":[],"Copy all content":[],"Copied!":["คัดลอกแล้ว!"],"Additional settings are now available in the Editor block settings sidebar":[],"Visibility":[],"Status & visibility":[],"Page attributes":[],"Block":["บล็อก"],"Document":["เอกสาร"],"Close settings":["ปิดการตั้งค่า"],"Editor content":["เนื้อหาในตัวแก้ไข"],"Tools":["เครื่องมือ"],"Editor":["ตัวแก้ไข"],"Code editor":[],"Visual editor":[],"Editor top bar":["แถบด้านบนของตัวแก้ไข"],"Settings":["ตั้งค่า"],"Reset":["คืนค่า"],"Dismiss this notice":["ปิดการแจ้งเตือนนี้"],"Item removed.":["ลบรายการแล้ว"],"Item added.":["เพิ่มรายการแล้ว"],"Drop files to upload":["ปล่อยไฟล์ลงเพื่ออัปโหลด"],"PM":[],"AM":[],"An unknown error occurred.":["ข้อผิดพลาดที่ไม่ทราบสาเหตุ"],"No results.":["ไม่มีผลลัพธ์"],"%d result found, use up and down arrow keys to navigate.":["พบ %d ผลลัพธ์, ใช้ปุ่มลูกศรขึ้นลงเพื่อเลื่อน"],"(no title)":["(ไม่มีชื่อ)"],"URL":["URL"],"Submit":["ส่ง"],"Close":["ปิด"],"Insert link":[],"Edit link":[],"Link":["ลิงก์"],"Strikethrough":["เส้นขีดฆ่า"],"Italic":["ตัวเอียง"],"Bold":[],"Remove link":[],"Number of items":[],"All":["ทั้งหมด"],"Category":["หมวดหมู่"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["เก่าสุดไปใหม่สุด"],"Newest to Oldest":["ใหม่สุดไปเก่าสุด"],"Order by":["เรียงลำดับโดย"],"Select":["เลือก"],"Select or Upload Media":["เลือกหรืออัพโหลดไฟล์สื่อ"],"Video":["วิดีโอ"],"Write…":["เขียน"],"poetry":[],"Verse":[],"New Column":["คอลัมน์ใหม่"],"Delete Column":["ลบคอลัมน์"],"Add Column After":["เพิ่มคอลัมน์ต่อท้าย"],"Add Column Before":["เพิ่มคอลัมน์ก่อนหน้า"],"Delete Row":["ลบแถว"],"Add Row After":["เพิ่มแถวก่อนหน้า"],"Add Row Before":["เพิ่มแถวต่อท้าย"],"Edit table":[],"Table":["ตาราง"],"Write subheading…":[],"Write shortcode here…":[],"Shortcode":[],"divider":["ตัวคั่น"],"horizontal-line":["เส้นแนวนอน"],"Separator":["ตัวแบ่ง"],"Quote":["อ้างอิงคำพูด"],"Write citation…":[],"Write quote…":[],"Pullquote":[],"Write preformatted text…":[],"Preformatted":[],"text":["ข้อความ"],"Paragraph":["ย่อหน้า"],"Font Size":["ขนาดฟอนต์"],"Drop Cap":["ตัวอักษรแรกขนาดใหญ่"],"Text settings":[],"Read more":["อ่านเพิ่ม"],"Write list…":["เขียนรายการ"],"numbered list":["รายการแบบตัวเลข"],"ordered list":["รายการแบบเรียงลำดับ"],"bullet list":["รายการแบบไม่เรียงลำดับ"],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":["แปลงเป็นรายการแบบเรียงลำดับ"],"Convert to unordered list":["แปลงเป็นรายการแบบไม่เรียงลำดับ"],"List":["รายการ"],"recent posts":["โพสต์เมื่อเร็วๆ นี้"],"No posts found.":["ไม่พบโพสต์"],"Latest Posts":["โพสต์ล่าสุด"],"Display post date":["แสดงวันที่ของโพสต์"],"Grid view":[],"List view":[],"photo":["รูปถ่าย"],"Image settings":[],"Image":["รูปภาพ"],"Preview":["แสดงตัวอย่าง"],"embed":[],"Custom HTML":["HTML ที่กำหนดเอง"],"subtitle":[],"title":[],"Heading":["หัวข้อ"],"Write heading…":["เขียนหัวข้อ..."],"Heading %d":["หัวข้อระดับ %d"],"Level":["ระดับ"],"Heading settings":[],"photos":["รูปถ่าย"],"images":["รูปภาพ"],"None":["ไม่มี"],"Media File":["ไฟล์สื่อ"],"Attachment Page":["หน้าของไฟล์แนบ"],"Link to ":[],"Crop Images":["ตัดภาพ"],"Gallery settings":[],"Gallery":["แกลลอรี่"],"Classic":[],"video":["วิดีโอ"],"audio":["เสียง"],"music":["เพลง"],"image":["รูปภาพ"],"blog":["บล็อก"],"post":["โพสต์"],"Embedded content from %s":[],"Enter URL to embed here…":[],"%s URL":["URL ของ %s"],"Embedding…":["กำลังแทรก..."],"Write title…":["เขียนหัวข้อ..."],"Fixed Background":["ตรึงพื้นหลัง"],"Edit image":["แก้ไขรูปภาพ"],"Columns":["คอลัมน์"],"Experiments":[],"Code":["โค้ด"],"Write code…":["เขียนโค้ด..."],"Categories":["หมวดหมู่"],"Show Hierarchy":["แสดงลำดับชั้น"],"Show post counts":[],"Categories settings":[],"Add text…":["เพิ่มข้อความ..."],"Button":["ปุ่ม"],"Apply":["ใช้งาน"],"Text Color":["สีข้อความ"],"Background Color":["สีพื้นหลัง"],"Block has been deleted or is unavailable.":["บล็อกถูกลบหรือไม่สามารถใช้ได้"],"Reusable blocks":[],"Cancel":[],"Edit":["แก้ไข"],"Write caption…":["เขียนคำบรรยาย"],"Use URL":[],"Audio":["เสียง"],"Upload":["อัปโหลด"],"Additional CSS Class(es)":[],"HTML Anchor":["หมุด HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":[],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":[],"Clear":["ล้างค่า"],"Custom color picker":["ตัวเลือกสี"],"Color: %s":["สี: %s"],"Full width":[],"Wide width":[],"Widgets":["วิดเจ็ต"],"Formatting":["การจัดรูปแบบ"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":[],"Add title":["เพิ่มหัวข้อ"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["ผู้เขียน"],"Slug":["สลัก"],"Discussion":["การสนทนา"],"Custom fields":[],"Excerpt":["เกริ่นนำ"],"Publish":["เผยแพร่"],"Metadata":[],"Save":["บันทึก"],"Documentation":["เอกสารคู่มือ"],"Select Category":["เลือกหมวดหมู่"],"(Untitled)":["(ไม่มีชื่อ)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["ทีมกูเทนเบิร์ก"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["กูเทนเบิร์ก"],"Demo":["ตัวอย่าง"],"%s ago":["เมื่อ %s ก่อน"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_tr.json b/bundle/android/raw/i18ncache_data_tr.json
new file mode 100644
index 0000000000..238496216d
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_tr.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["En üst seviye öğeler için alt menü simgesi göster"],"Display settings":["Görünüm ayarları"],"Choose variation":["Varyasyon seçin"],"Angle":["Açı"],"%s Block":["%s bloğu"],"%1$s Block. %2$s":["%1$s bloğu. %2$s"],"%s Block. Column %d":["%s bloğu. %d sütunu"],"%1$s Block. Column %2$d. %3$s":["%1$s bloğu. %2$d sütunu. %3$s"],"%s Block. Row %d":["%s bloğu. %d satırı"],"%1$s Block. Row %2$d. %3$s":["%1$s bloğu. %2$d satırı. %3$s"],"Post Excerpt":["Yazı alıntısı"],"Post Date":["Yazı tarihi"],"No Date":["Tarih yok"],"Post Author":["Yazının yazarı"],"Choose":["Seç"],"twentytwenty":["twentytwenty"],"Theme":["Tema"],"Choose a template part by slug and theme, or create a new one.":["Kısa isim ve temaya göre bir şablon parçası seçin veya yeni bir parça oluşturun."],"Error adding template.":["Şablon eklenirken hata"],"Footer label":["Alt kısım etiketi"],"Header label":["Üst kısım etiketi"],"Unsupported":["Desteklenmeyen"],"The description will be displayed in the menu if the current theme supports it.":["Geçerli tema destekliyorsa, açıklama menüde yer alacaktır."],"Level %1$s. %2$s":["Seviye %1$s. %2$s"],"Level %s. Empty.":["Seviye %s. Boş."],"Empty":["Boş"],"Search results for %s":["%s için arama sonuçları"],"Recently updated":["Yeni güncellenenler"],"Multiple selected blocks":["Çoklu seçilen bloklar"],"By %s":["%s tarafından"],"Inspector":["Denetçi"],"Site editor advanced settings.":["Site editörü gelişmiş ayarları"],"(beta)":["(beta)"],"Site Editor":["Site editorü"],"Site editor top bar.":["Site editörü üst çubuğu."],"Briefly describe the link to help screen reader users.":["Ekran okuyucu kullanıcılarına yardımcı olmak için bağlantıyı kısaca açıklayın."],"Link Label":["Bağlantı etiketi"],"%s label":["%s etiketi"],"poem":["şiir"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MİNYATÜR)\nŞatodaki tek aydınlık pencerenin omuz çekimi girer.\nVakit gecedir. Kamera dikey çevrinmeyle önde gördüğümüz parmaklıklar boyunca ileriler. Parmaklıkların ötesinde sis ve loşlukla karşışmış ancak belli belirsiz esrarengiz biçimler seçilmektedir."],"Full Post":["Gönderinin tamamı"],"Show:":["Göster:"],"Create from all top-level pages":["Tüm üst sayfalardan oluştur"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"Prompt visitors to take action with a group of button-style links.":["Düğme tarzı bağlantılarla ziyaretçilerden harekete geçmelerini isteyin."],"Buttons":["Düğmeler"],"Background":["Arka plan"],"Background & Text Color":["Arka plan ve metin rengi"],"Images Size":["Görsel boyutu"],"Remove multiple selected blocks.":["Seçilen birden fazla bloğu kaldırın."],"(%s: gradient %s)":["(%s: degrade %s)"],"(%s: color %s)":["(%s: renk %s)"],"(Gradient: %s)":["(Degrade: %s)"],"(Color: %s)":["(Renk: %s)"],"Here's a detailed guide.":["İşte ayrıntılı bir rehber."],"New to the Block Editor? Want to learn more about using it? ":["Blok düzenleyicide yeni misiniz? Kullanımı hakkında daha fazla bilgi edinmek ister misiniz?"],"Learn how to use the Block Editor":["Blok düzenleyiciyi nasıl kullanacağınızı öğrenin"],"Help":["Yardım"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["%s block simgesi"],"Submit for Review…":["İnceleme için gönder..."],"Update…":["Güncelle..."],"Select items to save.":["Kaydedilecek öğeleri seçin."],"What do you want to save?":["Ne kaydetmek istiyorsunuz?"],"Untitled":["Başlıksız"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["Blok düzenleyici, geliştirme aşamasında kullanılabilen deneysel özellikler içerir. Etkinleştirmek istediklerinizi seçin. Bu özelliklerin değişmesi muhtemeldir, bu yüzden bunları gerçek sitede kullanmaktan kaçının."],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["Tam site düzenlemeyi etkinleştir (Uyarı: bu temanızı değiştirecek ve sitenizde büyük ihtimal geri döndürülemeyecek değişikliklere neden olacaktır. Sadece geliştirme ortamında kullanılmasını öneririz.)"],"Site Editor (beta)":["Site editörü (beta)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["// \"Blok\", birlikte oluşturulduğunda \n// bir sayfanın içeriğini veya düzenini oluşturan \n// biçimlendirme birimlerini tanımlamak için\n// kullanılan soyut terimdir.\nregisterBlockType (ad, ayarlar);"],"You are probably offline.":["Muhtemelen çevrimdışısınız."],"Justify items right":["Öğeleri sağa hizala"],"Justify items center":["Öğeleri ortala"],"Justify items left":["Öğeleri sola hizala"],"Change items justification":["Öğe hizalamasını değiştir"],"The media file has been replaced":["Ortam dosyası değiştirildi"],"Replace":["Değiştir"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Şu anda düzenleme modundasınız. Gezinme moduna dönmek için Escape tuşuna basın."],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["Şu anda dolaşım modundasınız. Sekme tuşunu kullanarak bloklarda gezinin. Dolaşım modundan çıkmak ve seçilen bloğu düzenlemek için Enter tuşuna basın."],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Degrade konumunu değiştirmek için sol veya sağ ok tuşlarını kullanın veya fareyle sürükleyip bırakın. Rengi değiştirmek veya kontrol noktasını kaldırmak için düğmeye basın."],"Gradient control point at position %1$s with color code %2$s.":["%2$s renk koduyla %1$s konumundaki gradyan kontrol noktası."],"Preset Size":["Ön ayarlı boyut"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Araçlar, blok seçimi ve düzenlemesi için farklı etkileşimler sunar. Seçmek için Escape tuşuna basın, düzenlemeye geri dönmek için Enter tuşuna basın."],"Open Media Library":["Ortam kütüphanesi aç"],"Next":["Sonraki"],"Previous":["Önceki"],"Finish":["Tamamla"],"Page %1$d of %2$d":["Sayfa %1$d / %2$d"],"Guide controls":["Kılavuz kontrolleri"],"Remove Control Point":["Kontrol noktasını kaldır"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Her blok, renk, genişlik ve hizalama gibi şeyleri değiştirmek için kendi kontrol setiyle birlikte gelir. Bunlar, bir blok seçtiğinizde otomatik olarak gösterilir ve gizlenir."],"Make each block your own":["Her bloğu kendiniz yapın"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["WordPress editöründe, her paragraf, görüntü veya video ayrı bir içerik \"bloğu\" olarak sunulur."],"ADD MEDIA":["Ortam ekle"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["Kullanabileceğiniz tüm bloklar, blok kütüphanesinde yer alır. simgesini gördüğünüz her yerde bulabilirsiniz."],"Get to know the Block Library":["Blok kütüphanesini tanıyın"],"Welcome Guide":["Karşılama Kılavuzu"],"Enable page templates":["Sayfa şablonlarını etkinleştir"],"Page Templates":["Sayfa şablonları"],"Enable Full Site Editing demo templates":["Tam site düzenleme örnek şablonlarını etkinleştir"],"Full Site Editing Demo Templates":["Tam site düzenleme örnek şablonları"],"Welcome to the Block Editor":["Blok düzenleyicisine hoş geldiniz"],"Get started":["Başlayın"],"inserter":["Ekleyici"],"Post Title":["Yazı başlığı"],"Add nofollow to link":["Bağlantıya nofollow ekle"],"Add submenu":["Alt menü ekle"],"Add link…":["Bağlantı ekle..."],"Dark":["Koyu"],"Light":["Açık"],"recording":["kayıt"],"podcast":["podcast"],"sound":["ses"],"Array of instance changes":["Oluşum değişiklikleri dizisi"],"Current widget instance":["Şu anki bileşen oluşumu"],"Template parts to include in your templates.":["Temanıza dahil etmek için şablon parçaları."],"Template parts list":["Şablon parçaları listesi"],"Template parts list navigation":["Şablon parçaları listesi dolaşımı"],"Filter template parts list":["Şablon parçaları listesini filtrele"],"Uploaded to this template part":["Bu şablon parçasına yüklenmiş"],"Insert into template part":["Şablona parçasına ekle"],"Template part archives":["Şablon parçası arşivleri"],"No template parts found in Trash.":["Çöpte herhangi bir şablon parçası bulunamadı."],"No template parts found.":["Şablon parçası bulunamadı."],"Parent Template Part:":["Ebeveyn şablon parçası:"],"Search Template Parts":["Şablon parçalarını ara"],"All Template Parts":["Tüm şablon parçaları"],"View Template Part":["Şablon parçalarını görüntüle"],"Edit Template Part":["Şablon parçalarını düzenle"],"New Template Part":["Yeni şablon parçası"],"Add New Template Part":["Yeni şablon parçası ekle"],"Template Part\u0004Add New":["Yeni ekle"],"Admin Menu text\u0004Template Parts":["Şablon parçaları"],"Template Part":["Şablon parçası"],"Template Parts":["Şablon parçaları"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["Ne yapıyordu, yüce tanrı Pan,\n Nehir kenarındaki sazlıkta?\nYıkım yayan ve yasakları savuran,\nBir keçinin toynaklarına hoplayıp zıplarken,\nVe altın zambakları ezerken\n Nehirdeki yusufçuk yanında."],"Navigation":["Dolaşım"],"Loading Navigation…":["Dolaşım yükleniyor..."],"Navigation Structure":["Dolaşım yapısı"],"Create empty":["Boş oluştur"],"Create a Navigation from all existing pages, or create an empty one.":["Mevcut tüm sayfalardan bir dolaşım oluşturun veya boş bir tane oluşturun."],"Navigation Link":["Dolaşım bağlantısı"],"(Note: many devices and browsers do not display this text.)":["(Not: birçok cihaz ve tarayıcı bu metni görüntülemez.)"],"Describe the role of this image on the page.":["Bu görselin sayfadaki rolünü açıklayın."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Tüm ekran boyutları için aynı değeri kullanma veya ekran boyutu başına benzersiz bir değer kullanma arasında geçiş yapın."],"Use the same %s on all screensizes.":["Tüm ekran boyutlarında aynı %s değerini kullanın."],"Large screens":["Büyük ekranlar"],"Medium screens":["Orta boy ekranlar"],"Small screens":["Küçük ekranlar"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["%2$s görünümü için %1$s özelliğini denetler."],"Currently selected":["Mevcut seçilen"],"Search or type url":["URL arayın veya yazın"],"Press ENTER to add this link":["Bu bağlantıyı eklemek için ENTER tuşuna basın"],"Currently selected link settings":["Mevcut seçili bağlantı ayarları"],"Generic label for block inserter button\u0004Add block":["Blok ekle"],"directly add the only allowed block\u0004Add %s":["%s ekle"],"%s block added":["%s blok eklendi"],"Move %s":["%s taşı"],"Extra Large":["Çok büyük"],"Block breadcrumb":["Blok bağlantı haritası"],"Editor footer":["Düzenleyici alt kısmı"],"Site Title":["Site başlığı"],"Open Colors Selector":["Renk seçiciyi aç"],"Templates list":["Şablon listesi"],"Templates list navigation":["Şablon listesi dolaşımı"],"Filter templates list":["Şablon listesini filtrele"],"Uploaded to this template":["Bu şablona yüklenmiş"],"Insert into template":["Şablona ekle"],"Template archives":["Şablon arşivleri"],"No templates found in Trash.":["Çöpte herhangi bir şablon bulunamadı."],"No templates found.":["Şablon bulunamadı."],"Parent Template:":["Ebeveyn şablon"],"Search Templates":["Şablon ara"],"All Templates":["Tüm şablonlar"],"View Template":["Şablon görüntüle"],"Edit Template":["Şablon düzenle"],"New Template":["Yeni şablon"],"Add New Template":["Yeni şablon ekle"],"Template\u0004Add New":["Yeni ekle"],"Admin Menu text\u0004Templates":["Şablonlar"],"Template":["Şablon"],"No matching template found":["Eşleşen şablon bulunamadı"],"Gradient: %s":["Degrade: %s"],"Gradient code: %s":["Degrade kodu: %s"],"All content copied.":["Tüm içerik kopyalandı."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Ortam karşıya yüklenirken başarısız oldu. Eğer yüklediğiniz bir fotoğraf veya büyük bir görsel ise lütfen küçültüp tekrar deneyin."],"Gradient":["Degrade"],"Gradient Presets":["Degrade hazır ayarları "],"No Preview Available.":["Ön izleme mevcut değil."],"Midnight":["Gece yarısı"],"Electric grass":["Elektrikli çim"],"Pale ocean":["Soluk okyanus"],"Luminous dusk":["Aydınlık alacakaranlık"],"Blush bordeaux":["Bordo"],"Blush light purple":["Açık mor"],"Cool to warm spectrum":["Sıcaktan soğuğa spektrum"],"Very light gray to cyan bluish gray":["Çok açık griden mavimsi griye"],"Luminous vivid orange to vivid red":["Açık turuncudan parlak kırmızıya"],"Luminous vivid amber to luminous vivid orange":["Açık kehribardan açık turuncuya"],"Light green cyan to vivid green cyan":["Açık yeşilden parlak yeşile"],"Vivid cyan blue to vivid purple":["Parlak maviden parlak mora"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["6 Aralık 2018"],"February 21, 2019":["21 Şubat 2019"],"May 7, 2019":["7 Mayıs 2019"],"Release Date":["Dağıtım tarihi"],"Jazz Musician":["Jazz müzisyeni"],"Version":["Sürüm"],"Six.":["Altı."],"Five.":["Beş."],"Four.":["Dört."],"Three.":["Üç."],"Two.":["İki."],"One.":["Bir."],"One of the hardest things to do in technology is disrupt yourself.":["Teknolojide yapılması en zor şeylerden biri kendinizi rahatsız etmektir."],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["Çalıkuşu
Kendi hayatını kazanır
Sessizce."],"Welcome to the wonderful world of blocks…":["Blokların harika dünyasına hoş geldiniz…"],"Snow Patrol":["Kar devriyesi"],"Dimensions":["Boyutlar"],"Minimum height in pixels":["Piksel cinsinden asgari yükseklik"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Call to Action":["Eylem çağrısı"],"In quoting others, we cite ourselves.":["Başkalarından alıntı yaparken kendimize atıf yaparız."],"cite":["atıf"],"Mont Blanc appears—still, snowy, and serene.":["Mont Blanc belirir - hala karlı ve sakin."],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["La Mancha'nın, adını hatırlamadığım bir köyünde, fazla uzun zaman önce sayılmaz, evde mızrağı, eski deri kalkanı asılı asilzadelerden biri yaşardı; cılız bir beygiri, bir de tazısı vardı."],"Block navigation":["Blok dolaşımı"],"Full Site Editing":["Tam site düzenleme"],"Templates to include in your theme.":["Temanıza dahil etmek için şablonlar."],"Templates":["Şablonlar"],"Inserter help panel":["Ekleyici yardım paneli"],"Pre-publish checks":["Yayın öncesi kontroller"],"Please contact your site administrator to install new blocks.":["Yeni bloklar eklemek için lütfen site yöneticinizle iletişim kurun."],"No blocks found in your library. Please contact your site administrator to install new blocks.":["Kütüphanenizde hiç blok bulunamadı. Yeni bloklar eklemek için lütfen site yöneticinizle iletişim kurun."],"No blocks found in your library.":["Kütüphanenizde hiç blok bulunamadı."],"No blocks found in your library. These blocks can be downloaded and installed:":["Kütüphanenizde hiç blok bulunamadı. Şu bloklar indirilebilir ve kurulabilir."],"No blocks found in your library. We did find %d block available for download.":["Kütüphanenizde hiç blok bulunamadı. İndirilebilecek %d blok bulduk.","Kütüphanenizde hiç blok bulunamadı. İndirilebilecek %d blok bulduk."],"Block previews can’t load.":["Blok ön izlemesi yükelnemedi."],"Retry":["Tekrar dene"],"Block previews can't install.":["Blok ön izlemesi yüklenemedi."],"Updated %s":["%s güncellendi"],"%d active installation":["%d etkin kurulum","%d etkin kurulum"],"This author has %d block, with an average rating of %d.":["Bu yazarın %d bloğu var ve ortalama değeri %d.","Bu yazarın %d bloğu var ve ortalama değeri %d."],"Authored by %s":["%s tarafından hazırlandı"],"%d total rating":["%d toplam puan","%d toplam puan"],"%s out of 5 stars":["5 üzerinden %s yıldız"],"Enter Address":["Adres girin"],"Pill Shape":["Hap şekli"],"Logos Only":["Sadece logolar"],"Create a block of links to your social media or external sites":["Sosyal medyanıza veya harici sitelerinize bir bağlantı bloğu oluşturun"],"Social links":["Sosyal bağlantılar"],"Open block navigator":["Blok dolaşımını aç"],"Attachment page":["Ek sayfası"],"Fill":["Doldur"],"Link rel":["Bağlantı için rel"],"Border Radius":["Kenar yuvarlaklığı"],"Write gallery caption…":["Galeri başlığını yaz..."],"Content blocks":["İçerik blokları"],"Restore the backup":["Yedekten geri döndür"],"The backup of this post in your browser is different from the version below.":["Bu yazının tarayıcınızdaki yedeği aşağıdaki sürümden farklı."],"Enable block directory search":["Blok dizin aramayı etkinleştir"],"Block Directory":["Blok dizini"],"Unable to connect to the filesystem. Please confirm your credentials.":["Dosya sistemine bağlanılamıyor. Lütfen kimlik bilgilerinizi kontrol edin."],"Sorry, you are not allowed to install blocks.":["Üzgünüm, blok yüklemenize izin verilmiyor."],"%1$d block is disabled.":["%1$d blok etkisizleştirildi.","%1$d blok etkisizleştirildi."],"Reverse List Numbering":["Ters liste numaralandırması"],"Start Value":["Başlangıç değeri"],"Ordered list settings":["Sıralı liste ayarları"],"Clear Media":["Ortamı temizle"],"Default Style":["Varsayılan biçem"],"Not set":["Ayarlanmadı"],"While writing, you can press / to quickly insert new blocks.":["Yazarken, hızlı bir şekilde yeni bloklar eklemek için / tuşuna basabilirsiniz."],"Browse through the library to learn more about what each block does.":["Her bloğun ne yaptığı hakkında daha fazla bilgi edinmek için kütüphaneye göz atın."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["Her türlü içerik için blok mevcut: metin, başlık, resim, liste, video, tablo ve daha fazlasını ekleyin."],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["Blokların harika dünyasına hoş geldiniz! Bloklar, editör içindeki tüm içeriğin temelidir."],"Version of the content block format used by the object.":["Nesne tarafından kullanılan içerik bloğu formatının sürümü."],"HTML content for the object, transformed for display.":["Görüntüleme için dönüştürülmüş şekliyle nesnenin HTML içeriği,"],"Content for the object, as it exists in the database.":["Veritabanında olduğu şekliyle nesnenin içeriği."],"The content for the object.":["Nesne için içerik."],"Change column alignment":["Sütun hizalamasını değiştir"],"Align Column Right":["Sütunu sağa hizala"],"Align Column Center":["Sütunu ortala"],"Align Column Left":["Sütunu sola hizala"],"Color":["Renk"],"Vivid purple":["Canlı mor"],"Disable & Reload":["Etkisizleştir ve yeniden yükle"],"Enable & Reload":["Etkinleştir ve yeniden yükle"],"A page reload is required for this change. Make sure your content is saved before reloading.":["Bu değişiklik için sayfanın yeniden yüklemesi gerekiyor. Yeniden yüklemeden önce içeriğinizin kaydedildiğinden emin olun."],"Display these keyboard shortcuts.":["Bu klavye kısayollarını göster."],"Experiments Settings":["Deney ayarları"],"Enable Widgets screen and Legacy Widgets block":["Bileşen ekranını ve eski bileşen bloğunu etkinleştir"],"Experimental settings":["Deneysel ayarlar"],"Block name name must be a string.":["Blok adı metin olmalıdır."],"Custom":["Özel"],"Draft":["Taslak"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["\"%1$s\" bloğu \"%2$s.\" isimli bir stil içermez"],"Learn more about anchors":["Çapalar hakkında daha fazlasını öğrenin"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["\"Çapa\" olarak adlandırılan, yalnızca bu başlık için benzersiz bir web adresi oluşturmak için boşluksuz bir veya iki kelime girin. Ardından, doğrudan sayfanızın bu bölümüne bağlanabilirsiniz."],"Widget Blocks (Experimental)":["Bileşen blokları (deneysel)"],"Upload a video file, pick one from your media library, or add one with a URL.":["Bir video dosyası yükleyin, ortam kitaplığınızdan bir tane seçin veya bir URL ile ekleyin."],"Upload an image file, pick one from your media library, or add one with a URL.":["Bir görsel dosyası yükleyin, ortam kitaplığınızdan bir tane seçin veya bir URL ile ekleyin."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Bir ses dosyası yükleyin, ortam kitaplığınızdan bir tane seçin veya bir URL ile ekleyin."],"Upload a media file or pick one from your media library.":["Bir ortam dosyası yükleyin veya ortam kitaplığınızdan bir tane seçin."],"Skip":["Geç"],"Select a variation to start with.":["Başlamak için bir varyasyon seçin."],"Add a page, link, or another item to your navigation.":["Dolaşım menünüze bir sayfa, bağlantı veya başka bir öğe ekleyin."],"What's this?":["Bu nedir?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["Arama motorlarının bu bağlantıyı izlemesine izin verme."],"Provide more context about where the link goes.":["Bağlantının nereye gittiği hakkında daha fazla içerik sağlayın."],"Title Attribute":["Başlık özelliği"],"SEO settings":["SEO ayarları"],"Description":["Açıklama"],"Open in new tab":["Yeni sekmede aç"],"links":["bağlantılar"],"navigation":["dolaşım"],"menu":["menü"],"Add a navigation block to your site.":["Sitenize bir dolaşım menüsü ekleyin."],"Upload a file or pick one from your media library.":["Bir dosya yükleyin veya ortam kitaplığınızdan bir tane seçin."],"Learn more about embeds":["Gömülen içerik hakkında daha fazlasını öğrenin."],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["Sitenizde görüntülemek istediğiniz içeriğe bir bağlantı yapıştırın."],"Upload an image or video file, or pick one from your media library.":["Bir görsel veya video dosyası yükleyin veya ortam kitaplığınızdan bir tane seçin."],"Three columns; wide center column":["Üç sütun, geniş orta sütun"],"Three columns; equal split":["Üç sütun, eşit bölüm"],"Two columns; two-thirds, one-third split":["İki sütun, iki-üç, bir-üç bölüm"],"Two columns; one-third, two-thirds split":["İki sütun, bir-üç, iki-üç bölüm"],"Two columns; equal split":["İki kolon, eşit bölüm"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["Sitenizde herhangi bir %s bulunmadığından şu anda burada görüntülenecek hiçbir şey yok."],"More tools & options":["Daha fazla araç ve seçenek"],"Create Table":["Tablo oluştur"],"Insert a table for sharing data.":["Veri paylaşmak için bir tablo ekle."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Grubu çöz"],"verb\u0004Group":["Grup"],"Separate with commas or the Enter key.":["Virgül veya Enter tuşuyla ayırın."],"Separate with commas, spaces, or the Enter key.":["Virgül, boşluk veya Enter tuşuyla ayırın."],"Separate multiple classes with spaces.":["Birden çok classı boşlukla ayır."],"Move image forward":["Görseli öne taşı"],"Move image backward":["Görseli geriye taşı"],"Sorry, you are not allowed to edit sidebars.":["Üzgünüm, kenar çubuklarını düzenlemenize izin verilmiyor."],"Sorry, you are not allowed to read sidebars.":["Üzgünüm, kenar çubuklarını okumanıza izin verilmiyor."],"The sidebar’s ID.":["Kenar çubuğu no."],"Displays a set of blocks":["Bir blok seti görüntüler"],"Blocks Area":["Blok alanı"],"Block rendered as empty.":["Blok boş olarak işlendi."],"Inline Code":["Satır içi kod"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Not: Videoyu otomatik olarak çalma, bazı ziyaretçiler için kullanılabilirlik sorunlarına neden olabilir."],"Footer section":["Alt kısım bölümü"],"Header section":["Üst kısım bölümü"],"Sorting and filtering":["Sıralama ve filtreleme"],"Post meta settings":["Yazı meta ayarları"],"Post Content":["Yazı içeriği"],"Post content settings":["Yazı içeriği ayarlaru"],"Percentage width":["Yüzde genişlik"],"Column settings":["Sütun ayarları"],"Note: Autoplaying audio may cause usability issues for some visitors.":["Not: Sesi otomatik olarak çalma, bazı ziyaretçiler için kullanılabilirlik sorunlarına neden olabilir."],"Block area updated.":["Blok alanı güncellendi."],"Block area scheduled.":["Blok alanı zamanlandı."],"Block area published.":["Blok alanı yayımlandı."],"Block areas list":["Blok alanı listesi"],"Block areas list navigation":["Blok alanı listesi dolaşımı"],"Filter block areas list":["Blok alanı listesini filtrele"],"No block area found.":["Blok alanı bulunamadı."],"Search Block Areas":["Blok alanı ara"],"All Block Areas":["Tüm blok alanları"],"View Block Area":["Blok alanını görüntüle"],"Edit Block Area":["Blok alanını düzenle"],"New Block Area":["Yeni blok alanı"],"Add New Block Area":["Yeni blok alanı ekle"],"admin menu\u0004Block Areas":["Blok alanları"],"post type singular name\u0004Block Area (Experimental)":["Blok alanı (deneysel)"],"post type general name\u0004Block Area (Experimental)":["Blok alanı (deneysel)"],"Experimental custom post type that will store block areas referenced by themes.":["Temaların başvurduğu blok alanlarını depolayacak deneysel özel yazı türü."],"Widgets screen content":["Bileşen ekran içeriği"],"header":["üst kısım"],"Widgets advanced settings":["Bileşen gelişmiş ayarları"],"(experimental)":["(deneysel)"],"Block Areas":["Blok alanları"],"Widgets screen top bar":["Bileşen ekranı üst çubuğu"],"This color combination may be hard for people to read.":["Bu renk kombinasyonunu insanların okuması zor olabilir."],"There is no poster image currently selected":["Seçili hiç poster görseli yok"],"The current poster image url is %s":["Geçerli poster görseli url adresi %s"],"section":["bölüm"],"row":["satır"],"wrapper":["wrapper"],"container":["container"],"A block that groups other blocks.":["Diğer blokları gruplayan bir blok."],"Group":["Grup"],"Crop image to fill entire column":["Tüm sütunu doldurmak için görseli kırp"],"Play inline":["Satır içi oynat"],"Leave empty if the image is purely decorative.":["Görsel tamamen dekoratif ise boş bırakın."],"Describe the purpose of the image":["Görselin amacını açıklayın"],"Add a block":["Bir blok ekle"],"Block vertical alignment setting label\u0004Change vertical alignment":["Dikey hizalamayı değiştir"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Dikeyde alta hizala"],"Block vertical alignment setting\u0004Vertically Align Middle":["Dikeyde ortaya hizala"],"Replace Image":["Görseli değiştir"],"Block vertical alignment setting\u0004Vertically Align Top":["Dikeyde üste hizala"],"Display a legacy widget.":["Eski bir bileşen görüntüle"],"Legacy Widget (Experimental)":["Eski bileşen (deneysel)"],"Change widget":["Bileşen değiştir"],"Legacy Widget":["Eski bileşen"],"You don't have permissions to use widgets on this site.":["Bu sitede bileşen kullanma izniniz yok."],"Select a legacy widget to display:":["Görüntülenecek eski bir bileşen seçin:"],"There are no widgets available.":["Kullanılabilir bileşen yok."],"Change block type or style":["Blok türünü yada stilini değiştir"],"keyboard key\u0004Space":["Boşluk"],"keyboard key\u0004Backspace":["Geri silme tuşu"],"More rich text controls":["Daha fazla zengin metin kontrolleri"],"Search Terms":["Arama terimleri"],"Exit the Editor":["Düzenleyiciden çık"],"Block Manager":["Blok yöneticisi"],"Class name of the widget.":["Bileşenin class adı."],"Sorry, you are not allowed to access widgets on this site.":["Üzgünüm, bu sitede bileşenlere erişmenize izin verilmiyor."],"Widgets (beta)":["Bileşen (beta)"],"link":["bağlantı"],"Embedded content from %s can't be previewed in the editor.":["%s kaynağındaki gömülü içerik, düzenleyicide önizlenemez."],"Custom Color":["Özel Renk"],"Prompt visitors to take action with a button-style link.":["Düğme tarzı bir bağlantıyla ziyaretçilerden harekete geçmelerini isteyin."],"Stick to the top of the blog":["Bloğun en tepesine sabitle"],"Read about permalinks":["Kalıcı bağlantılar hakkında okuyun"],"The last part of the URL.":["Adresin son parçası."],"URL Slug":["Adres kısa ismi"],"A cloud of your most used tags.":["En çok kullanılan etiketlerden oluşan etiket bulutu."],"Tag Cloud":["Etiket bulutu"],"Taxonomy":["Sınıflandırma"],"Tag Cloud settings":["Etiket bulutu ayarları"],"- Select -":["- Seçiniz -"],"Default":["Varsayılan"],"find":["bul"],"Help visitors find your content.":["Ziyaretçilerin içeriğinizi bulmalarına yardımcı olun."],"Search":["Site araması"],"Add button text…":["Düğme metni ekleyin..."],"Button text":["Düğme metni"],"Optional placeholder…":["İsteğe bağlı yer tutucu…"],"Optional placeholder text":["İsteğe bağlı yer tutucu metni"],"Add label…":["Etiket ekle..."],"Label text":["Etiket metni"],"image %1$d of %2$d in gallery":["Galerideki görsel %1$d - %2$d"],"archive":["arşiv"],"posts":["yazı"],"A calendar of your site’s posts.":["Sitenizin yazılarının bir takvimi."],"Calendar":["Takvim"],"by":["tarafından"],"An error has occurred, which probably means the feed is down. Try again later.":["Bir hata oluştu, beslemenin kapalı olduğu anlaşılıyor. Lütfen daha sonra tekrar deneyin."],"RSS Error:":["RSS hatası:"],"block style\u0004Default":["Varsayılan"],"Fullscreen mode deactivated":["Tam ekran modu devre dışı bırakıldı"],"Fullscreen mode activated":["Tam ekran modu etkinleştirildi"],"Spotlight mode deactivated":["Sahne ışığı modu devre dışı bırakıldı"],"Spotlight mode activated":["Sahne ışığı modu etkinleştirildi"],"Top toolbar deactivated":["Üst araç çubuğu devre dışı bırakıldı"],"Top toolbar activated":["Üst araç çubuğu etkinleştirildi"],"Back":["Geri"],"Feature activated":["Özellik etkinleştirildi"],"Feature deactivated":["Özellik devre dışı bırakıldı"],"Vertical Pos.":["Dikey konum"],"Horizontal Pos.":["Yatay konum"],"feed":["besleme"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Herhangi bir RSS veya Atom beslemesinden gelen girişleri görüntüleyin."],"RSS":["RSS"],"Max number of words in excerpt":["Alıntıdaki azami kelime sayısı"],"Display excerpt":["Alıntıyı göster"],"Display date":["Tarihi görüntüle"],"Display author":["Yazarı görüntüle"],"RSS settings":["RSS ayarları"],"Edit RSS URL":["RSS adresini düzenle"],"Content before this block will be shown in the excerpt on your archives page.":["Bu bloktan önceki içerik, arşiv sayfanızdaki alıntıdan gösterilecektir."],"Hide the excerpt on the full content page":["Tam içerik sayfasındaki alıntıyı gizle"],"The excerpt is visible.":["Alıntı görünür."],"The excerpt is hidden.":["Alıntı gizli."],"Sorry, this content could not be embedded.":["Maalesef, bu içerik gömülemedi."],"Embed Amazon Kindle content.":["Amazon Kindle içeriğini gömün."],"ebook":["ekitap"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal (önceki adıyla Polldaddy) içeriğini göm."],"Focal Point Picker":["Odak noktası seçici"],"Underline":["Altı çizgili"],"Attempt Block Recovery":["Bloğu kurtarmayı dene"],"Word count type. Do not translate!\u0004words":["kelimeler"],"content placeholder\u0004Content…":["İçerik..."],"button label\u0004Convert to link":["Bağlantıya dönüştür"],"button label\u0004Try again":["Tekrar deneyin"],"Editor tips":["Düzenleyici ipuçları"],"Block (selected)":["Blok (seçili)"],"Document (selected)":["Belge (seçili)"],"%d word":["%d kelime","%d kelime"],"Top toolbar":["Üst araç çubuğu"],"Link Rel":["Bağlantı için Rel"],"Link CSS Class":["CSS sınıfına bağlantı ver"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Kendiniz ve bu sitenin diğer katılımcıları için içerik oluşturup kaydedin ve daha sonra tekrar tekrar kullanın. Bir yerde güncelleyin, kullanılan her yerde güncellensin."],"To edit the featured image, you need permission to upload media.":["Öne çıkan resmi düzenlemek için, ortam yükleme iznine ihtiyacınız var."],"To edit this block, you need permission to upload media.":["Bu bloğu düzenlemek için, ortam dosyası yükleme iznine ihtiyacınız var."],"(selected block)":["(seçilen blok)"],"Block tools":["Blok araçları"],"Permalink":["Kalıcı bağlantı"],"This image has an empty alt attribute":["Bu görselin boş bir alt özelliği var"],"This image has an empty alt attribute; its file name is %s":["Bu görselin boş bir alt özelliği var; dosya ismi: %s"],"Block area reverted to draft.":["Blok alanı taslak durumuna geri döndürüldü."],"Block area published privately.":["Blok alanı özel olarak yayımlandı."],"No block areas found in Trash.":["Çöpte blok alanı bulunamadı."],"Block\u0004Add New":["Yeni ekle"],"add new on admin bar\u0004Block Area":["Blok alanı"],"Link inserted.":["Bağlantı eklendi."],"Warning: the link has been inserted but may have errors. Please test it.":["Uyarı: bağlantı eklendi fakat hatalara sahip olabilir. Lütfen test edin."],"%s block selected.":["%s blok seçildi.","%s blok seçildi."],"Thumbnail":["Küçük resim"],"Full Size":["Tam boyut"],"Link selected.":["Bağlantı seçildi."],"Start writing with text or HTML":["Metin ya da HTML ile yazmaya başlayın"],"Type text or HTML":["Metin ya da HTML yazın"],"Block icon":["Blok simgesi"],"Align text right":["Metni sağa hizala"],"Align text center":["Metin ortaya hizala"],"Align text left":["Metni sola hizala"],"Start writing or type / to choose a block":["Yazmaya başlayın ya da / yazarak bir blok seçin"],"Empty block; start writing or type forward slash to choose a block":["Boş blok; yazmaya başlayın ya da / yazarak bir blok seçin"],"Paragraph block":["Paragraf bloğu"],"Page Break":["Sayfa sonu"],"Stack on mobile":["Mobilde yığınla"],"Annotation":["Ek açıklama"],"Drag images, upload new ones or select files from your library.":["Görselleri sürükleyin, yenilerini yükleyin veya kütüphanenizden dosyaları seçin."],"blocks\u0004Most used":["En çok kullanılan"],"imperative verb\u0004Resolve":["Çözümle"],"font size name\u0004Huge":["Devasa"],"font size name\u0004Large":["Büyük"],"font size name\u0004Medium":["Orta"],"font size name\u0004Small":["Küçük"],"font size name\u0004Normal":["Normal"],"keyboard button\u0004Enter":["Giriş"],"button label\u0004Import":["İçeri aktar"],"button label\u0004Download":["İndir"],"button label\u0004Embed":["Göm"],"block title\u0004Embed":["Göm"],"block title\u0004Classic":["Klasik"],"block style\u0004Large":["Büyük"],"block style\u0004Rounded":["Yuvarlatılmış"],"%s (opens in a new tab)":["%s (yeni sekmede açılır)"],"Link edited.":["Bağlantı düzenlendi."],"Link removed.":["Bağlantı kaldırıldı."],"media":["ortam"],"Double-check your settings before publishing.":["Yayımlamadan önce ayarları iki kere kontrol et."],"Generating preview…":["Ön izleme oluşturuluyor…"],"Edit or update the image":["Görseli düzenleyin ya da güncelleyin"],"Media":["Ortam dosyası"],"Navigate to the nearest toolbar.":["En yakın araç çubuğuna ilerle."],"Document tools":["Belge araçları"],"Document and block tools":["Belge ve blok araçları"],"Embed a video from your media library or upload a new one.":["Ortam kütüphanenizden bir video gömün ya da yeni bir tane yükleyin."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Şiir ekleyin. Özel boşluk biçimleri kullanın. Ya da şarkı sözleri alıntılayın."],"Add white space between blocks and customize its height.":["Bloklar arasına boş alan ekleyin ve yüksekliğini özelleştirin."],"Insert additional custom elements with a WordPress shortcode.":["Bir WordPress kısa kodu ile fazladan özel elemanlar ekleyin."],"Create a break between ideas or sections with a horizontal separator.":["Fikirler ya da bölümler arasında yatay bir ayraç ile bir aralık oluşturun."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Alıntılanmış metne görsel vurgu verin. \"Başkalarından alıntı yaparken, kendimize atıfta bulunuruz.\" — Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Metninizdeki alıntılanmış metne görsel vurgu verin."],"Start with the building block of all narrative.":["Tüm öykünün yapı taşı ile işe başlayın."],"Separate your content into a multi-page experience.":["İçeriğinizi çok sayfalı bir deneyime dönüştün."],"Set media and words side-by-side for a richer layout.":["Ortam ve kelimeleri yan yana yerleştirip zengin bir düzen oluşturun."],"Media & Text settings":["Ortam ve metin ayarları"],"Create a bulleted or numbered list.":["İmli ya da numaralı liste oluşturun."],"Display a list of your most recent comments.":["En güncel yorumlarınızın bir listesini görüntüleyin."],"Insert an image to make a visual statement.":["Görsel bir mesaj iletmek için bir görsel ekleyin."],"Add custom HTML code and preview it as you edit.":["Özel HTML kodu ekleyin ve düzenlerken bir taraftan da ön izleme yapın."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Yeni bölümler ile tanıştırarak ve içeriği organize ederek ziyaretçilerinize (ve arama motorlarına) içeriğinizin yapısını anlamaları için yardımcı olun."],"Display multiple images in a rich gallery.":["Bir çok görseli zengin bir galeri olarak görüntüleyin."],"Add a link to a downloadable file.":["İndirilebilir dosya için bağlantı ekleyin."],"Embed videos, images, tweets, audio, and other content from external sources.":["Videolar, görseller, tweetler, ses ve diğer içerikleri dış kaynaklardan gömün."],"Resize for smaller devices":["Küçük cihazlar için boyutlandırma"],"This embed may not preserve its aspect ratio when the browser is resized.":["Bu gömü tarayıcı yeniden boyutlandırıldığında en/boy oranını korumayabilir."],"This embed will preserve its aspect ratio when the browser is resized.":["Bu gömü tarayıcı yeniden boyutlandırıldığında en/boy oranını koruyacaktır."],"Embed an Animoto video.":["Bir Animoto videosu gömün."],"Embed a Vimeo video.":["Vimeo videosu gömün."],"Embed Flickr content.":["Flickr içeriği gömün."],"Embed Spotify content.":["Spotify içeriği gömün."],"Embed SoundCloud content.":["SoundCloud içeriği gömün."],"Embed a WordPress post.":["Bir WordPress yazısı göm."],"Embed an Instagram post.":["Instagram gönderisi gömün."],"Embed a Facebook post.":["Facebook gönderisi gömün."],"Embed a WordPress.tv video.":["WordPress.tv videosu gömün."],"Embed a VideoPress video.":["VideoPress videosu gömün."],"Embed a Tumblr post.":["Tumblr gönderisi gömün."],"Embed a TED video.":["TED videosu gömün."],"Embed Speaker Deck content.":["Speaker Deck içeriği gömün."],"Embed a YouTube video.":["YouTube videosu gömün."],"Embed SmugMug content.":["SmugMug içeriği gömün."],"Embed Slideshare content.":["Slideshare içeriği gömün."],"Embed Scribd content.":["Scribd içeriği gömün."],"Embed Screencast content.":["Screencast içeriği gömün."],"Embed ReverbNation content.":["ReverbNation içeriği gömün."],"Embed a Reddit thread.":["Reddit başlığı gömün."],"Embed Polldaddy content.":["Polldaddy içeriği gömün."],"Embed Mixcloud content.":["Mixcloud içeriği gömün."],"Embed a tweet.":["Tweet gömün."],"Embed Meetup.com content.":["Meetup.com içeriği gömün."],"Embed Kickstarter content.":["Kickstarter içeriği gömün."],"Embed Issuu content.":["Issuu içeriği gömün."],"Embed Imgur content.":["Imgur içeriği gömün."],"Embed Hulu content.":["Hulu içeriği gömün."],"Embed a Dailymotion video.":["Bir Dailymotion videosu gömün."],"Embed CollegeHumor content.":["CollegeHumor içeriği gömün."],"Embed Cloudup content.":["Cloudup içeriği gömün."],"Add an image or video with a text overlay — great for headers.":["Üzerine metin eklenmiş bir görsel ya da video — üst kısımlar için harikadır."],"Display code snippets that respect your spacing and tabs.":["Boşluk ve sekmelerinize saygı gösteren kod parçaçıkları görüntüleyin."],"Use the classic WordPress editor.":["Klasik WordPress düzenleyicisini kullanın."],"Display a list of all categories.":["Tüm kategorilerin bir listesini görüntüleyin."],"Embed a simple audio player.":["Basit bir ses oynatıcısı gömün."],"noun\u0004View":["Görüntülenme"],"editor button\u0004Left to right":["Soldan sağa"],"Save as Pending":["Bekliyor olarak kaydet"],"%s address":["%s adres"],"Paste or type URL":["Bir adres girin ya da yapıştırın"],"Insert from URL":["URL’den ekle"],"Block Navigator":["Blok dolaşımı"],"Styles":["Stiller"],"Advanced panels":["Gelişmiş paneller"],"Document panels":["Belge panelleri"],"General":["Genel"],"Open the block navigation menu.":["Blok dolaşım menüsünü aç."],"Work without distraction":["Dikkatiniz dağılmadan çalışın"],"Focus on one block at a time":["Bir seferde sadece bir bloğa odaklanın"],"Access all block and document tools in a single place":["Tüm blok ve belge araçlarına tek bir yerden ulaşın"],"Options":["Seçenekler"],"(opens in a new tab)":["(yeni sekmede açılır)"],"Minutes":["Dakika"],"Hours":["Saatler"],"Time":["Zaman"],"Year":["Yıl"],"Day":["Gün"],"December":["Aralık"],"November":["Kasım"],"October":["Ekim"],"September":["Eylül"],"August":["Ağustos"],"July":["Temmuz"],"June":["Haziran"],"May":["Mayıs"],"April":["Nisan"],"March":["Mart"],"February":["Şubat"],"January":["Ocak"],"Month":["Ay"],"Date":["Tarih"],"Go to the first (home) or last (end) day of a week.":["Haftanın ilk (home) ya da son (end) gününe gidin."],"Home/End":["Başlangıç/Son"],"Home and End":["Başlangıç ve son"],"Move backward (PgUp) or forward (PgDn) by one month.":["Bir ay geri (PgUp) ya da ileri (PgDn) hareket edin."],"PgUp/PgDn":["SyfYuk/SyfAş"],"Page Up and Page Down":["Sayfa yukarı ve sayfa aşağı"],"Move backward (up) or forward (down) by one week.":["Bir hafta geri (yukarı ok) ya da ileri (aşağı ok) hareket edin."],"Up and Down Arrows":["Yukarı ve aşağı oklar"],"Move backward (left) or forward (right) by one day.":["Bir gün geri (sol ok) ya da ileri (sağ ok) hareket edin."],"Left and Right Arrows":["Sol ve sağ oklar"],"Select the date in focus.":["Odaktaki tarihi seçin."],"Navigating with a keyboard":["Tuş takımı ile dolaşım"],"Click the desired day to select it.":["İstenen güne tıklayarak seçin."],"Click the right or left arrows to select other months in the past or the future.":["Sağ ya da sol tuşlara tıklayıp geçmişteki ya da gelecekteki diğer ayları seçin."],"Click to Select":["Seçmek için tıklayın"],"Calendar Help":["Takvim yardımı"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Ok tuşlarını kullanarak temel rengi değiştirin. Rengi açmak için yukarı ilerleyin, koyulaştırmak için aşağı, doygunluğu artırmak için sola, azaltmak için sağa ilerleyin."],"Choose a shade":["Bir gölge seçin"],"Change color format":["Renk biçimini değiştir"],"Color value in HSL":["HSL olarak renk değeri"],"Color value in RGB":["RGB olarak denk değeri"],"Color value in hexadecimal":["Onaltılık düzende renk değeri"],"RGB mode active":["RGB düzeni etkin"],"Hex color mode active":["Hex renk düzeni etkin"],"Hue/saturation/lightness mode active":["Ton/doygunluk/parlaklık modu etkin"],"Move the arrow left or right to change hue.":["Tonu değiştirmek için sol ya da sağ oku hareket ettirin."],"Hue value in degrees, from 0 to 359.":["Derece cinsinden ton değeri, 0 ile 359 arasında."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alfa değeri, 0 (saydam) ile 1 (tam opak) arasında."],"Stripes":["Şeritler"],"Your site doesn’t include support for this block.":["Siteniz bu blok için destek içermiyor."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Siteniz \"%s\" bloğu için destek içermiyor. Bu bloğa dokunmadan bırakabilir ya da tamamen kaldırabilirsiniz."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Siteniz \"%s\" bloğu için destek içermiyor. Bu bloğa dokunmadan bırakabilir, Özel HTML bloğuna çevirebilir ya da tamamen kaldırabilirsiniz."],"Media area":["Ortam alanı"],"Media & Text":["Ortam ve metin"],"Show media on right":["Ortamı sağda görüntüle"],"Show media on left":["Ortamı solda görüntüle"],"Open in New Tab":["Yeni sekmede aç"],"Cover":["Kapak"],"Border settings":["Kenarlık ayarları"],"Medium":["Orta"],"Paste URL or type to search":["İnternet adresini yapıştırın ya da arama yapın"],"Terms":["Kurallar"],"Your work will be published at the specified date and time.":["Çalışmanız belirlenen tarih ve zamanda yayımlanacaktır."],"Are you ready to schedule?":["Zamanlamaya hazır mısınız?"],"Always show pre-publish checks.":["Her zaman yayım öncesi kontrolleri göster."],"Take Over":["Devral"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Başka bir kullanıcı bu yazı üzerinde şu an çalışıyor, bu demektir ki yazıyı devralmadığınız sürece değişiklik yapamazsınız."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s bu yazı üzerinde şu an çalışıyor, bu demektir ki yazıyı devralmadığınız sürece değişiklik yapamazsınız."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Başka bir kullanıcı şu an bu yazının düzenleme kontrolünü almış durumda. Merak etmeyin, şu ana kadar yaptığınız değişiklikler kaydedildi."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s şu an bu yazının düzenleme kontrolünü almış durumda. Merak etmeyin, şu ana kadar yaptığınız değişiklikler kaydedildi."],"Avatar":["Avatar"],"This post is already being edited.":["Yazı zaten şu an düzenleniyor."],"Someone else has taken over this post.":["Bir başkası bu yazıyı üzerine aldı."],"This block contains unexpected or invalid content.":["Bu blok beklenmeyen ya da geçersiz içerik içeriyor."],"Resolve Block":["Bloğu çözümle"],"Convert to HTML":["HTML’e dönüştür"],"This block can only be used once.":["Bu blok sadece bir kez kullanılabilir."],"Exit Code Editor":["Kod düzenleyiciden çık"],"Editing Code":["Kodu düzenle"],"Solid Color":["Tek renk"],"Main Color":["Ana renk"],"HTML":["HTML"],"Write HTML…":["HTML yaz…"],"Media settings":["Ortam Ayarları"],"Overlay":["Kaplama"],"Insert Media":["Ortam ekle"],"Reusable block imported successfully!":["Tekrar kullanabilir blok başarıyla içe aktarıldı!"],"Invalid Reusable Block JSON file":["Geçersiz tekrar kullanabilir blok JSON dosyası"],"Invalid JSON file":["Geçersiz JSON dosyası"],"Import from JSON":["JSON'dan içe aktar"],"Backtick":["Ters tırnak"],"Period":["Nokta"],"Comma":["Virgül"],"Change type of %d block":["%d bloğun türünü değiştir","%d bloğun türünü değiştir"],"Current":["Mevcut"],"After Conversion":["Dönüşümden sonra"],"Change alignment":["Hizalamayı değiştir"],"Change text alignment":["Metin hizalamayı değiştir"],"%d block":["%d blok","%d blok"],"Forward-slash":["Bölme işareti"],"No archives to show.":["Gösterilecek arşiv yok."],"This file is empty.":["Bu dosya boş."],"Sorry, this file type is not supported here.":["Üzgünüm, bu dosya tipi burada desteklenmiyor."],"Manage all reusable blocks":["Tüm tekrar kullanılabilir blokları yönet"],"Title":["Başlık"],"Fullscreen mode":["Tam ekran modu"],"Beautiful landscape":["Güzel manzara"],"Close panel":["Paneli kapat"],"Convert to Classic Block":["Klasik bloğa dönüştür"],"Remove Poster Image":["Poster görselini kaldır"],"Select Poster Image":["Poster görseli seç"],"Poster Image":["Poster görseli"],"This block is deprecated. Please use the Columns block instead.":["Bu blok kullanım dışı. Lütfen bunun yerine Sütunlar bloğunu kullanın."],"Text Columns (deprecated)":["Metin sütunları (kullanım dışı)"],"Create":["Oluştur"],"Row Count":["Satır sayısı"],"Column Count":["Sütun sayısı"],"This block is deprecated. Please use the Paragraph block instead.":["Bu blok kullanım dışı. Lütfen bunun yerine Paragraf bloğunu kullanın."],"Subheading (deprecated)":["Alt başlık (kullanım dışı)"],"blockquote":["alıntı"],"Change the block type after adding a new paragraph.":["Yeni paragraf ekledikten sonra blok türünü değiştirin."],"Spotlight mode":["Sahne ışığı modu"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Etiketler, kullanıcılar ve arama motorlarının sitenizde gezinmesine ve içeriğinizi bulmasına yardım eder. Yazınızı tanımlamak için birkaç anahtar kelime ekleyin."],"Add tags":["Etiket ekle"],"Apply the \"%1$s\" format.":["\"%1$s\" biçimini uygula."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Temanız, görseller veya videolar gibi farklı içerik türlerini vurgulamak için yazı biçimlerini kullanıyor. Bu özel biçimlendirmeyi görmek için bir yazı biçimi uygulayın."],"Use a post format":["Bir yazı biçimi kullan"],"Insert After":["Sonrasına ekle"],"Insert Before":["Öncesine ekle"],"Move %1$d block from position %2$d down by one place":["%1$d bloğunu %2$d konumundan bir aşağı taşı","%1$d bloğunu %2$d konumundan bir aşağı taşı"],"Move %1$d block from position %2$d up by one place":["%1$d bloğunu %2$d konumundan bir yukarı taşı","%1$d bloğunu %2$d konumundan bir yukarı taşı"],"Move %1$s block from position %2$d right to position %3$d":["%1$s bloğunu %2$d konumundan %3$d konumuna sağa taşı"],"movie":["film"],"Insert a new block before the selected block(s).":["Seçilen bloklardan önce yeni bir blok ekleyin."],"Remove the selected block(s).":["Seçilen blokları kaldırın."],"Duplicate the selected block(s).":["Seçilen blokları kopyalayın."],"Block shortcuts":["Blok kısayolları"],"Clear selection.":["Seçimi temizle."],"Select all text when typing. Press again to select all blocks.":["Yazarken tüm metni seçin. Tüm blokları seçmek için tekrar basın."],"Selection shortcuts":["Seçim kısayolları"],"Switch between Visual editor and Code editor.":["Görsel düzenleyici ve kod düzenleyici arasında geçiş yapın."],"Navigate to the previous part of the editor.":["Düzenleyicinin bir önceki bölümüne gidin."],"Navigate to the next part of the editor.":["Düzenleyicinin bir sonraki bölümüne gidin."],"Show or hide the settings sidebar.":["Ayarlar kenar çubuğunu göster veya gizle."],"Redo your last undo.":["Son geri aldığınız şeyi yeniden yapın."],"Undo your last changes.":["Son değişikliklerinizi geri alın."],"Save your changes.":["Değişikliklerinizi kaydedin."],"Global shortcuts":["Genel kısayollar"],"Remove a link.":["Bir bağlantıyı kaldırın."],"Convert the selected text into a link.":["Seçili metni bağlantıya dönüştür."],"Underline the selected text.":["Seçilen metnin altını çiz."],"Make the selected text italic.":["Seçilen metni eğik yap."],"Make the selected text bold.":["Seçilen metni kalın yap."],"Text formatting":["Metin biçimlendirme"],"Insert a new block after the selected block(s).":["Seçili blok(lar)dan sonra yeni bir blok ekle."],"Keyboard shortcuts":["Klavye kısayolları"],"Thanks for testing Gutenberg!":["Gutenbergi test ettiğiniz için teşekkür ederiz!"],"Help build Gutenberg":["Gutenberg yapımına yardım edin"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Ek bloklar oluşturma hakkında daha fazla bilgi edinmek isterseniz veya projeye yardımcı olmakla ilgileniyorsanız, GitHub deposuna gidin."],"The WordPress community":["WordPress topluluğu"],"Code is Poetry":["Kod şiirdir"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Statik veya dinamik, dekoratif veya sade istediğiniz herhangi bir bloğu oluşturabilirsiniz. İşte bir alıntı bloğu:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Herhangi bir blok bu hizalamaları seçebilir. Gömülü blok da bunlara sahiptir ve varsayılan olarak duyarlıdır:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Yukarıdaki, sadece iki görselli bir galeri. Kaydırmalarla uğraşmadan görsel olarak çekici düzenler oluşturmanın daha kolay bir yolu. Ayrıca, blok değiştiriciyi kullanarak galeriyi tekrar tek tek resimlere dönüştürebilirsiniz."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Tabii, tam genişlikteki görüntü oldukça büyük olabilir. Ama bazen görsel buna değer."],"Accessibility is important — don’t forget image alt attribute":["Erişilebilirlik önemlidir — görselin alt niteliğini unutmayın"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Eğer yeni, geniş ve tam genişlikte hizalamaları galerilerle birleştirirseniz, çok hızlı bir şekilde çok zengin bir düzen oluşturabilirsiniz:"],"Media Rich":["Ortam zengin"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Galerinizlerdeki sütun adedini, kenar çubuğunda bulunan blok kontrolcüsündeki kaydırıcıyı sürükleyerek değiştirebilirsiniz."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Bloklar ihtiyacınız olan her şey olabilir. Örneğin, metninizin kompozisyonunun bir parçası olarak kısaltılmış bir özet eklemek isteyebilirsiniz ya da kocaman, biçimlendirilmiş bir tane göstermeyi tercih edebilirsiniz. Bu seçeneklerin tümü, yerleştiricide mevcuttur."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Alıntı kaynağına karşılık gelen bilgiler, görsellerin altındaki başlık yazılarına benzer ayrı bir metin alanıdır; bu nedenle kaynağı seçseniz, değiştirseniz veya kaldırsanız bile alıntı yapısı korunur. Onu tekrar eklemek her zaman kolaydır."],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Düzenleyici daha önce kısa kodlar, özel HTML ya da \"gizemli et\" gömülerinin keşfi gibi yöntemler yerine \"bloklar\" kullanarak daha kolay, daha zengin bir yazı ve sayfa oluşturma deneyimi sunmaya çabalıyor."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Blokların büyük bir faydası, bunları yerinde düzenleyip içeriğinizi doğrudan yönlendirebilmenizdir. Bir alıntının kaynağı veya bir düğmenin metni gibi şeyleri düzenlemek için alanlara sahip olmak yerine, içeriği doğrudan değiştirebilirsiniz. Aşağıdaki alıntıyı düzenlemeyi deneyin:"],"Visual Editing":["Görsel düzenleme"],"And Lists like this one of course :)":["Ve bunun gibi listeler, tabii ki :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Düzen blokları, beğeni düğmeleri, manşet görselleri, ayırıcılar, vs."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Gömüler, YouTube, Tweetler ya da diğer WordPress yazıları gibi."],"Galleries":["Galeriler"],"Images & Videos":["Görseller ve videolar"],"Text & Headings":["Metin ve başlıklar"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Bir tur deneyin, hiç haberiniz olmayan fakat WordPress'in hali hazırda yazılarınıza ekleyebileceği bir çok şey keşfedebilirsiniz. Şu an burada bulabileceklerinizin kısa bir listesi:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["WordPress'in yapabileceği her şeyin hızlı bir şekilde ve aynı yerde, arabirim üzerinde size sunulduğunu düşünün. HTML etiketler, sınıflar ya da karışık kısa kod sentakslarının ne olduğunu anlamaya gerek yok. Ekleyicinin —Düzenleyici çevresinde gördüğünüz (+)
tuşu— arkasındaki temel mantık bu, ki bu tüm uygun bloklara bakabilmenize ve yazınıza eklemenize olanak sağlıyor. Eklentiler ve temalar kendi bloklarını kayıt edebilirler. Bu da zengin bir düzenleme ve yayınlama deneyiminde yepyeni kapılar açıyor."],"The Inserter Tool":["Ekleme aracı"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Başlığı seçmeyi ve kaldırmayı ya da düzenlemeyi deneyin. Artık bir görseli ya da metni genel sunumu bozmamak adına pür dikkat seçmeniz gerek yok."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Eğer temanız bunu destekliyorsa, görsel araç çubuğunda \"geniş\" butonunu göreceksiniz. Bir deneyin."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Görsellerin ve diğer ortamların ele alınması yeni düzenleyicinin en önemli ve birincil işi. Umuyoruz ki görsellere metin ekleme ya da tam genişlik vb. işlemleri eskisinden çok daha kolay yapabileceksiniz."],"A Picture is Worth a Thousand Words":["Bir resim, bin kelimeye bedeldir"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Başlıklar da artık ayrı ayrı bloklar, ki bu da içeriğinizin genel organizasyonunun yapısını çıkartmanıza yardımcı oluyor."],"... like this one, which is right aligned.":["... bunun gibi, sağa hizalı olanlar."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Şu an okuduğunuz en basit blok, metin bloğu. Metin bloğunun da yazı içinde rahatça hareket edebilmesi için kendi kontrolleri var..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Yeni düzenleyicinin hedefi WordPress'e zengin içeriğin kolay ve tatminkar bir şekilde eklenebilmesi. Tüm yazı sağa sola taşıyabileceğiniz ve etkileşime girebileceğiniz içerik parçalarından —LEGO parçalarına benzer bir yapı— oluşuyor. İmleci sağa sola hareket ettirdiğinizda farklı blokların öne çıktığını ve okları fark edeceksiniz. Okları kullanarak blokları yeniden konumlandırabilirsiniz. Hem de kopyala yapıştır işlemi yaparken bir şeyleri kaybetme korkusu olmadan."],"Of Mountains & Printing Presses":["Dağlar ve çıktı basımlar"],"Welcome to the Gutenberg Editor":["Gutenberg düzenleyicisine hoş geldiniz"],"block name\u0004More":["Daha fazla"],"button to expand options\u0004More":["Daha fazla"],"Are you sure you want to unschedule this post?":["Bu yazının zamanlamasını kaldırmak istediğinize emin misiniz?"],"Alt Text (Alternative Text)":["Alt metin (Alternatif metin)"],"Reusable Block":["Tekrar kullanılabilir blok"],"Unique identifier for the object.":["Nesne için benzersiz tanımlayıcı."],"Untitled Reusable Block":["Başlıksız tekrar kullanılabilir blok"],"Small":["Küçük"],"Reusable":["Tekrar kullanılabilir"],"Remove from Reusable blocks":["Tekrar kullanılabilir bloklardan kaldır"],"Add to Reusable blocks":["Tekrar kullanılabilir bloklara ekle"],"Keep as HTML":["HTML olarak sakla"],"Edit URL":["Bağlantıyı düzenle"],"Color settings":["Renk ayarları"],"The response is not a valid JSON response.":["Yanıt geçerli bir JSON yanıtı değildir."],"Editor publish":["Düzenleyici yayını"],"Muted":["Sessiz"],"Video settings":["Video ayarları"],"recent comments":["son yorumlar"],"Latest Comments":["En son yorumlar"],"Display Excerpt":["Özeti göster"],"Display Date":["Tarihi göster"],"Display Avatar":["Avatarı göster"],"Latest comments settings":["Son yorumlar ayarları"],"Number of Comments":["Yorum sayısı"],"Background Opacity":["Arka plan saydamlığı"],"Auto":["Otomatik"],"Preload":["Ön yükleme"],"Audio settings":["Ses ayarları"],"Display a monthly archive of your posts.":["Yazılarınızın aylık arşivini görüntüleyin."],"Display as Dropdown":["Açılır menü olarak görüntüle"],"Show Post Counts":["Yazı sayısını göster"],"Archives settings":["Arşiv ayarları"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Destek"],"No comments to show.":["Gösterilecek yorum yok."],"%1$s on %2$s":["%1$s - %2$s"],"Select Post":["Yazı seçin"],"Select Week":["Hafta seçin"],"Select Day":["Gün seçin"],"Select Month":["Ay seçin"],"Select Year":["Yıl seçin"],"Archives":["Arşivler"],"Very dark gray":["Çok koyu gri"],"Cyan bluish gray":["Cam göbeği mavimsi gri"],"Very light gray":["Çok açık gri"],"Vivid cyan blue":["Canlı cam göbeği mavi"],"Pale cyan blue":["Soluk cam göbeği mavi"],"Vivid green cyan":["Canlı yeşil cam göbeği"],"Light green cyan":["Açık yeşil cam göbeği"],"Luminous vivid amber":["Canlı parlak amber"],"Luminous vivid orange":["Parlak canlı turuncu"],"Vivid red":["Canlı kırmızı"],"Pale pink":["Açık pembe"],"Inline image":["Satır içi görsel"],"Available block types":["Kullanılabilir blok türleri"],"Transform To:":["Şuna dönüştür:"],"Remove Block":["Bloğu kaldır"],"Open publish panel":["Yayımlama panelini aç"],"Dots":["Noktalar"],"Wide Line":["Geniş çizgi"],"Large":["Büyük"],"Show download button":["İndirme düğmesini göster"],"Download button settings":["İndirme düğmesi ayarları"],"Link To":["Bağlantı"],"Text link settings":["Metin bağlantı ayarları"],"download":["indir"],"pdf":["pdf"],"document":["belge"],"Copy URL":["Bağlantıyı kopyala"],"Write file name…":["Dosya adı yaz…"],"File":["Dosya"],"A single column within a columns block.":["Sütun bloğunda tek bir sütun."],"Column":["Sütun"],"Outline":["Çevresi çizgili"],"Loop":["Döngü"],"Autoplay":["Otomatik oynat"],"Playback Controls":["Oynatma kontrolleri"],"Close dialog":["Pencereyi kapat"],"Sorry, this file type is not permitted for security reasons.":["Üzgünüm, bu dosya türüne güvenlik nedenleriyle izin verilmez."],"Disable tips":["İpuçlarını devre dışı bırak"],"Got it":["Anladım"],"See next tip":["Sonraki ipucunu gör"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Hazır olduğunuzda, çalışmanızı incelenmek üzere gönderin. Bir editör sizin için onaylayabilir."],"Are you ready to submit for review?":["İnceleme için göndermeye hazır mısınız?"],"Replace image":["Görseli değiştir"],"Remove image":["Görseli kaldır"],"Error while uploading file %s to the media library.":["%s dosyası ortam kütüphanesine yüklenirken hata."],"This file exceeds the maximum upload size for this site.":["Bu dosya, bu site için azami yükleme boyutunu aşıyor."],"View the autosave":["Otomatik kayıtları görüntüle"],"There is an autosave of this post that is more recent than the version below.":["Bu yazının, aşağıdaki sürümden daha yeni olan otomatik haydedilmiş bir sürümü var."],"Autosaving":["Otomatik kayıt"],"Enter URL here…":["Bağlantı girin..."],"Pin to toolbar":["Araç çubuğuna tuttur"],"Unpin from toolbar":["Araç çubuğundan kaldır"],"Insert a table — perfect for sharing charts and data.":["Bir tablo ekle — çizelgeler ve veri paylaşmak için mükemmel."],"Fixed width table cells":["Sabit genişlikte tablo hücreleri"],"Table settings":["Tablo ayarları"],"Add text that respects your spacing and tabs, and also allows styling.":["Espas ve sekmelerinize uyumlu ve biçimlendirmenize de izin veren bir metin ekleyin."],"Display a list of your most recent posts.":["Son yazılarınızın listesini görüntüleyin."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Twitter, Instagram veya YouTube gibi diğer sitelerden çekilen içeriği gösteren bir blok ekleyin."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["İçeriği birden çok sütunda gösteren bir blok ekleyin, ardından istediğiniz içerik bloklarını ekleyin."],"Error loading block: %s":["Blok yüklenirken hata: %s"],"Unknown error":["Bilinmeyen hata"],"Embed Handler":["Gömme tutucu"],"term\u0004Remove %s":["%s kaldır"],"Copy the permalink":["Kalıcı bağlantıyı kopyala"],"Permalink copied":["Kalıcı bağlantı kopyalandı"],"Height in pixels":["Piksel olarak yükseklik"],"Spacer settings":["Aralayıcı ayarları"],"Spacer":["Aralayıcı"],"Toggle to show a large initial letter.":["Büyük bir başlangıç harfi gösterimini açıp kapatın."],"Showing large initial letter.":["Büyük ilk harf gösteriliyor."],"Name:":["İsim:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s / %3$s)"],"Remove item":["Öğeyi kaldır"],"Color code: %s":["Renk kodu: %s"],"Skip to the selected block":["Seçilen bloğa geç"],"Publish…":["Yayımla…"],"Schedule…":["Zamanla…"],"Edit post permalink":["Kalıcı bağlantıyı düzenle"],"Show Block Settings":["Blok ayarlarını göster"],"Hide Block Settings":["Blok ayarlarını gizle"],"Block settings closed":["Blok ayarları kapatıldı"],"Close plugin":["Eklentiyi kapat"],"Editor settings":["Düzenleyici ayarları"],"Link settings":["Bağlantı ayarları"],"Unlink":["Bağlantıyı kaldır"],"Page break":["Sayfa sonu"],"pagination":["sayfalama"],"next page":["sonraki sayfa"],"Image Size":["Görsel boyutu"],"Height":["Yükseklik"],"Width":["Genişlik"],"Image Dimensions":["Görsel boyutları"],"Thumbnails are not cropped.":["Küçük resimler kırpılmadı."],"Thumbnails are cropped to align.":["Küçük resimler hizalamak için kırpılır."],"Media Library":["Ortam kütüphanesi"],"Advanced":["Gelişmiş"],"Add item":["Ürün ekle"],"Reset the template":["Şablonu sıfırla"],"Keep it as is":["Olduğu gibi bırak"],"The content of your post doesn’t match the template assigned to your post type.":["Yazınızın içeriği, yazı tipine atanan şablon ile eşleşmiyor."],"Resetting the template may result in loss of content, do you want to continue?":["Şablounu sıfırlamak içerik kaybıyla sonuçlanabilir, devam etmek istediğinize emin misiniz?"],"Document Statistics":["Belge istatistikleri"],"is now scheduled. It will go live on":["şimdi planlandı. Bu tarihte yayınlanacak"],"Scheduled":["Zamanlandı"],"Scheduling…":["Zamanlanıyor…"],"Code editor selected":["Kod düzenleyici seçildi"],"Visual editor selected":["Görsel düzenleyici seçildi"],"Plugins":["Eklentiler"],"Custom Size":["Özel boyut"],"Layout elements":["Yerleşim öğeleri"],"term\u0004%s removed":["%s kaldırıldı"],"term\u0004%s added":["%s eklendi"],"imperative verb\u0004Preview":["Ön izleme"],"Block deleted.":["Blok silindi."],"Block updated.":["Blok güncellendi."],"Block created.":["Blok oluşturuldu."],"Trashing failed":["Çöpe gönderilemedi"],"Updating failed.":["Güncelleme başarısız oldu."],"Scheduling failed.":["Zamanlama başarısız oldu."],"Publishing failed.":["Yayımlama başarısız oldu."],"View post":["Yazıyı görüntüle"],"You have unsaved changes. If you proceed, they will be lost.":["Kaydedilmemiş değişiklikleriniz var. Eğer devam ederseniz değişiklikler yok olacak."],"Document Outline":["Belge anahattı"],"Paragraphs":["Paragraflar"],"Headings":["Başlıklar"],"Words":["Kelime"],"Content structure":["İçerik yapısı"],"Public":["Genel"],"Protected with a password you choose. Only those with the password can view this post.":["Seçtiğiniz parola ile korunmaktadır. Sadece parolayı bilenler bu yazıyı görüntüleyebilecektir."],"Password Protected":["Parola korumalı"],"Only visible to site admins and editors.":["Yalnızca site yöneticileri ve editörleri tarafından görülebilir."],"Private":["Özel"],"Visible to everyone.":["Herkese açık."],"Post Visibility":["Yazı görünürlüğü"],"Would you like to privately publish this post now?":["Bu yazıyı şimdi özel olarak yayımlamak ister misiniz?"],"Use a secure password":["Güvenli bir parola kullanın"],"Create password":["Parola oluştur"],"Move to Trash":["Çöpe taşı"],"Parent Term":["Ebeveyn terim"],"Parent Category":["Ebeveyn kategori"],"Add new term":["Yeni terim ekle"],"Add new category":["Yeni kategori ekle"],"Term":["Terim"],"Tag":["Etiket"],"Add new Term":["Yeni terim ekle"],"Add new tag":["Yeni etiket ekle"],"Switch to draft":["Taslağa dönüştür"],"Are you sure you want to unpublish this post?":["Bu yazıyı yayından kaldırmak istediğinize emin misiniz?"],"Immediately":["Hemen"],"Save Draft":["Taslağı kaydet"],"Saving":["Kaydediliyor"],"Publish:":["Yayımla:"],"Visibility:":["Görünürlük:"],"Are you ready to publish?":["Yayımlamaya hazır mısınız?"],"Copy Link":["Bağlantıyı kopyala"],"What’s next?":["Sıradaki ne?"],"is now live.":["şimdi yayında."],"Published":["Yayımlandı"],"Schedule":["Zamanla"],"Update":["Güncelle"],"Submit for Review":["İnceleme için gönder"],"Updating…":["Güncelleniyor…"],"Publishing…":["Yayımlanıyor…"],"Allow pingbacks & trackbacks":["Geri bildirimlere ve geri izlemelere izin ver"],"Permalink:":["Kalıcı bağlantı:"],"Pending review":["İnceleme bekliyor"],"%d Revision":["%d sürüm","%d sürüm"],"Suggestion:":["Öneri:"],"Post Format":["Yazı biçimi"],"Chat":["Sohbet"],"Status":["Durum"],"Standard":["Standart"],"Aside":["Ayrı"],"Featured image":["Öne çıkan görsel"],"Set featured image":["Öne çıkan görseli belirle"],"Learn more about manual excerpts":["Elle yazılan özetler hakkında daha fazlasını öğrenin"],"Write an excerpt (optional)":["Özet yazın (isteğe bağlı)"],"Allow comments":["Yorumlara izin ver"],"Template:":["Şablon:"],"no parent":["ebeveyn yok"],"no title":["başlıksız"],"Order":["Sıra"],"No blocks found.":["Blok bulunamadı."],"%d result found.":["%d sonuç bulundu.","%d sonuç bulundu."],"Saved":["Kaydedildi"],"Embeds":["Gömülüler"],"Blocks":["Bloklar"],"Search for a block":["Blok ara"],"Add block":["Blok ekle"],"Copy Error":["Kopyalama hatası"],"Copy Post Text":["Yazı metnini kopyala"],"Attempt Recovery":["Kurtarma girişimi"],"The editor has encountered an unexpected error.":["Düzenleyici beklenmeyen bir hatayla karşılaştı."],"Undo":["Geri al"],"Redo":["Yinele"],"(Multiple H1 headings are not recommended)":["(Birden fazla H1 etiketi önerilmez)"],"(Your theme may already use a H1 for the post title)":["(Temanız zaten yazı başlığı için H1 etiketi kullanıyor)"],"(Incorrect heading level)":["(Yanlış başlık seviyesi)"],"(Empty heading)":["(Boş başlık)"],"Block Styles":["Blok biçimleri"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Tekrar kullanılabilir bu bloğu silmek istediğinize emin misiniz?\n\nBunu kullanan tüm sayfalardan ve yazılardan kalıcı olarak kaldırılacaktır."],"Convert to Regular Block":["Normal bloğa dönüştür"],"More options":["Daha fazla seçenek"],"Edit visually":["Görsel olarak düzenle"],"Duplicate":["Çoğalt"],"Blocks cannot be moved down as they are already at the bottom":["Bloklar zaten altta oldukları için aşağı taşınamazlar"],"Blocks cannot be moved up as they are already at the top":["Bloklar zaten üstte oldukları için yukarı taşınamazlar"],"Block %1$s is at the beginning of the content and can’t be moved right":["%1$s bloğu içeriğin başında ve sağa taşınamaz"],"Block %1$s is at the end of the content and can’t be moved right":["%1$s bloğu içeriğin sonunda ve sağa taşınamaz"],"Block %s is the only block, and cannot be moved":["%s tek bloktur bu yüzden taşınamaz"],"Edit as HTML":["HTML olarak düzenle"],"Convert to Blocks":["Bloklara dönüştür"],"Block: %s":["Blok: %s"],"This block has encountered an error and cannot be previewed.":["Bu blok bir hatayla karşılaştı ve önizlenemiyor."],"No block selected.":["Blok seçilmedi."],"Transform into:":["Dönüştür:"],"Remove":["Kaldır"],"Find original":["Orijinali bul"],"Copy all content":["Tüm içeriği kopyala"],"Copied!":["Kopyalandı!"],"Additional settings are now available in the Editor block settings sidebar":["Artık düzenleyici blok ayarları kenar çubuğunda ek ayarlar kullanılabilir"],"Visibility":["Görünürlük"],"Status & visibility":["Durum ve görünürlük"],"Page attributes":["Sayfa nitelikleri"],"Block":["Blok"],"Document":["Belge"],"Close settings":["Ayarları kapat"],"Editor content":["Düzenleyici içeriği"],"Tools":["Araçlar"],"Editor":["Düzenleyici"],"Code editor":["Kod düzenleyici"],"Visual editor":["Görsel düzenleyici"],"Editor top bar":["Düzenleyici üst çubuğu"],"Settings":["Ayarlar"],"Reset":["Sıfırla"],"Dismiss this notice":["Uyarıyı görmezden gel"],"Item removed.":["Öğe kaldırıldı."],"Item added.":["Öğe eklendi."],"Drop files to upload":["Karşıya yüklemek için dosyaları sürükleyin"],"PM":["ÖS"],"AM":["ÖÖ"],"An unknown error occurred.":["Bilinmeyen bir hata oluştu."],"No results.":["Sonuç yok."],"%d result found, use up and down arrow keys to navigate.":["%d sonuç bulun bulundu, dolaşım için aşağı ve yukarı yön tuşlarını kullanın.","%d sonuç bulun bulundu, dolaşım için aşağı ve yukarı yön tuşlarını kullanın."],"(no title)":["(başlıksız)"],"URL":["Bağlantı"],"Submit":["Kaydet"],"Close":["Kapat"],"Insert link":["Bağlantı ekle"],"Edit link":["Bağlantıyı düzenle"],"Link":["Bağlantı"],"Strikethrough":["Üzeri çizili"],"Italic":["Eğik"],"Bold":["Kalın"],"Remove link":["Bağlantıyı kaldır"],"Number of items":["Öğe sayısı"],"All":["Tümü"],"Category":["Kategori"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Eskiden yeniye"],"Newest to Oldest":["Yeniden eskiye"],"Order by":["Sırala"],"Select":["Seç"],"Select or Upload Media":["Ortam seç veya karşıya yükle"],"Video":["Video"],"Write…":["Yaz…"],"poetry":["şiir"],"Verse":["Dörtlük"],"New Column":["Yeni sütun"],"Delete Column":["Sütunu sil"],"Add Column After":["Sütun sonrasına ekle"],"Add Column Before":["Sütun öncesine ekle"],"Delete Row":["Satırı sil"],"Add Row After":["Satırın sonrasına ekle"],"Add Row Before":["Satır öncesine ekle"],"Edit table":["Tabloyu düzenle"],"Table":["Tablo"],"Write subheading…":["Alt başlık yaz…"],"Write shortcode here…":["Kısa kodu buraya yaz…"],"Shortcode":["Kısa kod"],"divider":["ayırıcı"],"horizontal-line":["yatay çizgi"],"Separator":["Ayırıcı"],"Quote":["Alıntı"],"Write citation…":["Kaynak yaz…"],"Write quote…":["Alıntı yaz…"],"Pullquote":["Alıntı yap"],"Write preformatted text…":["Önceden biçimlendirilmiş metin yaz…"],"Preformatted":["Önceden biçimlendirilmiş"],"text":["metin"],"Paragraph":["Paragraf"],"Font Size":["Yazı tipi boyutu"],"Drop Cap":["İlk harfi büyük"],"Text settings":["Metin ayarları"],"Read more":["Daha fazla oku"],"Write list…":["Liste yaz…"],"numbered list":["numaralı liste"],"ordered list":["sıralı liste"],"bullet list":["işaretli liste"],"Indent list item":["Liste öğesinin girintisini arttır"],"Outdent list item":["Liste öğesinin girintisini azalt"],"Convert to ordered list":["Sıralı listeye dönüştür"],"Convert to unordered list":["Sırasız listeye dönüştür"],"List":["Liste"],"recent posts":["son yazılar"],"No posts found.":["Yazı bulunamadı."],"Latest Posts":["Son yazılar"],"Display post date":["Yazı tarihini göster"],"Grid view":["Izgara görünümü"],"List view":["Liste görünümü"],"photo":["fotoğraf"],"Image settings":["Görsel ayarları"],"Image":["Görsel"],"Preview":["Ön izleme"],"embed":["göm"],"Custom HTML":["Özel HTML"],"subtitle":["alt başlık"],"title":["başlık"],"Heading":["Başlık"],"Write heading…":["Başlık yaz…"],"Heading %d":["Başlık %d"],"Level":["Seviye"],"Heading settings":["Başlık ayarları"],"photos":["fotoğraflar"],"images":["görseller"],"None":["Yok"],"Media File":["Ortam dosyası"],"Attachment Page":["Ek sayfası"],"Link to ":["Bağlantı:"],"Crop Images":["Görselleri kırp"],"Gallery settings":["Galeri ayarları"],"Gallery":["Galeri"],"Classic":["Klasik"],"video":["video"],"audio":["ses"],"music":["müzik"],"image":["görsel"],"blog":["blog"],"post":["yazı"],"Embedded content from %s":["%s adresinden gömülen içerik"],"Enter URL to embed here…":["Buraya gömülecek bağlantıyı girin…"],"%s URL":["%s bağlantısı"],"Embedding…":["Gömülüyor…"],"Write title…":["Başlık yaz…"],"Fixed Background":["Sabir arka plan"],"Edit image":["Görseli düzenle"],"Columns":["Sütunlar"],"Experiments":["Deneyler"],"Code":["Kod"],"Write code…":["Kod yaz…"],"Categories":["Kategoriler"],"Show Hierarchy":["Hiyerarşiyi göster"],"Show post counts":["Yazı sayısını göster"],"Categories settings":["Kategori ayarları"],"Add text…":["Metin ekle…"],"Button":["Düğme"],"Apply":["Uygula"],"Text Color":["Metin rengi"],"Background Color":["Arka plan rengi"],"Block has been deleted or is unavailable.":["Blok silindi veya kullanılamıyor."],"Reusable blocks":["Tekrar kullanılabilir bloklar"],"Cancel":["İptal"],"Edit":["Düzenle"],"Write caption…":["Altyazı yaz…"],"Use URL":["Bağlantı kullan"],"Audio":["Ses"],"Upload":["Karşıya yükle"],"Additional CSS Class(es)":["Ek CSS sınıf(lar)ı"],"HTML Anchor":["HTML çapası"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Bu renk kombinasyonu insanların okumasını zorlaştırabilir. Daha açık arka plan rengi ve/veya daha koyu metin rengi kullanmayı deneyebilirsiniz."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Bu renk kombinasyonu insanların okumasını zorlaştırabilir. Daha koyu arka plan rengi ve/veya daha açık metin rengi kullanmayı deneyebilirsiniz."],"Clear":["Temizle"],"Custom color picker":["Özel renk seçici"],"Color: %s":["Renk: %s"],"Full width":["Tam genişlik"],"Wide width":["Büyük genişlik"],"Widgets":["Bileşenler"],"Formatting":["Biçimlendirme"],"Common blocks":["Ortak bloklar"],"Align right":["Sağa hizala"],"Align center":["Ortala"],"Align left":["Sola hizala"],"Printing since 1440. This is the development plugin for the new block editor in core.":["1440'ten beri basım. Bu, çekirdekteki yeni blok düzenleyicisinin geliştirme eklentisidir."],"Add title":["Başlık ekle"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg geliştirme modu dosyaların yapılandırılmasını gerektirir. Bağımlılıkları yüklemek için npm install
komutunu çalıştırın, dosyaları yapılandırmak için npm run build
komutunu ve yapılandırıp değişiklikleri izlemek için npm run dev
komutunu çalıştırın. Daha fazla bilgi için katkıda bulunma dosyasını okuyun."],"Author":["Yazar"],"Slug":["Kısa isim"],"Discussion":["Tartışma"],"Custom fields":["Özel alanlar"],"Excerpt":["Özet"],"Publish":["Yayımla"],"Metadata":["Meta veri"],"Save":["Kaydet"],"Documentation":["Belgeler"],"Select Category":["Kategori seçin"],"(Untitled)":["(Başlıksız)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenbergin düzgün çalışması için WordPress %s veya üstü gerekir. Lütfen Gutenbergi etkinleştirmeden önce WordPress sürümünüzü yükseltin."],"Gutenberg Team":["Gutenberg Ekibi"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s önce"],"Block style name must be a string.":["Blok biçem adı metin olmalıdır."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_uk.json b/bundle/android/raw/i18ncache_data_uk.json
new file mode 100644
index 0000000000..adffee9fc9
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_uk.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":["Оновлено %s"],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":["Зворотня нумерація списку"],"Start Value":["Початкове значення"],"Ordered list settings":[],"Clear Media":["Очистити медіа"],"Default Style":["Стиль за замовчуванням"],"Not set":["Не встановлений"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["Перегляньте бібліотеку, щоб дізнатися більше про те, що робить кожен блок."],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":["Вирівняти колонку праворуч"],"Align Column Center":["Вирівняти колонку по центру"],"Align Column Left":["Вирівняти колонку ліворуч"],"Color":["Колір"],"Vivid purple":["Яскравий фіолетовий"],"Disable & Reload":["Відключити і перезавантажити"],"Enable & Reload":["Включити і перезавантажити"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":["Експериментальні налаштування"],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":["Чернетка"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":["Дізнайтеся більше про якорі"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":["Блоки віджетів (Експериментальне)"],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":["Пропустити"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["Що це?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":["Опис"],"Open in new tab":[],"links":["посилання"],"navigation":[],"menu":["меню"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":["Три колонки; широка центральна колонка"],"Three columns; equal split":["Три колонки; рівне розділення"],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":["Більше інструментів і можливостей"],"Create Table":["Створити таблицю"],"Insert a table for sharing data.":["Створити таблицю для представлення даних."],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Розгрупувати"],"verb\u0004Group":["Групувати"],"Separate with commas or the Enter key.":["Розділяйте комами або клавішею Enter."],"Separate with commas, spaces, or the Enter key.":["Розділяйте комами, пробілами або клавішею Enter."],"Separate multiple classes with spaces.":["Розділіть декілька класів пробілами."],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":["На жаль, ви не можете редагувати області віджетів."],"Sorry, you are not allowed to read sidebars.":["На жаль, ви не можете читати області віджетів."],"The sidebar’s ID.":["ID області віджетів."],"Displays a set of blocks":["Відображає набір блоків"],"Blocks Area":["Область блоків"],"Block rendered as empty.":["Блок відображається як порожній."],"Inline Code":["Вбудований код"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Замітка: Автоматичне відтворення відео може викликати проблеми з використанням у деяких відвідувачів."],"Footer section":["Область підвалу"],"Header section":["Область заголовку"],"Sorting and filtering":[],"Post meta settings":[],"Post Content":["Вміст запису"],"Post content settings":[],"Percentage width":["Ширина у відсотках"],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":["Замітка: Автоматичне відтворення звуку може викликати проблеми з використанням у деяких відвідувачів."],"Block area updated.":["Область блоків оновлена."],"Block area scheduled.":["Область блоків запланована до публікації."],"Block area published.":["Область блоків опублікована."],"Block areas list":["Список областей блоків"],"Block areas list navigation":["Навігація по списку областей блоків"],"Filter block areas list":["Відфільтрувати список областей блоків"],"No block area found.":["Область блоків не знайдено."],"Search Block Areas":["Пошук областей блоків"],"All Block Areas":["Всі області блоків"],"View Block Area":["Подивитися область блоків"],"Edit Block Area":["Змінити область блоків"],"New Block Area":["Нова область блоків"],"Add New Block Area":["Додати нову область блоків"],"admin menu\u0004Block Areas":["Області блоків"],"post type singular name\u0004Block Area (Experimental)":["Область блоків (експериментальна)"],"post type general name\u0004Block Area (Experimental)":["Область блоків (експериментальна)"],"Experimental custom post type that will store block areas referenced by themes.":["Експериментальний користувацький тип запису, який зберігає області блоків, на які посилаються теми."],"Widgets screen content":["Вміст екрану віджетів"],"header":[],"Widgets advanced settings":["Розширені налаштування віджетів"],"(experimental)":["(експериментальний)"],"Block Areas":["Області Блоку"],"Widgets screen top bar":["Верхня панель екрану віджетів"],"This color combination may be hard for people to read.":["Це поєднання кольорів може бути важким для читання людьми."],"There is no poster image currently selected":["В даний момент зображення постера не вибрано"],"The current poster image url is %s":["Поточний URL зображення постера %s"],"section":["розділ"],"row":["рядок"],"wrapper":["обгортка"],"container":["контейнер"],"A block that groups other blocks.":["Блок, який групує інші блоки."],"Group":["Група"],"Crop image to fill entire column":["Обрізати зображення для заповнення всього стовпця"],"Play inline":["Програти вбудований вміст"],"Leave empty if the image is purely decorative.":["Залишити порожнім, якщо зображення є суто декоративним."],"Describe the purpose of the image":["Опишіть призначення зображення"],"Add a block":["Додайте блок"],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":["Вертикальне вирівнювання низу"],"Block vertical alignment setting\u0004Vertically Align Middle":["Вертикальне вирівнювання середини"],"Replace Image":["Замініть зображення"],"Block vertical alignment setting\u0004Vertically Align Top":["Вертикальне вирівнювання верху"],"Display a legacy widget.":["Відобразити застарілий віджет."],"Legacy Widget (Experimental)":["Застарілий віджет (Експериментальне)"],"Change widget":["Зманіть віджет"],"Legacy Widget":["Застарілий віджет"],"You don't have permissions to use widgets on this site.":["У вас немає прав на використання віджетів на цьому сайті."],"Select a legacy widget to display:":["Виберіть застарілий віджет для відображення:"],"There are no widgets available.":["Немає доступних віджетів."],"Change block type or style":["Змінити тип блоку або стиль"],"keyboard key\u0004Space":["Пробіл"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":[],"Search Terms":["Умови пошуку"],"Exit the Editor":["Вийти з редактору"],"Block Manager":["Менеджер блоків"],"Class name of the widget.":["Ім'я класу віджета."],"Sorry, you are not allowed to access widgets on this site.":["На жаль, у вас немає доступу до віджетів на цьому сайті."],"Widgets (beta)":["Віджети (бета-версія)"],"link":["посилання"],"Embedded content from %s can't be previewed in the editor.":["Вбудований вміст від %s не можна переглянути в редакторі."],"Custom Color":["Налаштування кольору"],"Prompt visitors to take action with a button-style link.":["Підкажіть відвідувачам дію з посиланням на стиль кнопки."],"Stick to the top of the blog":["Приліпити до верхньої частини блогу"],"Read about permalinks":["Читайте про постійні посилання"],"The last part of the URL.":[],"URL Slug":["Частина посилання"],"A cloud of your most used tags.":["Хмара часто використовуваних позначок."],"Tag Cloud":["Хмаринка позначок"],"Taxonomy":["Таксономії"],"Tag Cloud settings":[],"- Select -":["- Вибрати -"],"Default":["За замовчуванням"],"find":["знайти"],"Help visitors find your content.":["Допоможіть відвідувачам знайти ваш вміст."],"Search":["Пошук"],"Add button text…":["Додати текст кнопки…"],"Button text":["Текст кнопки"],"Optional placeholder…":["Необов'язковий заповнювач…"],"Optional placeholder text":["Опціональний текст заповнювача"],"Add label…":["Додати мітку…"],"Label text":["Текст підпису"],"image %1$d of %2$d in gallery":["малюнок %1$d з %2$d у галереї"],"archive":["архів"],"posts":["записи"],"A calendar of your site’s posts.":["Календар повідомлень вашого сайту."],"Calendar":["Календар"],"by":["від"],"An error has occurred, which probably means the feed is down. Try again later.":["Сталася помилка Це може означати, що канал не працює. Спробуйте ще раз пізніше."],"RSS Error:":["Помилка RSS:"],"block style\u0004Default":["Без обумовлення"],"Fullscreen mode deactivated":["Повноекранний режим вимкнено"],"Fullscreen mode activated":["Повноекранний режим активовано"],"Spotlight mode deactivated":["Режим освітлення вимкнено"],"Spotlight mode activated":["Режим освітлення ввімкнено"],"Top toolbar deactivated":["Верхній Тулбар вимкнено"],"Top toolbar activated":["Верхній Тулбар ввімкнено"],"Back":["Задній"],"Feature activated":["Функція вимкнена"],"Feature deactivated":["Функція ввімкнена"],"Vertical Pos.":["Вертикальна поз."],"Horizontal Pos.":["Горизонтальне поз."],"feed":["потік"],"atom":["atom"],"Display entries from any RSS or Atom feed.":["Відобразити записи з будь-якого каналу RSS або Atom."],"RSS":["RSS"],"Max number of words in excerpt":["Максимальна кількість слів у витязі"],"Display excerpt":["Показати уривок"],"Display date":["Показати дату"],"Display author":["Показати автора"],"RSS settings":[],"Edit RSS URL":["Редагувати URL RSS"],"Content before this block will be shown in the excerpt on your archives page.":["Вміст перед цим блоком буде показано у витягуванні на сторінці архівів."],"Hide the excerpt on the full content page":["Приховати витяг на повній сторінці вмісту"],"The excerpt is visible.":["Витяг видно."],"The excerpt is hidden.":["Витяг сховано."],"Sorry, this content could not be embedded.":["На жаль, цей вміст не вдалося вбудувати."],"Embed Amazon Kindle content.":["Вставити вміст Amazon Kindle."],"ebook":["екнига"],"Embed Crowdsignal (formerly Polldaddy) content.":["Вставити вміст Crowdsignal (раніше Polldaddy)."],"Focal Point Picker":["Фокусна відстань вибір"],"Underline":["Підкреслений"],"Attempt Block Recovery":["Спроба відновлення Блоку"],"Word count type. Do not translate!\u0004words":["слів"],"content placeholder\u0004Content…":["Вміст…"],"button label\u0004Convert to link":["Перетворити на посилання"],"button label\u0004Try again":["Спробувати ще раз"],"Editor tips":["Поради редактора"],"Block (selected)":["Блок (обрано)"],"Document (selected)":["Документ (обрано)"],"%d word":["%d слово","%d слова","%d слово"],"Top toolbar":[],"Link Rel":["Посилання Рел"],"Link CSS Class":["CSS клас посилання"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Створіть вміст і збережіть його для вас та інших учасників для повторного використання на своєму сайті. Оновити блок, і зміни застосовуються скрізь, де воно використовується."],"To edit the featured image, you need permission to upload media.":["Щоб відредагувати обране зображення, вам потрібен дозвіл на завантаження медіафайлів."],"To edit this block, you need permission to upload media.":["Щоб відредагувати цей блок, вам потрібен дозвіл на завантаження медіафайлів."],"(selected block)":["(вибраний блок)"],"Block tools":["Блок інструменти"],"Permalink":["Посилання"],"This image has an empty alt attribute":["Це зображення має порожній атрибут alt"],"This image has an empty alt attribute; its file name is %s":["Це зображення має порожній атрибут alt; це ім'я файлу %s"],"Block area reverted to draft.":["Область блоків повернута в чернетки."],"Block area published privately.":["Область блоків опублікована як особиста."],"No block areas found in Trash.":["Немає областей блоків в кошику."],"Block\u0004Add New":["Додати"],"add new on admin bar\u0004Block Area":["Область блоків"],"Link inserted.":["Посилання вставлено."],"Warning: the link has been inserted but may have errors. Please test it.":["Увага: посилання вставлено, але може мати помилки. Будь ласка, випробуйте його."],"%s block selected.":["%s блок вибрано.","%s блок вибрано.","%s блок вибрано."],"Thumbnail":["Мініатюри"],"Full Size":["Повний розмір"],"Link selected.":["Посилання обрано."],"Start writing with text or HTML":["Почніть писати текст або HTML"],"Type text or HTML":["Введіть текст або HTML"],"Block icon":["Блок значок"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Почніть писати або вводити / вибрати блок"],"Empty block; start writing or type forward slash to choose a block":["Порожній блок; Почніть писати або набувати косу риску, щоб вибрати блок"],"Paragraph block":["Блок абзацу"],"Page Break":["Розрив сторінки"],"Stack on mobile":["Стекування на мобільний"],"Annotation":["Анотація"],"Drag images, upload new ones or select files from your library.":["Перетягніть зображення, завантажте нові або виділіть файли з вашої бібліотеки."],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["Вирішити"],"font size name\u0004Huge":["Величезний"],"font size name\u0004Large":["Великий"],"font size name\u0004Medium":["Cередній"],"font size name\u0004Small":["Менший"],"font size name\u0004Normal":["Нормальне"],"keyboard button\u0004Enter":["Введіть"],"button label\u0004Import":["Імпорт"],"button label\u0004Download":["Завантажити"],"button label\u0004Embed":["Вбудувати"],"block title\u0004Embed":["Вбудувати"],"block title\u0004Classic":["Класичний"],"block style\u0004Large":["Великий"],"block style\u0004Rounded":["Округлений"],"%s (opens in a new tab)":["%s (відкривається у новій вкладці)"],"Link edited.":["Посилання відредаговано."],"Link removed.":["Посилання видалено."],"media":["медіа"],"Double-check your settings before publishing.":["Перевірте свої налаштування перед публікацією."],"Generating preview…":["Генерування перегляду…"],"Edit or update the image":["Редагування або оновлення зображення"],"Media":["Медіафайли"],"Navigate to the nearest toolbar.":["Перейдіть на найближчу панель інструментів."],"Document tools":["Інструменти документування"],"Document and block tools":["Інструменти документування та блокування"],"Embed a video from your media library or upload a new one.":["Вставте відео з Медіафайлів або завантажте нове."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Вставити вірші. Використовуйте спеціальні формати інтервалу. Або цитата лірика пісні."],"Add white space between blocks and customize its height.":["Додати пробіл між блоками та налаштувати його висоту."],"Insert additional custom elements with a WordPress shortcode.":["Вставте додаткові спеціальні елементи за допомогою короткого коду WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Створіть перерву між ідеями або розділами з горизонтальним сепаратором."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Наведіть цитований текст наочного акценту. \"Цитуючи інших, ми називаємо себе\". - Хуліо Кортазар"],"Give special visual emphasis to a quote from your text.":["Надайте особливий нагляд на цитату з тексту."],"Start with the building block of all narrative.":["Почніть зі складу всієї розповіді."],"Separate your content into a multi-page experience.":["Розділіть свій вміст на багатосторінковий досвід."],"Set media and words side-by-side for a richer layout.":["Встановіть медіа та слова поруч, щоб отримати багатший макет."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Створіть маркований або пронумерований список."],"Display a list of your most recent comments.":["Відображення списку останніх коментарів."],"Insert an image to make a visual statement.":["Вставте зображення для створення візуального твердження."],"Add custom HTML code and preview it as you edit.":["Додайте власний HTML-код і попередньо перегляньте його під час редагування."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Впроваджуйте нові розділи та організуйте вміст, щоб допомогти відвідувачам (та пошуковим системам) зрозуміти структуру вашого вмісту."],"Display multiple images in a rich gallery.":["Відображати кілька фотографій у режимі Галереї."],"Add a link to a downloadable file.":["Додайте посилання на завантажений файл."],"Embed videos, images, tweets, audio, and other content from external sources.":["Вставляти відео, зображення, твітів, звук та інший вміст із зовнішніх джерел."],"Resize for smaller devices":["Зміна розміру для менших пристроїв"],"This embed may not preserve its aspect ratio when the browser is resized.":["Ця вкладка може не зберігати співвідношення сторін, коли браузер змінюється."],"This embed will preserve its aspect ratio when the browser is resized.":["Ця вкладка зберігатиме співвідношення сторін, коли змінюється розмір браузера."],"Embed an Animoto video.":["Вставте відеоролик Animoto."],"Embed a Vimeo video.":["Вставте відео Vimeo."],"Embed Flickr content.":["Вставити вміст Flickr."],"Embed Spotify content.":["Вставити вміст Spotify."],"Embed SoundCloud content.":["Вставити вміст SoundCloud."],"Embed a WordPress post.":["Вставити повідомлення WordPress."],"Embed an Instagram post.":["Вставити повідомлення в Instagram."],"Embed a Facebook post.":["Вставити повідомлення в Facebook."],"Embed a WordPress.tv video.":["Вставте відео WordPress.tv."],"Embed a VideoPress video.":["Вставте відеозапис VideoPress."],"Embed a Tumblr post.":["Вставити повідомлення Tumblr."],"Embed a TED video.":["Вставте TED відео."],"Embed Speaker Deck content.":["Вставити вміст колодки колонки."],"Embed a YouTube video.":["Вставити відео YouTube."],"Embed SmugMug content.":["Вставити вміст SmugMug."],"Embed Slideshare content.":["Вставити вміст Slideshare."],"Embed Scribd content.":["Вставити вміст Scribd."],"Embed Screencast content.":["Вставити вміст Screencast."],"Embed ReverbNation content.":["Вставити вміст ReverbNation."],"Embed a Reddit thread.":["Вставити гілку Reddit."],"Embed Polldaddy content.":["Вставити вміст Polldaddy."],"Embed Mixcloud content.":["Вставити вміст Mixcloud."],"Embed a tweet.":["Вставити твіт."],"Embed Meetup.com content.":["Вставити вміст Meetup.com."],"Embed Kickstarter content.":["Вставити вміст Kickstarter."],"Embed Issuu content.":["Вставити вміст Issuu."],"Embed Imgur content.":["Вставити вміст Imgur."],"Embed Hulu content.":["Вставити вміст Hulu."],"Embed a Dailymotion video.":["Вставити відео Dailymotion."],"Embed CollegeHumor content.":["Вставити CollegeHumor вміст."],"Embed Cloudup content.":["Вставити вміст Cloudup."],"Add an image or video with a text overlay — great for headers.":["Додайте зображення або відео з текстовим накладанням - чудово підходить для заголовків."],"Display code snippets that respect your spacing and tabs.":["Фрагменти коду відображення, що враховують ваші інтервали та вкладки."],"Use the classic WordPress editor.":["Використовуйте класичний редактор WordPress."],"Display a list of all categories.":["Відображати список усіх категорій."],"Embed a simple audio player.":["Вставити простий аудіопрогравач."],"noun\u0004View":["Перегляд"],"editor button\u0004Left to right":["Зліва направо"],"Save as Pending":["Зберегти як висячий"],"%s address":["%s адреса"],"Paste or type URL":["Вставити або ввести URL-адресу"],"Insert from URL":["Вставте URL файлу"],"Block Navigator":[],"Styles":["Стилі"],"Advanced panels":[],"Document panels":[],"General":["Загальне"],"Open the block navigation menu.":["Відкрийте меню блокування навігації."],"Work without distraction":["Робота без відволікання"],"Focus on one block at a time":["Зосередьтеся на одному блоці за один раз"],"Access all block and document tools in a single place":["Доступ до всіх інструментів блокування та документації в одному місці"],"Options":["Параметри"],"(opens in a new tab)":["(відкривається у новій вкладці)"],"Minutes":["Хвилини"],"Hours":["Години"],"Time":["Час"],"Year":["Рік"],"Day":["День"],"December":["Грудень"],"November":["Листопад"],"October":["Жовтень"],"September":["Вересень"],"August":["Серпень"],"July":["Липень"],"June":["Червень"],"May":["Травень"],"April":["Квітень"],"March":["Березень"],"February":["Лютий"],"January":["Січень"],"Month":["Місяць"],"Date":["Дата"],"Go to the first (home) or last (end) day of a week.":["Перейдіть до першого (домашнього) або останнього (кінцевого) дня тижня."],"Home/End":["Головна / кінець"],"Home and End":["Головна та кінець"],"Move backward (PgUp) or forward (PgDn) by one month.":["Перемістити назад (PgUp) або вперед (PgDn) на один місяць."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up і Page Down"],"Move backward (up) or forward (down) by one week.":["Рухайтесь назад (вгору) або вперед (вниз) на один тиждень."],"Up and Down Arrows":["Стрілки Вгору та Вниз"],"Move backward (left) or forward (right) by one day.":["Перемістити назад (вправо) або вперед (вправо) на один день."],"Left and Right Arrows":["Стрілки Вліво та Вправо"],"Select the date in focus.":["Виберіть дату в фокусі."],"Navigating with a keyboard":["Навігація за допомогою клавіатури"],"Click the desired day to select it.":["Натисніть потрібний день, щоб вибрати його."],"Click the right or left arrows to select other months in the past or the future.":["Клацніть стрілки вправо або вліво, щоб вибрати інші місяці минулого або майбутнього."],"Click to Select":["Натисніть, щоб вибрати"],"Calendar Help":["Календар довідки"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Використовуйте клавіші зі стрілками, щоб змінити основний колір. Перемістіться вгору, щоб пом'якшити колір, аж до затемнення, ліворуч, щоб зменшити насиченість, і вправо, щоб збільшити насиченість."],"Choose a shade":["Виберіть тінь"],"Change color format":["Змінити формат кольорів"],"Color value in HSL":["Значення кольору в HSL"],"Color value in RGB":["Значення кольору в RGB"],"Color value in hexadecimal":["Значення кольору у hexadecimal"],"RGB mode active":["Режим RGB активний"],"Hex color mode active":["Режим Hex кольору активний"],"Hue/saturation/lightness mode active":["Режим відтінку / насичення / легкість активний"],"Move the arrow left or right to change hue.":["Перемістіть стрілку вліво або вправо, щоб змінити відтінок."],"Hue value in degrees, from 0 to 359.":["Відтінок в градусах, від 0 до 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Значення Альфа від 0 (прозорий) до 1 (повністю непрозорий)."],"Stripes":["Смужки"],"Your site doesn’t include support for this block.":["Ваш сайт не включає підтримку цього блоку."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Ваш сайт не містить підтримку \"%s\" блоку. Ви можете залишити цей блок недоторканим або повністю вилучити його."],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Ваш сайт не містить підтримку \"%s\" блоку. Ви можете залишити цей блок недоторканим, перетворити його вміст на спеціальний HTML-блок або повністю вилучити його."],"Media area":["Область медіа"],"Media & Text":["Медіа & Текст"],"Show media on right":["Покажіть медіа праворуч"],"Show media on left":["Покажіть медіа ліворуч"],"Open in New Tab":["Відкрити в новій вкладці"],"Cover":["Обкладинка"],"Border settings":[],"Medium":["Cередній"],"Paste URL or type to search":["Вставте URL-адресу або введіть для пошуку"],"Terms":["Значення"],"Your work will be published at the specified date and time.":["Ваша робота буде опублікована в зазначену дату та час."],"Are you ready to schedule?":["Ви готові запланувати?"],"Always show pre-publish checks.":["Завжди показувати перед публікацією чеків."],"Take Over":["Прийняти"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["На даний момент інший користувач працює над цим повідомленням, а це означає, що ви не можете внести зміни, якщо не захочете."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s в даний час працює над цим повідомленням, а це означає, що ви не можете внести зміни, якщо ви не захочете."],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["Інший користувач має редагування цього повідомлення. Не хвилюйтеся, ваші зміни до цього моменту були збережені."],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s тепер має редагування цього повідомлення. Не хвилюйтеся, ваші зміни до цього моменту були збережені."],"Avatar":["Аватар"],"This post is already being edited.":["Цей пост уже редагується."],"Someone else has taken over this post.":["Хтось перейшов на цей запис."],"This block contains unexpected or invalid content.":["Цей блок містить непередбачений або недійсний вміст."],"Resolve Block":["Вирішити Блок"],"Convert to HTML":["Перетворити в HTML"],"This block can only be used once.":["Цей блок можна використовувати лише один раз."],"Exit Code Editor":["Вихід з Редактора Коду"],"Editing Code":["Редагування коду"],"Solid Color":["Суцільний колір"],"Main Color":["Основний колір"],"HTML":["HTML"],"Write HTML…":["Написати HTML…"],"Media settings":[],"Overlay":["Наддрук"],"Insert Media":["Вставити медіа"],"Reusable block imported successfully!":["Багаторазовий блок успішно імпортується!"],"Invalid Reusable Block JSON file":["Недійсний багаторазовий JSON-файл"],"Invalid JSON file":["Недійсний файл JSON"],"Import from JSON":["Імпорт з JSON"],"Backtick":["Backtick"],"Period":["Період"],"Comma":["Кома"],"Change type of %d block":["Змінити тип %d блоку","Змінити тип %d блоків","Змінити тип %d блоків"],"Current":["Поточний"],"After Conversion":["Після перетворення"],"Change alignment":[],"Change text alignment":[],"%d block":["%d блок","%d блокb","%d блок"],"Forward-slash":["Переслати косу риску"],"No archives to show.":["Немає архівів для показу."],"This file is empty.":["Цей файл порожній."],"Sorry, this file type is not supported here.":["На жаль, цей тип файлу тут не підтримується."],"Manage all reusable blocks":[],"Title":["Заголовок"],"Fullscreen mode":[],"Beautiful landscape":["Красивий краєвид"],"Close panel":["Закрити панель"],"Convert to Classic Block":["Конвертувати в Класичний Блок"],"Remove Poster Image":["Видалити зображення плаката"],"Select Poster Image":["Виберіть зображення плаката"],"Poster Image":["Зображення плаката"],"This block is deprecated. Please use the Columns block instead.":["Цей блок застарілий. Замість цього скористайтеся блоком стовпців."],"Text Columns (deprecated)":["Текстові стовпці (застарілі)"],"Create":["Створити"],"Row Count":["Графа рядків"],"Column Count":["Кількість Стовпців"],"This block is deprecated. Please use the Paragraph block instead.":["Цей блок застарілий. Замість цього скористайтеся блоком абзаців."],"Subheading (deprecated)":["Підрубрика (застаріла)"],"blockquote":["блок цитат"],"Change the block type after adding a new paragraph.":["Змініть тип блоку після додавання нового абзацу."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Теги допомагають користувачам і пошуковим системам переміщатися на вашому сайті та знаходити ваш вміст. Додайте кілька ключових слів для опису вашої публікації."],"Add tags":["Додати теги"],"Apply the \"%1$s\" format.":["Застосувати \"%1$s\" формат."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Ваша тема використовує формати публікацій для виділення різних типів вмісту, як-от зображення чи відео. Застосувати формат публікації, щоб побачити цей спеціальний стиль."],"Use a post format":["Використовуйте формат публікації"],"Insert After":["Вставити після"],"Insert Before":["Вставити перед"],"Move %1$d block from position %2$d down by one place":["Перемістити %1$d блок з позиції %2$d в одному місці","Перемістити %1$d блоки з позиції %2$d в одному місці","Перемістити %1$d блок з позиції %2$d в одному місці"],"Move %1$d block from position %2$d up by one place":["Перемістити %1$d блок з позиції %2$d в одному місці","Перемістити %1$d блоки з позиції %2$d в одному місці","Перемістити %1$d блок з позиції %2$d в одному місці"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["фільм"],"Insert a new block before the selected block(s).":["Вставте новий блок перед вибраними блоками."],"Remove the selected block(s).":["Видалити вибрані блоки."],"Duplicate the selected block(s).":["Дублювати вибрані блоки."],"Block shortcuts":["Блокувати ярлики"],"Clear selection.":["Очистити вибір."],"Select all text when typing. Press again to select all blocks.":["Виберіть весь текст під час набору тексту. Натисніть ще раз, щоб вибрати всі блоки."],"Selection shortcuts":["Ярлики вибору"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Перейдіть до попередньої частини редактора."],"Navigate to the next part of the editor.":["Перейдіть до наступної частини редактора."],"Show or hide the settings sidebar.":["Показати або сховати бічну панель налаштувань."],"Redo your last undo.":["Повторити останнє скасування."],"Undo your last changes.":["Скасувати останні зміни."],"Save your changes.":["Збережіть свої зміни."],"Global shortcuts":["Глобальні ярлики"],"Remove a link.":["Видалити посилання."],"Convert the selected text into a link.":["Перетворити вибраний текст у посилання."],"Underline the selected text.":["Підкреслити виділений текст."],"Make the selected text italic.":["Виділіть текст курсивом."],"Make the selected text bold.":["Виділіть текст напівжирним шрифтом."],"Text formatting":["Форматування тексту"],"Insert a new block after the selected block(s).":["Вставте новий блок після вибраних блоків."],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Дякую за тестування Гутенберга!"],"Help build Gutenberg":["Допоможіть побудувати Гутенберг"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Якщо ви хочете дізнатись більше про те, як створювати додаткові блоки, або якщо ви зацікавлені в тому, щоб допомогти проекту, перейдіть до сховища GitHub ."],"The WordPress community":["Спільнота WordPress"],"Code is Poetry":["Код - це поезія."],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Ви можете побудувати будь-який блок, який вам подобається, статичний або динамічний, декоративний або просто. Ось блок блокування:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Будь-який блок може вибрати ці вирівнювання. Вбудований блок також має їх, і реагує на нього з коробки:"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Вище це галерея з двома зображеннями. Це простий спосіб створити візуально привабливі макети, без необхідності мати справу з поплавцями. Ви також можете легко перетворити галерею назад на індивідуальні зображення знову за допомогою блоку перемикача."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["Звичайно, повноцінний імідж може бути досить великим. Але іноді образ це коштує."],"Accessibility is important — don’t forget image alt attribute":["Доступність важлива - не забувайте атрибут image alt"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["Якщо ви об'єднаєте нові широкі та повноцінні вирівнювання за допомогою галерей, ви можете створити дуже масивний медіа-стилі, дуже швидко:"],"Media Rich":["Media Rich"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["Ви можете змінити кількість стовпців у ваших галереях, перетягуючи повзунок в інспекторі блоку на бічній панелі."],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["Блоки можуть бути що завгодно. Наприклад, ви можете додати податкову цитату як частину композиції вашого тексту, або ви можете віддати перевагу стисуванню гіганта. Всі ці параметри доступні у вкладенні."],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["Інформація, яка відповідає джерелу цитат, є окремим текстовим полем, подібним до підписів під зображеннями, тому структура цитати захищена, навіть якщо ви вибираєте, змінюєте чи видаляєте джерело. Завжди легко додати його назад."],"Matt Mullenweg, 2017":["Метт Малленвег, 2017 рік"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["Редактор намагатиметься створити нову сторінку та пошта, яка спрощує написання багатих повідомлень, і має "блоки", щоб полегшити доступність коротких кодів, спеціальних HTML-кодів або відкриття вставки "таємного м'яса"."],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["Велика перевага блоків полягає в тому, що ви можете редагувати їх на місці та маніпулювати вмістом безпосередньо. Замість того, щоб мати поля для редагування речей, як джерело цитати, або тексту кнопки, ви можете безпосередньо змінити вміст. Спробуйте редагувати наступну цитату:"],"Visual Editing":["Візуальне Редагування"],"And Lists like this one of course :)":["І це, звичайно, Списки :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Блоки макета, як-от кнопки, зображення героя, сепаратори тощо."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Вбудовує, як YouTube, Tweets чи інші повідомлення WordPress."],"Galleries":["Галереї"],"Images & Videos":["Зображення та відео"],"Text & Headings":["Текст та заголовки"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Давайте спробуємо, ви можете дізнатись про те, що WordPress вже може додати до своїх публікацій, про які ви не знали. Ось короткий список того, що ви зараз можете знайти там:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["Уявіть, що все, що WordPress може зробити, доступно вам швидко і в одному місці на інтерфейсі. Не потрібно вирахувати HTML теги, класи або запам'ятати складний синтаксис коротких кодів. Це дух за вставкою - кнопка (+)
яку ви побачите біля редактора, що дозволяє переглядати всі доступні блоки вмісту та додати їх до вашого повідомлення. Плагіни та теми можуть реєструвати свої власні, відкриваючи всілякі можливості для багатих редагування та публікації."],"The Inserter Tool":["Інструмент Вставлення"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["Спробуйте вибирати і видаляти або редагувати заголовок, тепер вам не треба бути обережним при виборі зображення чи іншого тексту помилково і позбавити презентацію."],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["Якщо ваша тема підтримує її, ви побачите кнопку "широкий" на панелі інструментів зображення. Спробувати."],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["Основна увага нового редактора - це надзвичайно важлива обробка зображень та носіїв. Сподіваємося, ви знайдете аспекти додавання субтитрів або повноцінне розміщення фотографій набагато простіше та надійніше, ніж раніше."],"A Picture is Worth a Thousand Words":["Картина варта тисяч слів"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Заголовки також є окремими блоками, що допомагає контуру та організації вмісту."],"... like this one, which is right aligned.":["… як цей, який правильно вирівняний."],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["Те, що ви зараз читаєте, - це текстовий блок, найбільш основний блок. Текстовий блок має власні елементи керування, які можна вільно переміщати навколо публікації …"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["Мета цього нового редактора - зробити додавання багатим змістом до WordPress простим та приємним. Весь цей пост складається з частин вмісту, який трохи схожий на цеглу LEGO, - що ви можете пересуватися та взаємодіяти. Перемістіть курсор навколо, і ви помітите, що різні блоки запалюються контурами та стрілками. Натисніть стрілки, щоб швидко перемістити блоки, не боячись втратити речі в процесі копіювання та вставки."],"Of Mountains & Printing Presses":["Книга гір і морів"],"Welcome to the Gutenberg Editor":["Ласкаво просимо в редактор Gutenberg"],"block name\u0004More":["Читати далі"],"button to expand options\u0004More":["Більше параметрів"],"Are you sure you want to unschedule this post?":["Ви впевнені, що хочете скасувати розклад цього запису?"],"Alt Text (Alternative Text)":["Альт Текст (альтернативний текст)"],"Reusable Block":["Багаторазовий блок"],"Unique identifier for the object.":["Унікальний ідентифікатор об'єкту."],"Untitled Reusable Block":["Без назви Багаторазовий Блок"],"Small":["Менший"],"Reusable":["Багаторазові"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Зберігати як HTML"],"Edit URL":["Редагувати посилання (URL)"],"Color settings":[],"The response is not a valid JSON response.":["Відповідь не є дійсною відповіддю JSON."],"Editor publish":["Опублікувати редактор"],"Muted":["Приглушений"],"Video settings":[],"recent comments":["недавні коментарі"],"Latest Comments":["Останні коментарі"],"Display Excerpt":["Показати витяг"],"Display Date":["Показати Дату"],"Display Avatar":["Показати аватар"],"Latest comments settings":[],"Number of Comments":["Кількість Коментарів"],"Background Opacity":["Непрозорість фону"],"Auto":["Авто"],"Preload":["Попереднє навантаження"],"Audio settings":[],"Display a monthly archive of your posts.":["Відображати щомісячний архів ваших публікацій."],"Display as Dropdown":["Показати випадючим списком"],"Show Post Counts":["Показати лічильник записів"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Підтримка"],"No comments to show.":["Немає коментарів до показу."],"%1$s on %2$s":["%1$s на %2$s"],"Select Post":["Виберіть запис"],"Select Week":["Виберіть тиждень"],"Select Day":["Виберіть день"],"Select Month":["Виберіть місяць"],"Select Year":["Виберіть рік"],"Archives":["Архіви"],"Very dark gray":["Дуже темно-сірий"],"Cyan bluish gray":["Блакитний блакитно-сірий"],"Very light gray":["Дуже світло-сірий"],"Vivid cyan blue":["Яскравий синьо-блакитний"],"Pale cyan blue":["Блідо синьо-блакитний"],"Vivid green cyan":["Яскравий зелено-блакитний"],"Light green cyan":["Світлий зелено-блакитний"],"Luminous vivid amber":["Яскравий світлий бурштин"],"Luminous vivid orange":["Яскраво світлий помаранчевий"],"Vivid red":["Яскраво червоний"],"Pale pink":["Блідо-рожевий"],"Inline image":[],"Available block types":["Доступні типи блоків"],"Transform To:":["Перетворити в:"],"Remove Block":["Видалити блок"],"Open publish panel":["Відкрити панель публікації"],"Dots":["Точки"],"Wide Line":["Широка лінія"],"Large":["Великий"],"Show download button":[],"Download button settings":[],"Link To":["Посилання до"],"Text link settings":[],"download":[],"pdf":["pdf"],"document":["документ"],"Copy URL":["Копіювати URL"],"Write file name…":["Впишіть ім'я файлу…"],"File":["Файл"],"A single column within a columns block.":["Одна колонка в блоці колонок."],"Column":["Колонка"],"Outline":["Контур"],"Loop":["Зациклити"],"Autoplay":["Автовідтворення"],"Playback Controls":["Налаштування відтворення"],"Close dialog":["Закрити діалог"],"Sorry, this file type is not permitted for security reasons.":["На жаль, цей тип файлу заборонений з міркувань безпеки."],"Disable tips":["Відключити поради"],"Got it":["Зрозуміло"],"See next tip":["Наступна порада"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["Коли ви будете готові, відправте свою роботу на перевірку, і редактор зможе її схвалити."],"Are you ready to submit for review?":["Ви готові відправити на перевірку?"],"Replace image":["Замінити зображення"],"Remove image":["Видалити зображення"],"Error while uploading file %s to the media library.":["Помилка завантаження файлу %s в медіатеку."],"This file exceeds the maximum upload size for this site.":["%sперевищує максимально допустимий розмір завантаження для цього сайту."],"View the autosave":["Подивитися автозбереження"],"There is an autosave of this post that is more recent than the version below.":["Існує більш пізня версія цього запису, ніж версія нижче."],"Autosaving":["Автозбереження"],"Enter URL here…":["Введіть URL тут…"],"Pin to toolbar":["Прикріпити до панелі інструментів"],"Unpin from toolbar":["Відмінити закріплення від панелі інструментів"],"Insert a table — perfect for sharing charts and data.":["Вставка таблиці - ідеально підходить для обміну діаграмами і даними."],"Fixed width table cells":["Клітинки таблиці з фіксованою шириною"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["Додайте текст, який відповідає вашим інтервалам і вкладкам, а також дозволяє стилізувати."],"Display a list of your most recent posts.":["Виводить список ваших останніх записів."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["Додає блок, який виводить вміст з інших сайтів, таких як Twitter, Instagram або YouTube."],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["Додайте блок, який відображає контент в декількох колонках, а потім в цей блок додайте будь-які інші блоки з контентом, які ви хочете."],"Error loading block: %s":["Помилка завантаження блоку: %s"],"Unknown error":["Невідома помилка"],"Embed Handler":["Вставити обробник"],"term\u0004Remove %s":["Видалити %s"],"Copy the permalink":["Копіювати посилання"],"Permalink copied":["Посилання скопійовано"],"Height in pixels":["Висота в пікселях"],"Spacer settings":[],"Spacer":["Роздільник"],"Toggle to show a large initial letter.":["Зробити початкову літеру великою."],"Showing large initial letter.":["Відображення великий початкової літери."],"Name:":["Ім'я:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s з %3$s)"],"Remove item":["Видалити пункт"],"Color code: %s":["Колір: %s"],"Skip to the selected block":["Перейти до вибраного блоку"],"Publish…":["Опублікувати…"],"Schedule…":["Запланувати…"],"Edit post permalink":["Редагувати постійне посилання"],"Show Block Settings":["Показати параметри блоку"],"Hide Block Settings":["Приховати параметри блоку"],"Block settings closed":["Налаштування блоку закриті"],"Close plugin":["Закрити плагін"],"Editor settings":["Налаштування редактора"],"Link settings":[],"Unlink":["Видалити посилання"],"Page break":["Розрив сторінки"],"pagination":["нумерація сторінок"],"next page":["наступна сторінка"],"Image Size":["Розмір зображення"],"Height":["Висота"],"Width":["Ширина"],"Image Dimensions":["Розмір зображення"],"Thumbnails are not cropped.":["Мініатюри не обрізані."],"Thumbnails are cropped to align.":["Мініатюри обрізаються для вирівнювання."],"Media Library":["Медіафайли"],"Advanced":["Додаткові"],"Add item":["Додати елемент"],"Reset the template":["Скинути шаблон"],"Keep it as is":["Залишити без змін"],"The content of your post doesn’t match the template assigned to your post type.":["Вміст не відповідає шаблону, призначеного цьому типу запису."],"Resetting the template may result in loss of content, do you want to continue?":["Скидання шаблону може привести до втрати вмісту, хочете продовжити?"],"Document Statistics":["Статистика документу"],"is now scheduled. It will go live on":["запланована і буде опублікована"],"Scheduled":["Запланована"],"Scheduling…":["Планування…"],"Code editor selected":["Вибраний редактор коду"],"Visual editor selected":["Вибраний візуальний редактор"],"Plugins":["Плагіни"],"Custom Size":["Користувацький розмір"],"Layout elements":[],"term\u0004%s removed":["%s видалений"],"term\u0004%s added":["%s доданий"],"imperative verb\u0004Preview":["Передперегляд"],"Block deleted.":["Блок видалений."],"Block updated.":["Блок оновлений."],"Block created.":["Блок створений."],"Trashing failed":["Видалення не вдалося"],"Updating failed.":["Помилка оновлення."],"Scheduling failed.":["Не вдалося запланувати."],"Publishing failed.":["Помилка публікації."],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["У вас є незбережені зміни. Якщо ви продовжите, вони будуть втрачені."],"Document Outline":["Структура документу"],"Paragraphs":["Параграфи"],"Headings":["Заголовки"],"Words":["Слова"],"Content structure":["Структура вмісту"],"Public":["Відкрито"],"Protected with a password you choose. Only those with the password can view this post.":["Захищена паролем, який ви вкажете. Запис зможуть подивитися тільки ті, в кого є пароль."],"Password Protected":["Захищено паролем"],"Only visible to site admins and editors.":["Видно тільки адміністраторам і редакторам."],"Private":["Приватне"],"Visible to everyone.":["Видно всім."],"Post Visibility":["Видимість запису"],"Would you like to privately publish this post now?":["Ви хочете опублікувати запис як особистий?"],"Use a secure password":["Використовуйте безпечний пароль"],"Create password":["Створити пароль"],"Move to Trash":["Перемістити в кошик"],"Parent Term":["Батьківський термін"],"Parent Category":["Батьківська рубрика"],"Add new term":["Додати новий термін"],"Add new category":["Додати нову рубрику"],"Term":["Термін"],"Tag":["Позначка"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["Ви впевнені, що хочете скасувати публікацію запису?"],"Immediately":["Негайно"],"Save Draft":["Зберегти чернетку"],"Saving":["Збереження"],"Publish:":["Опублікована:"],"Visibility:":["Видимість:"],"Are you ready to publish?":["Ви готові опублікувати?"],"Copy Link":["Копіювати посилання"],"What’s next?":["Що далі?"],"is now live.":["опублікована."],"Published":["Опубліковано"],"Schedule":["Запланувати"],"Update":["Оновити"],"Submit for Review":["Надіслати на розгляд"],"Updating…":["Оновлення…"],"Publishing…":["Публікація…"],"Allow pingbacks & trackbacks":[],"Permalink:":["Постійне посилання:"],"Pending review":[],"%d Revision":["%d редакція","%d редакциї","%d редакцій"],"Suggestion:":["Пропозиції:"],"Post Format":["Формат запису"],"Chat":["Чат"],"Status":["Статус"],"Standard":["Стандартний"],"Aside":["Замітка"],"Featured image":["Зображення запису"],"Set featured image":[],"Learn more about manual excerpts":["Детальніше про уривки"],"Write an excerpt (optional)":["Написати уривок (необов'язково)"],"Allow comments":[],"Template:":["Шаблон:"],"no parent":["без батька"],"no title":["без заголовку"],"Order":["Порядок сортування"],"No blocks found.":["Блоків не знайдено."],"%d result found.":["Знайдено %d результат.","Знайдено %d результатів.","Знайдено %d результат."],"Saved":["Збережено"],"Embeds":["Вставки"],"Blocks":["Блоки"],"Search for a block":["Пошук блоків"],"Add block":["Додати блок"],"Copy Error":["Помилка копіювання"],"Copy Post Text":["Скопіювати текст запису"],"Attempt Recovery":["Спробувати відновити"],"The editor has encountered an unexpected error.":["Сталася неочікувана помилка."],"Undo":["Скасувати"],"Redo":["Повторити"],"(Multiple H1 headings are not recommended)":["(Не рекомендується використовувати більше одного тега H1)"],"(Your theme may already use a H1 for the post title)":["(Ваша тема вже може використовувати тег H1 для заголовка запису)"],"(Incorrect heading level)":["(Некоректний рівень заголовка)"],"(Empty heading)":["(Без заголовка)"],"Block Styles":["Стилі блоків"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["Ви впевнені, що хочете видалити цей спільний блок?\nВаші дії призведуть до видалення його з усіх записів і сторінок."],"Convert to Regular Block":["Перетворити в звичайний блок"],"More options":["Ще налаштування"],"Edit visually":["Редагувати візуально"],"Duplicate":["Дублювати"],"Blocks cannot be moved down as they are already at the bottom":["Блоки не можуть бути переміщені вниз, так як вони вже знаходяться в самому низу"],"Blocks cannot be moved up as they are already at the top":["Блоки не можуть бути переміщені вгору, так як вони вже знаходяться зверху"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["Блок %s є єдиним блоком і не може бути переміщений"],"Edit as HTML":["Редагувати як HTML"],"Convert to Blocks":["Перетворити в блоки"],"Block: %s":["Блок: %s"],"This block has encountered an error and cannot be previewed.":["Цей блок містить помилку і не може бути переглянутий."],"No block selected.":["Блок не обраний."],"Transform into:":["Перетворити в:"],"Remove":["Видалити"],"Find original":["Знайти оригінал"],"Copy all content":[],"Copied!":["Скопійовано!"],"Additional settings are now available in the Editor block settings sidebar":["Додаткові настройки тепер доступні на бічній панелі розширених налаштувань"],"Visibility":["Видимість"],"Status & visibility":[],"Page attributes":[],"Block":["Блок"],"Document":["Документ"],"Close settings":["Закрити налаштування"],"Editor content":["Редактор вмісту"],"Tools":["Інструменти"],"Editor":["Редактор"],"Code editor":[],"Visual editor":[],"Editor top bar":["Панель інструментів"],"Settings":["Налаштування"],"Reset":["Скинути"],"Dismiss this notice":["Закрити це повідомлення"],"Item removed.":["Елемент видалений."],"Item added.":["Елемент доданий."],"Drop files to upload":["Перетягніть файли для завантаження"],"PM":["вечора"],"AM":["ранку"],"An unknown error occurred.":["Виникла невідома помилка."],"No results.":["Немає результатів."],"%d result found, use up and down arrow keys to navigate.":["Знайдено %d результат. Використовуйте стрілки на клавіатурі для навігації.","Знайдено %d результата. Використовуйте стрілки на клавіатурі для навігації.","Знайдено %d результатів. Використовуйте стрілки на клавіатурі для навігації."],"(no title)":["(Без назви)"],"URL":["URL"],"Submit":["Відправити"],"Close":["Закрити"],"Insert link":["Вставити посилання"],"Edit link":["Змінити посилання"],"Link":["Посилання"],"Strikethrough":["Перекреслений"],"Italic":["Курсив"],"Bold":["Жирний"],"Remove link":["Видалити посилання"],"Number of items":["Кількість елементів"],"All":["Усе"],"Category":["Категорія"],"Z → A":["Я \t А"],"A → Z":["А \t Я"],"Oldest to Newest":["Від старих до нових"],"Newest to Oldest":["Від нових до старих"],"Order by":["Сортувати за"],"Select":["Вибрати"],"Select or Upload Media":["Вибрати або завантажити"],"Video":["Відео"],"Write…":["Напишіть…"],"poetry":["поезія"],"Verse":["Вірш"],"New Column":["Новий стовпець"],"Delete Column":["Видалити стовпець"],"Add Column After":["Додати стовпець після"],"Add Column Before":["Додати стовпець до"],"Delete Row":["Видалити рядок"],"Add Row After":["Додати рядок після"],"Add Row Before":["Додати рядок до"],"Edit table":["Редагувати таблицю"],"Table":["Таблиця"],"Write subheading…":["Введіть підзаголовок…"],"Write shortcode here…":["Введіть шорткод тут…"],"Shortcode":["Короткий код"],"divider":["роздільник"],"horizontal-line":["горизонтальна-лінія"],"Separator":["Роздільник"],"Quote":["Цитата"],"Write citation…":["Введіть цитату…"],"Write quote…":["Введіть цитату…"],"Pullquote":["Витримка"],"Write preformatted text…":["Напишіть попередньо відформатований текст…"],"Preformatted":["Попередньо форматований"],"text":["текст"],"Paragraph":["Параграф"],"Font Size":["Розмір шрифту"],"Drop Cap":["Буквиця"],"Text settings":[],"Read more":["Читати далі"],"Write list…":["Скласти список…"],"numbered list":["нумерований список"],"ordered list":["відсортований список"],"bullet list":["маркований список"],"Indent list item":["Додати відступ до елементів списку"],"Outdent list item":["Прибрати відступ в елементів списку"],"Convert to ordered list":["Перетворити в нумерований список"],"Convert to unordered list":["Перетворити в маркований список"],"List":["Список"],"recent posts":["останні записи"],"No posts found.":["Записів не знайдено."],"Latest Posts":["Останні записи"],"Display post date":["Відображати дату публікації"],"Grid view":[],"List view":[],"photo":["фотографія"],"Image settings":[],"Image":["Зображення"],"Preview":["Передперегляд"],"embed":["вставка"],"Custom HTML":["Користувальницький HTML"],"subtitle":["підзаголовок"],"title":["заголовок"],"Heading":["Заголовок"],"Write heading…":["Введіть заголовок…"],"Heading %d":["Заголовок %s"],"Level":["Рівень"],"Heading settings":[],"photos":["фотографії"],"images":["зображення"],"None":["Не вказано"],"Media File":["Медіафайл"],"Attachment Page":["Сторінка вкладення"],"Link to ":[],"Crop Images":["Обрізати зображення"],"Gallery settings":[],"Gallery":["Галерея"],"Classic":["Класичний"],"video":["відео"],"audio":["аудіо"],"music":["музика"],"image":["зображення"],"blog":["блог"],"post":["запис"],"Embedded content from %s":["Вставлений вміст з %s"],"Enter URL to embed here…":["Вкажіть URL для вставки…"],"%s URL":["%s URL"],"Embedding…":["Вставка…"],"Write title…":["Введіть заголовок…"],"Fixed Background":["Фіксований фон"],"Edit image":["Редагувати зображення"],"Columns":["Стовпці"],"Experiments":[],"Code":["Код"],"Write code…":["Введіть код…"],"Categories":["Рубрики"],"Show Hierarchy":["Показати Ієрархію"],"Show post counts":["Показати кількість записів"],"Categories settings":[],"Add text…":["Додати текст…"],"Button":["Кнопка"],"Apply":["Застосувати"],"Text Color":["Колір тексту"],"Background Color":["Колір фону"],"Block has been deleted or is unavailable.":["Блок видалений або недоступний."],"Reusable blocks":[],"Cancel":["Відміна"],"Edit":["Редагувати"],"Write caption…":["Напишіть підпис…"],"Use URL":["Використовувати URL"],"Audio":["Аудіо"],"Upload":["Завантажити"],"Additional CSS Class(es)":["Додатковий клас(и) CSS"],"HTML Anchor":["HTML Якір"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Це поєднання кольорів може утруднити читання. Спробуйте використовувати більше яскравий колір фону і / або більше темний колір тексту."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Це поєднання кольорів може утруднити читання. Спробуйте використовувати більше темний колір фону і / або більше яскравий колір тексту."],"Clear":["Очистити"],"Custom color picker":["Довільний вибір кольору"],"Color: %s":["Колір: %s"],"Full width":[],"Wide width":[],"Widgets":["Віджети"],"Formatting":["Форматування"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["Друкуємо з 1440 року. Це розробка плагіна для нового редактора блоків в ядрі."],"Add title":["Додати заголовок"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Режим розробки Gutenberg вимагає компонування файлів. Запустіть npm install
для встановлення залежностей, npm run build
для компонування файлів або npm run dev
для їх компонування і відстеження змін. Для більш детальної інформації ознайомтесь з файлом про участь."],"Author":["Автор"],"Slug":["Ярлик"],"Discussion":["Обговорення"],"Custom fields":[],"Excerpt":["Уривок"],"Publish":["Опублікувати"],"Metadata":["Метадані"],"Save":["Зберегти"],"Documentation":["Документація"],"Select Category":["Виберіть рубрику"],"(Untitled)":["(Без назви)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Гутенберг вимагає WordPress %s або пізнішої для належного функціонування. Будь ласка, оновіть WordPress перед активацією Gutenberg."],"Gutenberg Team":["Команда Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Демо"],"%s ago":["%s назад"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_ur.json b/bundle/android/raw/i18ncache_data_ur.json
new file mode 100644
index 0000000000..a18ba91073
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_ur.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":["طے شدہ انداز"],"Not set":["مقرر نہیں کیا"],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":["ہر بلاک کی خصوصیت جاننے کے لئیے لائبریری ملاحضہ فرمائیں"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":["کالم کو دائیں جانب سیدھ میں لائیں۔"],"Align Column Center":[],"Align Column Left":["کالم کو بائیں جانب سیدھ میں لائیں۔"],"Color":[],"Vivid purple":[],"Disable & Reload":["غیر فعال کریں اور دوبارہ لوڈ کریں۔"],"Enable & Reload":["فعال کریں اور دوبارہ لوڈ کریں۔"],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":["مرضی کے مطابق"],"Draft":["ڈرافٹ"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":["سکپ کریں"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":["یہ کیا ہے؟"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":["عنوان کی خصوصیت"],"SEO settings":[],"Description":["وضاحت"],"Open in new tab":["نئے ٹیب میں کھولیں"],"links":["لنکس"],"navigation":["نیویگیشن"],"menu":["مینو"],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":["الفاظ"],"content placeholder\u0004Content…":["مواد۔۔۔"],"button label\u0004Convert to link":["لنک میں تبدیل کریں"],"button label\u0004Try again":["دوبارہ کوشش کریں"],"Editor tips":["ایڈیٹر تجاویز"],"Block (selected)":["بلاک (منتخب کردہ)"],"Document (selected)":["دستاویز (منتخب کردہ)"],"%d word":["%d لفظ","%d الفاظ"],"Top toolbar":[],"Link Rel":["لنک Rel"],"Link CSS Class":["سی ایس ایس کلاس لنک کریں"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["مواد بنا کر اسے اپنے اور دیگر شریک کاروں کے دوبارہ سائٹ پر استعمال کے لیے محفوظ کریں۔ اس بلاک میں کی گئی تبدیلی استعمال کی گئی ہر جگہ پر دیکھی جا سکے گی۔"],"To edit the featured image, you need permission to upload media.":["نمایاں تصویر میں ترمیم کے لیے، آپ کو میڈیا اپلوڈ کی اجازت درکار ہے۔"],"To edit this block, you need permission to upload media.":["اس حصے میں ترمیم کے لیے، آپ کو میڈیا اپلوڈ کرنے کی اجازت درکار ہے۔"],"(selected block)":["(سلیکٹ کیے ہوئے بلاک)"],"Block tools":["بلاک ٹولز"],"Permalink":["پرمالنک"],"This image has an empty alt attribute":["اس امیج کا \"ALT\" ٹیگ نہیں ہے"],"This image has an empty alt attribute; its file name is %s":["اس امیج کا \"ALT\" ٹیگ نہیں ہے. اور اس کی فائل کا نام %s ہے"],"Block area reverted to draft.":[],"Block area published privately.":[],"No block areas found in Trash.":[],"Block\u0004Add New":["نیا شامل کرے"],"add new on admin bar\u0004Block Area":[],"Link inserted.":[],"Warning: the link has been inserted but may have errors. Please test it.":["تنبیہ: لنک داخل کیا گیا ہے لیکن غلطیاں ہو سکتی ہے۔ مہربانی ٹیسٹ کریں۔"],"%s block selected.":["%s بلاک سلیکٹ ہوگیا ہے۔","%s بلاک سلیکٹ ہو گئے ہیں۔"],"Thumbnail":["تھمب نیل"],"Full Size":["مکمل سائز"],"Link selected.":[],"Start writing with text or HTML":["ٹیکسٹ یا ایچ ٹی ایم ایل میں لکھنا شروع کریں"],"Type text or HTML":["ٹیکسٹ یا ایچ ٹی ایم ایل لکھیں"],"Block icon":["بلاک آئیکون"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["لکھنا شروع کریں یا بلاک منتخب کریں"],"Empty block; start writing or type forward slash to choose a block":["خالی بلاک؛ لکھنا شروع کریں یا سلیش لکھ کر بلاک منتخب کریں۔"],"Paragraph block":["پیراگراف بلاک"],"Page Break":["پیج بریک"],"Stack on mobile":["موبائل پر سٹیک"],"Annotation":["لنک ڈال دیا گیا"],"Drag images, upload new ones or select files from your library.":["ڈریگ کرکے، اپلوڈ کرکے، یا اپنی لائبریریسے تصویر سلیکٹ کریں۔"],"blocks\u0004Most used":[],"imperative verb\u0004Resolve":["حل کریں"],"font size name\u0004Huge":["بہت بڑا"],"font size name\u0004Large":["بڑا"],"font size name\u0004Medium":["درمیانہ"],"font size name\u0004Small":["چھوٹا"],"font size name\u0004Normal":["عمومی"],"keyboard button\u0004Enter":["اینٹر"],"button label\u0004Import":["درآمد کریں"],"button label\u0004Download":["ڈاؤن لوڈ"],"button label\u0004Embed":["ایمبیڈ"],"block title\u0004Embed":["ایمبیڈ"],"block title\u0004Classic":["کلاسک"],"block style\u0004Large":["بڑا"],"block style\u0004Rounded":["گول"],"%s (opens in a new tab)":["%s ( اگلی ٹیب میں کھلے گا)"],"Link edited.":["لنک میں ترمیم کر دی گئی۔"],"Link removed.":["لنک حذف کر دیا گیا ہے۔"],"media":["میڈیا"],"Double-check your settings before publishing.":["شائع کرنے سے پہلے اپنی ترتیبات کو دوبارہ چیک کریں۔"],"Generating preview…":["پیش منظر تیار کیا جا رہا ہے۔۔۔"],"Edit or update the image":["تصویر میں ترمیم یا اپڈیٹ کریں"],"Media":["میڈیا"],"Navigate to the nearest toolbar.":["قریبی ٹول بار پر جائیں۔"],"Document tools":["دستاویز ٹولز"],"Document and block tools":["دستاویز اور بلاک ٹولز"],"Embed a video from your media library or upload a new one.":["اپنی میڈیا لائبریری سے ویڈیو سلیکٹ کریں یا ایک نئی اپلوڈ کریں"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["شاعری لکھیں۔ مخصوص فارمیٹ استعمال کریں یا گانے کے بول لکھیں۔"],"Add white space between blocks and customize its height.":["بلاک کے درمیان سفید جگہ ایڈ کریں اور اس کی ہائیٹ کو تبدیل کریں۔"],"Insert additional custom elements with a WordPress shortcode.":["ورڈپریس شارٹ کوڈ کے ذریعے سے کسٹم ایلیمنٹ استعمال کریں۔"],"Create a break between ideas or sections with a horizontal separator.":["افقی لکیر کی مدد سے خیالات یا حصوں میں وقفہ بنائیں۔"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["حوالہ متن بصری زور دیتے ہیں۔ \"دوسروں کے حوالے سے، ہم خود کا حوالہ دیتے ہیں۔\" جولیو کارٹر"],"Give special visual emphasis to a quote from your text.":["اپنے ٹیکسٹ میں سے کسی کوٹ کو ظاہری اہمیت دیں۔"],"Start with the building block of all narrative.":["ہرطرح کے بلڈنگ بلاکس سے آغاز کریں"],"Separate your content into a multi-page experience.":["اپنے کانٹینٹ کو ایک سے زیادہ صفحے کے لیے الگ کریں۔"],"Set media and words side-by-side for a richer layout.":["بہتر لے آوٹ کے لیے میڈیا کو سائیڈ بائے سائیڈ رکھیں"],"Media & Text settings":[],"Create a bulleted or numbered list.":["نمبر کی یا بلٹ کی لسٹ بنائیں"],"Display a list of your most recent comments.":["حالیہ تبصروں کی فہرست شو کریں"],"Insert an image to make a visual statement.":["ظاہری سٹیٹمینٹ کے لیے تصویر کا استعمال کریں"],"Add custom HTML code and preview it as you edit.":["کسٹم HTML کوڈ لکھیں اور ایڈٹ کرتے ہوئے ظاہری تبدیلیاں دیکھیں۔"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["نئے حصوں کا تعارف اور زائرین (اور سرچ انجنز) کی مدد کے لیے مواد کو منظم کریں اپنے مواد کی ساخت کو سمجھیں۔"],"Display multiple images in a rich gallery.":["ایک سے زائد تصاویر گیلری میں دکھائیں"],"Add a link to a downloadable file.":["ڈاؤن لوڈ ہونے والی فائل میں لنک شامل کریں۔"],"Embed videos, images, tweets, audio, and other content from external sources.":["بیرونی ذرائع سے ویڈیوز، تصاویر، ٹویٹس، آڈیو، اور دیگر مواد شامل کریں۔"],"Resize for smaller devices":["چھوٹی ڈیوائسز کے لیے سائز تبدیل کریں"],"This embed may not preserve its aspect ratio when the browser is resized.":["جب براؤزر کو دوبارہ تبدیل کیا جاتا ہے تو یہ ایمبیڈ اپنی تناسبی پہلو کو محفوظ نہیں کرسکتا۔"],"This embed will preserve its aspect ratio when the browser is resized.":["جب براؤزر کو دوبارہ تبدیل کیا جاتا ہے تو یہ ایمبیڈ اپنی تناسبی پہلو کو محفوظ نہیں کرسکتا۔"],"Embed an Animoto video.":["Animoto مواد ایمبیڈ کریں۔"],"Embed a Vimeo video.":["ویمیو مواد ایمبیڈ کریں۔"],"Embed Flickr content.":["فلکر مواد ایمبیڈ کریں۔"],"Embed Spotify content.":["Spotify مواد ایمبیڈ کریں۔"],"Embed SoundCloud content.":["SoundCloud مواد ایمبیڈ کریں۔"],"Embed a WordPress post.":["WordPress پوسٹ ایمبیڈ کریں"],"Embed an Instagram post.":["ایک انسٹا گرام پوسٹ ایمبیڈ کریں۔"],"Embed a Facebook post.":["فیس بک پوسٹ ایمبیڈ کریں۔"],"Embed a WordPress.tv video.":["WordPress.tv ویڈیوایمبیڈ کریں۔"],"Embed a VideoPress video.":["VideoPress ویڈیوایمبیڈ کریں۔"],"Embed a Tumblr post.":["ٹمبلر پوسٹ ایمبیڈ کریں۔"],"Embed a TED video.":["TED ویڈیوایمبیڈ کریں۔"],"Embed Speaker Deck content.":["اسپیکر ڈیک ایمبیڈ کریں۔"],"Embed a YouTube video.":["یوٹیوب ویڈیوایمبیڈ کریں۔"],"Embed SmugMug content.":["SmugMug مواد ایمبیڈ کریں۔"],"Embed Slideshare content.":["سلائیڈ شیئر مواد ایمبیڈ کریں۔"],"Embed Scribd content.":["Scribd مواد ایمبیڈ کریں۔"],"Embed Screencast content.":["اسکرین شارٹ مواد ایمبیڈ کریں۔"],"Embed ReverbNation content.":["ReverbNation مواد ایمبیڈ کریں۔"],"Embed a Reddit thread.":["Reddit تھریڈ ایمبیڈ کریں۔"],"Embed Polldaddy content.":["پول ڈیڈی مواد ایمبیڈ کریں۔"],"Embed Mixcloud content.":["Mixcloud مواد ایمبیڈ کریں۔"],"Embed a tweet.":["ایک ٹویٹ ایمبیڈ کریں۔"],"Embed Meetup.com content.":["Meetup.com مواد ایمبیڈ کریں۔"],"Embed Kickstarter content.":["Kickstarter مواد ایمبیڈ کریں۔"],"Embed Issuu content.":["Issuu مواد ایمبیڈ کریں۔"],"Embed Imgur content.":["Imgur مواد ایمبیڈ کریں۔"],"Embed Hulu content.":["Hulu مواد ایمبیڈ کریں۔"],"Embed a Dailymotion video.":["Dailymotion ویڈیوایمبیڈ کریں۔"],"Embed CollegeHumor content.":["CollegeHumor مواد ایمبیڈ کریں۔"],"Embed Cloudup content.":["Cloudup مواد ایمبیڈ کریں۔"],"Add an image or video with a text overlay — great for headers.":["متن اوورلے کے ساتھ ایک تصویر یا ویڈیو شامل کریں — ہیڈر کے لیے بہت اچھا ہے۔"],"Display code snippets that respect your spacing and tabs.":["ڈسپلے کوڈ کے ٹکڑے دکھائیں جو آپ کی جگہ اور ٹیب کا احترام کرتے ہیں۔"],"Use the classic WordPress editor.":["کلاسک WordPress ایڈیٹر کا استعمال کریں۔"],"Display a list of all categories.":["تمام زمرے کی ایک فہرست دکھائیں۔"],"Embed a simple audio player.":["ایک سادہ آڈیو پلیئر کو شامل کریں۔"],"noun\u0004View":["دیکھیں"],"editor button\u0004Left to right":["بائیں سے دائیں"],"Save as Pending":["زیر التواء کے طور پر محفوظ کریں"],"%s address":["%s ایڈریس"],"Paste or type URL":["یوآرایل کو ٹائپ کریں یا پیسٹ کریں"],"Insert from URL":["یوآرایل سے شامل کریں"],"Block Navigator":[],"Styles":["سٹائل"],"Advanced panels":[],"Document panels":[],"General":["عمومی"],"Open the block navigation menu.":["بلاک نیویگیشن مینو کھولیں۔"],"Work without distraction":["تشویش کے بغیر کام"],"Focus on one block at a time":["ایک وقت میں ایک بلاک پر فوکس کریں"],"Access all block and document tools in a single place":["ایک ہی جگہ میں تمام بلاک اور دستاویز ٹولز تک رسائی حاصل کریں"],"Options":["اختیارات"],"(opens in a new tab)":["(ایک نئے ٹیب میں کھلتا ہے)"],"Minutes":["منٹس"],"Hours":["گهنٹے"],"Time":["وقت"],"Year":["سال"],"Day":["دن"],"December":["دسمبر"],"November":["نومبر"],"October":["اکتوبر"],"September":["ستمبر"],"August":["اگست"],"July":["جولائی"],"June":["جون"],"May":["مئی"],"April":["اپریل"],"March":["مارچ"],"February":["فروری"],"January":["جنوری"],"Month":["مہینہ"],"Date":["تاریخ"],"Go to the first (home) or last (end) day of a week.":["ایک ہفتے کے پہلے (ہوم) یا آخری (اینڈ) دن پر جائیں۔"],"Home/End":["ہوم/اینڈ"],"Home and End":["ہوم اور اینڈ"],"Move backward (PgUp) or forward (PgDn) by one month.":["پچھلے (پیج اپ) پر منتقل یا اگلے (پیج ڈاؤن) کو ایک ماہ تک منتقل کریں۔"],"PgUp/PgDn":["پیج اپ/پیج ڈاؤن"],"Page Up and Page Down":["پیج اپ اور پیج ڈاؤن"],"Move backward (up) or forward (down) by one week.":["پچھلے (اپ) یا آگے (ڈاؤن) ایک ہفتے تک منتقل کریں۔"],"Up and Down Arrows":["اپ اور ڈاؤن ایروز"],"Move backward (left) or forward (right) by one day.":["ایک دن پیچھے (بائیں) یا آگے (دائیں) منتقل کریں۔"],"Left and Right Arrows":["بایئں اینڈ دایئں ایرو"],"Select the date in focus.":["فوکس میں تاریخ منتخب کریں۔"],"Navigating with a keyboard":["کی بورڈ کے ساتھ نیویگیشن کریں"],"Click the desired day to select it.":["مطلوبہ دن کو منتخب کرنے کے لیے کلک کریں۔"],"Click the right or left arrows to select other months in the past or the future.":[" ماضی یا مستقبل میں دوسرے مہینے کو منتخب کرنے کے لیے دائیں یا بائیں ایروز پر کلک کریں۔"],"Click to Select":["منتخب کرنے کے لیے کلک کریں"],"Calendar Help":["کیلنڈر مدد"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":[],"Choose a shade":["شیڈ منتخب کریں"],"Change color format":["رنگ کا فارمیٹ تبدیل کریں"],"Color value in HSL":["ایچ ایس ایل میں رنگ کی ویلیو"],"Color value in RGB":["آرجی بی میں رنگ کی ویلیو"],"Color value in hexadecimal":["ہیکسا ڈیسیمل میں رنگ کی ویلیو"],"RGB mode active":["آرجی بی موڈ فعال ہے"],"Hex color mode active":["ہیکس رنگ موڈ فعال ہے"],"Hue/saturation/lightness mode active":["ہیو/سنٹرویشن/لائٹنیس موڈ فعال ہے"],"Move the arrow left or right to change hue.":["ہیو کو بائیں منتقل کرنے کے لئے بائیں یا دائیں منتقل کریں۔"],"Hue value in degrees, from 0 to 359.":["۰ سے ۳۵۹ تک ہیو کی مقدار ڈگریز میں۔"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["الفا ویلیو، ۰ ( ٹرانسپیرنٹ) سے لے کے ۱(مکمل اوپیک) تک۔"],"Stripes":["اسٹرپس"],"Your site doesn’t include support for this block.":[" آ پ کی سائٹ پر اس بلاک کی سپورٹ موجود نہیں۔"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["آ پ کے سائٹ \"%s\" بلاک کو سپورٹ نہیں کرتی۔ یا اس کو استعمال نہ کریں یا اس کو ڈیلیٹ کر دیں۔"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["آپ کی سائٹ میں \"%s\" بلاک کی سپورٹ نہیں۔ یا اس کو ایسے رہنے دیں، یا ایچ ٹی ایم ایل میں کنورٹ کریں، یا اس کو ڈیلیٹ کر دیں۔"],"Media area":["میڈیا کی جگہ"],"Media & Text":["میڈیا اور متن"],"Show media on right":["میڈییا کو دائیں جانب شو کریں"],"Show media on left":["میڈیا کو بائیں جانب شو کریں"],"Open in New Tab":["نئے ٹیب میں کھولیں"],"Cover":["کور"],"Border settings":[],"Medium":["درمیانہ"],"Paste URL or type to search":["ویب سائٹ کا ایڈریس پیسٹ کریں یا ٹائپ کریں"],"Terms":["اصطلاح"],"Your work will be published at the specified date and time.":["آپ کا کام مخصوص تاریخ اور وقت پر شائع کیا جائے گا۔"],"Are you ready to schedule?":["کیا آپ شیڈول کے لیے تیار ہیں؟"],"Always show pre-publish checks.":["ہمیشہ شائع کرنے سے پہلے چیکس دکھائیں۔"],"Take Over":["قبضہ کریں"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["ایک اور صارف فی الحال اس پوسٹ پر کام کر رہا ہے، جس کا مطلب یہ ہے کہ آپ تبدیلی نہیں کر سکتے ہیں، جب تک آپ ٹیک اوور نہ کر لیں۔"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s فی الحال اس پوسٹ پر کام کر رہے ہیں، جس کا مطلب یہ ہے کہ آپ تبدیلی نہیں کر سکتے ہیں، جب تک آپ ٹیک اوور نہ کر لیں۔"],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["ابھی دوسرا صارف اس پوسٹ کے کنٹرول میں ترمیم کر رہا ہے۔ فکر مت کریں، اس لمحے تک آپ کی تبدیلیوں کو محفوظ کر لیا گیا ہے۔"],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["ابھی %s اس پوسٹ کے کنٹرول میں ترمیم کر رہے ہیں۔ فکر مت کریں، اس لمحے تک آپ کی تبدیلیوں کو محفوظ کر لیا گیا ہے۔"],"Avatar":["اوتار"],"This post is already being edited.":["اس پوسٹ میں پہلے ہی ترمیم کر دی گئی ہے۔"],"Someone else has taken over this post.":["کسی اور نے اس پوسٹ کو لے لیا ہے۔"],"This block contains unexpected or invalid content.":["اس بلاک میں غیر متوقع یا غلط مواد شامل ہے۔"],"Resolve Block":["بلاک کو حل کریں"],"Convert to HTML":["ایچ ٹی ایم ایل میں تبدیل کریں"],"This block can only be used once.":["یہ بلاک صرف ایک بار استعمال کیا جا سکتا ہے۔"],"Exit Code Editor":["کوڈ ایڈیٹر سے باہر نکلیں "],"Editing Code":["کوڈ میں ترمیم"],"Solid Color":["ٹھوس رنگ"],"Main Color":["مرکزی رنگ"],"HTML":["HTML"],"Write HTML…":[" HTML لکھیں"],"Media settings":[],"Overlay":["اوورلے"],"Insert Media":["میڈیا شامل کریں"],"Reusable block imported successfully!":["دوبارہ قابل استعمال بلاک کو کامیابی سے درآمد کر لیا گیا!"],"Invalid Reusable Block JSON file":["غلط دوبارہ قابل استعمال بلاک JSON فائل"],"Invalid JSON file":["غلط JSON فائل"],"Import from JSON":["JSON سے درآمد کریں"],"Backtick":["بیک ٹک"],"Period":["مدت"],"Comma":["کومہ"],"Change type of %d block":["%d بلاک کی قسم تبدیل کریں","%d بلاکس کی قسم تبدیل کریں"],"Current":["موجودہ"],"After Conversion":["تبدیلی کے بعد"],"Change alignment":[],"Change text alignment":[],"%d block":["%d بلاک","%d بلاکس"],"Forward-slash":["فارورڈ سلیش"],"No archives to show.":["دکھانے کے لیے کوئی آرکائیو موجود نہیں"],"This file is empty.":["یہ فائل خالی ہے"],"Sorry, this file type is not supported here.":["معذرت، اس فائل ٹائپ کو یہاں سپورٹ نہیں کیا جاتا۔"],"Manage all reusable blocks":[],"Title":["عنوان"],"Fullscreen mode":[],"Beautiful landscape":["خوبصورت نظارہ"],"Close panel":["پینل بند کریں"],"Convert to Classic Block":["کلاسک بلاک میں تبدیل کریں"],"Remove Poster Image":["پوسٹر کی تصویر کو حذف کریں۔"],"Select Poster Image":["پوسٹر تصویر منتخب کریں"],"Poster Image":["پوسٹر کی تصویر"],"This block is deprecated. Please use the Columns block instead.":["یہ بلاک اب استعمال میں نہیں ہے، براہِ مہربانی اس کی بجائے کالم استعمال کریں۔"],"Text Columns (deprecated)":["ٹیکسٹ کالم (اب ختم ہو گئے ہیں)"],"Create":["بنائیں"],"Row Count":["صف شمار"],"Column Count":["کالم شمار"],"This block is deprecated. Please use the Paragraph block instead.":["یہ بلاک اب موجود نہیں، پیراگراف استعمال کریں"],"Subheading (deprecated)":["ذیلی ہیڈنگ ( اب موجود نہیں )"],"blockquote":["blockquote"],"Change the block type after adding a new paragraph.":["نئے پیراگراف کو شامل کرنے کے بعد بلاک کی قسم کو تبدیل کریں۔"],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["ٹیگز صارفین اور سرچ انجن کو آپ کی ویب سائٹ کو نیویگیشن اور اپنی مواد کو تلاش کرتے ہیں۔ اپنی پوسٹ کی وضاحت کرنے کے لیے کچھ کی ورڈز شامل کریں۔"],"Add tags":["ٹیگز شامل کریں"],"Apply the \"%1$s\" format.":["\"%1$s\" فارمیٹ کو لاگو کریں۔"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["آپکی تھیم مختلف قسم کے مواد کو نمایاں کرنے کے لیے پوسٹ فارمیٹس استعمال کرتی ہے، جیسے تصاویر یا ویڈیوز۔ اس خاص اسٹائل کو دیکھنے کے لیے پوسٹ فارمیٹ کی درخواست کریں۔"],"Use a post format":["پوسٹ فارمیٹ استعمال کریں"],"Insert After":["بعد میں داخل کریں"],"Insert Before":["پہلے داخل کریں"],"Move %1$d block from position %2$d down by one place":["%1$d بلاک کو %2$d پوزیشن سے لے کر ایک جگہ منتقل کریں","%1$d بلاکس کو %2$d پوزیشن سے لے کر ایک جگہ منتقل کریں"],"Move %1$d block from position %2$d up by one place":["%1$d بلاک کو %2$d پوزیشن سے لے کر ایک جگہ منتقل کریں","%1$d بلاکس کو %2$d پوزیشن سے لے کر ایک جگہ منتقل کریں"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["مووی"],"Insert a new block before the selected block(s).":["منتخب کردہ بلاک (بلاکس) سے پہلے ایک نیا بلاک داخل کریں۔"],"Remove the selected block(s).":["منتخب کردہ بلاک (بلاکس) کو حذف کریں۔"],"Duplicate the selected block(s).":["منتخب کردہ بلاک (بلاکس) کی نقل۔"],"Block shortcuts":["بلاک شارٹ کٹس"],"Clear selection.":["انتخاب صاف کریں۔"],"Select all text when typing. Press again to select all blocks.":["ٹائپ کرتے ہوئے تمام متن منتخب کریں۔ تمام بلاکس کو منتخب کرنے کے لیے دوبارہ دبائیں۔"],"Selection shortcuts":["منتخب کرنے کے شارٹ کٹس"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["ایڈیٹر کے پچھلے حصے پر جائیں۔"],"Navigate to the next part of the editor.":["ایڈیٹر کے اگلے حصے پر جائیں۔"],"Show or hide the settings sidebar.":["ترتیبات سائٰیڈبار دکھائیں یا چھپائیں۔"],"Redo your last undo.":["اپنی آخری ترتیب کو دوبارہ کریں۔"],"Undo your last changes.":["اپنی آخری تبدیلیوں کو کالعدم کریں۔"],"Save your changes.":["اپنی تبدیلیوں کو محفوظ کریں۔"],"Global shortcuts":["گلوبل شارٹ کٹس"],"Remove a link.":["لنک حذف کریں۔"],"Convert the selected text into a link.":["منتخب متن کو ایک لنک میں تبدیل کریں۔"],"Underline the selected text.":["منتخب شدہ متن کو انڈرلائن کریں۔"],"Make the selected text italic.":["منتخب متن کو اٹالک کریں۔"],"Make the selected text bold.":["منتخب متن کو بولڈ کریں۔"],"Text formatting":["متن کی فارمیٹنگ"],"Insert a new block after the selected block(s).":["منتخب کردہ بلاک (بلاکس) کے بعد ایک نیا بلاک داخل کریں۔"],"Keyboard shortcuts":[],"Thanks for testing Gutenberg!":["Gutenberg کو آزمانے کا شکریہ!"],"Help build Gutenberg":["Gutenberg بنانے میں مدد کریں"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":[],"The WordPress community":["WordPress کمیونٹی"],"Code is Poetry":["کوڈ شاعری ہے"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":[],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":[],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":[],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["یقینا، مکمل وسیع تصویر بہت بڑی ہو سکتی ہے۔ لیکن کبھی کبھی تصویر اس کے قابل ہے۔"],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":["سیر حاصل میڈیا"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg، 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["بصری ترمیم"],"And Lists like this one of course :)":["اور فہرستیں کی طرح کورس میں سے ایک :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["لے آؤٹ بلاکس، لائیک بٹن، ہیرو تصاویر، سپریٹر وغیرہ"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["یوٹیوب، ٹویٹس، یا دیگرWordPress پوسٹوں کی طرح ایمبیڈ کر سکتے ہیں"],"Galleries":["گیلریز"],"Images & Videos":["تصاویر اور ویڈیوز"],"Text & Headings":["متن اور عنوانات"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":[],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":["انسرٹر ٹول"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["ایک تصویر ہزار الفاظ کئ برابر ہے"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":[],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Gutenberg ایڈیٹر میں خوش آمدید"],"block name\u0004More":["مزید"],"button to expand options\u0004More":["مزید"],"Are you sure you want to unschedule this post?":["کیا آپ واقعی اس پوسٹ کو ان شیڈول کرنا چاہتے ہیں؟"],"Alt Text (Alternative Text)":["Alt Text ( متبادل ٹیکسٹ)"],"Reusable Block":["دوبارہ قابل استعمال بلاکس"],"Unique identifier for the object.":["اعتراض کے لیے منفرد شناخت۔"],"Untitled Reusable Block":["بلاعنوان دوبارہ قابل استعمال بلاک"],"Small":[],"Reusable":["دوبارہ قابل استعمال"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["HTML کے طور پر رکھیں"],"Edit URL":["یوآرایل میں ترمیم کریں"],"Color settings":[],"The response is not a valid JSON response.":["یہ ریسپانس ایک درست جےسن ریسپانس نہیں ہے۔"],"Editor publish":["ایڈیٹر شائع "],"Muted":["خاموش"],"Video settings":[],"recent comments":["حالیہ تبصرے"],"Latest Comments":["حالیہ تبصرے"],"Display Excerpt":["خلاصہ دکھائیں"],"Display Date":["تاریخ دکھائیں"],"Display Avatar":["اواٹار دکھائیں"],"Latest comments settings":[],"Number of Comments":["تبصروں کی تعداد"],"Background Opacity":["پس منظر کا دھندلاپن"],"Auto":["آٹو"],"Preload":["پری لوڈ"],"Audio settings":[],"Display a monthly archive of your posts.":["اپنی پوسٹوں کا ایک ماہانہ آرکائیو دکھائیں۔"],"Display as Dropdown":["ڈراپ ڈاؤن کے طور پر دکھائیں"],"Show Post Counts":["پوسٹوں کی تعداد دکھائیں"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["معاونت"],"No comments to show.":["دکھانے کے لئے کوئی تبصرہ نہیں۔"],"%1$s on %2$s":["%1$s از %2$s"],"Select Post":["پوسٹ منتخب کریں"],"Select Week":["ہفتہ منتخب کریں۔"],"Select Day":["دن منتخب کریں۔"],"Select Month":["مہینہ منتخب کریں"],"Select Year":["سال منتخب کریں۔"],"Archives":["آرکائیوز"],"Very dark gray":["گہراسرمئی"],"Cyan bluish gray":["سبزی مائل آسمانی سرمئی"],"Very light gray":["بہت ہلکا سرمئی"],"Vivid cyan blue":["شوخ سبزی مائل نیلا"],"Pale cyan blue":["پرانا سبزی مائل نیلا"],"Vivid green cyan":["شوخ سبزی مائل نیلا"],"Light green cyan":["ہلکا سبزی مائل"],"Luminous vivid amber":["چمکیلا شوخ آسمانی"],"Luminous vivid orange":["چمکیلا شوخ نارنجی"],"Vivid red":["شوخ لال"],"Pale pink":["ہلکا گلابی"],"Inline image":[],"Available block types":["دستیاب بلاکس کی اقسام"],"Transform To:":["تبدیل کرنے کے لیے:"],"Remove Block":["بلاک کو حذف کریں"],"Open publish panel":["کھلا شائع کرنے کا پینل"],"Dots":["نقاط"],"Wide Line":["چوڑی لکیر"],"Large":["بڑا"],"Show download button":[],"Download button settings":[],"Link To":["لنک کریں"],"Text link settings":[],"download":[],"pdf":["پی ڈی ایف"],"document":["دستاویز"],"Copy URL":["یوآرایل کاپی کریں"],"Write file name…":["فائل کا نام لکھیں۔۔۔"],"File":["فائل"],"A single column within a columns block.":["ایک کالمی بلاک کے اندر ایک کالم۔"],"Column":["کالم"],"Outline":["آؤٹ لائن"],"Loop":["لوپ"],"Autoplay":["خودبخود چلے"],"Playback Controls":["چلانے کے اختیارات"],"Close dialog":["ڈائیلاگ بند کریں"],"Sorry, this file type is not permitted for security reasons.":["معاف کیجیے گا! سکیورٹی وجوہات کی بناء پر اس طرح کی فائل کی قسم کی اجازت نہیں۔"],"Disable tips":["تجاویز کو غیر فعال کریں"],"Got it":["یہ مل گیا"],"See next tip":["اگلی تجویز دیکھیں"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["جب آپ تیار ہو جائیں تو، اپنے کام کا جائزہ لینے کے لیے ارسال کریں، اور ایک ایڈیٹر آپ کے لیے منظور کرنے کے قابل ہو گا۔"],"Are you ready to submit for review?":["کیا آپ جائزے کے لیے ارسال کرنے کے لیے تیار ہیں؟"],"Replace image":["تصویر تبدیل کریں"],"Remove image":["تصویر کو حذف کریں"],"Error while uploading file %s to the media library.":["%s فائلز کو میڈیا لائبریری میں محفوظ کرنے میں مسلہ درپیش ہے"],"This file exceeds the maximum upload size for this site.":["یہ فائل اس سائٹ کے لیے زیادہ سے زیادہ اپ لوڈ سائز سے بڑی ہے۔"],"View the autosave":["خودکار طریقہ سے محفوظ کیا گیا مواد دیکھیں"],"There is an autosave of this post that is more recent than the version below.":["اس پوسٹ کا خودکار محفوظ ہے یہ نیچے د یئے گئے ورژن سے زیادہ تازہ ترین ہے۔"],"Autosaving":["خود کار طریقہ سے محفوظ کیا جا رہا ہے"],"Enter URL here…":["یو آر ایل یہاں درج کریں"],"Pin to toolbar":["ٹول بار پر پن کریں"],"Unpin from toolbar":["ٹول بار سے ان پن کریں"],"Insert a table — perfect for sharing charts and data.":["ایک ٹیبل استعمال کریں، یہ چارٹ اور ڈیٹا شئیر کرنے کے لیے بہترین ہے۔"],"Fixed width table cells":["ٹیبل سیل کی مقررہ چوڑائی"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["متن شامل کریں جو آپ کی خلاء اور ٹیب کا احترام کرتا ہے، اور اسٹائل کی اجازت دیتا ہے."],"Display a list of your most recent posts.":["اپنی تازہ ترین پوسٹ کی فہرست دکھائیں۔"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["ایک بلاک شامل کریں جو دوسری سائٹس سے حاصل کیا گیا مواد دکھائے، جیسا کہ ٹویٹر، انسٹاگرام یا یوٹیوب"],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["ایک ایسے بلاک کو شامل کریں جو متعدد کالموں میں مواد دکھاتا ہے، پھر جو کچھ بھی مواد کے بلاکس آپ چاہیں شامل کریں۔"],"Error loading block: %s":["بلاک %s لوڈ کرنے میں خرابی "],"Unknown error":["نامعلوم خرابی"],"Embed Handler":[" ایمبیڈ ہینڈلر"],"term\u0004Remove %s":["%s کو مٹائیں "],"Copy the permalink":["پرما لنک کاپی کریں"],"Permalink copied":["پرما لنک کاپی ہوگیا ہے۔"],"Height in pixels":["پکسلز میں اونچائی"],"Spacer settings":[],"Spacer":["اسپیسر"],"Toggle to show a large initial letter.":["بڑا ابتدائی حرف دکھانے کے لیے ٹوگل کریں۔"],"Showing large initial letter.":["بڑا ابتدائی حرف دکھایا جا رہا ہے۔"],"Name:":["نام:"],"%1$s (%2$s of %3$s)":["(%1$s (%2$s of %3$s"],"Remove item":["شے کو مٹائیں "],"Color code: %s":["رنگ کوڈ: %s"],"Skip to the selected block":["منتخب کردہ بلاک کی طرف رجوع کریں "],"Publish…":["شائع کرنا ..."],"Schedule…":["شیڈول۔۔۔"],"Edit post permalink":["پوسٹ پرمالنک میں ترمیم کریں "],"Show Block Settings":["بلاک کی ترتیبات دکھائیں"],"Hide Block Settings":["بلاک کی ترتیبات چھپائیں"],"Block settings closed":["بلاک کی ترتیبات بند کردی ہے"],"Close plugin":["پلگ ان بند کریں"],"Editor settings":["ایڈیٹر کی ترتیبات"],"Link settings":[],"Unlink":["غیر منحصر"],"Page break":["پیج بریک"],"pagination":["صفحہ بندی"],"next page":["اگلا صفحہ"],"Image Size":["تصویر کا ناپ"],"Height":["اونچائی"],"Width":["چوڑائی"],"Image Dimensions":["تصویرکی طول و عرض"],"Thumbnails are not cropped.":["تھمب نیل كا سائز تبدیل نہیں کیا گیا۔"],"Thumbnails are cropped to align.":["تھمب نیل سیدھا کرنے کے لیے سائز تبدیل کیا گیا۔"],"Media Library":["میڈیا لائبریری"],"Advanced":["جدید ترین"],"Add item":["آئٹم شامل کریں"],"Reset the template":["ٹمپلیٹ کو ری سیٹ کریں"],"Keep it as is":["ویسے کا ویسے ہی رہنے دیں "],"The content of your post doesn’t match the template assigned to your post type.":["آپ کی پوسٹ کا مواد آپ کی پوسٹ کی قسم کے مطابق مقرر کردہ ٹیمپلیٹ سے میل نہیں کھاتا۔"],"Resetting the template may result in loss of content, do you want to continue?":["ٹمپلیت کو ری سیٹ کرنے سے آپ کا مواد ضائع ہو سکتا ہے، کیا آپ اس عمل کو جاری رکھنا چاہتے ہیں؟"],"Document Statistics":["دستاویزی اعدادوشمار"],"is now scheduled. It will go live on":["شیڈول ترتیب دے دیا گیا۔ اب یہ لائیو ہوگا"],"Scheduled":["شیڈول کردہ"],"Scheduling…":["شیڈ ول ترتیبب دیا جا رہا ہے"],"Code editor selected":["کوڈ ایڈیٹر منتخب کیا گیا ہے۔ "],"Visual editor selected":["ظاہری ایڈیٹرمنتخب کیا گیا ہے "],"Plugins":["پلگ انز"],"Custom Size":["اپنی مرضی کا سائز"],"Layout elements":[],"term\u0004%s removed":["مٹائیں %s"],"term\u0004%s added":["%s شامل کردیا گیا"],"imperative verb\u0004Preview":["نظارہ کریں"],"Block deleted.":["بلاک ڈیلیٹ کر دیا گیاہے "],"Block updated.":["بلاک اپڈیٹ ہو گیا"],"Block created.":["بلاک تخلیق ہوگیا"],"Trashing failed":["پوسٹ دیکھیں "],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["آپ کی تبدیلیاں غیر محفوظ ہیں۔ اگر آپ آگے بڑھیں گے تو وہ ضائع ہو جائیں گی۔"],"Document Outline":["دستاویز کی آؤٹ لائن"],"Paragraphs":["پیراگراف"],"Headings":["سرخیاں"],"Words":["الفاظ"],"Content structure":["مواد کی ساخت"],"Public":["عوامی"],"Protected with a password you choose. Only those with the password can view this post.":["آپ کے انتخاب کردہ پاس ورڈ کے ساتھ محفوظ کیا گیا۔ جن کے پاس پاسورڈ ہونگے وہ اس پوسٹ کو دیکھ سکتے ہیں۔"],"Password Protected":["پاسورڈ لگا ہوا ہے"],"Only visible to site admins and editors.":["صرف سائٹ ایڈمنز اور ایڈیٹرز کے لئے نظر آتا ہے."],"Private":["نجی"],"Visible to everyone.":["ہر کسی کو دیکھنے کے لئے."],"Post Visibility":["پوسٹ کی نمائش"],"Would you like to privately publish this post now?":["کیا آپ اب اس اشاعت کوذاتی طور پر شائع کرنا چاہتے ہیں؟"],"Use a secure password":["ایک محفوظ پاس ورڈ کا استعمال کریں"],"Create password":["پاسورڈ بنائیں"],"Move to Trash":[],"Parent Term":["بنیادی اصطلاح"],"Parent Category":["بنیادی زمرہ"],"Add new term":["نئی اصطلاح شامل کریں"],"Add new category":["نئی قسم شامل کریں"],"Term":["مدت"],"Tag":["ٹیگ"],"Add new Term":[],"Add new tag":[],"Switch to draft":[],"Are you sure you want to unpublish this post?":["کیا آپ واقعی یہ پوسٹ غیر شائع کرنا چاہتے ہیں؟"],"Immediately":["فوری طور پر"],"Save Draft":["ڈرافٹ محفوظ کریں"],"Saving":["بچت"],"Publish:":["شائع:"],"Visibility:":["نمائش:"],"Are you ready to publish?":["کیا آپ شائع کرنے کے لئے تیار ہیں؟"],"Copy Link":["کاپی لنک"],"What’s next?":["اگلا کیا ہے؟"],"is now live.":["ابھی ان لائن ہے۔"],"Published":["شائع کر دی گئی"],"Schedule":["شیڈول"],"Update":["اپڈیٹ کریں"],"Submit for Review":["جائزہ کے لئے جمع کروائیں"],"Updating…":["اپڈیٹ کیا جا رہا ہے۔۔۔"],"Publishing…":["شائع کیا جا رہا ہے۔۔۔"],"Allow pingbacks & trackbacks":[],"Permalink:":["پرمالنک"],"Pending review":[],"%d Revision":["%d نظرثانی","%d نظرثانیاں"],"Suggestion:":["تجاویز:"],"Post Format":["پوسٹ فارمیٹ"],"Chat":["بات چیت"],"Status":["اسٹیٹس"],"Standard":["معیار"],"Aside":["ایک طرف"],"Featured image":["نمایاں تصویر"],"Set featured image":[],"Learn more about manual excerpts":["دستی حوالہ جات کے بارے میں مزید معلومات حاصل کریں"],"Write an excerpt (optional)":["ایک خلاصہ لکھیں (اختیاری)"],"Allow comments":[],"Template:":["سانچے:"],"no parent":["بنیادی نہیں"],"no title":["بغیر عنوان "],"Order":["آرڈر"],"No blocks found.":["کوئی بلاکس نہیں ملے۔"],"%d result found.":["%d نتیجہ مل گیا۔","%d نتائج مل گئے۔"],"Saved":["محفوظ شدہ"],"Embeds":["ایمبیڈز"],"Blocks":["بلاکس"],"Search for a block":[" بلاک کے لیے تلاش کریں"],"Add block":["نیا بلاک شامل کریں"],"Copy Error":[" خرابی کاپی کریں"],"Copy Post Text":["پوسٹ کا متن کاپی کریں"],"Attempt Recovery":["ریکوری کی کوشش کریں"],"The editor has encountered an unexpected error.":["ایڈیٹر کو کسی غیر متوقع خرابی کا سامنا ہے"],"Undo":["کالعدم کریں"],"Redo":["دوبارہ کریں"],"(Multiple H1 headings are not recommended)":["(ایک سے زیادہ H1 سرخیاں کی تجویز نہیں کی جاتی ہیں)"],"(Your theme may already use a H1 for the post title)":["(ہو سکتا ہے آپ کی تھیم پوسٹ کےعنوان لیے پہلے سے H1 استعمال کرتی ہے)"],"(Incorrect heading level)":["(سرخی کی غلط سطح)"],"(Empty heading)":["(خالی سرخی)"],"Block Styles":["بلاک اسٹائلز"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["کیا آپ واقعی یہ دوبارہ قابل استعمال بلاک حذف کرنا چاہتے ہیں؟\n\n یہ مستقل طور پر تمام پوسٹیں اور صفحات سے حذف کر دیا جائے گا جو اس کو استعمال کرتے ہیں۔"],"Convert to Regular Block":["باقاعدہ(ریگولر) بلاک میں تبدیل کریں"],"More options":["مزید اختیارات"],"Edit visually":["ظاہری ترمیم کریں"],"Duplicate":["نقل"],"Blocks cannot be moved down as they are already at the bottom":["بلاک ذیل میں نہیں جا سکتے ہیں کیونکہ وہ پہلے سے ہی نیچے ہیں"],"Blocks cannot be moved up as they are already at the top":["بلاکس کواوپرمنتقل نہیں کیا جا سکتا ہے کیونکہ وہ پہلے سے اوپر ہیں"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["بلاک %s صرف ایک بلاک ہے، اور منتقل نہیں کیا جا سکتا"],"Edit as HTML":["ایچ ٹی ایم ایل میں ترمیم کریں"],"Convert to Blocks":["بلاکس میں تبدیل کریں"],"Block: %s":["بلاک: %s"],"This block has encountered an error and cannot be previewed.":["اس بلاک نے ایک خرابی کا سامنا کیا اور پیش نظر نہیں کیا جا سکتا۔"],"No block selected.":["کوئی بلاک منتخب نہیں کیا گیا"],"Transform into:":["میں تبدیل کریں:"],"Remove":["حذف کریں"],"Find original":["اصل تلاش کریں"],"Copy all content":[],"Copied!":["کاپی شدہ!"],"Additional settings are now available in the Editor block settings sidebar":["اضافی ترتیبات ایڈیٹر بلاک کی سائیڈ بار کی ترتیبات میں دستیاب ہیں "],"Visibility":["ظاہری"],"Status & visibility":[],"Page attributes":[],"Block":["واحد: بلاک"],"Document":["دستاویز"],"Close settings":["ترتیبات بند کریں "],"Editor content":["ایڈیٹر مواد "],"Tools":["ٹولز "],"Editor":["ایڈیٹر"],"Code editor":[],"Visual editor":[],"Editor top bar":["ایڈیٹر ٹاپ بار"],"Settings":["ترتیبات"],"Reset":["ری سیٹ کریں"],"Dismiss this notice":["اس نوٹس کو برخاست کریں"],"Item removed.":["آئٹم حذف کر دیا گیا۔"],"Item added.":["آئٹم شامل کر دیا گیا۔"],"Drop files to upload":["اپ لوڈ کرنے کے لیے فائلز کو ڈراپ کریں"],"PM":["شام"],"AM":["صبح"],"An unknown error occurred.":["ایک نامعلوم خرابی درپیش آئی۔"],"No results.":["کوئی نتیجہ نہیں۔"],"%d result found, use up and down arrow keys to navigate.":["%d نتیجہ ملا، نیویگیٹ کرنے کے لئے اوپر اور نیچے کی ایرو کیز کا استعمال کریں۔","%d نتیجے ملے، نیویگیٹ کرنے کے لیے اوپر اور نیچے کی ایرو کیز کا استعمال کریں۔"],"(no title)":["(بلاعنوان)"],"URL":["یوآرایل"],"Submit":["ارسال کریں۔"],"Close":["بند کریں"],"Insert link":[],"Edit link":[],"Link":["لنک"],"Strikethrough":["خط مقطوع"],"Italic":["اٹالک"],"Bold":["بولڈ"],"Remove link":[],"Number of items":["آئٹمز کی تعداد"],"All":["تمام"],"Category":["زمرہ"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["پرانی سے تازہ ترین"],"Newest to Oldest":["تازہ ترین سے پرانی"],"Order by":["ترتیب از"],"Select":["منتخب کریں"],"Select or Upload Media":["میڈیا کا انتخاب کریں یا اپلوڈ کریں"],"Video":["ویڈیو"],"Write…":["لکھیں۔۔۔"],"poetry":["شاعری "],"Verse":["مصرع"],"New Column":["نیا کالم"],"Delete Column":["کالم کو حذف کریں"],"Add Column After":["اس کے بعد کالم شامل کریں"],"Add Column Before":["اس سے پہلے کالم شامل کریں"],"Delete Row":["قطار کو حذف کریں"],"Add Row After":["اس سے بعد قطار شامل کریں"],"Add Row Before":["اس سے پہلے قطار شامل کریں"],"Edit table":[],"Table":["ٹیبل"],"Write subheading…":["سب ہیڈنگ لکھیں۔۔۔"],"Write shortcode here…":["شارٹ کوڈ یہاں لکھیں۔۔۔"],"Shortcode":["شارٹ کوڈ"],"divider":["تقسیم کنندہ"],"horizontal-line":["افقی لائن (دائیں سے بائیں)"],"Separator":["سیپریٹر"],"Quote":["اقتباس"],"Write citation…":["حوالہ لکھیں۔۔۔"],"Write quote…":["قول لکھیں۔۔۔"],"Pullquote":["Pullquote"],"Write preformatted text…":["پہلے سے پیش کردہ طریقے سے تحریر لکھیں۔۔۔"],"Preformatted":["وضع شدہ"],"text":["متن"],"Paragraph":["پیراگراف"],"Font Size":["فونٹ سائز"],"Drop Cap":["ڈراپ کیپ"],"Text settings":[],"Read more":["مزید پڑھیں"],"Write list…":["فہرست لکھیں۔۔۔"],"numbered list":["نمبر والی فہرست"],"ordered list":["ترتیب شدہ فہرست"],"bullet list":["بولیٹ فہرست"],"Indent list item":["حاشیہ لسٹ آئٹم"],"Outdent list item":["آؤٹ ڈینٹ لسٹ آئٹم"],"Convert to ordered list":["ترتیب شدہ فہرست میں تبدیل کریں"],"Convert to unordered list":["غیر ترتیب شدہ فہرست میں تبدیل کریں"],"List":["فہرست"],"recent posts":["حال ہی میں کی جانے والی پوسٹس "],"No posts found.":["کوئی پوسٹ نہیں ملی۔"],"Latest Posts":["تازہ ترین پوسٹ"],"Display post date":["پوسٹ کی تاریخ دکھائیں"],"Grid view":[],"List view":[],"photo":["تصویر"],"Image settings":[],"Image":["تصویر"],"Preview":["پیش منظر"],"embed":["ایمبیڈ"],"Custom HTML":["کسٹم ایچ ٹی ایم ایل"],"subtitle":["ذیلی عنوان"],"title":["عنوان"],"Heading":["سرخی"],"Write heading…":["سرخی لکھیں۔۔۔"],"Heading %d":["%d ہیڈنگ"],"Level":["سطح"],"Heading settings":[],"photos":["تصاویر"],"images":["تصاویر"],"None":["کچھ نہیں"],"Media File":["میڈیا فائل"],"Attachment Page":["منسلکہ صفحہ"],"Link to ":[],"Crop Images":["تصاویر کرآپ کریں"],"Gallery settings":[],"Gallery":["گیلری"],"Classic":["کلاسک"],"video":["ویڈیو"],"audio":["آڈیو"],"music":["موسیقی"],"image":["تصویر"],"blog":["بلاگ"],"post":["پوسٹ"],"Embedded content from %s":["%s سے ایمبیڈڈ مواد"],"Enter URL to embed here…":["یہاں ایمبیڈ کرنے کے لیے یوآرایل درج کریں۔۔۔"],"%s URL":["%s یوآرایل"],"Embedding…":["ایمبیڈنگ۔۔۔"],"Write title…":["عنوان لکھیں۔۔۔"],"Fixed Background":["فکسڈ پس منظر"],"Edit image":["تصویر میں ترمیم کریں"],"Columns":["کالمز"],"Experiments":[],"Code":["کوڈ"],"Write code…":["کوڈ لکھیں۔۔۔"],"Categories":["زمرے"],"Show Hierarchy":["ہیرار کی دکھائیں"],"Show post counts":["پوسٹ شمار دکھائیں"],"Categories settings":[],"Add text…":["ٹکسٹ شامل کریں۔۔۔"],"Button":["بٹن"],"Apply":["لاگو کریں"],"Text Color":["ٹیکسٹ کارنگ"],"Background Color":["پس منظر رنگ"],"Block has been deleted or is unavailable.":["بلاک حذف کردیا گیا ہے یا دستیاب نہیں ہے۔"],"Reusable blocks":[],"Cancel":["منسوخ کریں"],"Edit":["ترمیم کریں"],"Write caption…":["عنوان لکھیں۔۔۔"],"Use URL":["یو آر ایل استعمال کریں"],"Audio":["آڈیو"],"Upload":["چڑھائیں"],"Additional CSS Class(es)":[],"HTML Anchor":["ایچ ٹی ایم ایل اینکر"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["رنگوں کا یہ مجموعہ صارفین کو پڑھنے میں مشکل پیدا کر سکتا ہے۔ کوشش کریں کہ ہلکے رنگ کا پس منظر اور/یا گہرے رنگ کا متن استعمال کریں۔"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["رنگوں کا یہ مجموعہ صارفین کو پڑھنے میں مشکل پیدا کر سکتا ہے۔ کوشش کریں کہ گہرے رنگ کا پس منظر اور/یا ہلکے رنگ کا متن استعمال کریں۔"],"Clear":["صاف کریں"],"Custom color picker":["مرضی کے رنگ چنندہ"],"Color: %s":["رنگ: %s"],"Full width":[],"Wide width":[],"Widgets":["ویجٹس"],"Formatting":["بناوٹ"],"Common blocks":[],"Align right":[],"Align center":[],"Align left":[],"Printing since 1440. This is the development plugin for the new block editor in core.":["1440 کے بعد سے پرنٹنگ. یہ کور میں نئے بلاک ایڈیٹر کے لئے ترقیاتی پلگ ان ہے."],"Add title":["عنوان شامل کریں"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["مصنف"],"Slug":["سلگ"],"Discussion":["تبادلہءخیال"],"Custom fields":[],"Excerpt":["اقتباس"],"Publish":["شائع کریں"],"Metadata":["میٹا ڈیٹا"],"Save":["محفوظ کریں"],"Documentation":["دستاویزات"],"Select Category":["زمرہ منتخب کریں"],"(Untitled)":["(بلاعنوان)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":[],"Gutenberg Team":["Gutenberg ٹیم"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["ڈیمو"],"%s ago":["%s پہلے"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_vi.json b/bundle/android/raw/i18ncache_data_vi.json
new file mode 100644
index 0000000000..15bb2a7ae3
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_vi.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":["thơ"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":[],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":[],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":[],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":[],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":[],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":[],"Template":[],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":[],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":[],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":[],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":[],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":[],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":[],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":[],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":[],"Upload an image file, pick one from your media library, or add one with a URL.":[],"Upload an audio file, pick one from your media library, or add one with a URL.":[],"Upload a media file or pick one from your media library.":[],"Skip":[],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":[],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":[],"SEO settings":[],"Description":[],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":[],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":[],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":[],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":[],"Leave empty if the image is purely decorative.":[],"Describe the purpose of the image":[],"Add a block":[],"Block vertical alignment setting label\u0004Change vertical alignment":[],"Block vertical alignment setting\u0004Vertically Align Bottom":[],"Block vertical alignment setting\u0004Vertically Align Middle":[],"Replace Image":[],"Block vertical alignment setting\u0004Vertically Align Top":[],"Display a legacy widget.":[],"Legacy Widget (Experimental)":[],"Change widget":[],"Legacy Widget":[],"You don't have permissions to use widgets on this site.":[],"Select a legacy widget to display:":[],"There are no widgets available.":[],"Change block type or style":[],"keyboard key\u0004Space":[],"keyboard key\u0004Backspace":[],"More rich text controls":[],"Search Terms":[],"Exit the Editor":[],"Block Manager":[],"Class name of the widget.":[],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":[],"link":[],"Embedded content from %s can't be previewed in the editor.":[],"Custom Color":[],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":[],"Read about permalinks":[],"The last part of the URL.":[],"URL Slug":[],"A cloud of your most used tags.":[],"Tag Cloud":[],"Taxonomy":[],"Tag Cloud settings":[],"- Select -":[],"Default":[],"find":[],"Help visitors find your content.":[],"Search":[],"Add button text…":[],"Button text":[],"Optional placeholder…":[],"Optional placeholder text":[],"Add label…":[],"Label text":[],"image %1$d of %2$d in gallery":[],"archive":[],"posts":[],"A calendar of your site’s posts.":[],"Calendar":[],"by":[],"An error has occurred, which probably means the feed is down. Try again later.":[],"RSS Error:":[],"block style\u0004Default":[],"Fullscreen mode deactivated":[],"Fullscreen mode activated":[],"Spotlight mode deactivated":[],"Spotlight mode activated":[],"Top toolbar deactivated":[],"Top toolbar activated":[],"Back":[],"Feature activated":[],"Feature deactivated":[],"Vertical Pos.":[],"Horizontal Pos.":[],"feed":[],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":[],"Max number of words in excerpt":[],"Display excerpt":[],"Display date":[],"Display author":[],"RSS settings":[],"Edit RSS URL":[],"Content before this block will be shown in the excerpt on your archives page.":[],"Hide the excerpt on the full content page":[],"The excerpt is visible.":[],"The excerpt is hidden.":[],"Sorry, this content could not be embedded.":[],"Embed Amazon Kindle content.":[],"ebook":[],"Embed Crowdsignal (formerly Polldaddy) content.":[],"Focal Point Picker":[],"Underline":[],"Attempt Block Recovery":[],"Word count type. Do not translate!\u0004words":[],"content placeholder\u0004Content…":["Nội dung..."],"button label\u0004Convert to link":["Đổi thành liên kết"],"button label\u0004Try again":["Thử lại"],"Editor tips":[],"Block (selected)":["Khối (đã chọn)"],"Document (selected)":["Tài liệu (đã chọn)"],"%d word":["%d từ"],"Top toolbar":["Thanh công cụ trên"],"Link Rel":["Link Rel"],"Link CSS Class":[],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["Tạo nội dung và lưu nội dung đó cho bạn và những người đóng góp khác để sử dụng lại trên trang web của bạn. Cập nhật khối và các thay đổi sẽ được áp dụng ở mọi nơi được sử dụng."],"To edit the featured image, you need permission to upload media.":["Để chỉnh sửa ảnh đại diện, bạn cần có quyền tải lên thư viện."],"To edit this block, you need permission to upload media.":["Để chỉnh sửa block này, bạn cần có quyền tải lên thư viện."],"(selected block)":["(khối đã chọn)"],"Block tools":["Các công cụ khối"],"Permalink":["Đường dẫn"],"This image has an empty alt attribute":["Hình ảnh này không có thuộc tính alt"],"This image has an empty alt attribute; its file name is %s":["Hình ảnh này không có thuộc tính alt; tên tập tin này là %s"],"Block area reverted to draft.":["Khu vực block đã được chuyển về bản nháp."],"Block area published privately.":[],"No block areas found in Trash.":["Không tìm thấy block nào trong Thùng rác."],"Block\u0004Add New":["Thêm Mới"],"add new on admin bar\u0004Block Area":["Khu vực block"],"Link inserted.":["Liên kết đã được thêm."],"Warning: the link has been inserted but may have errors. Please test it.":["Cảnh báo: liên kết đã được chèn nhưng có thể có lỗi. Hãy kiểm tra lại."],"%s block selected.":["%s khối đã được chọn."],"Thumbnail":["Ảnh thu nhỏ"],"Full Size":["Kích thước đầy đủ"],"Link selected.":["Đã chọn liên kết"],"Start writing with text or HTML":["Bắt đầu viết bằng văn bản hoặc HTML"],"Type text or HTML":["Nhập văn bản hoặc HTML"],"Block icon":["Khối biểu tượng"],"Align text right":[],"Align text center":[],"Align text left":[],"Start writing or type / to choose a block":["Bắt đầu viết hoặc nhập / để chọn một khối"],"Empty block; start writing or type forward slash to choose a block":["Khối trống; bắt đầu viết hoặc gõ dấu gạch chéo để chọn một khối"],"Paragraph block":["Khối đoạn văn"],"Page Break":["Ngắt trang"],"Stack on mobile":["Ngăn xếp trên thiết bị di động"],"Annotation":["Chú thích"],"Drag images, upload new ones or select files from your library.":["Kéo nhiều ảnh, tải ảnh mới lên hoặc chọn tập tin từ thư viện của bạn."],"blocks\u0004Most used":["Dùng nhiều nhất"],"imperative verb\u0004Resolve":["Đã giải quyết"],"font size name\u0004Huge":["Khổng lồ"],"font size name\u0004Large":["Lớn"],"font size name\u0004Medium":["Vừa"],"font size name\u0004Small":["Nhỏ"],"font size name\u0004Normal":["Bình thường"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["Nhập"],"button label\u0004Download":["Tải về"],"button label\u0004Embed":["Nhúng"],"block title\u0004Embed":["Nhúng"],"block title\u0004Classic":["Cổ điển"],"block style\u0004Large":["Lớn"],"block style\u0004Rounded":["Bo tròn"],"%s (opens in a new tab)":["%s (mở trong một tab mới)"],"Link edited.":["Đã chỉnh sửa liên kết."],"Link removed.":["Đã xóa liên kết."],"media":["phương tiện"],"Double-check your settings before publishing.":["Kiểm tra kỹ cài đặt của bạn trước khi đăng."],"Generating preview…":["Đang tạo bản xem trước..."],"Edit or update the image":["Sửa hoặc cập nhật ảnh"],"Media":["Media"],"Navigate to the nearest toolbar.":["Điều hướng đến thanh công cụ gần nhất."],"Document tools":["Các công cụ tài liệu"],"Document and block tools":["Công cụ tài liệu và khối"],"Embed a video from your media library or upload a new one.":["Nhúng một video từ thư viện media của bạn hoặc tải lên video mới."],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["Chèn thơ. Sử dụng định dạng khoảng cách đặc biệt. Hoặc trích dẫn lời bài hát."],"Add white space between blocks and customize its height.":["Thêm khoảng trắng giữa các khối và tùy chỉnh chiều cao của nó."],"Insert additional custom elements with a WordPress shortcode.":["Chèn các phần tử tùy chỉnh bổ sung bằng shortcode của WordPress."],"Create a break between ideas or sections with a horizontal separator.":["Tạo điểm ngắt giữa các ý tưởng hoặc các phần có dấu phân cách ngang."],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["Đưa nhấn mạnh trực quan vào văn bản được trích dẫn. \"Trong trích dẫn của những người khác, chúng ta trích dẫn chính mình.\" - Julio Cortázar"],"Give special visual emphasis to a quote from your text.":["Đưa ra sự nhấn mạnh trực quan đặc biệt cho một trích dẫn từ văn bản của bạn."],"Start with the building block of all narrative.":[],"Separate your content into a multi-page experience.":["Tách nội dung của bạn thành trải nghiệm nhiều trang."],"Set media and words side-by-side for a richer layout.":["Đặt phương tiện và từ song song cho bố cục phong phú hơn."],"Media & Text settings":[],"Create a bulleted or numbered list.":["Tạo một danh sách có dấu đầu dòng hoặc được đánh số."],"Display a list of your most recent comments.":["Hiển thị danh sách các bình luận gần đây nhất của bạn."],"Insert an image to make a visual statement.":["Chèn một hình ảnh để tạo một câu lệnh trực quan."],"Add custom HTML code and preview it as you edit.":["Thêm mã HTML tùy chỉnh và xem trước mã khi bạn chỉnh sửa."],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Giới thiệu các phần mới và tổ chức nội dung để giúp khách truy cập (và công cụ tìm kiếm) hiểu cấu trúc nội dung của bạn."],"Display multiple images in a rich gallery.":["Hiển thị nhiều ảnh trong một album ảnh phong phú."],"Add a link to a downloadable file.":["Thêm liên kết vào tệp có thể tải xuống."],"Embed videos, images, tweets, audio, and other content from external sources.":["Nhúng video, ảnh, tweet, âm thanh và nội dung khác từ các nguồn bên ngoài."],"Resize for smaller devices":["Thay đổi kích thước cho các thiết bị nhỏ hơn"],"This embed may not preserve its aspect ratio when the browser is resized.":["Phần nhúng này có thể không giữ nguyên tỉ lệ khung hình khi trình duyệt được thay đổi kích cỡ."],"This embed will preserve its aspect ratio when the browser is resized.":["Phần nhúng này sẽ giữ nguyên tỉ lệ khung hình khi trình duyệt thay đổi kích thước."],"Embed an Animoto video.":["Nhúng một video từ Animoto."],"Embed a Vimeo video.":["Nhúng một video từ Vimeo."],"Embed Flickr content.":["Nhúng nội dung từ Flickr."],"Embed Spotify content.":["Nhúng nội dung từ Spotify."],"Embed SoundCloud content.":["Nhúng nội dung từ SoundCloud."],"Embed a WordPress post.":["Nhúng một bài viết trên WordPress."],"Embed an Instagram post.":["Nhúng một bài viết trên Instagram."],"Embed a Facebook post.":["Nhúng một bài viết trên Facebook."],"Embed a WordPress.tv video.":["Nhúng một video từ WordPress.tv."],"Embed a VideoPress video.":["Nhúng một video từ VideoPress."],"Embed a Tumblr post.":["Nhúng một bài viết từ Tumblr."],"Embed a TED video.":["Nhúng một video từ TED."],"Embed Speaker Deck content.":["Nhúng nội dung trên Speaker Deck."],"Embed a YouTube video.":["Nhúng một video trên YouTube."],"Embed SmugMug content.":["Nhúng nội dung từ SmugMug."],"Embed Slideshare content.":["Nhúng nội dung từ Slideshare."],"Embed Scribd content.":["Nhúng nội dung từ Scribd."],"Embed Screencast content.":["Nhúng nội dung từ Screencast."],"Embed ReverbNation content.":["Nhúng nội dung từ ReverbNation."],"Embed a Reddit thread.":["Nhúng một bài viết trên Reddit."],"Embed Polldaddy content.":["Nhúng nội dung từ Polldaddy."],"Embed Mixcloud content.":["Nhúng nội dung từ Mixcloud."],"Embed a tweet.":["Nhúng một tweet."],"Embed Meetup.com content.":["Nhúng nội dung từ Meetup.com."],"Embed Kickstarter content.":["Nhúng nội dung từ Kickstarter."],"Embed Issuu content.":["Nhúng nội dung từ Issuu."],"Embed Imgur content.":["Nhúng nội dung từ Imgur."],"Embed Hulu content.":["Nhúng nội dung từ Hulu."],"Embed a Dailymotion video.":["Nhúng một video trên Dailymotion."],"Embed CollegeHumor content.":["Nhúng nội dung từ CollegeHumor."],"Embed Cloudup content.":["Nhúng nội dung từ Cloudup."],"Add an image or video with a text overlay — great for headers.":["Thêm ảnh hoặc video có text overlay — tuyệt vời để làm phần đầu trang."],"Display code snippets that respect your spacing and tabs.":[],"Use the classic WordPress editor.":["Sử dụng trình soạn thảo WordPress cổ điển."],"Display a list of all categories.":["Hiển thị danh sách tất cả các chuyên mục."],"Embed a simple audio player.":["Nhúng trình phát âm thanh đơn giản."],"noun\u0004View":["Xem"],"editor button\u0004Left to right":["Trái sang phải"],"Save as Pending":["Lưu dưới dạng Đang chờ xử lý"],"%s address":["%s địa chỉ"],"Paste or type URL":["Dán hoặc nhập URL"],"Insert from URL":["Chèn từ URL"],"Block Navigator":["Điều hướng Block"],"Styles":["Các Kiểu"],"Advanced panels":[],"Document panels":["Danh sách tài liệu"],"General":["Chung"],"Open the block navigation menu.":["Mở menu điều hướng khối."],"Work without distraction":["Làm việc mà không mất tập trung"],"Focus on one block at a time":["Tập trung vào từng khối một lúc"],"Access all block and document tools in a single place":["Truy cập tất cả các công cụ block và tài liệu ở một nơi duy nhất"],"Options":["Tuỳ chọn"],"(opens in a new tab)":["(mở trong một tab mới)"],"Minutes":["Phút"],"Hours":["Giờ"],"Time":["Thời gian"],"Year":["Năm"],"Day":["Ngày"],"December":["Tháng mười hai"],"November":["Tháng mười một"],"October":["Tháng mười"],"September":["Tháng chín"],"August":["Tháng tám"],"July":["Tháng bảy"],"June":["Tháng sáu"],"May":["Tháng năm"],"April":["Tháng tư"],"March":["Tháng ba"],"February":["Tháng hai"],"January":["Tháng một"],"Month":["Tháng"],"Date":["Ngày"],"Go to the first (home) or last (end) day of a week.":["Đến ngày đầu tiên (trang chủ) hoặc cuối cùng (cuối) trong một tuần."],"Home/End":[],"Home and End":[],"Move backward (PgUp) or forward (PgDn) by one month.":["Di chuyển lùi (PgUp) hoặc chuyển tiếp (PgDn) một tháng."],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up và Page Down"],"Move backward (up) or forward (down) by one week.":["Di chuyển lùi (lên) hoặc tiến (xuống) một tuần."],"Up and Down Arrows":["Mũi tên lên và xuống"],"Move backward (left) or forward (right) by one day.":["Di chuyển lùi (trái) hoặc tiến (phải) một ngày."],"Left and Right Arrows":["Mũi tên trái và phải"],"Select the date in focus.":[],"Navigating with a keyboard":[],"Click the desired day to select it.":[],"Click the right or left arrows to select other months in the past or the future.":["Nhấp chuột vào mũi tên phải và trái để chọn tháng khác trong quá khứ hoặc tương lai."],"Click to Select":["Nhấp chuột để chọn"],"Calendar Help":["Trợ giúp Lịch"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Sử dụng các phím mũi tên để thay đổi màu sắc. Di chuyển lên để làm sáng màu, giảm tối, sang trái để tăng độ bão hòa và phải để giảm độ bão hòa."],"Choose a shade":["Chọn một màu"],"Change color format":["Thay đổi định dạng màu sắc"],"Color value in HSL":["Giá trị màu trong HSL"],"Color value in RGB":["Giá trị màu trong RGB"],"Color value in hexadecimal":["Giá trị màu trong hệ thập lục phân"],"RGB mode active":["Chế độ màu RGB có hiệu lực"],"Hex color mode active":["Chế độ màu thập lục phân có hiệu lực"],"Hue/saturation/lightness mode active":[],"Move the arrow left or right to change hue.":[],"Hue value in degrees, from 0 to 359.":[],"Alpha value, from 0 (transparent) to 1 (fully opaque).":[],"Stripes":[],"Your site doesn’t include support for this block.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":[],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":[],"Media area":[],"Media & Text":[],"Show media on right":[],"Show media on left":[],"Open in New Tab":["Mở trong Tab Mới"],"Cover":[],"Border settings":[],"Medium":["Trung bình"],"Paste URL or type to search":["Dán URL hoặc nhập để tìm kiếm"],"Terms":["Điều kiện"],"Your work will be published at the specified date and time.":["Bài viết của bạn sẽ được đăng vào ngày và giờ đã được chỉ định."],"Are you ready to schedule?":["Bạn đã sẵn sàng lên lịch chưa?"],"Always show pre-publish checks.":[],"Take Over":[],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":[],"%s is currently working on this post, which means you cannot make changes, unless you take over.":[],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":[],"Avatar":["Ảnh đại diện"],"This post is already being edited.":[],"Someone else has taken over this post.":[],"This block contains unexpected or invalid content.":[],"Resolve Block":[],"Convert to HTML":["Chuyển đổi sang HTML"],"This block can only be used once.":["Khối này chỉ có thể được sử dụng một lần."],"Exit Code Editor":["Thoát trình Chỉnh sửa Mã"],"Editing Code":["Chỉnh sửa Mã"],"Solid Color":["Màu đồng nhất"],"Main Color":["Màu chính"],"HTML":["HTML"],"Write HTML…":["Viết HTML…"],"Media settings":[],"Overlay":["Overlay"],"Insert Media":["Chèn nhạc"],"Reusable block imported successfully!":["Nhập khối tái sử dụng thành công!"],"Invalid Reusable Block JSON file":["Tệp JSON của khối sử dụng lại không hợp lệ"],"Invalid JSON file":["Tệp JSON không hợp lệ"],"Import from JSON":["Nhập từ JSON"],"Backtick":[],"Period":["Giai đoạn"],"Comma":["Dấu phẩy"],"Change type of %d block":["Thay đổi loại của khối %d"],"Current":["Hiện tại"],"After Conversion":["Sau khi chuyển đổi"],"Change alignment":["Chỉnh căn lề"],"Change text alignment":[],"%d block":["%d Khối"],"Forward-slash":["Forward-slash"],"No archives to show.":["Không có lưu trữ nào để hiển thị."],"This file is empty.":["Tệp tin này trống."],"Sorry, this file type is not supported here.":["Xin lỗi, loại tệp tin này không được hỗ trợ."],"Manage all reusable blocks":[],"Title":["Tiêu đề"],"Fullscreen mode":["Chế độ toàn màn hình"],"Beautiful landscape":["Chế độ ngang tuyệt đẹp"],"Close panel":["Đóng bảng điều khiển"],"Convert to Classic Block":["Chuyển thành khối cổ điển"],"Remove Poster Image":["Xóa hình ảnh"],"Select Poster Image":["Chọn hình ảnh"],"Poster Image":["Hình ảnh"],"This block is deprecated. Please use the Columns block instead.":["Khối này đã ngừng được phát triển. Thay vào đó, hãy sử dụng khối Cột."],"Text Columns (deprecated)":["Cột văn bản (ngừng phát triển)"],"Create":["Tạo"],"Row Count":["Số hàng"],"Column Count":["Số cột"],"This block is deprecated. Please use the Paragraph block instead.":["Khối này không được chấp nhận. Thay vào đó, hãy sử dụng khối Đoạn văn."],"Subheading (deprecated)":["Tiêu đề phụ (không được chấp nhận)"],"blockquote":["trích dẫn"],"Change the block type after adding a new paragraph.":["Thay đổi loại khối sau khi thêm đoạn văn bản mới."],"Spotlight mode":[],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Thẻ sẽ giúp người dùng và các công cụ tìm kiếm điều hướng trang web của bạn và tìm nội dung của bạn. Thêm một vài từ khóa để mô tả cho bài viết của bạn."],"Add tags":["Thêm thẻ"],"Apply the \"%1$s\" format.":["Áp dụng định dạng \"%1$s\"."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Chủ đề của bạn đang sử dụng các định dạng bài viết để làm nổi bật các loại nội dung khác nhau, như hình ảnh hoặc video. Áp dụng định dạng bài viết để xem kiểu dáng đặc biệt này."],"Use a post format":["Sử dụng định dạng bài viết"],"Insert After":["Chèn sau"],"Insert Before":["Chèn trước"],"Move %1$d block from position %2$d down by one place":["Di chuyển khối %1$d từ vị trí %2$d xuống dưới một vị trí"],"Move %1$d block from position %2$d up by one place":["Di chuyển khối %1$d từ vị trí %2$d lên trên một vị trí"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["phim"],"Insert a new block before the selected block(s).":["Chèn một khối mới trước các khối đã chọn."],"Remove the selected block(s).":["Loại bỏ các khối đã chọn."],"Duplicate the selected block(s).":["Nhân đôi các khối đã chọn."],"Block shortcuts":["Phím tắt khối"],"Clear selection.":["Xóa lựa chọn."],"Select all text when typing. Press again to select all blocks.":["Chọn tất cả văn bản khi nhập. Nhấn lại để chọn tất cả các khối."],"Selection shortcuts":["Phím tắt lựa chọn"],"Switch between Visual editor and Code editor.":[],"Navigate to the previous part of the editor.":["Điều hướng đến phần trước của trình chỉnh sửa."],"Navigate to the next part of the editor.":["Điều hướng đến phần tiếp theo của trình chỉnh sửa."],"Show or hide the settings sidebar.":["Hiển thị hoặc ẩn thanh cài đặt bên."],"Redo your last undo.":["Làm lại lần hoàn tác cuối của bạn."],"Undo your last changes.":["Hoàn tác lại lần thay đổi cuối cùng của bạn."],"Save your changes.":["Lưu các thay đổi của bạn."],"Global shortcuts":["Phím tắt chung"],"Remove a link.":["Xóa liên kết."],"Convert the selected text into a link.":["Chuyển văn bản đã chọn thành liên kết."],"Underline the selected text.":["Gạch chân văn bản đã chọn."],"Make the selected text italic.":["Làm cho văn bản được chọn in nghiêng."],"Make the selected text bold.":["Làm cho văn bản được chọn in đậm."],"Text formatting":["Định dạng văn bản"],"Insert a new block after the selected block(s).":["Chèn một khối mới sau (các) khối đã chọn."],"Keyboard shortcuts":["Phím tắt"],"Thanks for testing Gutenberg!":["Cảm ơn bạn đã thử nghiệm Gutenberg!"],"Help build Gutenberg":["Giúp xây dựng Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["Nếu bạn muốn tìm hiểu thêm về cách xây dựng các khối bổ sung hoặc nếu bạn quan tâm đến việc trợ giúp dự án, hãy truy cập GitHub."],"The WordPress community":["Cộng đồng WordPress"],"Code is Poetry":["Viết mã như làm thơ"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["Bạn có thể xây dựng bất kỳ khối nào mà bạn thích, tĩnh hoặc động, đơn giản hoặc phức tạp. Đây là một khối pullquote:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["Bất kỳ khối nào cũng có thể chọn tham gia vào cách sắp xếp này. Các khối được nhúng vào cũng vậy, và chúng hoàn toàn được thiết kế đáp ứng (responsive)."],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["Ở trên là một bộ sưu tập chỉ với hai hình ảnh. Đó là một cách dễ dàng hơn để tạo ra bố cục trực quan và hấp dẫn. Bạn cũng có thể dễ dàng chuyển đổi bộ sưu tập trở lại hình ảnh riêng lẻ một lần nữa bằng cách sử dụng trình chuyển đổi khối."],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":[],"Accessibility is important — don’t forget image alt attribute":[],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":[],"Media Rich":[],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":[],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":[],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":[],"Matt Mullenweg, 2017":["Matt Mullenweg, 2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":[],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":[],"Visual Editing":["Chỉnh sửa trực quan"],"And Lists like this one of course :)":["Và Danh sách tất nhiên sẽ như thế này :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["Các khối bố cục, như Nút, Hình ảnh, Dấu phân cách, v.v."],"Embeds, like YouTube, Tweets, or other WordPress posts.":["Nhúng, như YouTube, Tweets hoặc các bài viết trên WordPress khác."],"Galleries":["Album ảnh"],"Images & Videos":["Hình ảnh & Video"],"Text & Headings":["Văn bản & Tiêu đề"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["Hãy dùng thử, bạn có thể khám phá ra những điều mà WordPress có thể thêm vào các bài viết của bạn mà trước đây bạn không hề biết. Dưới đây là danh sách ngắn về những gì bạn hiện có thể tìm thấy ở đó:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":[],"The Inserter Tool":[],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":[],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":[],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":[],"A Picture is Worth a Thousand Words":["Một bức tranh bằng ngàn lời nói"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["Các tiêu đề cũng là các khối riêng biệt, nó giúp phác thảo và tổ chức nội dung của bạn."],"... like this one, which is right aligned.":[],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":[],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":[],"Of Mountains & Printing Presses":[],"Welcome to the Gutenberg Editor":["Chào mừng bạn đến với Gutenberg Editor"],"block name\u0004More":["Thêm nữa"],"button to expand options\u0004More":["Thêm nữa"],"Are you sure you want to unschedule this post?":["Bạn có chắc chắn muốn hủy lên lịch bài này không?"],"Alt Text (Alternative Text)":["Văn bản t.thế (Văn bản thay thế)"],"Reusable Block":["Khối được sử dụng lại"],"Unique identifier for the object.":["Định danh duy nhất cho đối tượng."],"Untitled Reusable Block":["Khối không thể sử dụng lại được"],"Small":["Nhỏ"],"Reusable":["Có thể tái sử dụng"],"Remove from Reusable blocks":[],"Add to Reusable blocks":[],"Keep as HTML":["Giữ dưới dạng HTML"],"Edit URL":["Sửa URL"],"Color settings":[],"The response is not a valid JSON response.":["Phản hồi không phải là phản hồi JSON hợp lệ."],"Editor publish":["Trình chỉnh sửa xuất bản"],"Muted":["Đã tắt tiếng"],"Video settings":[],"recent comments":["bình luận gần đây"],"Latest Comments":["Bình luận mới nhất"],"Display Excerpt":["Hiển thị Tóm tắt"],"Display Date":["Hiển thị Ngày"],"Display Avatar":["Hiển thị Ảnh Đại diện"],"Latest comments settings":[],"Number of Comments":["Số lượng Bình luận"],"Background Opacity":["Độ mờ nền"],"Auto":["Tự động"],"Preload":["Tải trước"],"Audio settings":[],"Display a monthly archive of your posts.":["Hiển thị lưu trữ hàng tháng các bài viết trên trang web của bạn."],"Display as Dropdown":["Hiển thị dưới dạng Dropdown"],"Show Post Counts":["Hiển thị số lần đăng"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["Hỗ trợ"],"No comments to show.":["Không có bình luận nào để hiển thị."],"%1$s on %2$s":["%1$s trên %2$s"],"Select Post":["Chọn bài viết"],"Select Week":["Chọn tuần"],"Select Day":["Chọn ngày"],"Select Month":["Chọn tháng"],"Select Year":["Chọn năm"],"Archives":["Lưu trữ"],"Very dark gray":["màu xám đậm"],"Cyan bluish gray":["màu xám xanh lục lam"],"Very light gray":["xám rất nhạt"],"Vivid cyan blue":["xanh lục lam rực rỡ"],"Pale cyan blue":["xanh lục lam nhạt"],"Vivid green cyan":["xanh lục lam sống động"],"Light green cyan":["xanh lục lam nhạt"],"Luminous vivid amber":["sáng hổ phách sinh động"],"Luminous vivid orange":[],"Vivid red":["màu đỏ chói"],"Pale pink":["màu hồng nhạt"],"Inline image":[],"Available block types":["Các loại khối có sẵn"],"Transform To:":["Chuyển sang:"],"Remove Block":["Gỡ bỏ khối"],"Open publish panel":[],"Dots":["Dấu chấm"],"Wide Line":["Đường rộng"],"Large":["Lớn"],"Show download button":[],"Download button settings":[],"Link To":["Liên kết đến"],"Text link settings":[],"download":["tải xuống"],"pdf":["pdf"],"document":["tài liệu"],"Copy URL":["Sao chép URL"],"Write file name…":["Viết tên tệp…"],"File":["Tệp"],"A single column within a columns block.":["Một cột đơn trong một khối cột."],"Column":["Cột"],"Outline":["Dàn ý"],"Loop":["Vòng lặp"],"Autoplay":["Tự chạy"],"Playback Controls":["Điều khiển phát lại"],"Close dialog":["Đóng hộp thoại"],"Sorry, this file type is not permitted for security reasons.":["Rất tiếc, loại tệp này không được phép vì lý do bảo mật."],"Disable tips":["Tắt mẹo"],"Got it":["Hiểu rồi"],"See next tip":["Xem mẹo tiếp theo"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":[],"Are you ready to submit for review?":["Bạn đã sẵn sàng gửi để xem xét chưa?"],"Replace image":["Thay thế ảnh"],"Remove image":["Gỡ bỏ ảnh"],"Error while uploading file %s to the media library.":["Lỗi khi tải tệp %s lên thư viện."],"This file exceeds the maximum upload size for this site.":["%s vượt quá kích thước tải lên tối đa cho trang web này."],"View the autosave":["Xem tự động lưu"],"There is an autosave of this post that is more recent than the version below.":[],"Autosaving":["Tự động lưu"],"Enter URL here…":["Nhập URL tại đây…"],"Pin to toolbar":["Ghim vào thanh công cụ"],"Unpin from toolbar":["Bỏ ghim khỏi thanh công cụ"],"Insert a table — perfect for sharing charts and data.":[],"Fixed width table cells":[],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":[],"Display a list of your most recent posts.":["Hiển thị danh sách các bài đăng gần đây nhất của bạn."],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":[],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":[],"Error loading block: %s":["Có lỗi xảy ra khi tải lên block: %s"],"Unknown error":["Lỗi không xác định"],"Embed Handler":["Trình xử lý nhúng"],"term\u0004Remove %s":["Gỡ bỏ %s"],"Copy the permalink":["Sao chép đường dẫn"],"Permalink copied":["Đã sao chép đường dẫn"],"Height in pixels":["Chiều cao tính bằng pixel"],"Spacer settings":[],"Spacer":["Khoảng cách"],"Toggle to show a large initial letter.":[],"Showing large initial letter.":[],"Name:":["Tên:"],"%1$s (%2$s of %3$s)":["%1$s (%2$s của %3$s)"],"Remove item":["Loại bỏ mục"],"Color code: %s":["Mã màu sắc: %s"],"Skip to the selected block":[],"Publish…":["Công bố..."],"Schedule…":["Lên lịch..."],"Edit post permalink":["Chỉnh sửa đường dẫn bài viết"],"Show Block Settings":["Hiển thị cài đặt khối"],"Hide Block Settings":["Ẩn cài đặt khối"],"Block settings closed":["Đã đóng cài đặt khối"],"Close plugin":["Đóng plugin"],"Editor settings":["Cài đặt trình chỉnh sửa"],"Link settings":[],"Unlink":["Bỏ liên kết"],"Page break":["Ngắt trang"],"pagination":["Phân trang"],"next page":["Trang tiếp theo"],"Image Size":["Kích thước ảnh"],"Height":["Chiều cao"],"Width":["Chiều rộng"],"Image Dimensions":["Kích thước hình ảnh"],"Thumbnails are not cropped.":["Hình thu nhỏ không bị cắt."],"Thumbnails are cropped to align.":["Hình thu nhỏ được cắt để căn chỉnh."],"Media Library":["Thư viện media"],"Advanced":["Nâng cao"],"Add item":["Thêm item"],"Reset the template":["Đặt lại mẫu"],"Keep it as is":["Giữ nó như là"],"The content of your post doesn’t match the template assigned to your post type.":["Nội dung bài viết của bạn không khớp với mẫu được gán cho loại bài viết của bạn."],"Resetting the template may result in loss of content, do you want to continue?":["Đặt lại mẫu có thể dẫn đến mất nội dung, bạn có muốn tiếp tục không?"],"Document Statistics":["Thống kê tài liệu"],"is now scheduled. It will go live on":[],"Scheduled":["Đã vào hàng chờ"],"Scheduling…":["Đang chạy hàng chờ..."],"Code editor selected":["Code editor đã được chọn"],"Visual editor selected":["Visual editor đã được chọn"],"Plugins":["Plugin"],"Custom Size":["Kích thước tùy chỉnh"],"Layout elements":[],"term\u0004%s removed":["Đã xóa %s"],"term\u0004%s added":["Đã thêm %s"],"imperative verb\u0004Preview":["Xem thử"],"Block deleted.":["Đã xóa khối."],"Block updated.":["Đã cập nhật khối."],"Block created.":["Đã tạo khối."],"Trashing failed":["Không thể truy cập"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["Bạn có các thay đổi chưa lưu. Nếu bạn tiếp tục, chúng sẽ bị mất."],"Document Outline":[],"Paragraphs":["Đoạn văn"],"Headings":["Tiêu đề"],"Words":["Từ ngữ"],"Content structure":["Cấu trúc của nội dung"],"Public":["Công khai"],"Protected with a password you choose. Only those with the password can view this post.":["Được bảo vệ với mật khẩu bạn chọn. Chỉ ai nhập mật khẩu mới thấy bài viết này."],"Password Protected":["Mật khẩu được bảo vệ"],"Only visible to site admins and editors.":[],"Private":["Bí mật"],"Visible to everyone.":["Hiển thị tới tất cả."],"Post Visibility":["Hiển thị bài viết"],"Would you like to privately publish this post now?":["Bạn có muốn xuất bản riêng tư bài viết này ngay bây giờ không?"],"Use a secure password":["Sử dụng mật khẩu an toàn"],"Create password":["Tạo mật khẩu"],"Move to Trash":["Chuyển vào Thùng rác"],"Parent Term":[],"Parent Category":[],"Add new term":[],"Add new category":["Thêm danh mục mới"],"Term":[],"Tag":["Thẻ"],"Add new Term":["Thêm Term mới"],"Add new tag":["Thêm thẻ mới"],"Switch to draft":["Chuyển sang \bchế độ nháp"],"Are you sure you want to unpublish this post?":["Bạn có chắc chắn muốn hủy xuất bản bài viết này không?"],"Immediately":["Ngay"],"Save Draft":["Lưu nháp"],"Saving":["Đang lưu"],"Publish:":["Xuất bản:"],"Visibility:":["Hiển thị:"],"Are you ready to publish?":["Bạn đã sẵn sàng xuất bản chưa?"],"Copy Link":["Sao chép liên kết"],"What’s next?":["Cái gì tiếp theo?"],"is now live.":["hiện đang hoạt động."],"Published":["Đăng"],"Schedule":["Lên lịch"],"Update":["Cập nhật"],"Submit for Review":["Gửi đánh giá"],"Updating…":["Đang cập nhật..."],"Publishing…":["Đang đăng tải..."],"Allow pingbacks & trackbacks":["Chấp nhận Pingbacks & Trackbacks"],"Permalink:":["Đường dẫn"],"Pending review":["Chờ xét duyệt"],"%d Revision":["%d sửa đổi"],"Suggestion:":["Đề nghị:"],"Post Format":["Định dạng bài viết"],"Chat":["Trò chuyện"],"Status":["Trạng thái"],"Standard":["Tiêu chuẩn"],"Aside":["Qua một bên"],"Featured image":["Ảnh nổi bật"],"Set featured image":["Đặt ảnh đại diện"],"Learn more about manual excerpts":["Tìm hiểu thêm về những tóm tắt cơ bản"],"Write an excerpt (optional)":["Viết một tóm tắt (không bắt buộc)"],"Allow comments":["Cho phép bình luận"],"Template:":["Mẫu:"],"no parent":[],"no title":["Không tiêu đề"],"Order":[],"No blocks found.":["Không tìm thấy khối nào."],"%d result found.":[],"Saved":["Đã lưu"],"Embeds":["Nhúng vào"],"Blocks":["Khối"],"Search for a block":["Tìm một khối"],"Add block":["Thêm khối"],"Copy Error":["Lỗi sao chép"],"Copy Post Text":["Sao chép văn bản bài viết"],"Attempt Recovery":["Cố gắng khôi phục"],"The editor has encountered an unexpected error.":["Trình chỉnh sửa đã gặp lỗi không mong muốn."],"Undo":["Hoàn tác"],"Redo":["Làm lại"],"(Multiple H1 headings are not recommended)":[],"(Your theme may already use a H1 for the post title)":["(Chủ đề của bạn có thể đã sử dụng một thẻ H1 cho tiêu đề bài viết)"],"(Incorrect heading level)":["(Tiêu đề sai cấp)"],"(Empty heading)":["(Tiêu đề trống)"],"Block Styles":[],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":[],"Convert to Regular Block":[],"More options":["Lựa chọn khác"],"Edit visually":["Chỉnh sửa trực quan"],"Duplicate":["Bản sao"],"Blocks cannot be moved down as they are already at the bottom":["Không thể di chuyển các khối vì chúng đã ở dưới cùng"],"Blocks cannot be moved up as they are already at the top":["Không thể di chuyển các khối vì chúng đã ở trên cùng"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":[],"Edit as HTML":["Chỉnh sửa dưới dạng HTML"],"Convert to Blocks":["Chuyển đổi thành khối"],"Block: %s":["Khối: %s"],"This block has encountered an error and cannot be previewed.":["Khối này đã gặp lỗi và không thể xem trước được."],"No block selected.":["Không có khối nào được chọn."],"Transform into:":["Chuyển đổi vào:"],"Remove":["Gỡ bỏ"],"Find original":["Tìm kiếm nguyên bản"],"Copy all content":["Sao chép tất cả nội dung"],"Copied!":["Đã sao chép"],"Additional settings are now available in the Editor block settings sidebar":["Cài đặt bổ sung hiện khả dụng trong thanh bên cài đặt của trình chỉnh sửa khối"],"Visibility":["Hiển thị"],"Status & visibility":["Trạng thái và Hiển thị"],"Page attributes":["Thuộc tính trang"],"Block":["Khối %d"],"Document":["Tài liệu"],"Close settings":["Đóng cài đặt"],"Editor content":["Trình chỉnh sửa nội dung"],"Tools":["Công cụ"],"Editor":["Trình chỉnh sửa"],"Code editor":["Chế độ sửa code"],"Visual editor":["Chế độ trực quan"],"Editor top bar":[],"Settings":["Cài đặt"],"Reset":["Đặt lại"],"Dismiss this notice":["Loại bỏ thông báo này"],"Item removed.":["Item đã được xóa."],"Item added.":["Item đã được thêm vào."],"Drop files to upload":["Thả tệp để tải lên"],"PM":["PM"],"AM":["AM"],"An unknown error occurred.":["Đã xảy ra lỗi không xác định."],"No results.":["Không có kết quả."],"%d result found, use up and down arrow keys to navigate.":["Đã tìm thấy %d kết quả, sử dụng các phím mũi tên lên và xuống để điều hướng."],"(no title)":["(không tiêu đề)"],"URL":["URL"],"Submit":["Gửi"],"Close":["Đóng"],"Insert link":["Chèn đường dẫn"],"Edit link":["Sửa liên kết"],"Link":["Liên kết"],"Strikethrough":["Đường gạch ngang"],"Italic":["Nghiêng"],"Bold":["Đậm"],"Remove link":[],"Number of items":["Số hạng mục"],"All":["Tất cả"],"Category":["Chuyên mục"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["Cũ nhất đến mới nhất"],"Newest to Oldest":["Mới nhất đến cũ nhất"],"Order by":["Đặt bởi"],"Select":["Chọn"],"Select or Upload Media":["Chọn hoặc tải lên phương tiện"],"Video":["Video"],"Write…":["Viết…"],"poetry":[],"Verse":["Thơ"],"New Column":["Cột mới"],"Delete Column":["Xóa cột"],"Add Column After":["Thêm cột sau"],"Add Column Before":["Thêm cột trước"],"Delete Row":["Xóa hàng"],"Add Row After":["Thêm hàng sau"],"Add Row Before":["Thêm hàng trước"],"Edit table":["Chỉnh sửa bảng"],"Table":["Bảng"],"Write subheading…":["Viết tiêu đề phụ ..."],"Write shortcode here…":["Viết shortcode ở đây…"],"Shortcode":["Shortcode"],"divider":["đường kẻ dọc"],"horizontal-line":["đường kẻ ngang"],"Separator":["Dấu phân tách"],"Quote":["Trích dẫn"],"Write citation…":["Viết trích dẫn…"],"Write quote…":["Viết trích dẫn…"],"Pullquote":["Pullquote"],"Write preformatted text…":["Viết văn bản được định dạng trước…"],"Preformatted":["Đã định dạng trước"],"text":["văn bản"],"Paragraph":["Đoạn"],"Font Size":["Cỡ chữ"],"Drop Cap":[],"Text settings":[],"Read more":["Đọc tiếp"],"Write list…":["Viết danh sách…"],"numbered list":["danh sách đánh số"],"ordered list":["danh sách được yêu cầu"],"bullet list":[],"Indent list item":[],"Outdent list item":[],"Convert to ordered list":["Chuyển đổi sang danh sách theo thứ tự"],"Convert to unordered list":["Chuyển đổi thành danh sách không có thứ tự"],"List":["Danh sách"],"recent posts":["bài viết gần đây"],"No posts found.":["Không tìm thấy bài viết."],"Latest Posts":["Bài viết mới nhất"],"Display post date":["Hiển thị ngày đăng"],"Grid view":["Xem dạng lưới"],"List view":["Xem dạng danh sách"],"photo":["ảnh"],"Image settings":[],"Image":["Ảnh"],"Preview":["Xem trước"],"embed":["nhúng"],"Custom HTML":["Tùy biến HTML"],"subtitle":["phụ đề"],"title":["tiêu đề"],"Heading":["Phần mở đầu"],"Write heading…":["Viết tiêu đề…"],"Heading %d":["Tiêu đề %d"],"Level":["Cấp độ"],"Heading settings":[],"photos":["ảnh"],"images":["ảnh"],"None":["Không"],"Media File":["Tệp phương tiện"],"Attachment Page":["Trang đính kèm"],"Link to ":["Liên kết tới"],"Crop Images":["Cắt ảnh"],"Gallery settings":[],"Gallery":["Album ảnh"],"Classic":["Cổ điển"],"video":["video"],"audio":["audio"],"music":["nhạc"],"image":["ảnh"],"blog":["blog"],"post":["bài viết"],"Embedded content from %s":["Nội dung được nhúng từ %s"],"Enter URL to embed here…":["Nhập URL để nhúng vào đây…"],"%s URL":["%s URL"],"Embedding…":["Đang nhúng..."],"Write title…":["Viết tiêu đề…"],"Fixed Background":[],"Edit image":["Sửa ảnh"],"Columns":["Cột"],"Experiments":[],"Code":["Mã"],"Write code…":["Viết mã…"],"Categories":["Chuyên mục"],"Show Hierarchy":["Hiển thị phân cấp"],"Show post counts":["Hiển thị số lần đăng"],"Categories settings":[],"Add text…":["Thêm nội dung văn bản…"],"Button":["Nút"],"Apply":["Áp dụng"],"Text Color":["Màu văn bản"],"Background Color":["Màu nền"],"Block has been deleted or is unavailable.":["Khối đã bị xóa hoặc không khả dụng."],"Reusable blocks":["Block tái sử dụng"],"Cancel":["Hủy"],"Edit":["Sửa"],"Write caption…":["Viết chú thích…"],"Use URL":["Sử dụng URL"],"Audio":["Audio"],"Upload":["Tải lên"],"Additional CSS Class(es)":["Class CSS bổ sung"],"HTML Anchor":["Neo HTML"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["Sự kết hợp màu này có thể khó đọc cho mọi người. Hãy thử sử dụng màu nền sáng hơn và/hoặc màu văn bản tối hơn."],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["Sự kết hợp màu này có thể khó đọc cho mọi người. Thử sử dụng màu nền tối hơn và/hoặc màu văn bản sáng hơn."],"Clear":["Xóa"],"Custom color picker":["Bộ chọn màu tùy chỉnh"],"Color: %s":["Màu: %s"],"Full width":["Tràn khung"],"Wide width":[],"Widgets":["Widget"],"Formatting":["Định dạng"],"Common blocks":["Khối chung"],"Align right":["Căn phải"],"Align center":["Căn giữa"],"Align left":["Căn trái"],"Printing since 1440. This is the development plugin for the new block editor in core.":["In từ năm 1440. Đây là plugin phát triển cho trình chỉnh sửa khối mới trong lõi."],"Add title":["Thêm tiêu đề"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["Tác giả"],"Slug":["Slug"],"Discussion":["Thảo luận"],"Custom fields":["Trường tùy chỉnh"],"Excerpt":["Tóm tắt"],"Publish":["Đăng"],"Metadata":["Metadata"],"Save":["Lưu"],"Documentation":["Tài liệu"],"Select Category":["Chọn chuyên mục"],"(Untitled)":["(Chưa có tiêu đề)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg yêu cầu WordPress %s trở lên để hoạt động bình thường. Vui lòng nâng cấp WordPress trước khi kích hoạt Gutenberg."],"Gutenberg Team":["Nhóm Gutenberg"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["Demo"],"%s ago":["%s trước"],"Block style name must be a string.":["Tên loại khối phải là chuỗi kí tự."]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_zhcn.json b/bundle/android/raw/i18ncache_data_zhcn.json
new file mode 100644
index 0000000000..6f300a6076
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_zhcn.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":[],"Display settings":[],"Choose variation":[],"Angle":[],"%s Block":[],"%1$s Block. %2$s":[],"%s Block. Column %d":[],"%1$s Block. Column %2$d. %3$s":[],"%s Block. Row %d":[],"%1$s Block. Row %2$d. %3$s":[],"Post Excerpt":[],"Post Date":[],"No Date":[],"Post Author":[],"Choose":[],"twentytwenty":[],"Theme":[],"Choose a template part by slug and theme, or create a new one.":[],"Error adding template.":[],"Footer label":[],"Header label":[],"Unsupported":[],"The description will be displayed in the menu if the current theme supports it.":[],"Level %1$s. %2$s":[],"Level %s. Empty.":[],"Empty":[],"Search results for %s":[],"Recently updated":[],"Multiple selected blocks":[],"By %s":[],"Inspector":[],"Site editor advanced settings.":[],"(beta)":[],"Site Editor":[],"Site editor top bar.":[],"Briefly describe the link to help screen reader users.":[],"Link Label":[],"%s label":[],"poem":[],"Matt Mullenweg":[],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":[],"Full Post":[],"Show:":[],"Create from all top-level pages":[],"Suspendisse commodo neque lacus, a dictum orci interdum et.":[],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":[],"Prompt visitors to take action with a group of button-style links.":[],"Buttons":[],"Background":["背景"],"Background & Text Color":[],"Images Size":[],"Remove multiple selected blocks.":[],"(%s: gradient %s)":[],"(%s: color %s)":[],"(Gradient: %s)":[],"(Color: %s)":[],"Here's a detailed guide.":[],"New to the Block Editor? Want to learn more about using it? ":[],"Learn how to use the Block Editor":[],"Help":[],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":[],"Submit for Review…":[],"Update…":[],"Select items to save.":[],"What do you want to save?":["您要保存什么?"],"Untitled":[],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":[],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":[],"Site Editor (beta)":[],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":[],"You are probably offline.":["您可能处于离线状态。"],"Justify items right":[],"Justify items center":[],"Justify items left":[],"Change items justification":[],"The media file has been replaced":[],"Replace":["替换"],"You are currently in edit mode. To return to the navigation mode, press Escape.":[],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":[],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":[],"Gradient control point at position %1$s with color code %2$s.":[],"Preset Size":[],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":[],"Open Media Library":[],"Next":[],"Previous":[],"Finish":[],"Page %1$d of %2$d":[],"Guide controls":[],"Remove Control Point":[],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":[],"Make each block your own":[],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":[],"ADD MEDIA":[],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":[],"Get to know the Block Library":[],"Welcome Guide":[],"Enable page templates":[],"Page Templates":[],"Enable Full Site Editing demo templates":[],"Full Site Editing Demo Templates":[],"Welcome to the Block Editor":[],"Get started":[],"inserter":[],"Post Title":[],"Add nofollow to link":[],"Add submenu":[],"Add link…":[],"Dark":[],"Light":[],"recording":[],"podcast":[],"sound":[],"Array of instance changes":[],"Current widget instance":[],"Template parts to include in your templates.":[],"Template parts list":[],"Template parts list navigation":[],"Filter template parts list":[],"Uploaded to this template part":[],"Insert into template part":[],"Template part archives":[],"No template parts found in Trash.":[],"No template parts found.":[],"Parent Template Part:":[],"Search Template Parts":[],"All Template Parts":[],"View Template Part":[],"Edit Template Part":[],"New Template Part":[],"Add New Template Part":[],"Template Part\u0004Add New":[],"Admin Menu text\u0004Template Parts":[],"Template Part":[],"Template Parts":[],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":[],"Navigation":[],"Loading Navigation…":[],"Navigation Structure":[],"Create empty":[],"Create a Navigation from all existing pages, or create an empty one.":[],"Navigation Link":[],"(Note: many devices and browsers do not display this text.)":[],"Describe the role of this image on the page.":[],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":[],"Use the same %s on all screensizes.":[],"Large screens":[],"Medium screens":[],"Small screens":[],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":[],"Currently selected":[],"Search or type url":[],"Press ENTER to add this link":[],"Currently selected link settings":[],"Generic label for block inserter button\u0004Add block":[],"directly add the only allowed block\u0004Add %s":[],"%s block added":[],"Move %s":[],"Extra Large":[],"Block breadcrumb":[],"Editor footer":[],"Site Title":[],"Open Colors Selector":[],"Templates list":[],"Templates list navigation":[],"Filter templates list":[],"Uploaded to this template":[],"Insert into template":[],"Template archives":[],"No templates found in Trash.":[],"No templates found.":[],"Parent Template:":[],"Search Templates":[],"All Templates":[],"View Template":[],"Edit Template":[],"New Template":[],"Add New Template":[],"Template\u0004Add New":[],"Admin Menu text\u0004Templates":["模板"],"Template":["模板"],"No matching template found":[],"Gradient: %s":[],"Gradient code: %s":[],"All content copied.":[],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["媒体上传失败。如果这是照片或大图像,请按比例缩小并重试。"],"Gradient":[],"Gradient Presets":[],"No Preview Available.":[],"Midnight":["午夜"],"Electric grass":[],"Pale ocean":[],"Luminous dusk":[],"Blush bordeaux":[],"Blush light purple":[],"Cool to warm spectrum":[],"Very light gray to cyan bluish gray":[],"Luminous vivid orange to vivid red":[],"Luminous vivid amber to luminous vivid orange":[],"Light green cyan to vivid green cyan":[],"Vivid cyan blue to vivid purple":[],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":[],"February 21, 2019":[],"May 7, 2019":[],"Release Date":[],"Jazz Musician":[],"Version":[],"Six.":[],"Five.":[],"Four.":[],"Three.":[],"Two.":[],"One.":[],"One of the hardest things to do in technology is disrupt yourself.":[],"— Kobayashi Issa (一茶)":[],"The wren
Earns his living
Noiselessly.":[],"Welcome to the wonderful world of blocks…":[],"Snow Patrol":[],"Dimensions":[],"Minimum height in pixels":[],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":[],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":[],"Call to Action":[],"In quoting others, we cite ourselves.":[],"cite":[],"Mont Blanc appears—still, snowy, and serene.":[],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":[],"Block navigation":[],"Full Site Editing":[],"Templates to include in your theme.":[],"Templates":["模板"],"Inserter help panel":[],"Pre-publish checks":[],"Please contact your site administrator to install new blocks.":[],"No blocks found in your library. Please contact your site administrator to install new blocks.":[],"No blocks found in your library.":[],"No blocks found in your library. These blocks can be downloaded and installed:":[],"No blocks found in your library. We did find %d block available for download.":[],"Block previews can’t load.":[],"Retry":[],"Block previews can't install.":[],"Updated %s":["已更新%s"],"%d active installation":[],"This author has %d block, with an average rating of %d.":[],"Authored by %s":[],"%d total rating":[],"%s out of 5 stars":["%s(满分五星)"],"Enter Address":[],"Pill Shape":[],"Logos Only":[],"Create a block of links to your social media or external sites":[],"Social links":[],"Open block navigator":[],"Attachment page":[],"Fill":[],"Link rel":[],"Border Radius":[],"Write gallery caption…":[],"Content blocks":[],"Restore the backup":[],"The backup of this post in your browser is different from the version below.":[],"Enable block directory search":[],"Block Directory":[],"Unable to connect to the filesystem. Please confirm your credentials.":[],"Sorry, you are not allowed to install blocks.":[],"%1$d block is disabled.":[],"Reverse List Numbering":[],"Start Value":[],"Ordered list settings":[],"Clear Media":[],"Default Style":[],"Not set":[],"While writing, you can press / to quickly insert new blocks.":["在写作时,您可以按/键来快速插入新区块。"],"Browse through the library to learn more about what each block does.":[],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":[],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":[],"Version of the content block format used by the object.":[],"HTML content for the object, transformed for display.":[],"Content for the object, as it exists in the database.":[],"The content for the object.":[],"Change column alignment":[],"Align Column Right":[],"Align Column Center":[],"Align Column Left":[],"Color":[],"Vivid purple":[],"Disable & Reload":[],"Enable & Reload":[],"A page reload is required for this change. Make sure your content is saved before reloading.":[],"Display these keyboard shortcuts.":[],"Experiments Settings":[],"Enable Widgets screen and Legacy Widgets block":[],"Experimental settings":[],"Block name name must be a string.":[],"Custom":[],"Draft":[],"Block \"%1$s\" does not contain a style named \"%2$s.\".":[],"Learn more about anchors":[],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":[],"Widget Blocks (Experimental)":[],"Upload a video file, pick one from your media library, or add one with a URL.":["上传视频文件,从您的媒体库中选择,或通过URL添加。"],"Upload an image file, pick one from your media library, or add one with a URL.":["上传图像文件,从您的媒体库中选择,或通过URL添加。"],"Upload an audio file, pick one from your media library, or add one with a URL.":["上传音频文件,从您的媒体库中选择,或通过URL添加。"],"Upload a media file or pick one from your media library.":["上传媒体文件,或从您的媒体库中选择。"],"Skip":["跳过"],"Select a variation to start with.":[],"Add a page, link, or another item to your navigation.":[],"What's this?":[],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":[],"Provide more context about where the link goes.":[],"Title Attribute":["标题属性"],"SEO settings":[],"Description":["图像描述"],"Open in new tab":[],"links":[],"navigation":[],"menu":[],"Add a navigation block to your site.":[],"Upload a file or pick one from your media library.":["上传文件或从媒体库中选择一个。"],"Learn more about embeds":[],"https://wordpress.org/support/article/embeds/":[],"Paste a link to the content you want to display on your site.":[],"Upload an image or video file, or pick one from your media library.":["上载图像或视频文件,或从媒体库中选择一个。"],"Three columns; wide center column":[],"Three columns; equal split":[],"Two columns; two-thirds, one-third split":[],"Two columns; one-third, two-thirds split":[],"Two columns; equal split":[],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":[],"More tools & options":[],"Create Table":[],"Insert a table for sharing data.":[],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["取消组合"],"verb\u0004Group":[],"Separate with commas or the Enter key.":[],"Separate with commas, spaces, or the Enter key.":[],"Separate multiple classes with spaces.":[],"Move image forward":[],"Move image backward":[],"Sorry, you are not allowed to edit sidebars.":[],"Sorry, you are not allowed to read sidebars.":[],"The sidebar’s ID.":[],"Displays a set of blocks":[],"Blocks Area":[],"Block rendered as empty.":[],"Inline Code":[],"Note: Autoplaying videos may cause usability issues for some visitors.":[],"Footer section":[],"Header section":[],"Sorting and filtering":[],"Post meta settings":[],"Post Content":[],"Post content settings":[],"Percentage width":[],"Column settings":[],"Note: Autoplaying audio may cause usability issues for some visitors.":[],"Block area updated.":[],"Block area scheduled.":[],"Block area published.":[],"Block areas list":[],"Block areas list navigation":[],"Filter block areas list":[],"No block area found.":[],"Search Block Areas":[],"All Block Areas":[],"View Block Area":[],"Edit Block Area":[],"New Block Area":[],"Add New Block Area":[],"admin menu\u0004Block Areas":[],"post type singular name\u0004Block Area (Experimental)":[],"post type general name\u0004Block Area (Experimental)":[],"Experimental custom post type that will store block areas referenced by themes.":[],"Widgets screen content":[],"header":[],"Widgets advanced settings":[],"(experimental)":[],"Block Areas":[],"Widgets screen top bar":[],"This color combination may be hard for people to read.":[],"There is no poster image currently selected":[],"The current poster image url is %s":[],"section":[],"row":[],"wrapper":[],"container":[],"A block that groups other blocks.":[],"Group":[],"Crop image to fill entire column":[],"Play inline":["播放行间内容"],"Leave empty if the image is purely decorative.":["如果这是装饰性图片,此处请留空。"],"Describe the purpose of the image":["请输入图片说明文字"],"Add a block":["添加区块"],"Block vertical alignment setting label\u0004Change vertical alignment":["更改对齐方式"],"Block vertical alignment setting\u0004Vertically Align Bottom":["垂直靠下对齐"],"Block vertical alignment setting\u0004Vertically Align Middle":["垂直居中对齐"],"Replace Image":["替换图像"],"Block vertical alignment setting\u0004Vertically Align Top":["垂直靠上对齐"],"Display a legacy widget.":["显示一个旧版微件"],"Legacy Widget (Experimental)":["旧版微件(实验性功能)"],"Change widget":["更改微件"],"Legacy Widget":["旧版微件"],"You don't have permissions to use widgets on this site.":["您没有权限于此站点使用小工具。"],"Select a legacy widget to display:":["选择显示一个旧版微件:"],"There are no widgets available.":["无可用微件。"],"Change block type or style":["更改区块类型或样式"],"keyboard key\u0004Space":["空格"],"keyboard key\u0004Backspace":[],"More rich text controls":["更多富文本控制项"],"Search Terms":["搜索项目"],"Exit the Editor":["退出编辑器"],"Block Manager":["区块管理器"],"Class name of the widget.":["微件的类别名。"],"Sorry, you are not allowed to access widgets on this site.":[],"Widgets (beta)":["微件(测试版)"],"link":["链接"],"Embedded content from %s can't be previewed in the editor.":["%s 中的嵌入内容无法在编辑器中预览。"],"Custom Color":["自定义颜色"],"Prompt visitors to take action with a button-style link.":[],"Stick to the top of the blog":["置顶于此博客"],"Read about permalinks":["进一步了解永久链接"],"The last part of the URL.":[],"URL Slug":["链接别名"],"A cloud of your most used tags.":["您最常使用的标签云。"],"Tag Cloud":["标签云"],"Taxonomy":["分类法"],"Tag Cloud settings":[],"- Select -":["- 选择 -"],"Default":["默认"],"find":["搜寻"],"Help visitors find your content.":["帮助访客搜索网站内容。"],"Search":["搜索"],"Add button text…":["添加按钮文字…"],"Button text":["按钮文字"],"Optional placeholder…":["可选的占位符…"],"Optional placeholder text":["可选的占位文本"],"Add label…":["添加标签…"],"Label text":["标签文字"],"image %1$d of %2$d in gallery":["图库中第 %1$d/%2$d 张图片"],"archive":["存档"],"posts":["文章"],"A calendar of your site’s posts.":["您站点的文章的日历。"],"Calendar":["日历"],"by":["作者:"],"An error has occurred, which probably means the feed is down. Try again later.":["发生了一个错误,feed可能宕,请稍后再试。"],"RSS Error:":["RSS错误:"],"block style\u0004Default":["默认"],"Fullscreen mode deactivated":["全屏模式已停用"],"Fullscreen mode activated":["全屏模式已启用"],"Spotlight mode deactivated":["专注模式已停用"],"Spotlight mode activated":["专注模式已启用"],"Top toolbar deactivated":["顶部工具栏已停用"],"Top toolbar activated":["顶部工具栏已启用"],"Back":["返回"],"Feature activated":["功能已启用"],"Feature deactivated":["功能已停用。"],"Vertical Pos.":["垂直位置。"],"Horizontal Pos.":["水平位置。"],"feed":["订阅源"],"atom":[],"Display entries from any RSS or Atom feed.":[],"RSS":["RSS"],"Max number of words in excerpt":["摘要的字数上限"],"Display excerpt":["显示摘要"],"Display date":["显示日期"],"Display author":["显示作者"],"RSS settings":[],"Edit RSS URL":["编辑 RSS 网址"],"Content before this block will be shown in the excerpt on your archives page.":["在此区块之前的文字会在您的存档页中显示为本文摘要。"],"Hide the excerpt on the full content page":["在全文页中隐藏摘要"],"The excerpt is visible.":["摘要已显示。"],"The excerpt is hidden.":["摘要已隐藏。"],"Sorry, this content could not be embedded.":["抱歉,无法嵌入此内容。"],"Embed Amazon Kindle content.":["嵌入 Amazon Kindle 内容。 "],"ebook":["电子书"],"Embed Crowdsignal (formerly Polldaddy) content.":["嵌入 Crowdsignal(原 Polldaddy)内容。"],"Focal Point Picker":["焦点选择器"],"Underline":["下划线"],"Attempt Block Recovery":["尝试修复区块"],"Word count type. Do not translate!\u0004words":["characters_excluding_spaces"],"content placeholder\u0004Content…":["内容…"],"button label\u0004Convert to link":["转换为链接"],"button label\u0004Try again":["重试"],"Editor tips":["编辑器贴士"],"Block (selected)":["区块(已选择)"],"Document (selected)":["文档(已选择)"],"%d word":["%d字"],"Top toolbar":["顶部工具栏"],"Link Rel":["链接Rel"],"Link CSS Class":["链接CSS类"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["创建内容,并保存来让您和其他贡献者在站点上重复使用。对这个区块的更新会在所有用到这个区块的地方生效。"],"To edit the featured image, you need permission to upload media.":["要编辑特色图像,您需要有上传媒体的权限。"],"To edit this block, you need permission to upload media.":["要编辑此区块,您需要有上传媒体的权限。"],"(selected block)":["(选定的区块)"],"Block tools":["区块工具"],"Permalink":["永久链接"],"This image has an empty alt attribute":["此图像的alt属性为空"],"This image has an empty alt attribute; its file name is %s":["此图像的alt属性为空;文件名为%s"],"Block area reverted to draft.":["区块恢复到草稿。"],"Block area published privately.":["区块隐藏发布。"],"No block areas found in Trash.":["回收站中没有找到区块。"],"Block\u0004Add New":["添加新"],"add new on admin bar\u0004Block Area":["区块"],"Link inserted.":["链接已插入。"],"Warning: the link has been inserted but may have errors. Please test it.":["警告:此链接已被插入但可能含有错误,请测试。"],"%s block selected.":["已选择%s个区块。"],"Thumbnail":["缩略图"],"Full Size":["完整尺寸"],"Link selected.":["链接已选择。"],"Start writing with text or HTML":["开始写作文本或HTML"],"Type text or HTML":["键入文本或HTML"],"Block icon":["区块图标"],"Align text right":["右对齐文本"],"Align text center":["居中文本"],"Align text left":["左对齐文本"],"Start writing or type / to choose a block":["开始写作或按/来选择区块"],"Empty block; start writing or type forward slash to choose a block":["空区块;开始写作或按正斜杠来选择区块"],"Paragraph block":["段落区块"],"Page Break":["分页符"],"Stack on mobile":["在移动设备上堆叠显示"],"Annotation":["批注"],"Drag images, upload new ones or select files from your library.":["拖动图像,上传新图像或从您的媒体库中选择文件。"],"blocks\u0004Most used":["最常用"],"imperative verb\u0004Resolve":["解析"],"font size name\u0004Huge":["特大"],"font size name\u0004Large":["大"],"font size name\u0004Medium":["中"],"font size name\u0004Small":["小"],"font size name\u0004Normal":["常规"],"keyboard button\u0004Enter":["回车"],"button label\u0004Import":["导入"],"button label\u0004Download":["下载"],"button label\u0004Embed":["嵌入"],"block title\u0004Embed":["嵌入"],"block title\u0004Classic":["经典"],"block style\u0004Large":["大"],"block style\u0004Rounded":["圆形的"],"%s (opens in a new tab)":["%s(在新窗口打开)"],"Link edited.":["已编辑链接。"],"Link removed.":["已移除链接。"],"media":["媒体"],"Double-check your settings before publishing.":["请在发布前再次检查您的设置。"],"Generating preview…":["正在生成预览…"],"Edit or update the image":["编辑或更新此图像"],"Media":["媒体"],"Navigate to the nearest toolbar.":["导航到最近的工具栏。"],"Document tools":["文档工具"],"Document and block tools":["文档和区块工具"],"Embed a video from your media library or upload a new one.":["从您的媒体库中嵌入视频,或上传新视频。"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["插入诗歌,使用特殊的空白格式,或引用歌词。"],"Add white space between blocks and customize its height.":["在区块间加入空白,并自定义空白的高度。"],"Insert additional custom elements with a WordPress shortcode.":["通过WordPress短代码加入额外的自定义元素。"],"Create a break between ideas or sections with a horizontal separator.":["在不同的点子或章节之间通过横向分隔符来制造间断。"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["给引文提供视觉强调。“在引用其他人时,我们引用自己。”——胡里奥·科塔萨尔"],"Give special visual emphasis to a quote from your text.":["给您文中的引用增加视觉强调的空间。"],"Start with the building block of all narrative.":["请从所有故事的基石开始。"],"Separate your content into a multi-page experience.":["将您的内容分成多个页面。"],"Set media and words side-by-side for a richer layout.":["并排显示媒体和文字来丰富布局。"],"Media & Text settings":[],"Create a bulleted or numbered list.":["创建项目符号或编号列表。"],"Display a list of your most recent comments.":["显示您的最新评论的列表。"],"Insert an image to make a visual statement.":["插入图片来做出视觉声明。"],"Add custom HTML code and preview it as you edit.":["添加自定义HTML代码,并实时预览。"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["插入新的章节并整理内容来让您的访客(和搜索引擎)理解您的内容的结构。"],"Display multiple images in a rich gallery.":["在相册中展示多张图片。"],"Add a link to a downloadable file.":["添加到可下载文件的链接。"],"Embed videos, images, tweets, audio, and other content from external sources.":["嵌入来自外部来源的视频、图像、推文、音频和其他内容。"],"Resize for smaller devices":["为小设备调整尺寸"],"This embed may not preserve its aspect ratio when the browser is resized.":["在浏览器尺寸变化时,此嵌入可能不会保持其高宽比。"],"This embed will preserve its aspect ratio when the browser is resized.":["在浏览器尺寸变化时,此嵌入会保持其高宽比。"],"Embed an Animoto video.":["嵌入Animoto视频。"],"Embed a Vimeo video.":["嵌入Vimeo视频。"],"Embed Flickr content.":["嵌入Flickr内容。"],"Embed Spotify content.":["嵌入Spotify内容。"],"Embed SoundCloud content.":["嵌入SoundCloud内容。"],"Embed a WordPress post.":["嵌入WordPress文章。"],"Embed an Instagram post.":["嵌入Instagram贴文。"],"Embed a Facebook post.":["嵌入Facebook文章。"],"Embed a WordPress.tv video.":["嵌入WordPress.tv视频。"],"Embed a VideoPress video.":["嵌入VideoPress视频。"],"Embed a Tumblr post.":["嵌入Tumblr文章。"],"Embed a TED video.":["嵌入TED视频。"],"Embed Speaker Deck content.":["嵌入Speaker Deck内容。"],"Embed a YouTube video.":["嵌入YouTube视频。"],"Embed SmugMug content.":["嵌入SmugMug内容。"],"Embed Slideshare content.":["嵌入Slideshare内容。"],"Embed Scribd content.":["嵌入Scribd内容。"],"Embed Screencast content.":["嵌入Screencast内容。"],"Embed ReverbNation content.":["嵌入ReverbNation内容。"],"Embed a Reddit thread.":["嵌入Reddit讨论串。"],"Embed Polldaddy content.":["嵌入Polldaddy内容。"],"Embed Mixcloud content.":["嵌入Mixcloud内容。"],"Embed a tweet.":["嵌入推文。"],"Embed Meetup.com content.":["嵌入Meetup.com内容。"],"Embed Kickstarter content.":["嵌入Kickstarter内容。"],"Embed Issuu content.":["嵌入Issuu内容。"],"Embed Imgur content.":["嵌入Imgur内容。"],"Embed Hulu content.":["嵌入Hulu内容。"],"Embed a Dailymotion video.":["嵌入Dailymotion视频。"],"Embed CollegeHumor content.":["嵌入CollegeHumor内容。"],"Embed Cloudup content.":["嵌入Cloudup内容。"],"Add an image or video with a text overlay — great for headers.":["加入有文字浮层的图像或视频,适合作为头部。"],"Display code snippets that respect your spacing and tabs.":["显示代码片段,这会尊重您的空白和制表符。"],"Use the classic WordPress editor.":["使用经典WordPress编辑器。"],"Display a list of all categories.":["显示所有分类的列表。"],"Embed a simple audio player.":["嵌入简单音频播放器。"],"noun\u0004View":["视图"],"editor button\u0004Left to right":["从左到右"],"Save as Pending":["保存并提请审核"],"%s address":["%s地址"],"Paste or type URL":["粘贴或键入URL"],"Insert from URL":["从URL插入"],"Block Navigator":["区块导航"],"Styles":["样式"],"Advanced panels":["高级面板"],"Document panels":["文档面板"],"General":["常规"],"Open the block navigation menu.":["打开区块导航菜单。"],"Work without distraction":["没有干扰地工作"],"Focus on one block at a time":["集中注意力在一个区块上"],"Access all block and document tools in a single place":["在一个位置访问所有的区块和文档工具"],"Options":["选项"],"(opens in a new tab)":["(在新窗口中打开)"],"Minutes":["分钟"],"Hours":["小时"],"Time":["时间"],"Year":["年"],"Day":["日"],"December":["十二月"],"November":["十一月"],"October":["十月"],"September":["九月"],"August":["八月"],"July":["七月"],"June":["六月"],"May":["五月"],"April":["四月"],"March":["三月"],"February":["二月"],"January":["一月"],"Month":["月"],"Date":["日期"],"Go to the first (home) or last (end) day of a week.":["前往一周的第一天(home)或最后一天(end)"],"Home/End":["Home/End"],"Home and End":["Home和End"],"Move backward (PgUp) or forward (PgDn) by one month.":["向前(PgUp)或向后(PgDn)移动一个月。"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up和Page Down"],"Move backward (up) or forward (down) by one week.":["向前(上)或向后(下)移动一周。"],"Up and Down Arrows":["上下方向键"],"Move backward (left) or forward (right) by one day.":["向前(左)或向后(右)移动一天。"],"Left and Right Arrows":["左右方向键"],"Select the date in focus.":["选择当前高亮的日期。"],"Navigating with a keyboard":["用键盘导航"],"Click the desired day to select it.":["点击您期望的日期来选择。"],"Click the right or left arrows to select other months in the past or the future.":["点击左右箭头来选择过去或将来的月份。"],"Click to Select":["点击以选择"],"Calendar Help":["日历帮助"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["使用方向键更改基础颜色。上下移动以增减亮度,左右增减饱和度。"],"Choose a shade":["选择阴影"],"Change color format":["修改颜色格式"],"Color value in HSL":["HSL的颜色值"],"Color value in RGB":["RGB的颜色值"],"Color value in hexadecimal":["十六进制的颜色值"],"RGB mode active":["RGB模式已激活"],"Hex color mode active":["十六进制颜色模式已激活"],"Hue/saturation/lightness mode active":["色相/饱和度/亮度模式已激活"],"Move the arrow left or right to change hue.":["将箭头左右移动来调节色相。"],"Hue value in degrees, from 0 to 359.":["色相的角度值,从0到359。"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["透明度,从0(透明)到1(不透明)。"],"Stripes":["条带"],"Your site doesn’t include support for this block.":["您的站点不支持这一区块。"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["您的站点不支持“%s”区块。您可以原样保留此区块或移除此区块。"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["您的站点不支持“%s”区块。您可以原样保留此区块,将内容转换为自定义HTML区块,或移除此区块。"],"Media area":["媒体区"],"Media & Text":["媒体和文本"],"Show media on right":["在右侧显示媒体"],"Show media on left":["在左侧显示媒体"],"Open in New Tab":["在新窗口打开"],"Cover":["封面"],"Border settings":[],"Medium":["中等"],"Paste URL or type to search":["粘贴URL或键入来搜索"],"Terms":["项目"],"Your work will be published at the specified date and time.":["您的工作会在指定的日期和时间被发布。"],"Are you ready to schedule?":["您准备好计划了吗?"],"Always show pre-publish checks.":["总是显示发布前检查。"],"Take Over":["接管"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["其他用户现在正在编辑此文章,这意味着您现在不能进行修改,除非您接管此文章。"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s现在正在编辑此文章,这意味着您现在不能进行修改,除非您接管此文章。"],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["其他用户现在正在编辑此文章。不用慌,您到现在为止的更改均已被保存。"],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["%s现在正在编辑此文章。不用慌,您到现在为止的更改均已被保存。"],"Avatar":["头像"],"This post is already being edited.":["此文章正在被编辑。"],"Someone else has taken over this post.":["其他人接管了此文章。"],"This block contains unexpected or invalid content.":["此区块包含未预料的或无效的内容。"],"Resolve Block":["解析区块"],"Convert to HTML":["转换为HTML"],"This block can only be used once.":["此区块只能被使用一次。"],"Exit Code Editor":["退出代码编辑器"],"Editing Code":["正在编辑代码"],"Solid Color":["纯色"],"Main Color":["主颜色"],"HTML":["HTML"],"Write HTML…":["编写HTML…"],"Media settings":[],"Overlay":["覆盖"],"Insert Media":["插入媒体"],"Reusable block imported successfully!":["成功导入可重用区块!"],"Invalid Reusable Block JSON file":["无效的可重用区块JSON文件"],"Invalid JSON file":["无效的JSON文件"],"Import from JSON":["从JSON导入"],"Backtick":["反引号"],"Period":["句号"],"Comma":["逗号"],"Change type of %d block":["修改%d个区块的类型"],"Current":["当前"],"After Conversion":["转换后"],"Change alignment":["修改对齐方式"],"Change text alignment":["修改文本对齐"],"%d block":["%d个区块"],"Forward-slash":["正斜杠"],"No archives to show.":["没有存档可显示。"],"This file is empty.":["此文件为空。"],"Sorry, this file type is not supported here.":["抱歉,不支持此文件类型。"],"Manage all reusable blocks":["管理所有可重用区块"],"Title":["标题"],"Fullscreen mode":["全屏模式"],"Beautiful landscape":["美景"],"Close panel":["关闭面板"],"Convert to Classic Block":["转换为经典区块"],"Remove Poster Image":["移除海报图像"],"Select Poster Image":["选择海报图像"],"Poster Image":["海报图像"],"This block is deprecated. Please use the Columns block instead.":["此区块已被废弃,请使用多栏区块。"],"Text Columns (deprecated)":["文本栏(已废弃)"],"Create":[],"Row Count":["列数"],"Column Count":["行数"],"This block is deprecated. Please use the Paragraph block instead.":["此区块已被废弃,请使用段落区块。"],"Subheading (deprecated)":["副标题(已废弃)"],"blockquote":["块引用"],"Change the block type after adding a new paragraph.":["在添加新段落后修改区块类型。"],"Spotlight mode":["探照灯模式"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["标签能够帮助用户和搜索引擎浏览您的站点并找到内容。请加入一些能描述您的文章的关键词。"],"Add tags":["添加标签"],"Apply the \"%1$s\" format.":["应用“%1$s”格式。"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["您的主题使用了文章格式来呈现不同类型的内容,如图像或视频。应用文章格式来查看这些特殊格式。"],"Use a post format":["使用文章格式"],"Insert After":["在之后插入"],"Insert Before":["在之前插入"],"Move %1$d block from position %2$d down by one place":["将%1$d个区块从位置%2$d下移一位"],"Move %1$d block from position %2$d up by one place":["将%1$d个区块从位置%2$d上移一位"],"Move %1$s block from position %2$d right to position %3$d":[],"movie":["电影"],"Insert a new block before the selected block(s).":["在选定的区块前插入一个新的区块。"],"Remove the selected block(s).":["移除选定的区块。"],"Duplicate the selected block(s).":["复制选定的区块。"],"Block shortcuts":["区块快捷键"],"Clear selection.":["清除选择。"],"Select all text when typing. Press again to select all blocks.":["在打字时全选文字,再按一次来选择所有的区块。"],"Selection shortcuts":["选定快捷键"],"Switch between Visual editor and Code editor.":["在可视化编辑器和代码编辑器间切换。"],"Navigate to the previous part of the editor.":["导航到编辑器的上一部分。"],"Navigate to the next part of the editor.":["导航到编辑器的下一部分。"],"Show or hide the settings sidebar.":["显示或隐藏设置边栏。"],"Redo your last undo.":["重做您撤销的操作。"],"Undo your last changes.":["撤销您的上一个更改。"],"Save your changes.":["保存您的更改。"],"Global shortcuts":["全局快捷键"],"Remove a link.":["移除链接。"],"Convert the selected text into a link.":["将选定的文本转换为链接。"],"Underline the selected text.":["给选定的文本加下划线。"],"Make the selected text italic.":["将选定的文本设为斜体。"],"Make the selected text bold.":["将选定的文本加粗。"],"Text formatting":["文本格式"],"Insert a new block after the selected block(s).":["在选定的区块后插入一个新的区块。"],"Keyboard shortcuts":["键盘快捷键"],"Thanks for testing Gutenberg!":["感谢您测试 Gutenberg!"],"Help build Gutenberg":["帮助建设 Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["如果您想了解有关如何构建其他块的更多信息,或者如果您有兴趣帮助完成项目,请转到 GitHub repository。"],"The WordPress community":["Wordpress 交流社区"],"Code is Poetry":["代码如诗歌般美妙"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["您可以构建任何您喜欢的块,静态或动态,修饰或扁平。这是一个pullquote块:"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["所有区块都具有对齐属性。嵌入区块也同样具有对齐属性,且具有响应式布局属性。"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["上面的相册只包含两张图片。无需考虑浮动问题,您可以以一种更加简单的方式创造具有吸引力的布局。使用区块转换器,您还可以重新将其转换成独立的图片。"],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["全画宽度图片体积可能较大,但有时美图胜万言。"],"Accessibility is important — don’t forget image alt attribute":["可访问性非常重要 —别忘记图片的alt属性"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["如果您将宽幅和全宽幅对齐方式结合用于相册,您将可以非常迅速地创建样式丰富的多媒体布局。"],"Media Rich":["富媒体"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["拖动侧边栏区块检查器中的滑块,可以更改相册栏目的数量。"],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["区块可以是您需要的任何内容。例如,将普通引用添加到文章中,或突出显示一些内容。所有这些需求,都可以通过插入器实现。"],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["与引文来源所对应的信息,是与图片下方标题类似的独立文本。所以,当你选择、修改或删除来源时,引文的结构也不会被破坏。重新添加也很简单。"],"Matt Mullenweg, 2017":["Matt Mullenweg,2017"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["编辑器以提供全新的页面和文章创建方式,让用户以更加便捷的方式创作更加丰富的内容,并利用“区块”来简化当前短代码、自定义HTML或各种嵌入式内容等方式。"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["区块的核心优势在于您可以直接编辑或创作内容本身,而不用关注诸如引文的来源、按钮的文字等众多的字段信息,只需要关注内容本身即可。尝试编辑下方的引文:"],"Visual Editing":["可视化编辑"],"And Lists like this one of course :)":["以及像这样的列表区块"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["诸如按钮,大图和分隔符等布局区块。"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["诸如YouTube,推文和其他WordPress文章等嵌入式内容。"],"Galleries":["画廊"],"Images & Videos":["图像和视频"],"Text & Headings":["文本和标题"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["尝试看看,您可能会在您的文章中,发现WordPress已经添加了一些您还没有接触过的新事物。比如下面列表中的:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["难以想象,现在可以通过一个界面一个地方,以迅雷不及掩耳之势,将所有的WordPress操作一网打尽。再也无需处理HTML标签,类或复杂的代码语法。这就是编辑器中随处可见的,可以让您浏览所有区块并添加到文章中的+
按钮的意义所在。插件和主题还可以注册个性化的内容,扩展编辑和发布功能。"],"The Inserter Tool":["插入工具"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["尝试选择、移动或编辑标题,而无需担心误选择图片或其他文本而使得搞砸演示文稿。"],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["如果主题支持,您将可以在图片工具栏看到“宽幅”按钮。试试看。"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["以最严谨的方式处理图片和媒体,是新编辑器的核心目标之一。您会发现添加图注和全幅宽度图片,操作更容易,功能也更健全。"],"A Picture is Worth a Thousand Words":["一张图片胜过千言万语(百闻不如一见)"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["标题区块也是分隔型区块,可以帮助梳理文章框架,组织文章内容。"],"... like this one, which is right aligned.":["...就像这个右对齐的一样。"],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["您当前正在阅读的使所有区块中最基础的——文本区块。文本区块拥有自身的控制属性,可以在文章中自由移动。"],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["新编辑器的目标是让用户以更加简介和愉悦的方式创作丰富的内容。与LEGO的奥秘相类似,整篇文章由很多小部分组成,并且您可以对这些小部分进行移动和交互。移动鼠标,您会发现区块的外框架和箭头。按住箭头可以快速进行位移,而无需担心粘贴复制过程中内容丢失的问题。"],"Of Mountains & Printing Presses":["Of Mountains & Printing Presses"],"Welcome to the Gutenberg Editor":["欢迎使用古腾堡编辑器"],"block name\u0004More":["更多"],"button to expand options\u0004More":["更多"],"Are you sure you want to unschedule this post?":["您确定要取消计划此文章吗?"],"Alt Text (Alternative Text)":["Alt文本(替换文本)"],"Reusable Block":["可重用区块"],"Unique identifier for the object.":["对象的唯一识别码。"],"Untitled Reusable Block":["未命名可重用区块"],"Small":["小"],"Reusable":["可重用"],"Remove from Reusable blocks":["从可重用区块中移除"],"Add to Reusable blocks":["添加到可重用区块"],"Keep as HTML":["留作HTML"],"Edit URL":["编辑URL"],"Color settings":[],"The response is not a valid JSON response.":["此响应不是合法的JSON响应。"],"Editor publish":["编辑器发布"],"Muted":["静音"],"Video settings":[],"recent comments":["最新评论"],"Latest Comments":["最新评论"],"Display Excerpt":["显示摘要"],"Display Date":["显示日期"],"Display Avatar":["显示头像"],"Latest comments settings":[],"Number of Comments":["评论数量"],"Background Opacity":["背景透明度"],"Auto":["自动"],"Preload":["预加载"],"Audio settings":[],"Display a monthly archive of your posts.":["显示您的文章的按月归档。"],"Display as Dropdown":["显示为下拉菜单"],"Show Post Counts":["显示文章计数"],"Archives settings":[],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["帮助"],"No comments to show.":["没有评论可显示。"],"%1$s on %2$s":["%1$s,于%2$s"],"Select Post":["选择文章"],"Select Week":["选择周次"],"Select Day":["选择日期"],"Select Month":["选择月份"],"Select Year":["选择年份"],"Archives":["文章归档"],"Very dark gray":["深灰色"],"Cyan bluish gray":["青蓝灰色"],"Very light gray":["浅灰色"],"Vivid cyan blue":["亮青蓝色"],"Pale cyan blue":["浅青蓝色"],"Vivid green cyan":["亮青绿色"],"Light green cyan":["浅青绿色"],"Luminous vivid amber":["荧光琥珀色"],"Luminous vivid orange":["荧光橙色"],"Vivid red":["亮红色"],"Pale pink":["浅粉色"],"Inline image":["内联图像"],"Available block types":["可用的区块类型"],"Transform To:":["转换为:"],"Remove Block":["移除区块"],"Open publish panel":["打开发布面板"],"Dots":["点线"],"Wide Line":["宽线"],"Large":["大"],"Show download button":["显示下载按钮"],"Download button settings":["下载按钮设置"],"Link To":["链接到"],"Text link settings":["文本链接设置"],"download":["下载"],"pdf":["pdf"],"document":["文档"],"Copy URL":["复制URL"],"Write file name…":["编写文件名…"],"File":["文件"],"A single column within a columns block.":["多栏区块中的一栏。"],"Column":["行"],"Outline":["轮廓"],"Loop":["循环"],"Autoplay":["自动播放"],"Playback Controls":["回放控制"],"Close dialog":["关闭对话框"],"Sorry, this file type is not permitted for security reasons.":["抱歉,由于安全原因,这个文件类型不受支持。"],"Disable tips":["禁用贴士"],"Got it":["知道了"],"See next tip":["查看下一个贴士"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["当您准备好后,请提交您的工作至复审,然后其他编辑就可以批准您的文章。"],"Are you ready to submit for review?":["您准备好提交复审了吗?"],"Replace image":["更换图像"],"Remove image":["移除图像"],"Error while uploading file %s to the media library.":["在将文件%s上传至媒体库时出现错误。"],"This file exceeds the maximum upload size for this site.":["此文件超过了本站点的最大上传尺寸。"],"View the autosave":["查看自动保存"],"There is an autosave of this post that is more recent than the version below.":["此文章存在比下列版本更新的自动保存。"],"Autosaving":["正在自动保存"],"Enter URL here…":["在这里输入 URL…"],"Pin to toolbar":["加入工具栏"],"Unpin from toolbar":["从工具栏移除"],"Insert a table — perfect for sharing charts and data.":["插入表格——共享图表和数据的完美选项。"],"Fixed width table cells":["定宽单元格"],"Table settings":[],"Add text that respects your spacing and tabs, and also allows styling.":["这里加入的文本会尊重您的空白和制表符,您也可以格式化这些文本。"],"Display a list of your most recent posts.":["显示您的最新文章的列表。"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["加入用来显示其他站点内容的区块,如Twitter、Instagram或YouTube。"],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["加入一个显示多栏内容的区块,您可以向其中加入任何您喜欢的内容区块。"],"Error loading block: %s":["载入区块时发生错误:%s"],"Unknown error":["未知错误"],"Embed Handler":["嵌入处理程序"],"term\u0004Remove %s":["移除%s"],"Copy the permalink":["复制永久链接"],"Permalink copied":["已复制永久链接"],"Height in pixels":["高度(像素)"],"Spacer settings":[],"Spacer":["空白"],"Toggle to show a large initial letter.":["切换显示大型首字母。"],"Showing large initial letter.":["显示大型首字母。"],"Name:":["名称:"],"%1$s (%2$s of %3$s)":["%1$s(%2$s/%3$s)"],"Remove item":["移除项目"],"Color code: %s":["颜色代码:%s"],"Skip to the selected block":["跳转到选定的区块"],"Publish…":["发布…"],"Schedule…":["计划…"],"Edit post permalink":["编辑文章永久链接"],"Show Block Settings":["显示区块设置"],"Hide Block Settings":["隐藏区块设置"],"Block settings closed":["区块设置已关闭"],"Close plugin":["关闭插件"],"Editor settings":["编辑器设置"],"Link settings":["链接设置"],"Unlink":["移除链接"],"Page break":["分页符"],"pagination":["分页"],"next page":["下一页"],"Image Size":["图片尺寸"],"Height":["高度"],"Width":["宽度"],"Image Dimensions":["图像尺寸"],"Thumbnails are not cropped.":["缩略图未被裁切。"],"Thumbnails are cropped to align.":["缩略图已被裁切到对齐。"],"Media Library":["媒体库"],"Advanced":["高级"],"Add item":["添加项目"],"Reset the template":["重置模板"],"Keep it as is":["保持原样"],"The content of your post doesn’t match the template assigned to your post type.":["您的文章的内容不匹配指定给您的文章类别的模板。"],"Resetting the template may result in loss of content, do you want to continue?":["重置模板可能会导致丢失内容,您希望继续吗?"],"Document Statistics":["文档统计"],"is now scheduled. It will go live on":["已被计划,将在此时间发布:"],"Scheduled":["已计划"],"Scheduling…":["正在计划…"],"Code editor selected":["已选择代码编辑器"],"Visual editor selected":["已选择可视化编辑器"],"Plugins":["插件"],"Custom Size":["自定义尺寸"],"Layout elements":["布局元素"],"term\u0004%s removed":["%s已移除"],"term\u0004%s added":["%s已添加"],"imperative verb\u0004Preview":["预览"],"Block deleted.":["区块已删除。"],"Block updated.":["区块已更新。"],"Block created.":["区块已创建。"],"Trashing failed":["移动到回收站失败"],"Updating failed.":[],"Scheduling failed.":[],"Publishing failed.":[],"View post":[],"You have unsaved changes. If you proceed, they will be lost.":["您有未保存的修改。如果您继续,这些修改将会丢失。"],"Document Outline":["文档大纲"],"Paragraphs":["段落"],"Headings":["标题"],"Words":["字数"],"Content structure":["内容结构"],"Public":["公开"],"Protected with a password you choose. Only those with the password can view this post.":["受您选择的密码保护,只有持有密码的人士可查看此文章。"],"Password Protected":["密码保护"],"Only visible to site admins and editors.":["只有站点管理员和编辑可见。"],"Private":["私密"],"Visible to everyone.":["所有人可见。"],"Post Visibility":["文章可见性"],"Would you like to privately publish this post now?":["您希望现在私密地发布此文章吗?"],"Use a secure password":["使用安全的密码"],"Create password":["创建密码"],"Move to Trash":[],"Parent Term":["父项目"],"Parent Category":["父级分类目录"],"Add new term":["添加新项目"],"Add new category":["添加新分类"],"Term":["项目"],"Tag":["标签"],"Add new Term":[],"Add new tag":["添加新标签"],"Switch to draft":[],"Are you sure you want to unpublish this post?":["您确定要取消发布此文章吗?"],"Immediately":["立即"],"Save Draft":["保存草稿"],"Saving":["正在保存"],"Publish:":["发布:"],"Visibility:":["可见性:"],"Are you ready to publish?":["您准备好发布了吗?"],"Copy Link":["复制链接"],"What’s next?":["现在要做什么?"],"is now live.":["已被发布。"],"Published":["已发布"],"Schedule":["计划"],"Update":["更新"],"Submit for Review":["提交复审"],"Updating…":["正在更新…"],"Publishing…":["正在发布…"],"Allow pingbacks & trackbacks":[],"Permalink:":["永久链接:"],"Pending review":["待审核"],"%d Revision":["%d个修订版本"],"Suggestion:":["推荐:"],"Post Format":["文章格式"],"Chat":["聊天"],"Status":["状态"],"Standard":["标准"],"Aside":["日志"],"Featured image":["特色图像"],"Set featured image":[],"Learn more about manual excerpts":["了解关于人工摘要细节"],"Write an excerpt (optional)":["撰写摘要(可选)"],"Allow comments":[],"Template:":["模板:"],"no parent":["无父级"],"no title":["无标题"],"Order":["排序"],"No blocks found.":["未找到区块。"],"%d result found.":["找到%d个结果。"],"Saved":["已保存"],"Embeds":["嵌入"],"Blocks":["块"],"Search for a block":["搜索区块"],"Add block":["添加区块"],"Copy Error":["复制错误"],"Copy Post Text":["复制文章文本"],"Attempt Recovery":["尝试恢复"],"The editor has encountered an unexpected error.":["编辑器遇到了未知错误。"],"Undo":["撤销"],"Redo":["重做"],"(Multiple H1 headings are not recommended)":["(不推荐使用多个H1标题)"],"(Your theme may already use a H1 for the post title)":["(您的主题可能已经为文章标题使用了H1)"],"(Incorrect heading level)":["(错误的标题级别)"],"(Empty heading)":["(空标题)"],"Block Styles":["区块样式"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["您确定要删除这个共享区块吗?\n\n它将永久性地从使用它的所有文章和页面中删除。"],"Convert to Regular Block":["转换为常规区块"],"More options":["更多选项"],"Edit visually":["可视化编辑"],"Duplicate":["复制"],"Blocks cannot be moved down as they are already at the bottom":["区块已在最底,不能被下移"],"Blocks cannot be moved up as they are already at the top":["区块已在最顶,不能被上移"],"Block %1$s is at the beginning of the content and can’t be moved right":[],"Block %1$s is at the end of the content and can’t be moved right":[],"Block %s is the only block, and cannot be moved":["区块%s是唯一的区块,不能被移动"],"Edit as HTML":["作为HTML编辑"],"Convert to Blocks":["转换为区块"],"Block: %s":["区块:%s"],"This block has encountered an error and cannot be previewed.":["此区块遇到了一个错误,不能被预览。"],"No block selected.":["未选择区块。"],"Transform into:":["转换至:"],"Remove":["移除"],"Find original":["查找原件"],"Copy all content":[],"Copied!":["已复制!"],"Additional settings are now available in the Editor block settings sidebar":["额外的设置在编辑器区块设置侧栏中可用"],"Visibility":["可见性"],"Status & visibility":[],"Page attributes":["页面属性"],"Block":["区块"],"Document":["文档"],"Close settings":["关闭设置"],"Editor content":["编辑器内容"],"Tools":["工具"],"Editor":["编辑器"],"Code editor":[],"Visual editor":[],"Editor top bar":["编辑顶栏"],"Settings":["设置"],"Reset":["重置"],"Dismiss this notice":["忽略此通知"],"Item removed.":["项目已移除。"],"Item added.":["项目已添加。"],"Drop files to upload":["拖文件至此可上传"],"PM":["下午"],"AM":["上午"],"An unknown error occurred.":["发生了未知错误。"],"No results.":["没有结果。"],"%d result found, use up and down arrow keys to navigate.":["找到%d个结果,使用上下方向键来导航。"],"(no title)":["(无标题)"],"URL":["URL"],"Submit":["提交"],"Close":["关闭"],"Insert link":[],"Edit link":[],"Link":["链接"],"Strikethrough":["删除线"],"Italic":["斜体"],"Bold":["粗体"],"Remove link":[],"Number of items":["项目数量"],"All":["全部"],"Category":["类别"],"Z → A":["Z \t A"],"A → Z":["A \t Z"],"Oldest to Newest":["从旧到新"],"Newest to Oldest":["从新到旧"],"Order by":["排序"],"Select":["选择"],"Select or Upload Media":["选择或上传媒体"],"Video":["视频"],"Write…":["编写…"],"poetry":["诗歌"],"Verse":["诗句"],"New Column":["新列"],"Delete Column":["删除行"],"Add Column After":["插入行(之后)"],"Add Column Before":["插入行(之前)"],"Delete Row":["删除列"],"Add Row After":["插入列(之后)"],"Add Row Before":["插入列(之前)"],"Edit table":[],"Table":["表格"],"Write subheading…":["编写副标题…"],"Write shortcode here…":["在此编写短代码…"],"Shortcode":["短代码"],"divider":["分隔符"],"horizontal-line":["横线"],"Separator":["分隔符"],"Quote":["引语"],"Write citation…":["编写引用…"],"Write quote…":["编写引文…"],"Pullquote":["引文"],"Write preformatted text…":["编写预格式化文本…"],"Preformatted":["预格式化的"],"text":["文本"],"Paragraph":["段落"],"Font Size":["字号"],"Drop Cap":["首字下沉"],"Text settings":[],"Read more":["阅读更多"],"Write list…":["编写列表…"],"numbered list":["编号列表"],"ordered list":["有序列表"],"bullet list":["项目符号列表"],"Indent list item":["增加列表项目缩进量"],"Outdent list item":["减少列表项目缩进量"],"Convert to ordered list":["转换为有序列表"],"Convert to unordered list":["转换为无序列表"],"List":["列表"],"recent posts":["最新文章"],"No posts found.":["未找到文章。"],"Latest Posts":["最新文章"],"Display post date":["显示文章日期"],"Grid view":["网格视图"],"List view":["列表视图"],"photo":["照片"],"Image settings":[],"Image":["图像"],"Preview":["预览"],"embed":["嵌入"],"Custom HTML":["自定义HTML"],"subtitle":["副标题"],"title":["标题"],"Heading":["标题"],"Write heading…":["编写标题…"],"Heading %d":["标题%d"],"Level":["级别"],"Heading settings":[],"photos":["照片"],"images":["图像"],"None":["无"],"Media File":["媒体文件"],"Attachment Page":["附件页面"],"Link to ":[],"Crop Images":["裁切图像"],"Gallery settings":[],"Gallery":["画廊"],"Classic":["经典"],"video":["视频"],"audio":["音频"],"music":["音乐"],"image":["图像"],"blog":["博客"],"post":["文章"],"Embedded content from %s":["嵌入来自%s的内容"],"Enter URL to embed here…":["键入要在此嵌入的URL…"],"%s URL":["%sURL"],"Embedding…":["嵌入中…"],"Write title…":["编写标题…"],"Fixed Background":["固定背景"],"Edit image":["编辑图像"],"Columns":["栏目"],"Experiments":[],"Code":["代码"],"Write code…":["编写代码…"],"Categories":["分类目录"],"Show Hierarchy":["显示层次结构"],"Show post counts":["显示文章数目"],"Categories settings":[],"Add text…":["添加文本…"],"Button":["按钮"],"Apply":["应用"],"Text Color":["文本颜色"],"Background Color":["背景颜色"],"Block has been deleted or is unavailable.":["区块已被删除或不可用。"],"Reusable blocks":[],"Cancel":["取消"],"Edit":["编辑"],"Write caption…":["编写说明…"],"Use URL":["使用 URL"],"Audio":["音频"],"Upload":["上传"],"Additional CSS Class(es)":[],"HTML Anchor":["HTML锚点"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["此颜色组合可能不便阅读,请尝试使用较浅的背景颜色和/或较深的文本颜色。"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["此颜色组合可能不便阅读,请尝试使用较深的背景颜色和/或较浅的文本颜色。"],"Clear":["清空"],"Custom color picker":["自定义颜色选择器"],"Color: %s":["颜色:%s"],"Full width":["全宽"],"Wide width":["阔宽"],"Widgets":["小工具"],"Formatting":["格式"],"Common blocks":[],"Align right":["右对齐"],"Align center":["居中对齐"],"Align left":["左对齐"],"Printing since 1440. This is the development plugin for the new block editor in core.":["从 1440 年开始打印。这是核心中新的基于区块的编辑器的开发插件。"],"Add title":["添加标题"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":[],"Author":["作者"],"Slug":["别名"],"Discussion":["讨论"],"Custom fields":[],"Excerpt":["摘要"],"Publish":["发布"],"Metadata":["元数据"],"Save":["保存"],"Documentation":["文档"],"Select Category":["选择分类目录"],"(Untitled)":["(无标题)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg 要求 WordPress %s 或更高版本才能正常工作。激活 Gutenberg 之前请升级 WordPress。"],"Gutenberg Team":["Gutenberg 团队"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["演示"],"%s ago":["%s 之前"],"Block style name must be a string.":[]}
\ No newline at end of file
diff --git a/bundle/android/raw/i18ncache_data_zhtw.json b/bundle/android/raw/i18ncache_data_zhtw.json
new file mode 100644
index 0000000000..d0f90606d3
--- /dev/null
+++ b/bundle/android/raw/i18ncache_data_zhtw.json
@@ -0,0 +1 @@
+{"Show submenu icon for top-level items":["為最上層項目顯示子選單圖示"],"Display settings":["顯示設定"],"Choose variation":["選取欄位配置"],"Angle":["角度"],"%s Block":["[%s] 區塊"],"%1$s Block. %2$s":["[%1$s] 區塊。%2$s"],"%s Block. Column %d":["[%s] 區塊。第 %d 欄"],"%1$s Block. Column %2$d. %3$s":["[%1$s] 區塊。第 %2$d 欄。%3$s"],"%s Block. Row %d":["[%s] 區塊。第 %d 列"],"%1$s Block. Row %2$d. %3$s":["[%1$s] 區塊。第 %2$d 列。%3$s"],"Post Excerpt":["文章內容摘要"],"Post Date":["文章發佈日期"],"No Date":["尚無發佈日期"],"Post Author":["文章作者"],"Choose":["選取"],"twentytwenty":["twentytwenty"],"Theme":["佈景主題"],"Choose a template part by slug and theme, or create a new one.":["以代稱及佈景主題選取範本組件,或建立新的範本組件。"],"Error adding template.":["新增範本時發生錯誤"],"Footer label":["頁尾標籤"],"Header label":["頁首標籤"],"Unsupported":["不支援"],"The description will be displayed in the menu if the current theme supports it.":["如果目前使用的佈景主題提供支援,便會在選單中顯示選單項目的內容說明。"],"Level %1$s. %2$s":["第 %1$s 階層。%2$s"],"Level %s. Empty.":["第 %s 階層。空白。"],"Empty":["空白"],"Search results for %s":["「%s」的搜尋結果"],"Recently updated":["最近更新"],"Multiple selected blocks":["多個選取的區塊"],"By %s":[" 作者: %s"],"Inspector":["偵測器"],"Site editor advanced settings.":["網站編輯器進階設定。"],"(beta)":["(Beta 版)"],"Site Editor":["網站編輯器"],"Site editor top bar.":["網站編輯器頂端列"],"Briefly describe the link to help screen reader users.":["簡短說明連結作用以協助螢幕閱讀器的使用者。"],"Link Label":["連結標籤"],"%s label":["%s 標籤"],"poem":["詩"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["楊牧 - 熱蘭遮城 - 1975 年\n對方已經進入了燠熱的蟬聲,自石級下仰視,危危闊葉樹,\n張開便是風的床褥—巨礮生鏽。而我不知如何於硝煙疾走的歷史中,冷靜蹂躪她那一襲藍花的新衣服。有一份燦爛極令我欣喜,歐洲的長劍斗膽挑破巔倒的胸襟。我們拾級而上。"],"Full Post":["完整內容"],"Show:":["顯示:"],"Create from all top-level pages":["使用全部最上層頁面建立選單"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["以台三灣香獨的立出,下的架所國年民的黨!數禮一幾毒見著再一後布!"],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["不原期雙股別能以子有家海球。氣待裡個明定道等親動名我前型在,可起致我燈變長兒。"],"Prompt visitors to take action with a group of button-style links.":["透過一組按鈕樣式連結提示使用者點擊以採取行動。"],"Buttons":["按鈕"],"Background":["背景"],"Background & Text Color":["背景及文字色彩"],"Images Size":["圖片尺寸"],"Remove multiple selected blocks.":["移除多個選取的區塊。"],"(%s: gradient %s)":["(%s: 漸層色彩 [%s])"],"(%s: color %s)":["(%s: 色彩 [%s])"],"(Gradient: %s)":["(漸層色彩: %s)"],"(Color: %s)":["(色彩: %s)"],"Here's a detailed guide.":["請參閱這份詳盡的使用指南。"],"New to the Block Editor? Want to learn more about using it? ":["如果是區塊編輯器的新使用者,並且想進一步瞭解區塊編輯器的使用方式,"],"Learn how to use the Block Editor":["進一步瞭解區塊編輯器的使用方式"],"Help":["使用說明"],"https://wordpress.org/support/article/wordpress-editor/":["https://wordpress.org/support/article/wordpress-editor/"],"%s block icon":["[%s] 區塊圖示"],"Submit for Review…":["送交審閱..."],"Update…":["更新..."],"Select items to save.":["選取項目以儲存。"],"What do you want to save?":["要儲存哪個項目?"],"Untitled":["無標題"],"The block editor includes experimental features that are useable while they're in development. Select the ones you'd like to enable. These features are likely to change, so avoid using them in production.":["區塊編輯器包含多項開發階段可用、但需要手動啟用的實驗性功能;這些實驗性功能有可能會產生變更,因此不建議使用於網站正式內容中。"],"Enable Full Site Editing (Warning: this will replace your theme and cause potentially irreversible changes to your site. We recommend using this only in a development environment.)":["啟用 [全站編輯]
警告: 這項功能會取代使用中的佈景主題,並可能會對這個網站造成無法復原的變更。建議僅在開發環境中使用這項功能。"],"Site Editor (beta)":["網站編輯器 (Beta 版)"],"// A \"block\" is the abstract term used\n// to describe units of markup that\n// when composed together, form the\n// content or layout of a page.\nregisterBlockType( name, settings );":["//「區塊」是用來說明標記單元\n// 組合在一起時,\n// 在頁面所形成的內容\n// 或版面配置的抽象詞彙。\nregisterBlockType( name, settings );"],"You are probably offline.":["這個網站目前可能處於離線狀態。"],"Justify items right":["項目靠右分散對齊"],"Justify items center":["項目置中分散對齊"],"Justify items left":["項目靠左分散對齊"],"Change items justification":["變更項目分散對齊方式"],"The media file has been replaced":["媒體檔案已更換。"],"Replace":["更換"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["目前為編輯模式。如需返回導覽模式,請按下 Esc/Escape 鍵。"],"You are currently in navigation mode. Navigate blocks using the Tab key. To exit navigation mode and edit the selected block, press Enter.":["目前為導覽模式,請使用 Tab 鍵在各個區塊中切換。如需結束導覽模式並編輯選取的區塊,請按下 Enter 鍵。"],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["使用向左鍵及向右鍵或以游標拖放進行變更漸層色彩位置。按下按鈕便可變更色彩或移除控制點。"],"Gradient control point at position %1$s with color code %2$s.":["在位置 %1$s、色彩代碼為 %2$s 的漸層色彩控制點。"],"Preset Size":["預設大小"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["[工具] 為選取及編輯區塊提供不同的互動方式。如需選取區塊,請按下 Escape/ESC 鍵;如需返回編輯模式,請按下 Enter 鍵。"],"Open Media Library":["開啟媒體庫"],"Next":["下一頁"],"Previous":["上一頁"],"Finish":["完成"],"Page %1$d of %2$d":["第 %1$d 頁,總計 %2$d 頁"],"Guide controls":["指南控制項"],"Remove Control Point":["移除控制點"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["每一種區塊都有專屬的設定控制項,藉以變更如色彩、寬度及對齊方式等設定;選取不同的區塊,便會自動顯示對應的設定。"],"Make each block your own":["自訂區塊符合網站需求"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct “block” of content.":["在 WordPress 編輯器中,每個段落、每張圖片或每個視訊都會以不同內容「區塊」呈現。"],"ADD MEDIA":["新增媒體"],"All of the blocks available to you live in the Block Library. You’ll find it wherever you see the icon.":["在 [區塊庫] 中有目前全部可用的區塊。只要看到 圖示便可以找到區塊庫。"],"Get to know the Block Library":["瞭解區塊庫"],"Welcome Guide":["歡迎指南"],"Enable page templates":["啟用 [頁面範本]"],"Page Templates":["頁面範本"],"Enable Full Site Editing demo templates":["啟用 [全站編輯示範範本]"],"Full Site Editing Demo Templates":["全站編輯示範範本"],"Welcome to the Block Editor":["歡迎使用區塊編輯器"],"Get started":["開始使用"],"inserter":["插入器"],"Post Title":["文章標題"],"Add nofollow to link":["將 nofollow 屬性值加入連結"],"Add submenu":["新增子選單"],"Add link…":["新增連結..."],"Dark":["深色"],"Light":["淺色"],"recording":["錄音"],"podcast":["Podcast"],"sound":["聲音"],"Array of instance changes":["執行個體變更的陣列"],"Current widget instance":["目前的小工具執行個體"],"Template parts to include in your templates.":["要納入目前範本的範本組件。"],"Template parts list":["範本組件清單"],"Template parts list navigation":["範本組件清單檢視"],"Filter template parts list":["篩選範本組件清單"],"Uploaded to this template part":["已關聯至這個範本組件"],"Insert into template part":["插入至範本組件"],"Template part archives":["範本組件彙整"],"No template parts found in Trash.":["在回收桶中找不到符合條件的範本組件。"],"No template parts found.":["找不到符合條件的範本組件。"],"Parent Template Part:":["上層範本組件:"],"Search Template Parts":["搜尋範本組件"],"All Template Parts":["全部範本組件"],"View Template Part":["檢視範本組件"],"Edit Template Part":["編輯範本組件"],"New Template Part":["新增範本組件"],"Add New Template Part":["新增範本組件"],"Template Part\u0004Add New":["新增範本組件"],"Admin Menu text\u0004Template Parts":["範本組件"],"Template Part":["範本組件"],"Template Parts":["範本組件"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["我本楚狂人,\n\t鳳歌笑孔丘\n手持綠玉杖,\n朝別黃鶴樓。\n五嶽尋仙不辭遠,\n 一生好入名山遊。"],"Navigation":["導覽"],"Loading Navigation…":["正在載入導覽..."],"Navigation Structure":["導覽結構"],"Create empty":["建立空白選單"],"Create a Navigation from all existing pages, or create an empty one.":["使用全部現有頁面以建立選單,或建立空白選單。"],"Navigation Link":["導覽連結"],"(Note: many devices and browsers do not display this text.)":["(請注意,許多裝置及瀏覽器不會顯示這項文字內容)"],"Describe the role of this image on the page.":["請輸入圖片標題。"],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["在全部螢幕尺寸使用相同設定值或不同螢幕尺寸使用個別設定間進行切換。"],"Use the same %s on all screensizes.":["全部螢幕尺寸使用 [%s] 設定。"],"Large screens":["大型螢幕"],"Medium screens":["中型螢幕"],"Small screens":["小型螢幕"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["控制 [%2$s] 檢視區的 %1$s 屬性。"],"Currently selected":["目前選取的項目"],"Search or type url":["搜尋或輸入網址"],"Press ENTER to add this link":["按下 Enter 鍵以新增這個連結"],"Currently selected link settings":["目前選取的連結設定"],"Generic label for block inserter button\u0004Add block":["新增區塊"],"directly add the only allowed block\u0004Add %s":["新增 [%s] 區塊"],"%s block added":["[%s] 區塊已新增"],"Move %s":["%s移動"],"Extra Large":["特大型尺寸"],"Block breadcrumb":["區塊導覽標記"],"Editor footer":["編輯器頁尾"],"Site Title":["網站標題"],"Open Colors Selector":["開啟色彩選取器"],"Templates list":["範本清單"],"Templates list navigation":["範本清單導覽"],"Filter templates list":["篩選範本清單"],"Uploaded to this template":["已關聯至這個範本"],"Insert into template":["插入至範本"],"Template archives":["範本彙整"],"No templates found in Trash.":["在回收桶中找不到符合條件的範本。"],"No templates found.":["找不到符合條件的範本。"],"Parent Template:":["上層範本:"],"Search Templates":["搜尋範本"],"All Templates":["全部範本"],"View Template":["檢示範本"],"Edit Template":["編輯範本"],"New Template":["新增範本"],"Add New Template":["新增範本"],"Template\u0004Add New":["新增範本"],"Admin Menu text\u0004Templates":["範本"],"Template":["範本"],"No matching template found":["找不到符合條件的範本"],"Gradient: %s":["漸層色彩: %s"],"Gradient code: %s":["漸層色彩代碼: %s"],"All content copied.":["全部內容已完成複製。"],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["媒體上傳失敗。如果這是照片或大型尺寸圖片,請先縮小尺寸再上傳。"],"Gradient":["漸層色彩"],"Gradient Presets":["漸層色彩預設設定"],"No Preview Available.":["無法提供預覽。"],"Midnight":["午夜藍"],"Electric grass":["電光綠"],"Pale ocean":["海洋藍"],"Luminous dusk":["暮色黃"],"Blush bordeaux":["波爾多紅"],"Blush light purple":["淺紫紅色"],"Cool to warm spectrum":["冷暖光譜"],"Very light gray to cyan bluish gray":["亮灰色至青藍灰色"],"Luminous vivid orange to vivid red":["亮鮮橘色至鮮紅色"],"Luminous vivid amber to luminous vivid orange":["亮鮮琥珀色至亮鮮橘色"],"Light green cyan to vivid green cyan":["亮綠青色至鮮綠青色"],"Vivid cyan blue to vivid purple":["鮮青藍色至鮮紫色"],"https://wordpress.org/support/article/excerpt/":["https://wordpress.org/support/article/excerpt/"],"December 6, 2018":["2018 年 12 月 6 日"],"February 21, 2019":["2019 年 2 月 21 日"],"May 7, 2019":["2019 年 5 月 7 日"],"Release Date":["發佈日期"],"Jazz Musician":["爵士樂手"],"Version":["發佈版本"],"Six.":["第六個區塊"],"Five.":["第五個區塊"],"Four.":["第四個區塊"],"Three.":["第三個區塊"],"Two.":["第二個區塊"],"One.":["第一個區塊"],"One of the hardest things to do in technology is disrupt yourself.":["技術上最難達成的一件事就是打斷自己。"],"— Kobayashi Issa (一茶)":["— Kobayashi Issa (一茶)"],"The wren
Earns his living
Noiselessly.":["鷦鷯
安靜無聲的
謀生方式。"],"Welcome to the wonderful world of blocks…":["歡迎使用精彩及實用兼備的區塊編輯器..."],"Snow Patrol":["雪景如畫"],"Dimensions":["尺寸"],"Minimum height in pixels":["最小高度 (單位為 px)"],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["台問見告好現我對種場、灣石支只院有優他讓個住己分們起目戰下為的安家、獨那法產易走!立之過幾或高。"],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["貓內服大,英會企國提靜。統何是面器?領們山在車,大國充量,贏程士更輕。草議那他子車字直有,包大家者什;韓程士更怕確輕,國充一中是量以個格石成,瑜見門量。"],"Call to Action":["行動號召"],"In quoting others, we cite ourselves.":["引用他人的說法,是為了加強自己的論述。"],"cite":["引用"],"Mont Blanc appears—still, snowy, and serene.":["勃朗峰顯得靜謐、白雪靄靄及寧靜。"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["不久以前,有位紳士住在拉‧曼卻的一個村上,村名我不想提了,他那類紳士,一般都有一隻長槍插在槍架上,有一面古老的盾牌、一匹瘦馬和一隻獵狗。"],"Block navigation":["區塊導覽"],"Full Site Editing":["全站編輯"],"Templates to include in your theme.":["要納入目前使用中的佈景主題的範本。"],"Templates":["範本"],"Inserter help panel":["區塊插入器使用說明面板"],"Pre-publish checks":["發佈前檢查"],"Please contact your site administrator to install new blocks.":["請聯絡這個網站的網站管理員以安裝新區塊。"],"No blocks found in your library. Please contact your site administrator to install new blocks.":["在區塊庫中找不到符合條件的區塊。請聯絡這個網站的網站管理員以安裝新區塊。"],"No blocks found in your library.":["在區塊庫中找不到符合條件的區塊。"],"No blocks found in your library. These blocks can be downloaded and installed:":["在區塊庫中找不到符合條件的區塊。請下載並安裝這些區塊:"],"No blocks found in your library. We did find %d block available for download.":["在區塊庫中找不到符合條件的區塊。已找到 %d 個區塊可供下載安裝。"],"Block previews can’t load.":["無法載入區塊預覽。"],"Retry":["重試"],"Block previews can't install.":["無法安裝區塊預覽。"],"Updated %s":["已於 %s更新。"],"%d active installation":["啟用安裝數: %d"],"This author has %d block, with an average rating of %d.":["這位開發者開發了 %d 個區塊,平均評分為 %d 星。"],"Authored by %s":["開發者: %s"],"%d total rating":["總計 %d 筆評分資訊"],"%s out of 5 stars":["%s 星,滿分為 5 星"],"Enter Address":["輸入網址"],"Pill Shape":["膠囊形狀"],"Logos Only":["只有標誌"],"Create a block of links to your social media or external sites":["這是用於建立社群網路媒體或外部網站連結的區塊。"],"Social links":["社群網路連結"],"Open block navigator":["開啟區塊導覽器"],"Attachment page":["附件頁面"],"Fill":["填色按鈕"],"Link rel":["連結的 Rel 屬性"],"Border Radius":["框線圓角半徑"],"Write gallery caption…":["撰寫圖庫說明..."],"Content blocks":["內容區塊"],"Restore the backup":["還原這份備份"],"The backup of this post in your browser is different from the version below.":["這篇內容在瀏覽器中的備份與目前編輯區的內容不同。"],"Enable block directory search":["啟用 [區塊目錄] 搜尋"],"Block Directory":["區塊目錄"],"Unable to connect to the filesystem. Please confirm your credentials.":["無法連線至檔案系統。請確認目前使用的連線認證是否正確。"],"Sorry, you are not allowed to install blocks.":["很抱歉,目前的登入身分沒有安裝區塊的權限。"],"%1$d block is disabled.":["%1$d 個區塊已停用。"],"Reverse List Numbering":["反向清單編號"],"Start Value":["起始值"],"Ordered list settings":["排序清單設定"],"Clear Media":["清除媒體"],"Default Style":["預設樣式"],"Not set":["尚未設定"],"While writing, you can press / to quickly insert new blocks.":["撰寫內容時,按下 / (正斜線符號) 便能快速插入新區塊。"],"Browse through the library to learn more about what each block does.":["瀏覽區塊庫以進一步瞭解每一種區塊的用途。"],"There are blocks available for all kinds of content: insert text, headings, images, lists, videos, tables, and lots more.":["區塊適用於各種類型的內容,如插入文字、標題、圖片、視訊、表格等等。"],"Welcome to the wonderful world of blocks! Blocks are the basis of all content within the editor.":["歡迎使用精彩及實用兼備的區塊編輯器,區塊是編輯器中全部內容的基礎。"],"Version of the content block format used by the object.":["物件使用的內容區塊格式版本。"],"HTML content for the object, transformed for display.":["物件用於轉換為顯示用途的 HTML 格式內容。"],"Content for the object, as it exists in the database.":["物件儲存於資料庫中的內容資料。"],"The content for the object.":["物件的內容。"],"Change column alignment":["變更儲存格內容對齊方式"],"Align Column Right":["儲存格內容靠右對齊"],"Align Column Center":["儲存格內容置中對齊"],"Align Column Left":["儲存格內容靠左對齊"],"Color":["色彩"],"Vivid purple":["鮮紫色"],"Disable & Reload":["停用並重新載入"],"Enable & Reload":["啟用並重新載入"],"A page reload is required for this change. Make sure your content is saved before reloading.":["這項變更需要重新載入頁面。請確定在頁面重新載入前,頁面內容已完成儲存。"],"Display these keyboard shortcuts.":["顯示鍵盤快速鍵清單"],"Experiments Settings":["實驗性功能設定"],"Enable Widgets screen and Legacy Widgets block":["啟用 [小工具] 畫面及 [舊版小工具] 區塊"],"Experimental settings":["實驗性功能設定"],"Block name name must be a string.":["區塊名稱必須是字串。"],"Custom":["自訂"],"Draft":["草稿"],"Block \"%1$s\" does not contain a style named \"%2$s.\".":["[%1$s] 區塊並未包含名為 [%2$s] 的樣式。"],"Learn more about anchors":["進一步瞭解錨點"],"Enter a word or two — without spaces — to make a unique web address just for this heading, called an “anchor.” Then, you’ll be able to link directly to this section of your page.":["請輸入不含空格的一或多個字 (建議使用英數字元),這項設定能讓這個標題的網址成為唯一網址,這便是錨點。為標題設定錨點後,便能在這個頁面中直接連結至這個標題區段。"],"Widget Blocks (Experimental)":["小工具區塊 (實驗性功能)"],"Upload a video file, pick one from your media library, or add one with a URL.":["上傳視訊檔案或從媒體庫選取檔案,或透過連結新增檔案。"],"Upload an image file, pick one from your media library, or add one with a URL.":["上傳圖片或從媒體庫選取檔案,或透過連結新增檔案。"],"Upload an audio file, pick one from your media library, or add one with a URL.":["上傳音訊檔案或從媒體庫選取檔案,或透過連結新增檔案。"],"Upload a media file or pick one from your media library.":["上傳媒體檔案或從媒體庫選取檔案。"],"Skip":["略過"],"Select a variation to start with.":["選取所需欄位配置以便進行編輯。"],"Add a page, link, or another item to your navigation.":["將頁面、連結或其他項目新增至導覽選單。"],"What's this?":["這是什麼?"],"https://codex.wordpress.org/Nofollow":["https://codex.wordpress.org/Nofollow"],"Don't let search engines follow this link.":["啟用這項設定後,便會要求搜尋引擎不要前往這個連結。"],"Provide more context about where the link goes.":["撰寫關於連結目標頁面的說明。"],"Title Attribute":["Title 屬性"],"SEO settings":["SEO 設定"],"Description":["內容說明"],"Open in new tab":["在新分頁中開啟"],"links":["連結"],"navigation":["導覽"],"menu":["選單"],"Add a navigation block to your site.":["為這個網站新增導覽選單。"],"Upload a file or pick one from your media library.":["上傳檔案或從媒體庫選取檔案。"],"Learn more about embeds":["進一步瞭解嵌入內容"],"https://wordpress.org/support/article/embeds/":["https://wordpress.org/support/article/embeds/"],"Paste a link to the content you want to display on your site.":["請貼上要在這個網站顯示內容的連結。"],"Upload an image or video file, or pick one from your media library.":["上傳圖片或視訊檔案,或從媒體庫選取檔案。"],"Three columns; wide center column":["三欄: 較寬的中間欄"],"Three columns; equal split":["三欄: 等寬"],"Two columns; two-thirds, one-third split":["兩欄: 2/3 寬及 1/3 寬"],"Two columns; one-third, two-thirds split":["兩欄: 1/3 寬及 2/3 寬"],"Two columns; equal split":["兩欄: 等寬"],"Your site doesn’t have any %s, so there’s nothing to display here at the moment.":["這個網站沒有任何關於〈%s〉的內容,因此這裡目前沒有內容可供顯示。"],"More tools & options":["更多工具及設定"],"Create Table":["建立表格"],"Insert a table for sharing data.":["插入表格以分享資料。"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["取消群組"],"verb\u0004Group":["組成群組"],"Separate with commas or the Enter key.":["請使用逗號或按 Enter 鍵進行分隔。"],"Separate with commas, spaces, or the Enter key.":["請使用逗號、空格或按 Enter 鍵進行分隔。"],"Separate multiple classes with spaces.":["請使用空格分隔多個類別。"],"Move image forward":["向前移動圖片"],"Move image backward":["向後移動圖片"],"Sorry, you are not allowed to edit sidebars.":["很抱歉,目前的登入身分沒有編輯資訊欄的權限。"],"Sorry, you are not allowed to read sidebars.":["很抱歉,目前的登入身分沒有讀取資訊欄的權限。"],"The sidebar’s ID.":["資訊欄 ID"],"Displays a set of blocks":["顯示區塊集。"],"Blocks Area":["區塊區域"],"Block rendered as empty.":["區塊已轉譯為空區塊。"],"Inline Code":["內嵌程式碼"],"Note: Autoplaying videos may cause usability issues for some visitors.":["注意: 自動播放視訊可能會對某些網站訪客造成可用性問題。"],"Footer section":["頁尾區段"],"Header section":["頁首區段"],"Sorting and filtering":["排序及篩選方式"],"Post meta settings":["文章中繼資料設定"],"Post Content":["文章內容"],"Post content settings":["文章內容設定"],"Percentage width":["寬度百分比"],"Column settings":["內容欄設定"],"Note: Autoplaying audio may cause usability issues for some visitors.":["注意: 自動播放音訊可能會對某些網站訪客造成可用性問題。"],"Block area updated.":["區塊區域已更新。"],"Block area scheduled.":["區塊區域已排程。"],"Block area published.":["區塊區域已發佈。"],"Block areas list":["區塊區域清單"],"Block areas list navigation":["區塊區域清單導覽"],"Filter block areas list":["篩選區塊區域清單"],"No block area found.":["找不到符合條件的區塊區域。"],"Search Block Areas":["搜尋區塊區域"],"All Block Areas":["全部區塊區域"],"View Block Area":["檢視區塊區域"],"Edit Block Area":["編輯區塊區域"],"New Block Area":["新增區塊區域"],"Add New Block Area":["新增區塊區域"],"admin menu\u0004Block Areas":["區塊區域"],"post type singular name\u0004Block Area (Experimental)":["區塊區域 (實驗性功能)"],"post type general name\u0004Block Area (Experimental)":["區塊區域 (實驗性功能)"],"Experimental custom post type that will store block areas referenced by themes.":["這是實驗性的自訂內容類型,用於儲存可供佈景主題參照的區塊區域。"],"Widgets screen content":["小工具畫面內容"],"header":["頁首"],"Widgets advanced settings":["小工具進階設定"],"(experimental)":["(實驗性功能)"],"Block Areas":["區塊區域"],"Widgets screen top bar":["小工具畫面頂端列"],"This color combination may be hard for people to read.":["這種色彩組合會使讀者難以閱讀。"],"There is no poster image currently selected":["目前並未選取任何宣傳圖片"],"The current poster image url is %s":["目前宣傳圖片的網址為 %s"],"section":["區段"],"row":["資料列"],"wrapper":["封裝"],"container":["容器"],"A block that groups other blocks.":["能夠將其他區塊群組起來的區塊。"],"Group":["群組"],"Crop image to fill entire column":["裁剪圖片以填滿整欄"],"Play inline":["播放內嵌內容"],"Leave empty if the image is purely decorative.":["如果圖片僅為裝飾目的、與實際內容無甚相關時,這個欄位可留空。"],"Describe the purpose of the image":["請輸入圖片說明文字"],"Add a block":["新增區塊"],"Block vertical alignment setting label\u0004Change vertical alignment":["變更垂直對齊方式"],"Block vertical alignment setting\u0004Vertically Align Bottom":["垂直靠下對齊"],"Block vertical alignment setting\u0004Vertically Align Middle":["垂直置中對齊"],"Replace Image":["更換圖片"],"Block vertical alignment setting\u0004Vertically Align Top":["垂直靠上對齊"],"Display a legacy widget.":["顯示舊版小工具。"],"Legacy Widget (Experimental)":["舊版小工具 (實驗性功能)"],"Change widget":["變更小工具"],"Legacy Widget":["舊版小工具"],"You don't have permissions to use widgets on this site.":["目前的登入身分沒有在這個網站使用小工具的權限。"],"Select a legacy widget to display:":["選取要顯示的舊版小工具:"],"There are no widgets available.":["沒有可供使用的小工具。"],"Change block type or style":["變更區塊類型或樣式"],"keyboard key\u0004Space":["Space"],"keyboard key\u0004Backspace":["Backspace"],"More rich text controls":["更多 RTF 文字控制項"],"Search Terms":["搜尋詞彙"],"Exit the Editor":["結束編輯器"],"Block Manager":["區塊管理程式"],"Class name of the widget.":["小工具的類別名稱。"],"Sorry, you are not allowed to access widgets on this site.":["很抱歉,目前的登入身分沒有在這個網站存取小工具的權限。"],"Widgets (beta)":["小工具 (Beta 版)"],"link":["連結"],"Embedded content from %s can't be previewed in the editor.":["來自 %s 的嵌入內容無法在編輯器中進行預覽。"],"Custom Color":["自訂色彩"],"Prompt visitors to take action with a button-style link.":["透過按鈕樣式連結提示使用者點擊以採取行動。"],"Stick to the top of the blog":["將這篇文章置頂"],"Read about permalinks":["進一步瞭解永久連結"],"The last part of the URL.":["完整網址的最後部分。"],"URL Slug":["網址代稱"],"A cloud of your most used tags.":["這個網站最常使用的標籤組成的標籤雲。"],"Tag Cloud":["標籤雲"],"Taxonomy":["分類法"],"Tag Cloud settings":["標籤雲設定"],"- Select -":["- 選取 -"],"Default":["預設"],"find":["搜尋"],"Help visitors find your content.":["協助網站訪客搜尋網站內容。"],"Search":["搜尋"],"Add button text…":["新增按鈕文字..."],"Button text":["按鈕文字"],"Optional placeholder…":["選用的預留文字..."],"Optional placeholder text":["選用的預留文字"],"Add label…":["新增標籤..."],"Label text":["標籤文字"],"image %1$d of %2$d in gallery":["第 %1$d 張圖片,圖庫中總計 %2$d 張圖片"],"archive":["彙整"],"posts":["文章"],"A calendar of your site’s posts.":["這個網站的文章月曆。"],"Calendar":["月曆"],"by":["作者:"],"An error has occurred, which probably means the feed is down. Try again later.":["發生錯誤。這項錯誤代表這個資訊提供已失效,請稍後再試。"],"RSS Error:":["RSS 錯誤:"],"block style\u0004Default":["預設"],"Fullscreen mode deactivated":["全螢幕模式已停用。"],"Fullscreen mode activated":["全螢幕模式已啟用。"],"Spotlight mode deactivated":["寫作焦點模式已停用。"],"Spotlight mode activated":["寫作焦點模式已啟用。"],"Top toolbar deactivated":["置頂工具列已停用。"],"Top toolbar activated":["置頂工具列已啟用。"],"Back":["返回"],"Feature activated":["功能已啟用。"],"Feature deactivated":["功能已停用。"],"Vertical Pos.":["垂直位置"],"Horizontal Pos.":["水平位置"],"feed":["資訊提供"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["顯示任何來源的 RSS 或 Atom 資訊提供中的項目。"],"RSS":["RSS"],"Max number of words in excerpt":["內容摘要字數上限"],"Display excerpt":["顯示內容摘要"],"Display date":["顯示日期"],"Display author":["顯示作者"],"RSS settings":["RSS 設定"],"Edit RSS URL":["編輯 RSS 網址"],"Content before this block will be shown in the excerpt on your archives page.":["在這個區塊前的內容,會在彙整頁面顯示為內容摘要。"],"Hide the excerpt on the full content page":["在完整頁面內容中隱藏內容摘要"],"The excerpt is visible.":["內容摘要已顯示。"],"The excerpt is hidden.":["內容摘要已隱藏。"],"Sorry, this content could not be embedded.":["很抱歉,無法嵌入這項內容。"],"Embed Amazon Kindle content.":["嵌入 Amazon Kindle 內容。"],"ebook":["電子書"],"Embed Crowdsignal (formerly Polldaddy) content.":["嵌入 Crowdsignal (先前的 Polldaddy) 內容。"],"Focal Point Picker":["焦點選擇器"],"Underline":["底線"],"Attempt Block Recovery":["嘗試區塊復原"],"Word count type. Do not translate!\u0004words":["characters_excluding_spaces"],"content placeholder\u0004Content…":["內容..."],"button label\u0004Convert to link":["轉換成連結"],"button label\u0004Try again":["再試一次"],"Editor tips":["編輯器使用提示"],"Block (selected)":["區塊 (已選取)"],"Document (selected)":["文件 (已選取)"],"%d word":["%d 個字"],"Top toolbar":["頂端工具列"],"Link Rel":["連結的 Rel 屬性"],"Link CSS Class":["連結的 CSS 類別"],"Create content, and save it for you and other contributors to reuse across your site. Update the block, and the changes apply everywhere it’s used.":["建立內容,並將內容儲存為網站上任何作者均可取用的可重複使用區塊。更新可重複使用區塊的內容後,相關變更會套用至使用了這個區塊的全部內容。"],"To edit the featured image, you need permission to upload media.":["如需編輯精選圖片,目前的登入身分必須具備上傳媒體檔案的權限。"],"To edit this block, you need permission to upload media.":["如需編輯這個區塊,目前的登入身分必須具備上傳媒體檔案的權限。"],"(selected block)":["(選取的區塊)"],"Block tools":["區塊工具"],"Permalink":["永久連結"],"This image has an empty alt attribute":["這張圖片的 alt 屬性值為空"],"This image has an empty alt attribute; its file name is %s":["這張圖片的 alt 屬性值為空,它的檔案名稱為 %s"],"Block area reverted to draft.":["這個區塊區域已還原為草稿。"],"Block area published privately.":["已發佈為私密區塊區域。"],"No block areas found in Trash.":["在回收桶中找不到符合條件的區塊區域。"],"Block\u0004Add New":["新增區塊"],"add new on admin bar\u0004Block Area":["區塊區域"],"Link inserted.":["連結已插入。"],"Warning: the link has been inserted but may have errors. Please test it.":["警告: 連結已插入但可能含有錯誤。請為這個連結進行測試。"],"%s block selected.":["%s 個區塊已選取。"],"Thumbnail":["縮圖尺寸"],"Full Size":["完整尺寸"],"Link selected.":["連結已選取。"],"Start writing with text or HTML":["以任意文字或 HTML 程式碼開始撰寫內容"],"Type text or HTML":["輸入文字或 HTML 程式碼"],"Block icon":["區塊圖示"],"Align text right":["文字向右對齊"],"Align text center":["文字置中對齊"],"Align text left":["文字向左對齊"],"Start writing or type / to choose a block":["開始撰寫內容或輸入斜線 (/) 以選取區塊類型"],"Empty block; start writing or type forward slash to choose a block":["空白區塊: 開始撰寫內容或輸入斜線 (/) 以選取區塊類型"],"Paragraph block":["段落區塊"],"Page Break":["分頁符號"],"Stack on mobile":["於行動裝置上以堆疊方式顯示內容元素"],"Annotation":["註解"],"Drag images, upload new ones or select files from your library.":["拖曳圖片檔案、上傳新檔案或從媒體庫選取檔案。"],"blocks\u0004Most used":["最常使用"],"imperative verb\u0004Resolve":["解析"],"font size name\u0004Huge":["超大型"],"font size name\u0004Large":["大型"],"font size name\u0004Medium":["中型"],"font size name\u0004Small":["小型"],"font size name\u0004Normal":["標準"],"keyboard button\u0004Enter":["Enter"],"button label\u0004Import":["匯入"],"button label\u0004Download":["下載"],"button label\u0004Embed":["嵌入內容"],"block title\u0004Embed":["嵌入內容"],"block title\u0004Classic":["傳統編輯器"],"block style\u0004Large":["大型"],"block style\u0004Rounded":["圓角"],"%s (opens in a new tab)":["%s (在新分頁中開啟)"],"Link edited.":["連結已編輯。"],"Link removed.":["連結已移除。"],"media":["媒體"],"Double-check your settings before publishing.":["發佈前請再次確認相關設定。"],"Generating preview…":["正在產生預覽..."],"Edit or update the image":["編輯或更新圖片"],"Media":["媒體"],"Navigate to the nearest toolbar.":["導覽至最接近的工具列"],"Document tools":["內容工具"],"Document and block tools":["內容及區塊工具"],"Embed a video from your media library or upload a new one.":["從媒體庫中嵌入視訊檔,或上傳新的視訊檔。"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["插入詩句或引用歌詞,其他文字內容也可以套用這個區塊的特殊字元間距格式。"],"Add white space between blocks and customize its height.":["在區塊之間加入可設定高度的空白間格。"],"Insert additional custom elements with a WordPress shortcode.":["透過 WordPress 短代碼插入其他自訂元素。"],"Create a break between ideas or sections with a horizontal separator.":["以水平分隔符號在不同想法或章節之間建立分隔。"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" — Julio Cortázar":["賦予引文視覺強調效果。「引用他人的說法,是為了加強自己的論述。」-胡利奧·科塔薩爾"],"Give special visual emphasis to a quote from your text.":["賦予內容特別的視覺效果藉以強調引文。"],"Start with the building block of all narrative.":["段落是文字內容的基本要素,請以它為基礎開始撰寫內容。"],"Separate your content into a multi-page experience.":["將長篇內容以分頁符號分隔成多個頁面。"],"Set media and words side-by-side for a richer layout.":["設定媒體與文字內容並排以獲得更精美的版面配置。"],"Media & Text settings":["媒體及文字設定"],"Create a bulleted or numbered list.":["建立項目符號或編號清單。"],"Display a list of your most recent comments.":["顯示網站上近期留言的清單。"],"Insert an image to make a visual statement.":["插入圖片以進行視覺化說明。"],"Add custom HTML code and preview it as you edit.":["撰寫自訂 HTML 程式碼,並可預覽編輯結果。"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["介紹新章節並協助讀者 (及搜尋引擎) 瞭解內容的組織方式。"],"Display multiple images in a rich gallery.":["以精美圖庫的方式顯示多張圖片。"],"Add a link to a downloadable file.":["新增可下載單一檔案的連結。"],"Embed videos, images, tweets, audio, and other content from external sources.":["從外部來源嵌入視訊、圖片、推文、音訊以及其他內容。"],"Resize for smaller devices":["為螢幕較小的裝置調整大小"],"This embed may not preserve its aspect ratio when the browser is resized.":["這項內嵌內容在調整瀏覽器大小時,可能無法保持其長寬比。"],"This embed will preserve its aspect ratio when the browser is resized.":["這項內嵌內容在調整瀏覽器大小時,會保持其長寬比。"],"Embed an Animoto video.":["嵌入 Animoto 影片。"],"Embed a Vimeo video.":["嵌入 Vimeo 影片。"],"Embed Flickr content.":["嵌入 Flickr 內容。"],"Embed Spotify content.":["嵌入 Spotify 內容。"],"Embed SoundCloud content.":["嵌入 SoundCloud 內容。"],"Embed a WordPress post.":["嵌入 WordPress 內容。"],"Embed an Instagram post.":["嵌入 Instagram 貼文。"],"Embed a Facebook post.":["嵌入 Facebook 貼文。"],"Embed a WordPress.tv video.":["嵌入 WordPress.tv 影片。"],"Embed a VideoPress video.":["嵌入 VideoPress 影片。"],"Embed a Tumblr post.":["嵌入 Tumblr 文章。"],"Embed a TED video.":["嵌入 TED 影片。"],"Embed Speaker Deck content.":["嵌入 Speaker Deck 內容。"],"Embed a YouTube video.":["嵌入 YouTube 影片。"],"Embed SmugMug content.":["嵌入 SmugMug 內容。"],"Embed Slideshare content.":["嵌入 Slideshare 內容。"],"Embed Scribd content.":["嵌入 Scribd 內容。"],"Embed Screencast content.":["嵌入 Screencast 內容。"],"Embed ReverbNation content.":["嵌入 ReverbNation 內容。"],"Embed a Reddit thread.":["嵌入 Reddit 討論串。"],"Embed Polldaddy content.":["嵌入 Polldaddy 內容。"],"Embed Mixcloud content.":["嵌入 Mixcloud 內容。"],"Embed a tweet.":["嵌入 Twitter 推文。"],"Embed Meetup.com content.":["嵌入 Meetup.com 內容。"],"Embed Kickstarter content.":["嵌入 Kickstarter 內容。"],"Embed Issuu content.":["嵌入 Issuu 內容。"],"Embed Imgur content.":["嵌入 Imgur 內容。"],"Embed Hulu content.":["嵌入 Hulu 內容。"],"Embed a Dailymotion video.":["嵌入 DailyMotion 影片。"],"Embed CollegeHumor content.":["嵌入 CollegeHumor 內容。"],"Embed Cloudup content.":["嵌入 Cloudup 內容。"],"Add an image or video with a text overlay — great for headers.":["為內容加入圖片或影片,並可在其上加上簡短文字,相當適合呈現為內容頁首。"],"Display code snippets that respect your spacing and tabs.":["顯示完全保持空格及定位點不變的程式碼片段。"],"Use the classic WordPress editor.":["使用 WordPress 傳統編輯器。"],"Display a list of all categories.":["顯示全部分類的清單。"],"Embed a simple audio player.":["嵌入簡易音訊播放器。"],"noun\u0004View":["檢視"],"editor button\u0004Left to right":["從左至右"],"Save as Pending":["儲存為待審閱內容"],"%s address":["[%s] 位址"],"Paste or type URL":["貼上或輸入網址"],"Insert from URL":["從網址插入"],"Block Navigator":["區塊導覽器"],"Styles":["樣式"],"Advanced panels":["進階面板"],"Document panels":["內容面板"],"General":["一般"],"Open the block navigation menu.":["開啟區塊導覽選單"],"Work without distraction":["不受干擾的寫作方式"],"Focus on one block at a time":["畫面僅會聚焦於正在編輯的區塊"],"Access all block and document tools in a single place":["可在同一位置使用所有區塊及內容工具"],"Options":["設定"],"(opens in a new tab)":["(在新分頁中開啟)"],"Minutes":["分鐘"],"Hours":["小時"],"Time":["時間"],"Year":["年份"],"Day":["日"],"December":["12 月"],"November":["11 月"],"October":["10 月"],"September":["9 月"],"August":["8 月"],"July":["7 月"],"June":["6 月"],"May":["5 月"],"April":["4 月"],"March":["3 月"],"February":["2 月"],"January":["1 月"],"Month":["月份"],"Date":["日期"],"Go to the first (home) or last (end) day of a week.":["使用 Home 鍵或 End 鍵移動至該週的第一天或最後一天。"],"Home/End":["Home/End"],"Home and End":["Home 鍵及 End 鍵"],"Move backward (PgUp) or forward (PgDn) by one month.":["使用 PgUp 鍵或 PgDn 鍵以月為單位向後或向前移動。"],"PgUp/PgDn":["PgUp/PgDn"],"Page Up and Page Down":["Page Up 及 Page Down"],"Move backward (up) or forward (down) by one week.":["使用向上鍵或向下鍵以週為單位向後或向前移動。"],"Up and Down Arrows":["向上鍵及向下鍵"],"Move backward (left) or forward (right) by one day.":["使用向左鍵或向右鍵以日為單位向後或向前移動。"],"Left and Right Arrows":["向左鍵及向右鍵"],"Select the date in focus.":["選取已框選的日期。"],"Navigating with a keyboard":["鍵盤操作方式"],"Click the desired day to select it.":["點擊所需的日期便能選取這個日期。"],"Click the right or left arrows to select other months in the past or the future.":["點擊月份名稱旁的向右箭號或向左箭號以選取過去或未來的其他月份。"],"Click to Select":["點擊以選取"],"Calendar Help":["月曆使用說明"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["使用鍵盤上的箭號鍵以變更基準色彩。向上鍵及向下鍵分別可以淡化及暗化色彩,向左鍵及向右鍵分別可以降低及增加飽和度。"],"Choose a shade":["選取陰影"],"Change color format":["變更色彩格式"],"Color value in HSL":["HSL 色彩值"],"Color value in RGB":["RGB 色彩值"],"Color value in hexadecimal":["Hex (十六進位) 色彩值"],"RGB mode active":["RGB 模式已啟用"],"Hex color mode active":["Hex 色彩模式已啟用"],"Hue/saturation/lightness mode active":["色調/飽和度/亮度模式已啟用"],"Move the arrow left or right to change hue.":["按下向左鍵或向右鍵以變更色調。"],"Hue value in degrees, from 0 to 359.":["色調值以度為單位,可設定為從 0 至 359 間的數值。"],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alpha 值,可設定為從 0 (透明) 至 1 (完全不透明) 間的數值。"],"Stripes":["條紋"],"Your site doesn’t include support for this block.":["這個網站不包含對這個區塊的支援。"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["這個網站不包含對 [%s] 區塊的支援。內容作者可選擇保有這個區塊的完整性,或將其完全移除。"],"Your site doesn’t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["這個網站不包含對 [%s] 區塊的支援。內容作者可選擇保有這個區塊的完整性、將它轉換成 [自訂 HTML] 區塊,或將其完全移除。"],"Media area":["媒體區域"],"Media & Text":["媒體及文字"],"Show media on right":["在右側顯示媒體"],"Show media on left":["在左側顯示媒體"],"Open in New Tab":["在新分頁中開啟"],"Cover":["封面"],"Border settings":["框線設定"],"Medium":["中型尺寸"],"Paste URL or type to search":["貼上或輸入網址以搜尋"],"Terms":["項目"],"Your work will be published at the specified date and time.":["這篇內容將會發佈於指定的日期與時間。"],"Are you ready to schedule?":["確定要將這篇內容進行排程?"],"Always show pre-publish checks.":["永遠顯示發佈前檢查項目。"],"Take Over":["接管編輯工作"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["另一位使用者目前正在編輯這篇內容,這代表除非你接管編輯工作,否則無法編輯這篇內容。"],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["「%s」目前正在編輯這篇內容,這代表除非你接管編輯工作,否則無法編輯這篇內容。"],"Another user now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["另一位使用者目前已接管這篇內容的編輯工作。不必擔心,截至目前為止的編輯變更均已儲存。"],"%s now has editing control of this post. Don’t worry, your changes up to this moment have been saved.":["「%s」目前已接管這篇內容的編輯工作。不必擔心,截至目前為止的編輯變更均已儲存。"],"Avatar":["個人頭像"],"This post is already being edited.":["這篇內容已經過編輯。"],"Someone else has taken over this post.":["已有其他人接管了這篇內容的編輯工作。"],"This block contains unexpected or invalid content.":["這個區塊包含未預期或無效的內容。"],"Resolve Block":["解析區塊"],"Convert to HTML":["轉換成 HTML"],"This block can only be used once.":["這個區塊僅能使用一次。"],"Exit Code Editor":["結束程式碼編輯器"],"Editing Code":["編輯程式碼"],"Solid Color":["純色"],"Main Color":["主要色彩"],"HTML":["HTML"],"Write HTML…":["撰寫 HTML 程式碼..."],"Media settings":["媒體設定"],"Overlay":["覆疊"],"Insert Media":["插入媒體檔案"],"Reusable block imported successfully!":["可重複使用區塊已成功匯入。"],"Invalid Reusable Block JSON file":["無效的可重複使用區塊 JSON 檔案"],"Invalid JSON file":["無效的 JSON 檔案"],"Import from JSON":["從 JSON 檔案匯入"],"Backtick":["反引號"],"Period":["句號"],"Comma":["逗號"],"Change type of %d block":["變更 %d 個區塊的類型"],"Current":["目前版本"],"After Conversion":["轉換後"],"Change alignment":["變更對齊方式"],"Change text alignment":["變更文字對齊方式"],"%d block":["%d 個區塊"],"Forward-slash":["正斜線"],"No archives to show.":["尚無彙整可供顯示。"],"This file is empty.":["檔案內容為空。"],"Sorry, this file type is not supported here.":["很抱歉,這是不支援的檔案類型。"],"Manage all reusable blocks":["管理可重複使用區塊"],"Title":["標題"],"Fullscreen mode":["全螢幕模式"],"Beautiful landscape":["美麗的風景"],"Close panel":["關閉面板"],"Convert to Classic Block":["轉換成 [傳統編輯器] 區塊"],"Remove Poster Image":["移除宣傳圖片"],"Select Poster Image":["選取宣傳圖片"],"Poster Image":["宣傳圖片"],"This block is deprecated. Please use the Columns block instead.":["這個區塊已淘汰不用,請改用 [內容欄] 區塊。"],"Text Columns (deprecated)":["文字欄 (已淘汰不用)"],"Create":["建立"],"Row Count":["資料列數"],"Column Count":["資料行數"],"This block is deprecated. Please use the Paragraph block instead.":["這個區塊已淘汰不用,請改用 [段落] 區塊。"],"Subheading (deprecated)":["子標題 (已淘汰不用)"],"blockquote":["段落引用"],"Change the block type after adding a new paragraph.":["新增段落後,藉以變更區塊類型"],"Spotlight mode":["寫作焦點模式"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["標籤能夠協助使用者及搜尋引擎瀏覽這個網站並找到合適的內容。請加入一些能說明文章內容的關鍵字。"],"Add tags":["新增標籤"],"Apply the \"%1$s\" format.":["套用 [%1$s] 文章格式。"],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["目前使用的佈景主題使用文章格式強調不同類型的內容,例如圖片或視訊。套用其中一種文章格式便能檢視其專屬樣式。"],"Use a post format":["使用文章格式"],"Insert After":["於後方插入區塊"],"Insert Before":["於前方插入區塊"],"Move %1$d block from position %2$d down by one place":["將位於%2$d的 %1$d 個區塊下移一次"],"Move %1$d block from position %2$d up by one place":["將位於%2$d的 %1$d 個區塊上移一次"],"Move %1$s block from position %2$d right to position %3$d":["將位於%2$d的 [%1$s] 區塊右移至%3$d"],"movie":["電影"],"Insert a new block before the selected block(s).":["在選取區塊的前方插入新區塊"],"Remove the selected block(s).":["移除選取的區塊"],"Duplicate the selected block(s).":["再製選取的區塊"],"Block shortcuts":["區塊快速鍵"],"Clear selection.":["取消內容選取"],"Select all text when typing. Press again to select all blocks.":["寫作時按一次可選取當前區塊,再按一次即可選取全部區塊"],"Selection shortcuts":["內容選取快速鍵"],"Switch between Visual editor and Code editor.":["於 [視覺化編輯器] 與 [程式碼編輯器] 間切換"],"Navigate to the previous part of the editor.":["前往編輯器的上一個功能區域"],"Navigate to the next part of the editor.":["前往編輯器的下一個功能區域"],"Show or hide the settings sidebar.":["顯示或隱藏設定面板"],"Redo your last undo.":["取消復原變更"],"Undo your last changes.":["復原變更"],"Save your changes.":["儲存變更"],"Global shortcuts":["全域快速鍵"],"Remove a link.":["移除連結"],"Convert the selected text into a link.":["將選取內容轉換成連結"],"Underline the selected text.":["為選取內容加上底線"],"Make the selected text italic.":["將選取內容變更為斜體"],"Make the selected text bold.":["將選取內容變更為粗體"],"Text formatting":["內容格式化"],"Insert a new block after the selected block(s).":["在選取區塊的後方插入新區塊"],"Keyboard shortcuts":["鍵盤快速鍵"],"Thanks for testing Gutenberg!":["感謝加入測試 Gutenberg 的行列"],"Help build Gutenberg":["協助建置 Gutenberg"],"If you want to learn more about how to build additional blocks, or if you are interested in helping with the project, head over to the GitHub repository.":["如想進一步瞭解如何建置其他區塊的相關資訊,或是有興趣協助這個專案,請造訪 GitHub 存放庫。"],"The WordPress community":["WordPress 社群"],"Code is Poetry":["程式碼,如詩"],"You can build any block you like, static or dynamic, decorative or plain. Here’s a pullquote block:":["作者可以使用任何自己喜好的區塊,無論是靜態或動態、具備裝飾樣式或純文字。以下便以重要引述區塊作為示範。"],"Any block can opt into these alignments. The embed block has them also, and is responsive out of the box:":["任何區塊均具備對齊設定,下方嵌入內容的區塊亦同,且嵌入內容後會立即具備回應式設計。"],"The above is a gallery with just two images. It’s an easier way to create visually appealing layouts, without having to deal with floats. You can also easily convert the gallery back to individual images again, by using the block switcher.":["上方是個只有兩張圖片的圖庫。這是能夠更輕易建立引人注意版面配置的方式,而無需處理其他細節。如有需要,還可以使用區塊切換程式輕鬆地將圖庫轉換成一張張的單張圖片。"],"Sure, the full-wide image can be pretty big. But sometimes the image is worth it.":["當然,全幅寬度圖片會以相當大的尺寸顯示,但的確適合呈現某些圖片。"],"Accessibility is important — don’t forget image alt attribute":["協助工具相當重要 — 請記得填寫圖片替代文字屬性"],"If you combine the new wide and full-wide alignments with galleries, you can create a very media rich layout, very quickly:":["如果目前使用的佈景主題整合了圖庫圖片的 [寬幅寬度] 及 [全幅寬度] 顯示方式,作者便能非常快速地建立具有多樣化媒體檔案呈現方式的版面配置:"],"Media Rich":["多樣化的媒體檔案呈現方式"],"You can change the amount of columns in your galleries by dragging a slider in the block inspector in the sidebar.":["作者可拖曳位於資訊欄區塊中的滑桿,藉以變更圖庫的內容欄設定。"],"Blocks can be anything you need. For instance, you may want to add a subdued quote as part of the composition of your text, or you may prefer to display a giant stylized one. All of these options are available in the inserter.":["區塊可以滿足任何寫作需求。舉例來說,作者或許會想要加入低調的引文作為內容的一部份,或是偏好顯示一個大型風格化的引文,而區塊插入器提供了全部相關設定。"],"The information corresponding to the source of the quote is a separate text field, similar to captions under images, so the structure of the quote is protected even if you select, modify, or remove the source. It’s always easy to add it back.":["與引文來源對應的資訊,是類似圖片下方圖說的個別文字欄位;因此即使進行選取、修改或移除來源,引文結構仍會受到保護,要將它再次加入也非常簡單。"],"Matt Mullenweg, 2017":["Matt Mullenweg 撰於 2017 年"],"The editor will endeavor to create a new page and post building experience that makes writing rich posts effortless, and has “blocks” to make it easy what today might take shortcodes, custom HTML, or “mystery meat” embed discovery.":["透過這個編輯器,便可建立頁面及文章,而這兩者均能輕鬆建置出呈現多樣化內容、具備能使用短代碼、自訂 HTML 或常用嵌入內容區塊的使用體驗。"],"A huge benefit of blocks is that you can edit them in place and manipulate your content directly. Instead of having fields for editing things like the source of a quote, or the text of a button, you can directly change the content. Try editing the following quote:":["區塊的明顯優勢就是作者可以就地編輯並直接控制內容。作者可以直接修改內容,而不是透過欄位編輯引文來源或按鈕文字等內容。請試著編輯以下引文:"],"Visual Editing":["視覺化的編輯方式"],"And Lists like this one of course :)":["以及以清單區塊所製作的這份範例清單 :)"],"Layout blocks, like Buttons, Hero Images, Separators, etc.":["提供各式版面配置區塊,例如按鈕、宣傳圖片、分隔符號等等。"],"Embeds, like YouTube, Tweets, or other WordPress posts.":["可嵌入第三方內容,例如 YouTube 影片、Twitter 的推文或其他 WordPress 網站的文章。"],"Galleries":["圖庫"],"Images & Videos":["圖片及視訊"],"Text & Headings":["段落及標題"],"Go give it a try, you may discover things WordPress can already add into your posts that you didn’t know about. Here’s a short list of what you can currently find there:":["請試著插入區塊,便會發現 WordPress 已在內容中加入之前未見過的元件。這是目前這篇示範內容中用到區塊的簡短清單:"],"Imagine everything that WordPress can do is available to you quickly and in the same place on the interface. No need to figure out HTML tags, classes, or remember complicated shortcode syntax. That’s the spirit behind the inserter—the (+)
button you’ll see around the editor—which allows you to browse all available content blocks and add them into your post. Plugins and themes are able to register their own, opening up all sort of possibilities for rich editing and publishing.":["想像一下,在同一處介面中便可以快速完成 WordPress 可以做的一切,無須瞭解 HTML 標籤、類別或記住複雜的短代碼語法。在編輯器中隨處可見的 (+)
按鈕,可讓作者瀏覽全部可用的內容區塊,並將它們加入內容中,這就是區塊插入器的運作方式。外掛及佈景主題透過註冊,為多樣化的編輯及發佈拓展了各種可能性。"],"The Inserter Tool":["區塊插入器工具"],"Try selecting and removing or editing the caption, now you don’t have to be careful about selecting the image or other text by mistake and ruining the presentation.":["請試著選取、移除或編輯圖說,而不必再擔心因為犯錯或毀損內容而必須小心翼翼的選取圖片或文字。"],"If your theme supports it, you’ll see the \"wide\" button on the image toolbar. Give it a try.":["如果使用中的佈景主題支援這項功能,便會在圖片工具列出現 [寬幅寬度] 及 [全幅寬度] 按鈕。請試試這項功能的效果。"],"Handling images and media with the utmost care is a primary focus of the new editor. Hopefully, you’ll find aspects of adding captions or going full-width with your pictures much easier and robust than before.":["以最嚴謹的方式處理圖片及媒體檔案是新版編輯器的主要重點。希望作者們會發現加入圖說或全幅寬度圖片的方式,比以往更容易也更完整。"],"A Picture is Worth a Thousand Words":["一圖勝千文"],"Headings are separate blocks as well, which helps with the outline and organization of your content.":["[標題] 是有助於呈現內容大綱及組織的獨立區塊。"],"... like this one, which is right aligned.":["...就如同這個區塊,文字內容為靠右對齊。"],"What you are reading now is a text block the most basic block of all. The text block has its own controls to be moved freely around the post...":["目前正在閱讀的是段落區塊,這是最基本的區塊;段落區塊有自有的控制項,可隨意移動文字內容位置..."],"The goal of this new editor is to make adding rich content to WordPress simple and enjoyable. This whole post is composed of pieces of content—somewhat similar to LEGO bricks—that you can move around and interact with. Move your cursor around and you’ll notice the different blocks light up with outlines and arrows. Press the arrows to reposition blocks quickly, without fearing about losing things in the process of copying and pasting.":["開發這款新式編輯器的目標,是為了在 WordPress 加入豐富內容時變得簡單而有趣。使用 Gutengerg 編輯器編輯內容,整篇內容會由類似樂高積木的塊狀內容所組成,作者可以移動這些塊狀內容並與之互動。移動游標的同時,應該會注意到不同的區塊會以外框及箭號加以標示;按下箭號即可快速重新排列區塊位置,且不必擔心會因為複製及貼上的操作而遺失內容。"],"Of Mountains & Printing Presses":["有如山脈般壯觀的印刷機"],"Welcome to the Gutenberg Editor":["歡迎使用 Gutenberg 編輯器"],"block name\u0004More":["閱讀全文"],"button to expand options\u0004More":["更多設定"],"Are you sure you want to unschedule this post?":["確定要取消這篇內容的排程狀態?"],"Alt Text (Alternative Text)":["替代文字"],"Reusable Block":["可重複使用區塊"],"Unique identifier for the object.":["物件的唯一識別碼。"],"Untitled Reusable Block":["未命名的可重複使用區塊"],"Small":["小型尺寸"],"Reusable":["可重複使用"],"Remove from Reusable blocks":["從可重複使用區塊中移除"],"Add to Reusable blocks":["新增至可重複使用區塊"],"Keep as HTML":["保留 HTML 程式碼"],"Edit URL":["編輯網址"],"Color settings":["色彩設定"],"The response is not a valid JSON response.":["無效的 JSON 回應。"],"Editor publish":["編輯器發佈"],"Muted":["靜音"],"Video settings":["視訊設定"],"recent comments":["近期留言"],"Latest Comments":["最新留言"],"Display Excerpt":["顯示內容摘要"],"Display Date":["顯示日期"],"Display Avatar":["顯示個人頭像"],"Latest comments settings":["最新留言設定"],"Number of Comments":["留言顯示數量"],"Background Opacity":["背景不透明度"],"Auto":["自動播放"],"Preload":["預先載入"],"Audio settings":["音訊設定"],"Display a monthly archive of your posts.":["顯示網站文章的每月彙整。"],"Display as Dropdown":["顯示為下拉式選單"],"Show Post Counts":["顯示文章計數"],"Archives settings":["彙整設定"],"https://wordpress.org/support/plugin/gutenberg":["https://wordpress.org/support/plugin/gutenberg"],"Support":["技術支援"],"No comments to show.":["尚無留言可供顯示。"],"%1$s on %2$s":["「%1$s」在〈%2$s〉發佈留言"],"Select Post":["選取文章"],"Select Week":["選取週次"],"Select Day":["選取日期"],"Select Month":["選取月份"],"Select Year":["選取年份"],"Archives":["彙整"],"Very dark gray":["暗灰色"],"Cyan bluish gray":["青藍灰色"],"Very light gray":["亮灰色"],"Vivid cyan blue":["鮮青藍色"],"Pale cyan blue":["淡青藍色"],"Vivid green cyan":["鮮綠青色"],"Light green cyan":["亮綠青色"],"Luminous vivid amber":["亮鮮琥珀色"],"Luminous vivid orange":["亮鮮橘色"],"Vivid red":["鮮紅色"],"Pale pink":["淡粉色"],"Inline image":["內嵌圖片"],"Available block types":["可用的區塊類型"],"Transform To:":["轉換成其他類型區塊:"],"Remove Block":["移除區塊"],"Open publish panel":["開啟 [發佈] 面板"],"Dots":["點狀線段"],"Wide Line":["長線段"],"Large":["大型尺寸"],"Show download button":["顯示下載按鈕"],"Download button settings":["下載按鈕設定"],"Link To":["連結目標"],"Text link settings":["文字連結設定"],"download":["下載"],"pdf":["PDF"],"document":["文件"],"Copy URL":["複製網址"],"Write file name…":["輸入檔案名稱..."],"File":["檔案"],"A single column within a columns block.":["內容欄區塊中的單一內容欄。"],"Column":["單一內容欄"],"Outline":["外框按鈕"],"Loop":["重複播放"],"Autoplay":["自動播放"],"Playback Controls":["播放控制項"],"Close dialog":["關閉對話方塊"],"Sorry, this file type is not permitted for security reasons.":["很抱歉,基於安全性考量,系統不接受這個檔案類型。"],"Disable tips":["停用使用提示"],"Got it":["完全瞭解"],"See next tip":["檢視下一個使用提示"],"When you’re ready, submit your work for review, and an Editor will be able to approve it for you.":["內容撰寫完成後,請將該篇內容送交審閱,任何一位具有 [編輯] 權限的使用者都能為你的內容進行核准。"],"Are you ready to submit for review?":["確定要將這篇內容送交審閱?"],"Replace image":["更換圖片"],"Remove image":["移除圖片"],"Error while uploading file %s to the media library.":["上傳 %s 至媒體庫時發生錯誤。"],"This file exceeds the maximum upload size for this site.":["這個檔案超過這個網站的檔案上傳大小限制。"],"View the autosave":["檢視自動儲存"],"There is an autosave of this post that is more recent than the version below.":["這篇內容的自動儲存版本比目前編輯區的內容更新。"],"Autosaving":["正在自動儲存"],"Enter URL here…":["在這裡輸入網址..."],"Pin to toolbar":["釘選至工具列"],"Unpin from toolbar":["從工具列取消釘選"],"Insert a table — perfect for sharing charts and data.":["插入表格是分享圖表及資料的絕佳方式。"],"Fixed width table cells":["固定寬度的表格儲存格"],"Table settings":["表格設定"],"Add text that respects your spacing and tabs, and also allows styling.":["可輸入完全保持空格及定位點不變的文字內容,但亦可套用若干樣式。"],"Display a list of your most recent posts.":["顯示網站上近期文章的清單。"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["加入可從 Twitter、Instagram 或 YouTube 等網站擷取並顯示內容的區塊。"],"Add a block that displays content in multiple columns, then add whatever content blocks you’d like.":["新增可顯示多欄內容的區塊,並在個別區塊中的欄位加入各式內容。"],"Error loading block: %s":["載入 [%s] 區塊時發生錯誤"],"Unknown error":["未知的錯誤"],"Embed Handler":["嵌入內容處理常式"],"term\u0004Remove %s":["移除 [%s]"],"Copy the permalink":["複製永久連結"],"Permalink copied":["永久連結已複製"],"Height in pixels":["高度 (以像素 px 為單位)"],"Spacer settings":["空白間隔設定"],"Spacer":["空白間隔"],"Toggle to show a large initial letter.":["切換以設定是否顯示首字大寫。"],"Showing large initial letter.":["目前設定為顯示首字大寫。"],"Name:":["區塊名稱:"],"%1$s (%2$s of %3$s)":["%1$s (第 %2$s 個,總計 %3$s 個 )"],"Remove item":["移除項目"],"Color code: %s":["色彩代碼: %s"],"Skip to the selected block":["前往所選區塊"],"Publish…":["發佈..."],"Schedule…":["排程..."],"Edit post permalink":["編輯內容永久連結"],"Show Block Settings":["顯示區塊設定"],"Hide Block Settings":["隱藏區塊設定"],"Block settings closed":["區塊設定已關閉"],"Close plugin":["關閉外掛"],"Editor settings":["編輯器設定"],"Link settings":["連結設定"],"Unlink":["取消連結"],"Page break":["分頁符號"],"pagination":["分頁"],"next page":["下一頁"],"Image Size":["圖片尺寸"],"Height":["高度"],"Width":["寬度"],"Image Dimensions":["圖片尺寸"],"Thumbnails are not cropped.":["縮圖不進行裁剪。"],"Thumbnails are cropped to align.":["縮圖會進行裁剪以便對齊。"],"Media Library":["媒體庫"],"Advanced":["進階設定"],"Add item":["新增項目"],"Reset the template":["重設範本"],"Keep it as is":["保留原樣"],"The content of your post doesn’t match the template assigned to your post type.":["這篇內容與指派給這個內容類型的範本不相符。"],"Resetting the template may result in loss of content, do you want to continue?":["重設範本有可能會導致內容遺失,要繼續進行操作嗎?"],"Document Statistics":["內容統計資料"],"is now scheduled. It will go live on":["的內容已排程發佈,上線時間為"],"Scheduled":["已排程"],"Scheduling…":["正在排程..."],"Code editor selected":["程式碼編輯器已選取"],"Visual editor selected":["視覺化編輯器已選取"],"Plugins":["外掛"],"Custom Size":["自訂大小"],"Layout elements":["版面配置元素"],"term\u0004%s removed":["[%s] 已移除"],"term\u0004%s added":["[%s] 已新增"],"imperative verb\u0004Preview":["預覽"],"Block deleted.":["區塊已刪除。"],"Block updated.":["區塊已更新。"],"Block created.":["區塊已建立。"],"Trashing failed":["移至回收桶發生錯誤"],"Updating failed.":["更新時發生錯誤。"],"Scheduling failed.":["排程時發生錯誤。"],"Publishing failed.":["發佈時發生錯誤。"],"View post":["檢視文章"],"You have unsaved changes. If you proceed, they will be lost.":["尚未儲存變更。如果繼續進行,將會失去全部變更。"],"Document Outline":["內容大綱"],"Paragraphs":["段落"],"Headings":["標題"],"Words":["字數"],"Content structure":["內容結構"],"Public":["公開"],"Protected with a password you choose. Only those with the password can view this post.":["透過作者輸入的密碼保護文章內容。僅有知悉密碼的人才能檢視這篇內容。"],"Password Protected":["密碼保護"],"Only visible to site admins and editors.":["僅網站管理員及編輯可檢視。"],"Private":["私密"],"Visible to everyone.":["全部網站訪客均可檢視。"],"Post Visibility":["內容可見度"],"Would you like to privately publish this post now?":["確定要將這篇內容發佈為私密內容?"],"Use a secure password":["使用安全的密碼"],"Create password":["建立密碼"],"Move to Trash":["移至回收桶"],"Parent Term":["上層項目"],"Parent Category":["上層分類"],"Add new term":["新增類別"],"Add new category":["新增分類"],"Term":["字詞"],"Tag":["標籤"],"Add new Term":["新增類別"],"Add new tag":["新增標籤"],"Switch to draft":["重設為草稿"],"Are you sure you want to unpublish this post?":["確定要取消這篇內容的發佈狀態?"],"Immediately":["立即排程"],"Save Draft":["儲存草稿"],"Saving":["正在儲存"],"Publish:":["發佈時間:"],"Visibility:":["可見度:"],"Are you ready to publish?":["確定要將這篇內容進行發佈?"],"Copy Link":["複製連結"],"What’s next?":["下一步操作"],"is now live.":["的內容已上線。"],"Published":["已發佈"],"Schedule":["排程"],"Update":["更新"],"Submit for Review":["送交審閱"],"Updating…":["正在更新..."],"Publishing…":["正在發佈..."],"Allow pingbacks & trackbacks":["開放自動引用通知及引用通知"],"Permalink:":["永久連結:"],"Pending review":["送交審閱"],"%d Revision":["%d 份內容修訂"],"Suggestion:":["建議樣式:"],"Post Format":["文章格式"],"Chat":["聊天記錄"],"Status":["近況更新"],"Standard":["標準"],"Aside":["記事"],"Featured image":["精選圖片"],"Set featured image":["設定精選圖片"],"Learn more about manual excerpts":["進一步瞭解手動輸入內容摘要"],"Write an excerpt (optional)":["撰寫內容摘要 (選用)"],"Allow comments":["開放留言"],"Template:":["範本:"],"no parent":["無上層項目"],"no title":["無標題"],"Order":["順序"],"No blocks found.":["找不到符合條件的區塊。"],"%d result found.":["找到 %d 項搜尋結果。"],"Saved":["已儲存"],"Embeds":["嵌入內容"],"Blocks":["區塊"],"Search for a block":["搜尋區塊"],"Add block":["新增區塊"],"Copy Error":["複製錯誤訊息"],"Copy Post Text":["複製文章內容"],"Attempt Recovery":["嘗試復原"],"The editor has encountered an unexpected error.":["編輯器發生未知的錯誤。"],"Undo":["復原"],"Redo":["重做"],"(Multiple H1 headings are not recommended)":["(不建議在同一篇內容中有多個 H1 標題)"],"(Your theme may already use a H1 for the post title)":["(目前使用的佈景主題已使用 H1 作為文章標題)"],"(Incorrect heading level)":["(不正確的標題階層)"],"(Empty heading)":["(無標題)"],"Block Styles":["區塊樣式"],"Are you sure you want to delete this Reusable Block?\n\nIt will be permanently removed from all posts and pages that use it.":["確定要刪除這個可重複使用區塊嗎?\n\n這項操作會在全部使用到這個可重複使用區塊的文章或頁面中,將它永久移除。"],"Convert to Regular Block":["轉換成一般區塊"],"More options":["更多設定"],"Edit visually":["視覺化編輯"],"Duplicate":["再製"],"Blocks cannot be moved down as they are already at the bottom":["由於已在內容尾端,區塊無法繼續下移"],"Blocks cannot be moved up as they are already at the top":["由於已在內容頂端,區塊無法繼續上移"],"Block %1$s is at the beginning of the content and can’t be moved right":["[%1$s] 區塊已位於內容頂端,因此無法向右移動"],"Block %1$s is at the end of the content and can’t be moved right":["[%1$s] 區塊已位於內容尾端,因此無法向右移動"],"Block %s is the only block, and cannot be moved":["[%s] 區塊是目前內容中唯一的區塊,無法進行移動"],"Edit as HTML":["編輯 HTML 程式碼"],"Convert to Blocks":["轉換成區塊"],"Block: %s":["區塊: %s"],"This block has encountered an error and cannot be previewed.":["這個區塊發生錯誤,導致無法進行預覽。"],"No block selected.":["未選取任何區塊。"],"Transform into:":["轉換成其他類型區塊:"],"Remove":["移除"],"Find original":["尋找原始內容"],"Copy all content":["複製全部內容"],"Copied!":["已完成複製!"],"Additional settings are now available in the Editor block settings sidebar":["在編輯器區塊設定資訊欄提供了其他設定"],"Visibility":["可見度"],"Status & visibility":["狀態及可見度"],"Page attributes":["頁面屬性"],"Block":["區塊"],"Document":["內容"],"Close settings":["關閉設定"],"Editor content":["編輯器內容"],"Tools":["工具"],"Editor":["編輯器"],"Code editor":["程式碼編輯器"],"Visual editor":["視覺化編輯器"],"Editor top bar":["編輯器頂端列"],"Settings":["設定"],"Reset":["重設"],"Dismiss this notice":["關閉這項通知"],"Item removed.":["項目已移除。"],"Item added.":["項目已新增。"],"Drop files to upload":["拖曳檔案以上傳"],"PM":["下午"],"AM":["上午"],"An unknown error occurred.":["發生未知的錯誤。"],"No results.":["找不到符合條件的結果。"],"%d result found, use up and down arrow keys to navigate.":["找到 %d 個結果,請使用上下方向鍵進行巡覽。"],"(no title)":["(無標題)"],"URL":["網址"],"Submit":["傳送"],"Close":["關閉"],"Insert link":["插入連結"],"Edit link":["編輯連結"],"Link":["連結"],"Strikethrough":["刪除線"],"Italic":["斜體"],"Bold":["粗體"],"Remove link":["移除連結"],"Number of items":["項目數量"],"All":["全部分類"],"Category":["分類"],"Z → A":["標題降冪排序"],"A → Z":["標題升冪排序"],"Oldest to Newest":["從最舊到最新排序"],"Newest to Oldest":["從最新到最舊排序"],"Order by":["排序方式"],"Select":["選取"],"Select or Upload Media":["選取或上傳媒體檔案"],"Video":["視訊"],"Write…":["撰寫..."],"poetry":["詩句"],"Verse":["詩句"],"New Column":["新增文字欄"],"Delete Column":["刪除資料行"],"Add Column After":["在目前位置後方插入資料行"],"Add Column Before":["在目前位置前方插入資料行"],"Delete Row":["刪除資料列"],"Add Row After":["在目前位置下方插入資料列"],"Add Row Before":["在目前位置上方插入資料列"],"Edit table":["編輯表格"],"Table":["表格"],"Write subheading…":["撰寫子標題..."],"Write shortcode here…":["在這裡輸入短代碼..."],"Shortcode":["短代碼"],"divider":["分隔線"],"horizontal-line":["水平線"],"Separator":["分隔符號"],"Quote":["引文"],"Write citation…":["撰寫引文..."],"Write quote…":["撰寫重要引述..."],"Pullquote":["重要引述"],"Write preformatted text…":["撰寫未格式化文字..."],"Preformatted":["未格式化文字"],"text":["文字"],"Paragraph":["段落"],"Font Size":["字型大小"],"Drop Cap":["首字放大"],"Text settings":["文字設定"],"Read more":["閱讀全文"],"Write list…":["撰寫清單..."],"numbered list":["編號清單"],"ordered list":["排序清單"],"bullet list":["項目符號清單"],"Indent list item":["增加縮排清單項目"],"Outdent list item":["減少縮排清單項目"],"Convert to ordered list":["轉換成排序清單"],"Convert to unordered list":["轉換成不排序清單"],"List":["清單"],"recent posts":["近期文章"],"No posts found.":["找不到符合條件的內容。"],"Latest Posts":["最新文章"],"Display post date":["顯示內容發佈日期"],"Grid view":["格狀檢視"],"List view":["清單檢視"],"photo":["相片"],"Image settings":["圖片設定"],"Image":["圖片"],"Preview":["預覽"],"embed":["嵌入"],"Custom HTML":["自訂 HTML"],"subtitle":["子標題"],"title":["標題"],"Heading":["標題"],"Write heading…":["撰寫標題..."],"Heading %d":["標題 %d"],"Level":["標題階層"],"Heading settings":["標題設定"],"photos":["相片"],"images":["圖片"],"None":["不進行連結"],"Media File":["媒體檔案"],"Attachment Page":["附件頁面"],"Link to ":["連結到 "],"Crop Images":["裁剪圖片"],"Gallery settings":["圖庫設定"],"Gallery":["圖庫"],"Classic":["傳統編輯器"],"video":["視訊"],"audio":["音訊"],"music":["音樂"],"image":["圖片"],"blog":["部落格"],"post":["文章"],"Embedded content from %s":["來自 %s 的嵌入內容"],"Enter URL to embed here…":["在這裡輸入網址以嵌入內容..."],"%s URL":["%s 網址"],"Embedding…":["正在嵌入內容..."],"Write title…":["撰寫標題..."],"Fixed Background":["背景固定位置"],"Edit image":["編輯圖片"],"Columns":["內容欄"],"Experiments":["實驗性功能"],"Code":["程式碼"],"Write code…":["撰寫程式碼..."],"Categories":["分類"],"Show Hierarchy":["顯示分類階層"],"Show post counts":["顯示文章數量"],"Categories settings":["分類設定"],"Add text…":["加入文字..."],"Button":["按鈕"],"Apply":["套用"],"Text Color":["文字色彩"],"Background Color":["背景色彩"],"Block has been deleted or is unavailable.":["區塊已刪除或無法使用。"],"Reusable blocks":["可重複使用區塊"],"Cancel":["取消"],"Edit":["編輯"],"Write caption…":["撰寫說明..."],"Use URL":["插入網址"],"Audio":["音訊"],"Upload":["上傳"],"Additional CSS Class(es)":["附加的 CSS 類別"],"HTML Anchor":["HTML 錨點"],"This color combination may be hard for people to read. Try using a brighter background color and/or a darker text color.":["這種色彩組合會使讀者難以閱讀,請改用較亮的背景色彩搭配較暗的文字色彩。"],"This color combination may be hard for people to read. Try using a darker background color and/or a brighter text color.":["這種色彩組合會使讀者難以閱讀,請改用較暗的背景色彩搭配較亮的文字色彩。"],"Clear":["清除"],"Custom color picker":["自訂色彩選擇器"],"Color: %s":["色彩: %s"],"Full width":["全幅寬度"],"Wide width":["寬幅寬度"],"Widgets":["小工具"],"Formatting":["格式設定"],"Common blocks":["一般區塊"],"Align right":["靠右對齊"],"Align center":["置中對齊"],"Align left":["靠左對齊"],"Printing since 1440. This is the development plugin for the new block editor in core.":["西方活字印刷術源於 15 世紀,由 Gutenberg 所發明;為紀念這項偉大貢獻,便將為 WordPress 核心程式開發的區塊編輯器命名為 Gutenberg。"],"Add title":["新增標題"],"Gutenberg development mode requires files to be built. Run npm install
to install dependencies, npm run build
to build the files or npm run dev
to build the files and watch for changes. Read the contributing file for more information.":["Gutenberg 開發模式需要特定檔案才能建置。執行 npm install
以安裝相依性元件、執行 npm run build
以建置檔案,或執行 npm run dev
以建置檔案並檢視變更。如需詳細資訊,請參閱〈Getting Started〉這份文件。"],"Author":["作者"],"Slug":["代稱"],"Discussion":["討論"],"Custom fields":["自訂欄位"],"Excerpt":["內容摘要"],"Publish":["發佈"],"Metadata":["中繼資料"],"Save":["儲存"],"Documentation":["線上說明"],"Select Category":["選取分類"],"(Untitled)":["(未命名)"],"Gutenberg requires WordPress %s or later to function properly. Please upgrade WordPress before activating Gutenberg.":["Gutenberg 需要 WordPress %s 或更新版本才能正確執行。請在啟用 Gutenberg 前先為 WordPress 進行升級。"],"Gutenberg Team":["Gutenberg 團隊"],"https://github.com/WordPress/gutenberg":["https://github.com/WordPress/gutenberg"],"Gutenberg":["Gutenberg"],"Demo":["示範內容"],"%s ago":["%s前"],"Block style name must be a string.":["區塊樣式名稱必須是字串。"]}
\ No newline at end of file
diff --git a/bundle/android/raw/node_modules_cssselect_lib_procedure.json b/bundle/android/raw/node_modules_cssselect_lib_procedure.json
new file mode 100644
index 0000000000..c74b1b6f55
--- /dev/null
+++ b/bundle/android/raw/node_modules_cssselect_lib_procedure.json
@@ -0,0 +1,11 @@
+{
+ "universal": 50,
+ "tag": 30,
+ "attribute": 1,
+ "pseudo": 0,
+ "descendant": -1,
+ "child": -1,
+ "parent": -1,
+ "sibling": -1,
+ "adjacent": -1
+}
diff --git a/bundle/android/raw/node_modules_csstree_dist_defaultsyntax.json b/bundle/android/raw/node_modules_csstree_dist_defaultsyntax.json
new file mode 100644
index 0000000000..c7ad2963fa
--- /dev/null
+++ b/bundle/android/raw/node_modules_csstree_dist_defaultsyntax.json
@@ -0,0 +1 @@
+{"generic":true,"types":{"absolute-size":"xx-small|x-small|small|medium|large|x-large|xx-large","alpha-value":"|","angle-percentage":"|","angular-color-hint":"","angular-color-stop":"&&?","angular-color-stop-list":"[ [, ]?]# , ","animateable-feature":"scroll-position|contents|","attachment":"scroll|fixed|local","attr()":"attr( ? [, ]? )","attr-matcher":"['~'|'|'|'^'|'$'|'*']? '='","attr-modifier":"i|s","attribute-selector":"'[' ']'|'[' [|] ? ']'","auto-repeat":"repeat( [auto-fill|auto-fit] , [? ]+ ? )","auto-track-list":"[? [|]]* ? [? [|]]* ?","baseline-position":"[first|last]? baseline","basic-shape":"|||","bg-image":"none|","bg-layer":"|| [/ ]?||||||||","bg-position":"[[left|center|right|top|bottom|]|[left|center|right|] [top|center|bottom|]|[center|[left|right] ?]&&[center|[top|bottom] ?]]","bg-size":"[|auto]{1,2}|cover|contain","blur()":"blur( )","blend-mode":"normal|multiply|screen|overlay|darken|lighten|color-dodge|color-burn|hard-light|soft-light|difference|exclusion|hue|saturation|color|luminosity","box":"border-box|padding-box|content-box","brightness()":"brightness( )","calc()":"calc( )","calc-sum":" [['+'|'-'] ]*","calc-product":" ['*' |'/' ]*","calc-value":"|||( )","cf-final-image":"|","cf-mixing-image":"?&&","circle()":"circle( []? [at ]? )","clamp()":"clamp( #{3} )","class-selector":"'.' ","clip-source":"","color":"||||||currentcolor|","color-stop":"|","color-stop-angle":"{1,2}","color-stop-length":"{1,2}","color-stop-list":"[ [, ]?]# , ","combinator":"'>'|'+'|'~'|['||']","common-lig-values":"[common-ligatures|no-common-ligatures]","compat":"searchfield|textarea|push-button|button-bevel|slider-horizontal|checkbox|radio|square-button|menulist|menulist-button|listbox|meter|progress-bar","composite-style":"clear|copy|source-over|source-in|source-out|source-atop|destination-over|destination-in|destination-out|destination-atop|xor","compositing-operator":"add|subtract|intersect|exclude","compound-selector":"[? * [ *]*]!","compound-selector-list":"#","complex-selector":" [? ]*","complex-selector-list":"#","conic-gradient()":"conic-gradient( [from ]? [at ]? , )","contextual-alt-values":"[contextual|no-contextual]","content-distribution":"space-between|space-around|space-evenly|stretch","content-list":"[|contents||||counter( , <'list-style-type'>? )]+","content-position":"center|start|end|flex-start|flex-end","content-replacement":"","contrast()":"contrast( [] )","counter()":"counter( , [|none]? )","counter-style":"|symbols( )","counter-style-name":"","counters()":"counters( , , [|none]? )","cross-fade()":"cross-fade( , ? )","cubic-bezier-timing-function":"ease|ease-in|ease-out|ease-in-out|cubic-bezier( , , , )","deprecated-system-color":"ActiveBorder|ActiveCaption|AppWorkspace|Background|ButtonFace|ButtonHighlight|ButtonShadow|ButtonText|CaptionText|GrayText|Highlight|HighlightText|InactiveBorder|InactiveCaption|InactiveCaptionText|InfoBackground|InfoText|Menu|MenuText|Scrollbar|ThreeDDarkShadow|ThreeDFace|ThreeDHighlight|ThreeDLightShadow|ThreeDShadow|Window|WindowFrame|WindowText","discretionary-lig-values":"[discretionary-ligatures|no-discretionary-ligatures]","display-box":"contents|none","display-inside":"flow|flow-root|table|flex|grid|ruby","display-internal":"table-row-group|table-header-group|table-footer-group|table-row|table-cell|table-column-group|table-column|table-caption|ruby-base|ruby-text|ruby-base-container|ruby-text-container","display-legacy":"inline-block|inline-list-item|inline-table|inline-flex|inline-grid","display-listitem":"?&&[flow|flow-root]?&&list-item","display-outside":"block|inline|run-in","drop-shadow()":"drop-shadow( {2,3} ? )","east-asian-variant-values":"[jis78|jis83|jis90|jis04|simplified|traditional]","east-asian-width-values":"[full-width|proportional-width]","element()":"element( )","ellipse()":"ellipse( [{2}]? [at ]? )","ending-shape":"circle|ellipse","env()":"env( , ? )","explicit-track-list":"[? ]+ ?","family-name":"|+","feature-tag-value":" [|on|off]?","feature-type":"@stylistic|@historical-forms|@styleset|@character-variant|@swash|@ornaments|@annotation","feature-value-block":" '{' '}'","feature-value-block-list":"+","feature-value-declaration":" : + ;","feature-value-declaration-list":"","feature-value-name":"","fill-rule":"nonzero|evenodd","filter-function":"|||||||||","filter-function-list":"[|]+","final-bg-layer":"<'background-color'>|||| [/ ]?||||||||","fit-content()":"fit-content( [|] )","fixed-breadth":"","fixed-repeat":"repeat( [] , [? ]+ ? )","fixed-size":"|minmax( , )|minmax( , )","font-stretch-absolute":"normal|ultra-condensed|extra-condensed|condensed|semi-condensed|semi-expanded|expanded|extra-expanded|ultra-expanded|","font-variant-css21":"[normal|small-caps]","font-weight-absolute":"normal|bold|","frequency-percentage":"|","general-enclosed":"[ )]|( )","generic-family":"serif|sans-serif|cursive|fantasy|monospace|-apple-system","generic-name":"serif|sans-serif|cursive|fantasy|monospace","geometry-box":"|fill-box|stroke-box|view-box","gradient":"|||||<-legacy-gradient>","grayscale()":"grayscale( )","grid-line":"auto||[&&?]|[span&&[||]]","historical-lig-values":"[historical-ligatures|no-historical-ligatures]","hsl()":"hsl( [/ ]? )|hsl( , , , ? )","hsla()":"hsla( [/ ]? )|hsla( , , , ? )","hue":"|","hue-rotate()":"hue-rotate( )","image":"|||||","image()":"image( ? [? , ?]! )","image-set()":"image-set( # )","image-set-option":"[|] ","image-src":"|","image-tags":"ltr|rtl","inflexible-breadth":"||min-content|max-content|auto","inset()":"inset( {1,4} [round <'border-radius'>]? )","invert()":"invert( )","keyframes-name":"|","keyframe-block":"# { }","keyframe-block-list":"+","keyframe-selector":"from|to|","leader()":"leader( )","leader-type":"dotted|solid|space|","length-percentage":"|","line-names":"'[' * ']'","line-name-list":"[|]+","line-style":"none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset","line-width":"|thin|medium|thick","linear-color-hint":"","linear-color-stop":" ?","linear-gradient()":"linear-gradient( [|to ]? , )","mask-layer":"|| [/ ]?||||||[|no-clip]||