@ckeditor/ckeditor5-ui 39.0.2 → 40.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +3 -3
- package/lang/contexts.json +5 -1
- package/lang/translations/ar.po +16 -0
- package/lang/translations/ast.po +16 -0
- package/lang/translations/az.po +16 -0
- package/lang/translations/bg.po +16 -0
- package/lang/translations/bn.po +16 -0
- package/lang/translations/ca.po +16 -0
- package/lang/translations/cs.po +16 -0
- package/lang/translations/da.po +16 -0
- package/lang/translations/de-ch.po +16 -0
- package/lang/translations/de.po +16 -0
- package/lang/translations/el.po +16 -0
- package/lang/translations/en-au.po +16 -0
- package/lang/translations/en-gb.po +16 -0
- package/lang/translations/en.po +16 -0
- package/lang/translations/eo.po +16 -0
- package/lang/translations/es.po +16 -0
- package/lang/translations/et.po +16 -0
- package/lang/translations/eu.po +16 -0
- package/lang/translations/fa.po +16 -0
- package/lang/translations/fi.po +16 -0
- package/lang/translations/fr.po +16 -0
- package/lang/translations/gl.po +16 -0
- package/lang/translations/he.po +16 -0
- package/lang/translations/hi.po +16 -0
- package/lang/translations/hr.po +16 -0
- package/lang/translations/hu.po +16 -0
- package/lang/translations/id.po +16 -0
- package/lang/translations/it.po +16 -0
- package/lang/translations/ja.po +16 -0
- package/lang/translations/km.po +16 -0
- package/lang/translations/kn.po +16 -0
- package/lang/translations/ko.po +16 -0
- package/lang/translations/ku.po +16 -0
- package/lang/translations/lt.po +16 -0
- package/lang/translations/lv.po +16 -0
- package/lang/translations/ms.po +16 -0
- package/lang/translations/nb.po +16 -0
- package/lang/translations/ne.po +16 -0
- package/lang/translations/nl.po +16 -0
- package/lang/translations/no.po +16 -0
- package/lang/translations/pl.po +16 -0
- package/lang/translations/pt-br.po +17 -1
- package/lang/translations/pt.po +16 -0
- package/lang/translations/ro.po +16 -0
- package/lang/translations/ru.po +16 -0
- package/lang/translations/sk.po +16 -0
- package/lang/translations/sl.po +16 -0
- package/lang/translations/sq.po +16 -0
- package/lang/translations/sr-latn.po +16 -0
- package/lang/translations/sr.po +16 -0
- package/lang/translations/sv.po +16 -0
- package/lang/translations/th.po +16 -0
- package/lang/translations/tk.po +16 -0
- package/lang/translations/tr.po +16 -0
- package/lang/translations/tt.po +16 -0
- package/lang/translations/ug.po +38 -22
- package/lang/translations/uk.po +16 -0
- package/lang/translations/ur.po +16 -0
- package/lang/translations/uz.po +16 -0
- package/lang/translations/vi.po +16 -0
- package/lang/translations/zh-cn.po +16 -0
- package/lang/translations/zh.po +16 -0
- package/package.json +3 -3
- package/src/arialiveannouncer.d.ts +94 -0
- package/src/arialiveannouncer.js +113 -0
- package/src/autocomplete/autocompleteview.d.ts +81 -0
- package/src/autocomplete/autocompleteview.js +153 -0
- package/src/button/button.d.ts +0 -6
- package/src/button/buttonlabel.d.ts +34 -0
- package/src/button/buttonlabel.js +5 -0
- package/src/button/buttonlabelview.d.ts +31 -0
- package/src/button/buttonlabelview.js +42 -0
- package/src/button/buttonview.d.ts +14 -10
- package/src/button/buttonview.js +11 -25
- package/src/dropdown/dropdownview.js +5 -4
- package/src/dropdown/utils.d.ts +15 -1
- package/src/dropdown/utils.js +47 -21
- package/src/editorui/editorui.d.ts +6 -0
- package/src/editorui/editorui.js +2 -0
- package/src/editorui/poweredby.js +14 -37
- package/src/focuscycler.d.ts +45 -2
- package/src/focuscycler.js +34 -9
- package/src/formheader/formheaderview.d.ts +6 -0
- package/src/formheader/formheaderview.js +6 -0
- package/src/highlightedtext/highlightedtextview.d.ts +38 -0
- package/src/highlightedtext/highlightedtextview.js +102 -0
- package/src/icon/iconview.d.ts +7 -0
- package/src/icon/iconview.js +2 -0
- package/src/index.d.ts +12 -2
- package/src/index.js +8 -0
- package/src/input/inputbase.d.ts +107 -0
- package/src/input/inputbase.js +110 -0
- package/src/input/inputview.d.ts +4 -89
- package/src/input/inputview.js +5 -87
- package/src/labeledfield/labeledfieldview.d.ts +7 -2
- package/src/labeledfield/labeledfieldview.js +2 -2
- package/src/labeledfield/utils.d.ts +34 -4
- package/src/labeledfield/utils.js +51 -6
- package/src/list/listitemgroupview.d.ts +59 -0
- package/src/list/listitemgroupview.js +63 -0
- package/src/list/listitemview.d.ts +2 -1
- package/src/list/listitemview.js +3 -1
- package/src/list/listview.d.ts +59 -2
- package/src/list/listview.js +105 -8
- package/src/panel/balloon/balloonpanelview.js +26 -4
- package/src/panel/sticky/stickypanelview.d.ts +1 -3
- package/src/panel/sticky/stickypanelview.js +53 -50
- package/src/search/filteredview.d.ts +31 -0
- package/src/search/filteredview.js +5 -0
- package/src/search/searchinfoview.d.ts +45 -0
- package/src/search/searchinfoview.js +59 -0
- package/src/search/searchresultsview.d.ts +54 -0
- package/src/search/searchresultsview.js +65 -0
- package/src/search/text/searchtextqueryview.d.ts +76 -0
- package/src/search/text/searchtextqueryview.js +75 -0
- package/src/search/text/searchtextview.d.ts +219 -0
- package/src/search/text/searchtextview.js +201 -0
- package/src/spinner/spinnerview.d.ts +25 -0
- package/src/spinner/spinnerview.js +38 -0
- package/src/textarea/textareaview.d.ts +88 -0
- package/src/textarea/textareaview.js +142 -0
- package/src/toolbar/block/blocktoolbar.js +30 -26
- package/src/toolbar/normalizetoolbarconfig.d.ts +1 -0
- package/src/toolbar/normalizetoolbarconfig.js +9 -8
- package/src/toolbar/toolbarview.d.ts +1 -0
- package/src/toolbar/toolbarview.js +4 -2
- package/theme/components/arialiveannouncer/arialiveannouncer.css +10 -0
- package/theme/components/autocomplete/autocomplete.css +22 -0
- package/theme/components/button/button.css +9 -1
- package/theme/components/formheader/formheader.css +4 -0
- package/theme/components/highlightedtext/highlightedtext.css +12 -0
- package/theme/components/search/search.css +43 -0
- package/theme/components/spinner/spinner.css +23 -0
- package/theme/components/textarea/textarea.css +10 -0
package/lang/translations/he.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "הגדרות בלוק"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "להקיש לעריכת בלוק"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "לגרור כדי להזיז"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "הבא"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "קבל"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "לא נמצאו תוצאות"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "אין פריטים ניתנים לחיפוש"
|
package/lang/translations/hi.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Edit block"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "ब्लॉक एडिट करने के लिए क्लिक करें"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "मूव करने के लिए ड्रैग करें"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Next"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "स्वीकार करें"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "कोई रिजल्ट नहीं"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "कोई खोजने लायक आइटम नहीं"
|
package/lang/translations/hr.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Uredi blok"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Sljedeći"
|
|
@@ -120,3 +128,11 @@ msgstr ""
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Prihvati"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr ""
|
package/lang/translations/hu.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Blokk szerkesztése"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Kattintson a blokk szerkesztéséhez"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Húzza a mozgatáshoz"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Következő"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX színkód"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Elfogad"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nincs találat"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Nincsenek kereshető elemek"
|
package/lang/translations/id.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Sunting blok"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Klik untuk mengedit blok"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Seret untuk memindahkan"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Berikutnya"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Setuju"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Hasil tidak ditemukan"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Tidak ada item yang dapat dicari"
|
package/lang/translations/it.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Modifica blocco"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Clicca per modificare il blocco"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Trascina per spostare"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Avanti"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Accetta"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nessun risultato trovato"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Nessun elemento ricercabile"
|
package/lang/translations/ja.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "ブロックを編集"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "クリックしてブロックを編集する"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "ドラッグして動かす"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "次へ"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "同意します"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "結果は見つかりませんでした"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "検索可能なアイテムがありません"
|
package/lang/translations/km.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr ""
|
|
@@ -120,3 +128,11 @@ msgstr ""
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr ""
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr ""
|
package/lang/translations/kn.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr ""
|
|
@@ -120,3 +128,11 @@ msgstr ""
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr ""
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr ""
|
package/lang/translations/ko.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "편집 영역"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "클릭하여 블록 편집"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "드래그하여 이동"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "다음"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "수락"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "결과 찾을 수 없음"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "검색 가능한 항목 없음"
|
package/lang/translations/ku.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "دەستکاری بلۆک"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "دواتر"
|
|
@@ -120,3 +128,11 @@ msgstr ""
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr ""
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr ""
|
package/lang/translations/lt.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Redaguoti bloką"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Spustelėkite norėdami redaguoti bloką"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Vilkite, kad perkeltumėte"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Kitas"
|
|
@@ -120,3 +128,11 @@ msgstr "Šešioliktainė reikšmė (angl. HEX)"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Priimti"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nieko nerasta"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Nėra paieškos elementų"
|
package/lang/translations/lv.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Labot bloku"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Noklikšķiniet, lai rediģētu sadaļu"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Velciet, lai pārvietotu"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Nākamā"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX Krāsu kods"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Apstiprināt"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nekas nav atrasts"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Nav meklējamu vienumu"
|
package/lang/translations/ms.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Sunting blok"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Klik untuk menyunting sekatan"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Seret untuk menggerakkan"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Seterusnya"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Terima"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Tiada keputusan ditemui"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Tiada item untuk dicari"
|
package/lang/translations/nb.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr ""
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr ""
|
|
@@ -120,3 +128,11 @@ msgstr ""
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr ""
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr ""
|
package/lang/translations/ne.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "ब्लक सम्पादन गर्न"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr ""
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr ""
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "अर्को"
|
|
@@ -120,3 +128,11 @@ msgstr ""
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr ""
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr ""
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr ""
|
package/lang/translations/nl.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Blok aanpassen"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Klik om blok te bewerken"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Sleep om te verplaatsen"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Volgende"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Accepteren"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Geen zoekresultaten"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Geen zoekbare items"
|
package/lang/translations/no.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Rediger blokk"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Klikk for å redigere blokk"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Dra for å flytte"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Neste"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Godta"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Ingen resultater"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Ingen søkbare elementer"
|
package/lang/translations/pl.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Edytuj blok"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Kliknij, aby edytować blok"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Przeciągnij, aby przenieść"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Następny"
|
|
@@ -120,3 +128,11 @@ msgstr "SZESNASTKOWY"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Zaakceptuj"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nie znaleziono wyników"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Brak elementów do wyszukania"
|
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Editor de bloco"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Clicar para editar o bloco"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Arrastar para mover"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Próximo"
|
|
@@ -111,7 +119,7 @@ msgstr "Barra de ferramentas de bloco do Editor"
|
|
|
111
119
|
|
|
112
120
|
msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
|
|
113
121
|
msgid "Editor contextual toolbar"
|
|
114
|
-
msgstr "Barra de ferramentas
|
|
122
|
+
msgstr "Barra de ferramentas contextual do Editor"
|
|
115
123
|
|
|
116
124
|
msgctxt "Label of an input field for typing colors in the HEX color format."
|
|
117
125
|
msgid "HEX"
|
|
@@ -120,3 +128,11 @@ msgstr "Hexadecimal"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Aceitar"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nenhum resultado encontrado"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Sem itens pesquisáveis"
|
package/lang/translations/pt.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Editar bloco"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Clique para editar o bloco"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Arraste para mover"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Seguinte"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Aceitar"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nenhum resultado encontrado"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Nenhum item pesquisável"
|
package/lang/translations/ro.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Editează bloc"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Faceți clic pentru a edita întreg blocul"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Glisați pentru a muta"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Înainte"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Acceptă"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Nu au fost găsite rezultate"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Nu există elemente ce pot fi căutate"
|
package/lang/translations/ru.po
CHANGED
|
@@ -29,6 +29,14 @@ msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to e
|
|
|
29
29
|
msgid "Edit block"
|
|
30
30
|
msgstr "Редактировать блок"
|
|
31
31
|
|
|
32
|
+
msgctxt "First part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
33
|
+
msgid "Click to edit block"
|
|
34
|
+
msgstr "Нажмите, чтобы редактировать блок"
|
|
35
|
+
|
|
36
|
+
msgctxt "Second part of the label of the block toolbar icon when functionality of drag and drop is available (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
|
|
37
|
+
msgid "Drag to move"
|
|
38
|
+
msgstr "Перетащить"
|
|
39
|
+
|
|
32
40
|
msgctxt "Label for a button showing the next thing (tab, page, etc.)."
|
|
33
41
|
msgid "Next"
|
|
34
42
|
msgstr "Следующий"
|
|
@@ -120,3 +128,11 @@ msgstr "HEX"
|
|
|
120
128
|
msgctxt "Label of the button closing the color picker and confirming the changes done in the color selector component."
|
|
121
129
|
msgid "Accept"
|
|
122
130
|
msgstr "Принять"
|
|
131
|
+
|
|
132
|
+
msgctxt "The main text of the message shown to the user when given query does not match any results."
|
|
133
|
+
msgid "No results found"
|
|
134
|
+
msgstr "Результаты не найдены"
|
|
135
|
+
|
|
136
|
+
msgctxt "The main text of the message shown to the user when no results are available."
|
|
137
|
+
msgid "No searchable items"
|
|
138
|
+
msgstr "Нет элементов для поиска"
|