@ckeditor/ckeditor5-table 31.0.0 → 33.0.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 +2 -2
- package/build/table.js +3 -3
- package/build/table.js.map +1 -0
- package/build/translations/cs.js +1 -1
- package/build/translations/el.js +1 -0
- package/build/translations/es.js +1 -1
- package/build/translations/id.js +1 -1
- package/build/translations/pt-br.js +1 -1
- package/build/translations/uz.js +1 -0
- package/build/translations/zh.js +1 -1
- package/lang/translations/ar.po +1 -1
- package/lang/translations/az.po +1 -1
- package/lang/translations/bg.po +1 -1
- package/lang/translations/cs.po +4 -4
- package/lang/translations/da.po +1 -1
- package/lang/translations/de-ch.po +1 -1
- package/lang/translations/de.po +1 -1
- package/lang/translations/el.po +261 -0
- package/lang/translations/en-au.po +1 -1
- package/lang/translations/en-gb.po +1 -1
- package/lang/translations/en.po +1 -1
- package/lang/translations/es.po +43 -43
- package/lang/translations/et.po +1 -1
- package/lang/translations/fa.po +1 -1
- package/lang/translations/fi.po +1 -1
- package/lang/translations/fr.po +1 -1
- package/lang/translations/gl.po +1 -1
- package/lang/translations/hi.po +1 -1
- package/lang/translations/hr.po +1 -1
- package/lang/translations/hu.po +1 -1
- package/lang/translations/id.po +11 -11
- package/lang/translations/it.po +1 -1
- package/lang/translations/ja.po +1 -1
- package/lang/translations/ko.po +1 -1
- package/lang/translations/ku.po +1 -1
- package/lang/translations/lt.po +1 -1
- package/lang/translations/lv.po +1 -1
- package/lang/translations/nb.po +1 -1
- package/lang/translations/ne.po +1 -1
- package/lang/translations/nl.po +1 -1
- package/lang/translations/no.po +1 -1
- package/lang/translations/pl.po +1 -1
- package/lang/translations/pt-br.po +4 -4
- package/lang/translations/ro.po +1 -1
- package/lang/translations/ru.po +1 -1
- package/lang/translations/sk.po +1 -1
- package/lang/translations/sq.po +1 -1
- package/lang/translations/sr-latn.po +1 -1
- package/lang/translations/sr.po +1 -1
- package/lang/translations/sv.po +1 -1
- package/lang/translations/th.po +1 -1
- package/lang/translations/tk.po +1 -1
- package/lang/translations/tr.po +1 -1
- package/lang/translations/ug.po +1 -1
- package/lang/translations/uk.po +1 -1
- package/lang/translations/uz.po +261 -0
- package/lang/translations/vi.po +1 -1
- package/lang/translations/zh-cn.po +1 -1
- package/lang/translations/zh.po +4 -4
- package/package.json +26 -24
- package/src/commands/insertcolumncommand.js +5 -5
- package/src/commands/insertrowcommand.js +5 -5
- package/src/commands/inserttablecommand.js +1 -1
- package/src/commands/mergecellcommand.js +5 -6
- package/src/commands/mergecellscommand.js +6 -5
- package/src/commands/removecolumncommand.js +9 -8
- package/src/commands/removerowcommand.js +6 -7
- package/src/commands/selectcolumncommand.js +5 -5
- package/src/commands/selectrowcommand.js +6 -6
- package/src/commands/setheadercolumncommand.js +6 -5
- package/src/commands/setheaderrowcommand.js +8 -5
- package/src/commands/splitcellcommand.js +5 -5
- package/src/converters/downcast.js +77 -408
- package/src/converters/table-caption-post-fixer.js +1 -1
- package/src/converters/table-cell-paragraph-post-fixer.js +1 -1
- package/src/converters/{table-cell-refresh-post-fixer.js → table-cell-refresh-handler.js} +9 -20
- package/src/converters/table-headings-refresh-handler.js +68 -0
- package/src/converters/table-layout-post-fixer.js +1 -1
- package/src/converters/tableproperties.js +6 -5
- package/src/converters/upcasttable.js +7 -3
- package/src/index.js +1 -1
- package/src/plaintableoutput.js +151 -0
- package/src/table.js +1 -1
- package/src/tablecaption/tablecaptionediting.js +1 -1
- package/src/tablecaption/tablecaptionui.js +3 -3
- package/src/tablecaption/toggletablecaptioncommand.js +3 -3
- package/src/tablecaption/utils.js +1 -1
- package/src/tablecaption.js +1 -1
- package/src/tablecellproperties/commands/tablecellbackgroundcolorcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellbordercolorcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellborderstylecommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellborderwidthcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellheightcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellhorizontalalignmentcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellpaddingcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellpropertycommand.js +6 -5
- package/src/tablecellproperties/commands/tablecellverticalalignmentcommand.js +2 -2
- package/src/tablecellproperties/commands/tablecellwidthcommand.js +2 -2
- package/src/tablecellproperties/tablecellpropertiesediting.js +42 -35
- package/src/tablecellproperties/tablecellpropertiesui.js +1 -1
- package/src/tablecellproperties/ui/tablecellpropertiesview.js +11 -1
- package/src/tablecellproperties.js +1 -1
- package/src/tableclipboard.js +19 -16
- package/src/tableediting.js +49 -28
- package/src/tablekeyboard.js +7 -6
- package/src/tablemouse/mouseeventsobserver.js +1 -1
- package/src/tablemouse.js +7 -5
- package/src/tableproperties/commands/tablealignmentcommand.js +2 -2
- package/src/tableproperties/commands/tablebackgroundcolorcommand.js +2 -2
- package/src/tableproperties/commands/tablebordercolorcommand.js +2 -2
- package/src/tableproperties/commands/tableborderstylecommand.js +2 -2
- package/src/tableproperties/commands/tableborderwidthcommand.js +2 -2
- package/src/tableproperties/commands/tableheightcommand.js +2 -2
- package/src/tableproperties/commands/tablepropertycommand.js +2 -2
- package/src/tableproperties/commands/tablewidthcommand.js +2 -2
- package/src/tableproperties/tablepropertiesediting.js +29 -21
- package/src/tableproperties/tablepropertiesui.js +1 -1
- package/src/tableproperties/ui/tablepropertiesview.js +11 -1
- package/src/tableproperties.js +1 -1
- package/src/tableselection.js +10 -9
- package/src/tabletoolbar.js +1 -1
- package/src/tableui.js +1 -1
- package/src/tableutils.js +311 -1
- package/src/tablewalker.js +1 -1
- package/src/ui/colorinputview.js +1 -1
- package/src/ui/formrowview.js +1 -1
- package/src/ui/inserttableview.js +1 -1
- package/src/utils/common.js +1 -1
- package/src/utils/structure.js +1 -1
- package/src/utils/table-properties.js +1 -1
- package/src/utils/ui/contextualballoon.js +1 -1
- package/src/utils/ui/table-properties.js +1 -1
- package/src/utils/ui/widget.js +1 -1
- package/theme/colorinput.css +1 -1
- package/theme/form.css +1 -1
- package/theme/formrow.css +1 -1
- package/theme/inserttable.css +1 -1
- package/theme/table.css +2 -2
- package/theme/tablecaption.css +1 -1
- package/theme/tablecellproperties.css +1 -1
- package/theme/tableediting.css +1 -1
- package/theme/tableform.css +1 -1
- package/theme/tableproperties.css +1 -1
- package/theme/tableselection.css +1 -1
- package/src/converters/table-heading-rows-refresh-post-fixer.js +0 -72
- package/src/utils/selection.js +0 -276
package/lang/translations/es.po
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2003-
|
|
1
|
+
# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# !!! IMPORTANT !!!
|
|
4
4
|
#
|
|
@@ -38,7 +38,7 @@ msgstr "Eliminar columna"
|
|
|
38
38
|
|
|
39
39
|
msgctxt "Label for the select the entire table column button."
|
|
40
40
|
msgid "Select column"
|
|
41
|
-
msgstr ""
|
|
41
|
+
msgstr "Seleccionar columna"
|
|
42
42
|
|
|
43
43
|
msgctxt "Label for the table column dropdown button."
|
|
44
44
|
msgid "Column"
|
|
@@ -62,7 +62,7 @@ msgstr "Eliminar fila"
|
|
|
62
62
|
|
|
63
63
|
msgctxt "Label for the select the entire table row button."
|
|
64
64
|
msgid "Select row"
|
|
65
|
-
msgstr ""
|
|
65
|
+
msgstr "Seleccionar fila"
|
|
66
66
|
|
|
67
67
|
msgctxt "Label for the table row dropdown button."
|
|
68
68
|
msgid "Row"
|
|
@@ -102,160 +102,160 @@ msgstr "Barra de herramientas de tabla"
|
|
|
102
102
|
|
|
103
103
|
msgctxt "The label describing the form allowing to specify the properties of a selected table."
|
|
104
104
|
msgid "Table properties"
|
|
105
|
-
msgstr ""
|
|
105
|
+
msgstr "Propiedades de tabla"
|
|
106
106
|
|
|
107
107
|
msgctxt "The label describing the form allowing to specify the properties of a selected table cell."
|
|
108
108
|
msgid "Cell properties"
|
|
109
|
-
msgstr ""
|
|
109
|
+
msgstr "Propiedades de celda"
|
|
110
110
|
|
|
111
111
|
msgctxt "The label describing a group of border–related form fields (border style, color, etc.)."
|
|
112
112
|
msgid "Border"
|
|
113
|
-
msgstr ""
|
|
113
|
+
msgstr "Borde"
|
|
114
114
|
|
|
115
115
|
msgctxt "The label for the dropdown that allows configuring the border style of a table or a table cell."
|
|
116
116
|
msgid "Style"
|
|
117
|
-
msgstr ""
|
|
117
|
+
msgstr "Estilo"
|
|
118
118
|
|
|
119
119
|
msgctxt "The label for the input that allows configuring the width of a table or a table cell or the width of a border."
|
|
120
120
|
msgid "Width"
|
|
121
|
-
msgstr ""
|
|
121
|
+
msgstr "Ancho"
|
|
122
122
|
|
|
123
123
|
msgctxt "The label for the input that allows configuring the height of a table or a table cell."
|
|
124
124
|
msgid "Height"
|
|
125
|
-
msgstr ""
|
|
125
|
+
msgstr "Altura"
|
|
126
126
|
|
|
127
127
|
msgctxt "The label for the input that allows configuring the border color of a table or a table cell."
|
|
128
128
|
msgid "Color"
|
|
129
|
-
msgstr ""
|
|
129
|
+
msgstr "Color"
|
|
130
130
|
|
|
131
131
|
msgctxt "The label for the input that allows configuring the background color of a table or a table cell."
|
|
132
132
|
msgid "Background"
|
|
133
|
-
msgstr ""
|
|
133
|
+
msgstr "Fondo"
|
|
134
134
|
|
|
135
135
|
msgctxt "The label for the input that allows configuring the padding of a table cell."
|
|
136
136
|
msgid "Padding"
|
|
137
|
-
msgstr ""
|
|
137
|
+
msgstr "Márgenes"
|
|
138
138
|
|
|
139
139
|
msgctxt "The label describing a group of form fields that allows setting dimensions of a table or a table cell."
|
|
140
140
|
msgid "Dimensions"
|
|
141
|
-
msgstr ""
|
|
141
|
+
msgstr "Dimensiones"
|
|
142
142
|
|
|
143
143
|
msgctxt "The label for the group of toolbars that allows configuring the text alignment in a table cell."
|
|
144
144
|
msgid "Table cell text alignment"
|
|
145
|
-
msgstr ""
|
|
145
|
+
msgstr "Alineación texto de celda"
|
|
146
146
|
|
|
147
147
|
msgctxt "The label for the toolbar that allows configuring the alignment of a table."
|
|
148
148
|
msgid "Alignment"
|
|
149
|
-
msgstr ""
|
|
149
|
+
msgstr "Alineación"
|
|
150
150
|
|
|
151
151
|
msgctxt "The label used by assistive technologies describing a toolbar that allows configuring the horizontal text alignment in a table cell."
|
|
152
152
|
msgid "Horizontal text alignment toolbar"
|
|
153
|
-
msgstr ""
|
|
153
|
+
msgstr "Alineación horizontal de texto"
|
|
154
154
|
|
|
155
155
|
msgctxt "The label used by assistive technologies describing a toolbar that allows configuring the vertical text alignment in a table cell."
|
|
156
156
|
msgid "Vertical text alignment toolbar"
|
|
157
|
-
msgstr ""
|
|
157
|
+
msgstr "Alineación vertical de texto"
|
|
158
158
|
|
|
159
159
|
msgctxt "The label used by assistive technologies describing a toolbar that allows configuring the alignment of a table."
|
|
160
160
|
msgid "Table alignment toolbar"
|
|
161
|
-
msgstr ""
|
|
161
|
+
msgstr "Alineación de tabla"
|
|
162
162
|
|
|
163
163
|
msgctxt "The label for the border style dropdown when no style is applied to a table or a table cell."
|
|
164
164
|
msgid "None"
|
|
165
|
-
msgstr ""
|
|
165
|
+
msgstr "Ninguno"
|
|
166
166
|
|
|
167
167
|
msgctxt "The label for the border style dropdown when the solid border is applied to a table or a table cell."
|
|
168
168
|
msgid "Solid"
|
|
169
|
-
msgstr ""
|
|
169
|
+
msgstr "Sólido"
|
|
170
170
|
|
|
171
171
|
msgctxt "The label for the border style dropdown when the dotted border is applied to a table or a table cell."
|
|
172
172
|
msgid "Dotted"
|
|
173
|
-
msgstr ""
|
|
173
|
+
msgstr "Línea de puntos"
|
|
174
174
|
|
|
175
175
|
msgctxt "The label for the border style dropdown when the dashed border is applied to a table or a table cell."
|
|
176
176
|
msgid "Dashed"
|
|
177
|
-
msgstr ""
|
|
177
|
+
msgstr "Línea discontinua"
|
|
178
178
|
|
|
179
179
|
msgctxt "The label for the border style dropdown when the double border is applied to a table or a table cell."
|
|
180
180
|
msgid "Double"
|
|
181
|
-
msgstr ""
|
|
181
|
+
msgstr "Doble línea"
|
|
182
182
|
|
|
183
183
|
msgctxt "The label for the border style dropdown when the groove border is applied to a table or a table cell."
|
|
184
184
|
msgid "Groove"
|
|
185
|
-
msgstr ""
|
|
185
|
+
msgstr "Bisel"
|
|
186
186
|
|
|
187
187
|
msgctxt "The label for the border style dropdown when the ridge border is applied to a table or a table cell."
|
|
188
188
|
msgid "Ridge"
|
|
189
|
-
msgstr ""
|
|
189
|
+
msgstr "Marco"
|
|
190
190
|
|
|
191
191
|
msgctxt "The label for the border style dropdown when the inset border is applied to a table or a table cell."
|
|
192
192
|
msgid "Inset"
|
|
193
|
-
msgstr ""
|
|
193
|
+
msgstr "Incrustación"
|
|
194
194
|
|
|
195
195
|
msgctxt "The label for the border style dropdown when the outset border is applied to a table or a table cell."
|
|
196
196
|
msgid "Outset"
|
|
197
|
-
msgstr ""
|
|
197
|
+
msgstr "Relieve"
|
|
198
198
|
|
|
199
199
|
msgctxt "The label used by assistive technologies describing a button that aligns the table cell text to the left."
|
|
200
200
|
msgid "Align cell text to the left"
|
|
201
|
-
msgstr ""
|
|
201
|
+
msgstr "Alinear texto de celda a la izquierda"
|
|
202
202
|
|
|
203
203
|
msgctxt "The label used by assistive technologies describing a button that aligns the table cell text to the center."
|
|
204
204
|
msgid "Align cell text to the center"
|
|
205
|
-
msgstr ""
|
|
205
|
+
msgstr "Centrar texto de celda"
|
|
206
206
|
|
|
207
207
|
msgctxt "The label used by assistive technologies describing a button that aligns the table cell text to the right."
|
|
208
208
|
msgid "Align cell text to the right"
|
|
209
|
-
msgstr ""
|
|
209
|
+
msgstr "Alinear texto de celda a la derecha"
|
|
210
210
|
|
|
211
211
|
msgctxt "The label used by assistive technologies describing a button that justifies the table cell text."
|
|
212
212
|
msgid "Justify cell text"
|
|
213
|
-
msgstr ""
|
|
213
|
+
msgstr "Justificar texto de celda"
|
|
214
214
|
|
|
215
215
|
msgctxt "The label used by assistive technologies describing a button that aligns the table cell text to the top."
|
|
216
216
|
msgid "Align cell text to the top"
|
|
217
|
-
msgstr ""
|
|
217
|
+
msgstr "Alinear texto de celda hacia arriba"
|
|
218
218
|
|
|
219
219
|
msgctxt "The label used by assistive technologies describing a button that aligns the table cell text to the middle."
|
|
220
220
|
msgid "Align cell text to the middle"
|
|
221
|
-
msgstr ""
|
|
221
|
+
msgstr "Alinear texto de celda al medio"
|
|
222
222
|
|
|
223
223
|
msgctxt "The label used by assistive technologies describing a button that aligns the table cell text to the bottom."
|
|
224
224
|
msgid "Align cell text to the bottom"
|
|
225
|
-
msgstr ""
|
|
225
|
+
msgstr "Alinear texto de celda hacia abajo"
|
|
226
226
|
|
|
227
227
|
msgctxt "The label used by assistive technologies describing a button that aligns the table to the left."
|
|
228
228
|
msgid "Align table to the left"
|
|
229
|
-
msgstr ""
|
|
229
|
+
msgstr "Alinear tabla a la izquierda"
|
|
230
230
|
|
|
231
231
|
msgctxt "The label used by assistive technologies describing a button that centers the table."
|
|
232
232
|
msgid "Center table"
|
|
233
|
-
msgstr ""
|
|
233
|
+
msgstr "Centrar tabla"
|
|
234
234
|
|
|
235
235
|
msgctxt "The label used by assistive technologies describing a button that aligns the table to the right."
|
|
236
236
|
msgid "Align table to the right"
|
|
237
|
-
msgstr ""
|
|
237
|
+
msgstr "Alinear tabla a la derecha"
|
|
238
238
|
|
|
239
239
|
msgctxt "The localized error string that can be displayed next to color (background, border) fields that have an invalid value"
|
|
240
240
|
msgid "The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\"."
|
|
241
|
-
msgstr ""
|
|
241
|
+
msgstr "El color es inválido. Intente con \"#FF0000\", \"rgb(255,0,0)\" o \"red\"."
|
|
242
242
|
|
|
243
243
|
msgctxt "The localized error string that can be displayed next to length (padding, border width) fields that have an invalid value."
|
|
244
244
|
msgid "The value is invalid. Try \"10px\" or \"2em\" or simply \"2\"."
|
|
245
|
-
msgstr ""
|
|
245
|
+
msgstr "El valor es inválido. Intente con \"10px\", \"2em\" o simplemente \"2\"."
|
|
246
246
|
|
|
247
247
|
msgctxt "The label used by assistive technologies describing a button that opens a color picker, where user can choose a configured color for a certain properties (eg.: background color, color, border-color etc.)."
|
|
248
248
|
msgid "Color picker"
|
|
249
|
-
msgstr ""
|
|
249
|
+
msgstr "Selector de color"
|
|
250
250
|
|
|
251
251
|
msgctxt "The button label for the table toolbar hiding caption attached to the table."
|
|
252
252
|
msgid "Toggle caption off"
|
|
253
|
-
msgstr ""
|
|
253
|
+
msgstr "Desactivar título"
|
|
254
254
|
|
|
255
255
|
msgctxt "The button label for the table toolbar showing caption attached to the table."
|
|
256
256
|
msgid "Toggle caption on"
|
|
257
|
-
msgstr ""
|
|
257
|
+
msgstr "Activar título"
|
|
258
258
|
|
|
259
259
|
msgctxt "The placeholder text for the table caption displayed when the caption is empty."
|
|
260
260
|
msgid "Enter table caption"
|
|
261
|
-
msgstr ""
|
|
261
|
+
msgstr "Ingresar título de tabla"
|
package/lang/translations/et.po
CHANGED
package/lang/translations/fa.po
CHANGED
package/lang/translations/fi.po
CHANGED
package/lang/translations/fr.po
CHANGED
package/lang/translations/gl.po
CHANGED
package/lang/translations/hi.po
CHANGED
package/lang/translations/hr.po
CHANGED
package/lang/translations/hu.po
CHANGED
package/lang/translations/id.po
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2003-
|
|
1
|
+
# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# !!! IMPORTANT !!!
|
|
4
4
|
#
|
|
@@ -162,23 +162,23 @@ msgstr ""
|
|
|
162
162
|
|
|
163
163
|
msgctxt "The label for the border style dropdown when no style is applied to a table or a table cell."
|
|
164
164
|
msgid "None"
|
|
165
|
-
msgstr ""
|
|
165
|
+
msgstr "Tidak ada"
|
|
166
166
|
|
|
167
167
|
msgctxt "The label for the border style dropdown when the solid border is applied to a table or a table cell."
|
|
168
168
|
msgid "Solid"
|
|
169
|
-
msgstr ""
|
|
169
|
+
msgstr "Garis utuh"
|
|
170
170
|
|
|
171
171
|
msgctxt "The label for the border style dropdown when the dotted border is applied to a table or a table cell."
|
|
172
172
|
msgid "Dotted"
|
|
173
|
-
msgstr ""
|
|
173
|
+
msgstr "Titik titik"
|
|
174
174
|
|
|
175
175
|
msgctxt "The label for the border style dropdown when the dashed border is applied to a table or a table cell."
|
|
176
176
|
msgid "Dashed"
|
|
177
|
-
msgstr ""
|
|
177
|
+
msgstr "Garis putus-putus"
|
|
178
178
|
|
|
179
179
|
msgctxt "The label for the border style dropdown when the double border is applied to a table or a table cell."
|
|
180
180
|
msgid "Double"
|
|
181
|
-
msgstr ""
|
|
181
|
+
msgstr "Ganda"
|
|
182
182
|
|
|
183
183
|
msgctxt "The label for the border style dropdown when the groove border is applied to a table or a table cell."
|
|
184
184
|
msgid "Groove"
|
|
@@ -238,11 +238,11 @@ msgstr ""
|
|
|
238
238
|
|
|
239
239
|
msgctxt "The localized error string that can be displayed next to color (background, border) fields that have an invalid value"
|
|
240
240
|
msgid "The color is invalid. Try \"#FF0000\" or \"rgb(255,0,0)\" or \"red\"."
|
|
241
|
-
msgstr ""
|
|
241
|
+
msgstr "Warna tidak valid. Coba \"#FF0000\" atau \"rgb(255,0,0)\" atau \"red\"."
|
|
242
242
|
|
|
243
243
|
msgctxt "The localized error string that can be displayed next to length (padding, border width) fields that have an invalid value."
|
|
244
244
|
msgid "The value is invalid. Try \"10px\" or \"2em\" or simply \"2\"."
|
|
245
|
-
msgstr ""
|
|
245
|
+
msgstr "Nilai tidak valid. Coba \"10px\" atau \"2em\" atau hanya \"2\"."
|
|
246
246
|
|
|
247
247
|
msgctxt "The label used by assistive technologies describing a button that opens a color picker, where user can choose a configured color for a certain properties (eg.: background color, color, border-color etc.)."
|
|
248
248
|
msgid "Color picker"
|
|
@@ -250,12 +250,12 @@ msgstr ""
|
|
|
250
250
|
|
|
251
251
|
msgctxt "The button label for the table toolbar hiding caption attached to the table."
|
|
252
252
|
msgid "Toggle caption off"
|
|
253
|
-
msgstr ""
|
|
253
|
+
msgstr "Sembunyikan keterangan"
|
|
254
254
|
|
|
255
255
|
msgctxt "The button label for the table toolbar showing caption attached to the table."
|
|
256
256
|
msgid "Toggle caption on"
|
|
257
|
-
msgstr ""
|
|
257
|
+
msgstr "Tampilkan keterangan"
|
|
258
258
|
|
|
259
259
|
msgctxt "The placeholder text for the table caption displayed when the caption is empty."
|
|
260
260
|
msgid "Enter table caption"
|
|
261
|
-
msgstr ""
|
|
261
|
+
msgstr "Masukkan keterangan tabel"
|
package/lang/translations/it.po
CHANGED
package/lang/translations/ja.po
CHANGED
package/lang/translations/ko.po
CHANGED
package/lang/translations/ku.po
CHANGED
package/lang/translations/lt.po
CHANGED
package/lang/translations/lv.po
CHANGED
package/lang/translations/nb.po
CHANGED
package/lang/translations/ne.po
CHANGED
package/lang/translations/nl.po
CHANGED
package/lang/translations/no.po
CHANGED
package/lang/translations/pl.po
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Copyright (c) 2003-
|
|
1
|
+
# Copyright (c) 2003-2022, CKSource Holding sp. z o.o. All rights reserved.
|
|
2
2
|
#
|
|
3
3
|
# !!! IMPORTANT !!!
|
|
4
4
|
#
|
|
@@ -250,12 +250,12 @@ msgstr "Seletor de cor"
|
|
|
250
250
|
|
|
251
251
|
msgctxt "The button label for the table toolbar hiding caption attached to the table."
|
|
252
252
|
msgid "Toggle caption off"
|
|
253
|
-
msgstr ""
|
|
253
|
+
msgstr "Desabilitar legenda"
|
|
254
254
|
|
|
255
255
|
msgctxt "The button label for the table toolbar showing caption attached to the table."
|
|
256
256
|
msgid "Toggle caption on"
|
|
257
|
-
msgstr ""
|
|
257
|
+
msgstr "Habilitar legenda"
|
|
258
258
|
|
|
259
259
|
msgctxt "The placeholder text for the table caption displayed when the caption is empty."
|
|
260
260
|
msgid "Enter table caption"
|
|
261
|
-
msgstr ""
|
|
261
|
+
msgstr "Inserir legenda da tabela"
|
package/lang/translations/ro.po
CHANGED
package/lang/translations/ru.po
CHANGED
package/lang/translations/sk.po
CHANGED
package/lang/translations/sq.po
CHANGED
package/lang/translations/sr.po
CHANGED
package/lang/translations/sv.po
CHANGED
package/lang/translations/th.po
CHANGED
package/lang/translations/tk.po
CHANGED
package/lang/translations/tr.po
CHANGED
package/lang/translations/ug.po
CHANGED
package/lang/translations/uk.po
CHANGED