@ckeditor/ckeditor5-ui 37.0.1 → 38.0.0-rc.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.
Files changed (91) hide show
  1. package/lang/contexts.json +2 -1
  2. package/lang/translations/ar.po +5 -1
  3. package/lang/translations/ast.po +5 -1
  4. package/lang/translations/az.po +5 -1
  5. package/lang/translations/bg.po +5 -1
  6. package/lang/translations/bn.po +5 -1
  7. package/lang/translations/ca.po +5 -1
  8. package/lang/translations/cs.po +5 -1
  9. package/lang/translations/da.po +5 -1
  10. package/lang/translations/de-ch.po +5 -1
  11. package/lang/translations/de.po +5 -1
  12. package/lang/translations/el.po +5 -1
  13. package/lang/translations/en-au.po +6 -2
  14. package/lang/translations/en-gb.po +5 -1
  15. package/lang/translations/en.po +4 -0
  16. package/lang/translations/eo.po +5 -1
  17. package/lang/translations/es.po +5 -1
  18. package/lang/translations/et.po +5 -1
  19. package/lang/translations/eu.po +5 -1
  20. package/lang/translations/fa.po +5 -1
  21. package/lang/translations/fi.po +5 -1
  22. package/lang/translations/fr.po +5 -1
  23. package/lang/translations/gl.po +5 -1
  24. package/lang/translations/he.po +5 -1
  25. package/lang/translations/hi.po +5 -1
  26. package/lang/translations/hr.po +6 -2
  27. package/lang/translations/hu.po +5 -1
  28. package/lang/translations/id.po +5 -1
  29. package/lang/translations/it.po +5 -1
  30. package/lang/translations/ja.po +5 -1
  31. package/lang/translations/km.po +5 -1
  32. package/lang/translations/kn.po +5 -1
  33. package/lang/translations/ko.po +5 -1
  34. package/lang/translations/ku.po +5 -1
  35. package/lang/translations/lt.po +5 -1
  36. package/lang/translations/lv.po +5 -1
  37. package/lang/translations/ms.po +5 -1
  38. package/lang/translations/nb.po +5 -1
  39. package/lang/translations/ne.po +5 -1
  40. package/lang/translations/nl.po +5 -1
  41. package/lang/translations/no.po +5 -1
  42. package/lang/translations/pl.po +5 -1
  43. package/lang/translations/pt-br.po +5 -1
  44. package/lang/translations/pt.po +5 -1
  45. package/lang/translations/ro.po +5 -1
  46. package/lang/translations/ru.po +5 -1
  47. package/lang/translations/sk.po +5 -1
  48. package/lang/translations/sl.po +5 -1
  49. package/lang/translations/sq.po +5 -1
  50. package/lang/translations/sr-latn.po +5 -1
  51. package/lang/translations/sr.po +5 -1
  52. package/lang/translations/sv.po +5 -1
  53. package/lang/translations/th.po +5 -1
  54. package/lang/translations/tk.po +5 -1
  55. package/lang/translations/tr.po +5 -1
  56. package/lang/translations/tt.po +5 -1
  57. package/lang/translations/ug.po +5 -1
  58. package/lang/translations/uk.po +5 -1
  59. package/lang/translations/ur.po +5 -1
  60. package/lang/translations/uz.po +5 -1
  61. package/lang/translations/vi.po +5 -1
  62. package/lang/translations/zh-cn.po +5 -1
  63. package/lang/translations/zh.po +6 -2
  64. package/package.json +27 -22
  65. package/src/button/button.d.ts +24 -0
  66. package/src/button/buttonview.d.ts +24 -2
  67. package/src/button/buttonview.js +33 -10
  68. package/src/colorpicker/colorpickerview.d.ts +110 -0
  69. package/src/colorpicker/colorpickerview.js +250 -0
  70. package/src/colorpicker/utils.d.ts +35 -0
  71. package/src/colorpicker/utils.js +99 -0
  72. package/src/dropdown/button/splitbuttonview.d.ts +16 -0
  73. package/src/dropdown/dropdownpanelview.js +6 -1
  74. package/src/dropdown/utils.d.ts +2 -0
  75. package/src/dropdown/utils.js +2 -0
  76. package/src/editorui/editorui.d.ts +5 -0
  77. package/src/editorui/editorui.js +3 -0
  78. package/src/editorui/poweredby.d.ts +71 -0
  79. package/src/editorui/poweredby.js +285 -0
  80. package/src/index.d.ts +3 -0
  81. package/src/index.js +2 -0
  82. package/src/list/listitemview.js +2 -1
  83. package/src/list/listview.d.ts +6 -0
  84. package/src/list/listview.js +2 -0
  85. package/src/toolbar/block/blocktoolbar.js +3 -25
  86. package/src/toolbar/toolbarview.js +3 -1
  87. package/theme/components/colorpicker/colorpicker.css +24 -0
  88. package/theme/globals/_poweredby.css +67 -0
  89. package/theme/globals/globals.css +1 -0
  90. package/theme/icons/color-palette.svg +1 -0
  91. package/theme/icons/project-logo.svg +1 -0
@@ -22,5 +22,6 @@
22
22
  "Blue": "Label of a button that applies a blue color in color pickers.",
23
23
  "Purple": "Label of a button that applies a purple color in color pickers.",
24
24
  "Editor block content toolbar": "Accessible label of a toolbar that shows up next to the blocks of content (e.g. headings, paragraphs).",
25
- "Editor contextual toolbar": "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
25
+ "Editor contextual toolbar": "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret).",
26
+ "HEX": "Label of an input field for typing colors in the HEX color format."
26
27
  }
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Arabic (https://www.transifex.com/ckeditor/teams/11143/ar/)\n"
15
+ "Language-Team: Arabic (https://app.transifex.com/ckeditor/teams/11143/ar/)\n"
16
16
  "Language: ar\n"
17
17
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "شريط المحرر لأدوات كتلة المحتوى"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "شريط المحرر للأدوات السياقية"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Asturian (https://www.transifex.com/ckeditor/teams/11143/ast/)\n"
15
+ "Language-Team: Asturian (https://app.transifex.com/ckeditor/teams/11143/ast/)\n"
16
16
  "Language: ast\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Azerbaijani (https://www.transifex.com/ckeditor/teams/11143/az/)\n"
15
+ "Language-Team: Azerbaijani (https://app.transifex.com/ckeditor/teams/11143/az/)\n"
16
16
  "Language: az\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Bulgarian (https://www.transifex.com/ckeditor/teams/11143/bg/)\n"
15
+ "Language-Team: Bulgarian (https://app.transifex.com/ckeditor/teams/11143/bg/)\n"
16
16
  "Language: bg\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Лента с инструменти за блокиране на съд
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Контекстна лента с инструменти на редактора"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Bengali (https://www.transifex.com/ckeditor/teams/11143/bn/)\n"
15
+ "Language-Team: Bengali (https://app.transifex.com/ckeditor/teams/11143/bn/)\n"
16
16
  "Language: bn\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "সম্পাদক ব্লক কন্টেন্ট টুলব
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "সম্পাদক প্রাসঙ্গিক টুলবার"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Catalan (https://www.transifex.com/ckeditor/teams/11143/ca/)\n"
15
+ "Language-Team: Catalan (https://app.transifex.com/ckeditor/teams/11143/ca/)\n"
16
16
  "Language: ca\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Barra d'eines de contingut del bloc de l'editor"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Barra d'eines contextual de l'editor"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Czech (https://www.transifex.com/ckeditor/teams/11143/cs/)\n"
15
+ "Language-Team: Czech (https://app.transifex.com/ckeditor/teams/11143/cs/)\n"
16
16
  "Language: cs\n"
17
17
  "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Panel nástrojů obsahu bloku editoru"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Kontextový panel nástrojů editoru"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Danish (https://www.transifex.com/ckeditor/teams/11143/da/)\n"
15
+ "Language-Team: Danish (https://app.transifex.com/ckeditor/teams/11143/da/)\n"
16
16
  "Language: da\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Redigeringskasse indholdsværktøjslinje"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Kontekstuel værktøjslinje til redigeringsprogram"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: German (Switzerland) (https://www.transifex.com/ckeditor/teams/11143/de_CH/)\n"
15
+ "Language-Team: German (Switzerland) (https://app.transifex.com/ckeditor/teams/11143/de_CH/)\n"
16
16
  "Language: de_CH\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: German (https://www.transifex.com/ckeditor/teams/11143/de/)\n"
15
+ "Language-Team: German (https://app.transifex.com/ckeditor/teams/11143/de/)\n"
16
16
  "Language: de\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Editor Blockinhalt-Toolbar"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Editor kontextuelle Toolbar"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Greek (https://www.transifex.com/ckeditor/teams/11143/el/)\n"
15
+ "Language-Team: Greek (https://app.transifex.com/ckeditor/teams/11143/el/)\n"
16
16
  "Language: el\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Γραμμή εργαλείων επεξεργασίας περιεχο
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Γραμμή εργαλείων επεξεργασίας συμφραζομένων"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: English (Australia) (https://www.transifex.com/ckeditor/teams/11143/en_AU/)\n"
15
+ "Language-Team: English (Australia) (https://app.transifex.com/ckeditor/teams/11143/en_AU/)\n"
16
16
  "Language: en_AU\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -106,8 +106,12 @@ msgstr "Purple"
106
106
 
107
107
  msgctxt "Accessible label of a toolbar that shows up next to the blocks of content (e.g. headings, paragraphs)."
108
108
  msgid "Editor block content toolbar"
109
- msgstr ""
109
+ msgstr "Editor block content toolbar"
110
110
 
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
+ msgstr "Editor contextual toolbar"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
113
117
  msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: English (United Kingdom) (https://www.transifex.com/ckeditor/teams/11143/en_GB/)\n"
15
+ "Language-Team: English (United Kingdom) (https://app.transifex.com/ckeditor/teams/11143/en_GB/)\n"
16
16
  "Language: en_GB\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -111,3 +111,7 @@ msgstr "Editor block content toolbar"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Editor contextual toolbar"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr "HEX"
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Esperanto (https://www.transifex.com/ckeditor/teams/11143/eo/)\n"
15
+ "Language-Team: Esperanto (https://app.transifex.com/ckeditor/teams/11143/eo/)\n"
16
16
  "Language: eo\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Spanish (https://www.transifex.com/ckeditor/teams/11143/es/)\n"
15
+ "Language-Team: Spanish (https://app.transifex.com/ckeditor/teams/11143/es/)\n"
16
16
  "Language: es\n"
17
17
  "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Barra de herramientas de contenido del bloque del editor"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Barra de herramientas contextual del editor"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Estonian (https://www.transifex.com/ckeditor/teams/11143/et/)\n"
15
+ "Language-Team: Estonian (https://app.transifex.com/ckeditor/teams/11143/et/)\n"
16
16
  "Language: et\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Redigeerija ploki sisu tööriistariba"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Redigeerija kontekstuaalne tööriistariba"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Basque (https://www.transifex.com/ckeditor/teams/11143/eu/)\n"
15
+ "Language-Team: Basque (https://app.transifex.com/ckeditor/teams/11143/eu/)\n"
16
16
  "Language: eu\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Persian (https://www.transifex.com/ckeditor/teams/11143/fa/)\n"
15
+ "Language-Team: Persian (https://app.transifex.com/ckeditor/teams/11143/fa/)\n"
16
16
  "Language: fa\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Finnish (https://www.transifex.com/ckeditor/teams/11143/fi/)\n"
15
+ "Language-Team: Finnish (https://app.transifex.com/ckeditor/teams/11143/fi/)\n"
16
16
  "Language: fi\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Editorin lohkon sisällön työkalupalkki"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Editorin kontekstuaalinen työkalupalkki"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: French (https://www.transifex.com/ckeditor/teams/11143/fr/)\n"
15
+ "Language-Team: French (https://app.transifex.com/ckeditor/teams/11143/fr/)\n"
16
16
  "Language: fr\n"
17
17
  "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Barre d'outils du contenu du bloc éditeur"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Barre d'outils contextuelle de l'éditeur"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Galician (https://www.transifex.com/ckeditor/teams/11143/gl/)\n"
15
+ "Language-Team: Galician (https://app.transifex.com/ckeditor/teams/11143/gl/)\n"
16
16
  "Language: gl\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Hebrew (https://www.transifex.com/ckeditor/teams/11143/he/)\n"
15
+ "Language-Team: Hebrew (https://app.transifex.com/ckeditor/teams/11143/he/)\n"
16
16
  "Language: he\n"
17
17
  "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "סרגל כלים של תוכן בלוק של העורך"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "סרגל כלים הקשרי של העורך"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Hindi (https://www.transifex.com/ckeditor/teams/11143/hi/)\n"
15
+ "Language-Team: Hindi (https://app.transifex.com/ckeditor/teams/11143/hi/)\n"
16
16
  "Language: hi\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "एडीटर ब्लॉक कंटेंट टूलबार"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "एडीटर कॉन्टेक्स्टूअल टूलबार"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Croatian (https://www.transifex.com/ckeditor/teams/11143/hr/)\n"
15
+ "Language-Team: Croatian (https://app.transifex.com/ckeditor/teams/11143/hr/)\n"
16
16
  "Language: hr\n"
17
17
  "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
18
18
 
@@ -22,7 +22,7 @@ msgstr "Rich Text Editor"
22
22
 
23
23
  msgctxt "Accessible label of the specific editing area belonging to a container with an ARIA application role."
24
24
  msgid "Editor editing area: %0"
25
- msgstr ""
25
+ msgstr "Područje Editora: %0"
26
26
 
27
27
  msgctxt "Label of the block toolbar icon (a block toolbar is displayed next to each paragraph, heading, list item, etc. and contains e.g. block formatting options)"
28
28
  msgid "Edit block"
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Hungarian (https://www.transifex.com/ckeditor/teams/11143/hu/)\n"
15
+ "Language-Team: Hungarian (https://app.transifex.com/ckeditor/teams/11143/hu/)\n"
16
16
  "Language: hu\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Szerkesztő - tartalomblokk eszköztár"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Szerkesztő - szövegre vonatkozó eszköztár"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Indonesian (https://www.transifex.com/ckeditor/teams/11143/id/)\n"
15
+ "Language-Team: Indonesian (https://app.transifex.com/ckeditor/teams/11143/id/)\n"
16
16
  "Language: id\n"
17
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Bilah alat konten blok editor"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Bilah alat kontekstual editor"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Italian (https://www.transifex.com/ckeditor/teams/11143/it/)\n"
15
+ "Language-Team: Italian (https://app.transifex.com/ckeditor/teams/11143/it/)\n"
16
16
  "Language: it\n"
17
17
  "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Barra degli strumenti contestuale dell'editor del blocco"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Barra degli strumenti contestuale dell'editor"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Japanese (https://www.transifex.com/ckeditor/teams/11143/ja/)\n"
15
+ "Language-Team: Japanese (https://app.transifex.com/ckeditor/teams/11143/ja/)\n"
16
16
  "Language: ja\n"
17
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "エディター ブロック コンテンツ ツールバー"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "エディター コンテクスト ツールバー"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Khmer (https://www.transifex.com/ckeditor/teams/11143/km/)\n"
15
+ "Language-Team: Khmer (https://app.transifex.com/ckeditor/teams/11143/km/)\n"
16
16
  "Language: km\n"
17
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Kannada (https://www.transifex.com/ckeditor/teams/11143/kn/)\n"
15
+ "Language-Team: Kannada (https://app.transifex.com/ckeditor/teams/11143/kn/)\n"
16
16
  "Language: kn\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n > 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Korean (https://www.transifex.com/ckeditor/teams/11143/ko/)\n"
15
+ "Language-Team: Korean (https://app.transifex.com/ckeditor/teams/11143/ko/)\n"
16
16
  "Language: ko\n"
17
17
  "Plural-Forms: nplurals=1; plural=0;\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "편집기 영역 내용 툴바"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "편집기 문맥 툴바"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Kurdish (https://www.transifex.com/ckeditor/teams/11143/ku/)\n"
15
+ "Language-Team: Kurdish (https://app.transifex.com/ckeditor/teams/11143/ku/)\n"
16
16
  "Language: ku\n"
17
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr ""
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr ""
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Lithuanian (https://www.transifex.com/ckeditor/teams/11143/lt/)\n"
15
+ "Language-Team: Lithuanian (https://app.transifex.com/ckeditor/teams/11143/lt/)\n"
16
16
  "Language: lt\n"
17
17
  "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Redaktoriaus bloko turinio įrankių juosta"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Redaktoriaus kontekstinė įrankių juosta"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""
@@ -12,7 +12,7 @@
12
12
  #
13
13
  msgid ""
14
14
  msgstr ""
15
- "Language-Team: Latvian (https://www.transifex.com/ckeditor/teams/11143/lv/)\n"
15
+ "Language-Team: Latvian (https://app.transifex.com/ckeditor/teams/11143/lv/)\n"
16
16
  "Language: lv\n"
17
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
18
18
 
@@ -111,3 +111,7 @@ msgstr "Rediģēšanas bloka satura rīkjosla"
111
111
  msgctxt "Accessible label of a balloon toolbar that shows up right next to the user selection (the caret)."
112
112
  msgid "Editor contextual toolbar"
113
113
  msgstr "Redaktora konteksta rīkjosla"
114
+
115
+ msgctxt "Label of an input field for typing colors in the HEX color format."
116
+ msgid "HEX"
117
+ msgstr ""