@progress/kendo-angular-messages 1.41.0 → 1.42.0-develop.1

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 (33) hide show
  1. package/bin/kendo-translate.js +13 -19
  2. package/messages/calendar/calendar.sk-SK.yml +6 -6
  3. package/messages/colorgradient/colorgradient.sk-SK.yml +14 -14
  4. package/messages/colorpalette/colorpalette.sk-SK.yml +1 -1
  5. package/messages/colorpicker/colorpicker.sk-SK.yml +25 -25
  6. package/messages/datepicker/datepicker.sk-SK.yml +3 -3
  7. package/messages/datetimepicker/datetimepicker.sk-SK.yml +14 -14
  8. package/messages/dialog/dialog.sk-SK.yml +1 -1
  9. package/messages/dropdowns/dropdowns.sk-SK.yml +12 -12
  10. package/messages/editor/editor.sk-SK.yml +52 -52
  11. package/messages/fileselect/fileselect.sk-SK.yml +6 -6
  12. package/messages/filter/filter.sk-SK.yml +73 -36
  13. package/messages/flatcolorpicker/flatcolorpicker.sk-SK.yml +19 -19
  14. package/messages/gantt/gantt.sk-SK.yml +66 -66
  15. package/messages/grid/grid.sk-SK.yml +39 -39
  16. package/messages/label/label.sk-SK.yml +3 -3
  17. package/messages/notification/notification.sk-SK.yml +1 -1
  18. package/messages/pager/pager.sk-SK.yml +3 -3
  19. package/messages/pivotgrid/pivotgrid.sk-SK.yml +26 -28
  20. package/messages/rangeslider/rangeslider.sk-SK.yml +2 -3
  21. package/messages/scheduler/scheduler.sk-SK.yml +26 -25
  22. package/messages/signature/signature.sk-SK.yml +4 -4
  23. package/messages/slider/slider.sk-SK.yml +1 -2
  24. package/messages/splitbutton/splitbutton.sk-SK.yml +1 -1
  25. package/messages/tabstrip/tabstrip.sk-SK.yml +2 -2
  26. package/messages/textbox/textbox.sk-SK.yml +1 -1
  27. package/messages/timepicker/timepicker.sk-SK.yml +8 -8
  28. package/messages/toolbar/toolbar.sk-SK.yml +1 -1
  29. package/messages/tooltip/tooltip.sk-SK.yml +1 -1
  30. package/messages/treelist/treelist.sk-SK.yml +18 -18
  31. package/messages/upload/upload.sk-SK.yml +13 -13
  32. package/messages/window/window.sk-SK.yml +4 -4
  33. package/package.json +39 -66
@@ -13,39 +13,38 @@ const R = require('ramda');
13
13
  const args = (() => {
14
14
  const argparse = require('argparse');
15
15
  const parser = new argparse.ArgumentParser({
16
- version: '0.1.0',
17
- addHelp: true,
16
+ add_help: true,
18
17
  description: 'Populates Kendo UI for Angular messages in i18n message files'
19
18
  });
20
19
 
21
- parser.addArgument('file', {
20
+ parser.add_argument('file', {
22
21
  help: 'XLIFF file to process, e.g. "src/i18n/messages.en.xlf"',
23
22
  });
24
23
 
25
- parser.addArgument([ '-l', '--locale' ], {
24
+ parser.add_argument('-l', '--locale', {
26
25
  help: 'the locale ID, for example "en-US"',
27
26
  required: true
28
27
  });
29
28
 
30
- parser.addArgument([ '-f', '--force' ], {
29
+ parser.add_argument('-f', '--force', {
31
30
  help: 'overwrites existing translations',
32
- defaultValue: false,
33
- action: 'storeTrue'
31
+ default: false,
32
+ action: 'store_true'
34
33
  });
35
34
 
36
- parser.addArgument([ '-e', '--encoding' ], {
35
+ parser.add_argument('-e', '--encoding', {
37
36
  help: 'Specifies the message files encoding. Default is "utf-8".',
38
- defaultValue: 'utf-8'
37
+ default: 'utf-8'
39
38
  });
40
39
 
41
- return parser.parseArgs();
40
+ return parser.parse_args();
42
41
  })();
43
42
 
44
43
  const msgRoot = path.resolve(__dirname, '../messages');
45
44
 
46
45
  const langFiles = `/**/*.${args.locale}.yml`;
47
46
 
48
- const extendAll = R.reduce(R.mergeWith(R.merge), {});
47
+ const extendAll = R.reduce(R.mergeWith(R.mergeRight), {});
49
48
 
50
49
  const complete = (reject, resolve) => (error, result) => {
51
50
  error ? reject(error) : resolve(result);
@@ -64,17 +63,12 @@ const readFile = filename => new Task((reject, resolve) => {
64
63
  // parseYaml :: FileContent -> Task YML
65
64
  const parseYaml = data => new Task((reject, resolve) => {
66
65
  try {
67
- resolve(yaml.safeLoad(data));
66
+ resolve(yaml.load(data));
68
67
  } catch (e) {
69
68
  reject(e);
70
69
  }
71
70
  });
72
71
 
73
- // verifyFile :: [FilePath] -> Task Error [FilePath]
74
- const verifyFile = files => new Task((reject, resolve) => {
75
- files.length ? resolve(files) : reject(new Error(`Unable to locate '${args.file}' file`));
76
- });
77
-
78
72
  // parseXml :: FileContent -> Task XML
79
73
  const parseXml = data => new Task((reject, resolve) => {
80
74
  const doc = cheerio.load(data, { xmlMode: true, decodeEntities: false })
@@ -125,8 +119,8 @@ const translations = R.pipe(
125
119
 
126
120
  // mergeTranslations :: FilePath -> YML -> XML
127
121
  const mergeTranslations = path => translations => R.pipe(
128
- processFiles(parseXmlFile, verifyFile),
129
- R.chain(xmlFiles => safeTranslate(R.head(xmlFiles), translations))
122
+ parseXmlFile,
123
+ R.chain(xmlFile => safeTranslate(xmlFile, translations))
130
124
  )(path);
131
125
 
132
126
  const main = () => {
@@ -4,23 +4,23 @@ kendo:
4
4
  today: Dnes
5
5
 
6
6
  # The title of the previous button in the Classic calendar
7
- prevButtonTitle: Navigate to previous view
7
+ prevButtonTitle: Prejsť na predchádzajúce zobrazenie
8
8
 
9
9
  # The title of the next button in the Classic calendar
10
- nextButtonTitle: Navigate to next view
10
+ nextButtonTitle: Prejsť na nasledujúce zobrazenie
11
11
 
12
12
  # The title of the parent view button in the calendar header
13
- parentViewButtonTitle: Navigate to parent view
13
+ parentViewButtonTitle: Prejsť na vyššie zobrazenie
14
14
 
15
15
  multiviewcalendar:
16
16
  # The label for the today button in the calendar header
17
17
  today: Dnes
18
18
 
19
19
  # The label for the previous button in the Multiview calendar
20
- prevButtonTitle: Navigate to previous view
20
+ prevButtonTitle: Prejsť na predchádzajúce zobrazenie
21
21
 
22
22
  # The label for the next button in the Multiview calendar
23
- nextButtonTitle: Navigate to next view
23
+ nextButtonTitle: Prejsť na nasledujúce zobrazenie
24
24
 
25
25
  # The title of the parent view button in the Multiview calendar header
26
- parentViewButtonTitle: Navigate to parent view
26
+ parentViewButtonTitle: Prejsť na vyššie zobrazenie
@@ -1,43 +1,43 @@
1
1
  kendo:
2
2
  colorgradient:
3
3
  # The aria-label applied to the ColorGradient component when the value is empty
4
- colorGradientNoColor: Colorgradient no color chosen
4
+ colorGradientNoColor: Farebný prechod nebola zvolená žiadna farba
5
5
 
6
6
  # The title for the gradient color drag handle chooser
7
- colorGradientHandle: Choose color
7
+ colorGradientHandle: Vyberte farbu
8
8
 
9
9
  # The title for the clear button
10
- clearButton: Clear value
10
+ clearButton: Vymazať hodnotu
11
11
 
12
12
  # The title for the hue slider handle
13
- hueSliderHandle: Set hue
13
+ hueSliderHandle: Nastaviť odtieň
14
14
 
15
15
  # The title for the opacity slider handle
16
- opacitySliderHandle: Set opacity
16
+ opacitySliderHandle: Nastaviť nepriehľadnosť
17
17
 
18
18
  # The placeholder for the HEX color input
19
- hexInputPlaceholder: HEX Color
19
+ hexInputPlaceholder: HEX Farba
20
20
 
21
21
  # The placeholder for the red color input
22
- redInputPlaceholder: Red
22
+ redInputPlaceholder: Červená
23
23
 
24
24
  # The placeholder for the green color input
25
- greenInputPlaceholder: Green
25
+ greenInputPlaceholder: Zelená
26
26
 
27
27
  # The placeholder for the blue color input
28
- blueInputPlaceholder: Blue
28
+ blueInputPlaceholder: Modrá
29
29
 
30
30
  # The placeholder for the alpha input
31
- alphaInputPlaceholder: Alpha
31
+ alphaInputPlaceholder: Alfa
32
32
 
33
33
  # The label of the NumericTextBox representing the red color channel.
34
- redChannelLabel: Red channel
34
+ redChannelLabel: Červený kanál
35
35
 
36
36
  # The label of the NumericTextBox representing the green color channel.
37
- greenChannelLabel: Green channel
37
+ greenChannelLabel: Zelený kanál
38
38
 
39
39
  # The label of the NumericTextBox representing the blue color channel.
40
- blueChannelLabel: Blue channel
40
+ blueChannelLabel: Modrý kanál
41
41
 
42
42
  # The label of the NumericTextBox representing the alpha color channel.
43
- alphaChannelLabel: Alpha channel
43
+ alphaChannelLabel: Alfa kanál
@@ -1,4 +1,4 @@
1
1
  kendo:
2
2
  colorpalette:
3
3
  # The aria-label applied to the ColorPalette component when the value is empty
4
- colorPaletteNoColor: Colorpalette no color chosen
4
+ colorPaletteNoColor: Farebná paleta nebola zvolená žiadna farba
@@ -1,76 +1,76 @@
1
1
  kendo:
2
2
  colorpicker:
3
3
  # The aria-label applied to the ColorGradient component when the value is empty
4
- colorGradientNoColor: Colorgradient no color chosen
4
+ colorGradientNoColor: Farebný prechod nebola zvolená žiadna farba
5
5
 
6
6
  # The aria-label applied to the ColorPalette component when the value is empty
7
- colorPaletteNoColor: Colorpalette no color chosen
7
+ colorPaletteNoColor: Farebná paleta nebola zvolená žiadna farba
8
8
 
9
9
  # The aria-label applied to the ColorPicker component when the value is empty
10
- colorPickerNoColor: Colorpicker no color chosen
10
+ colorPickerNoColor: Výber farieb nebola zvolená žiadna farba
11
11
 
12
12
  # The aria-label applied to the FlatColorPicker component when the value is empty
13
- flatColorPickerNoColor: Flatcolorpicker no color chosen
13
+ flatColorPickerNoColor: Plochý výber farieb nebola zvolená žiadna farba
14
14
 
15
15
  # The title for the gradient color drag handle chooser
16
- colorGradientHandle: Choose color
16
+ colorGradientHandle: Vyberte farbu
17
17
 
18
18
  # The title for the clear button
19
- clearButton: Clear value
19
+ clearButton: Vymazať hodnotu
20
20
 
21
21
  # The title for the hue slider handle
22
- hueSliderHandle: Set hue
22
+ hueSliderHandle: Nastaviť odtieň
23
23
 
24
24
  # The title for the opacity slider handle
25
- opacitySliderHandle: Set opacity
25
+ opacitySliderHandle: Nastaviť nepriehľadnosť
26
26
 
27
27
  # The contrast ratio message for the contrast tool
28
- contrastRatio: Contrast ratio
28
+ contrastRatio: Kontrastný pomer
29
29
 
30
30
  # The placeholder for the HEX color input
31
- hexInputPlaceholder: HEX Color
31
+ hexInputPlaceholder: HEX Farba
32
32
 
33
33
  # The placeholder for the red color input
34
- redInputPlaceholder: Red
34
+ redInputPlaceholder: Červená
35
35
 
36
36
  # The placeholder for the green color input
37
- greenInputPlaceholder: Green
37
+ greenInputPlaceholder: Zelená
38
38
 
39
39
  # The placeholder for the blue color input
40
- blueInputPlaceholder: Blue
40
+ blueInputPlaceholder: Modrá
41
41
 
42
42
  # The placeholder for the alpha input
43
- alphaInputPlaceholder: Alpha
43
+ alphaInputPlaceholder: Alfa
44
44
 
45
45
  # The message for the selected color pane
46
- revertSelection: Revert selection
46
+ revertSelection: Vrátiť výber
47
47
 
48
48
  # The message for the color preview pane
49
- previewColor: Color preview
49
+ previewColor: Náhľad farby
50
50
 
51
51
  # The message for the gradient view button
52
- gradientView: Gradient view
52
+ gradientView: Zobraziť prechod
53
53
 
54
54
  # The message for the palette view button
55
- paletteView: Palette view
55
+ paletteView: Zobraziť paletu
56
56
 
57
57
  # The message for the input format toggle button
58
- formatButton: Change color format
58
+ formatButton: Zmeniť farebný formát
59
59
 
60
60
  # The message for the Apply action button
61
- applyButton: Apply
61
+ applyButton: Aplikovať
62
62
 
63
63
  # The message for the Cancel action button
64
- cancelButton: Cancel
64
+ cancelButton: Zrušiť
65
65
 
66
66
  # The label of the NumericTextBox representing the red color channel.
67
- redChannelLabel: Red channel
67
+ redChannelLabel: Červený kanál
68
68
 
69
69
  # The label of the NumericTextBox representing the green color channel.
70
- greenChannelLabel: Green channel
70
+ greenChannelLabel: Zelený kanál
71
71
 
72
72
  # The label of the NumericTextBox representing the blue color channel.
73
- blueChannelLabel: Blue channel
73
+ blueChannelLabel: Modrý kanál
74
74
 
75
75
  # The label of the NumericTextBox representing the alpha color channel.
76
- alphaChannelLabel: Alpha channel
76
+ alphaChannelLabel: Alfa kanál
@@ -4,10 +4,10 @@ kendo:
4
4
  today: Dnes
5
5
 
6
6
  # The label for the toggle button in the datepicker component
7
- toggle: Toggle calendar
7
+ toggle: Ukázať/schovať kalendár
8
8
 
9
9
  # The title of the previous button in the Classic calendar
10
- prevButtonTitle: Navigate to previous view
10
+ prevButtonTitle: Prejsť na predchádzajúce zobrazenie
11
11
 
12
12
  # The title of the next button in the Classic calendar
13
- nextButtonTitle: Navigate to next view
13
+ nextButtonTitle: Prejsť na nasledujúce zobrazenie
@@ -1,43 +1,43 @@
1
1
  kendo:
2
2
  datetimepicker:
3
3
  # The Date tab text in the datetimepicker popup header
4
- dateTab: Date
4
+ dateTab: Dátum
5
5
 
6
6
  # The label for the Date tab in the datetimepicker popup header
7
- dateTabLabel: Date tab
7
+ dateTabLabel: Záložka dátum
8
8
 
9
9
  # The Time tab text in the datetimepicker popup header
10
- timeTab: Time
10
+ timeTab: Čas
11
11
 
12
12
  # The label for the Time tab in the datetimepicker popup header
13
- timeTabLabel: Time tab
13
+ timeTabLabel: Záložka čas
14
14
 
15
15
  # The label for the toggle button in the datetimepicker component
16
- toggle: Toggle popup
16
+ toggle: Ukázať/schovať
17
17
 
18
18
  # The Accept button text in the datetimepicker component
19
- accept: Set
19
+ accept: Potvrdiť
20
20
 
21
21
  # The label for the Accept button in the datetimepicker component
22
- acceptLabel: Set
22
+ acceptLabel: Potvrdiť
23
23
 
24
24
  # The Cancel button text in the datetimepicker component
25
- cancel: Cancel
25
+ cancel: Zrušiť
26
26
 
27
27
  # The label for the Cancel button in the datetimepicker component
28
- cancelLabel: Cancel
28
+ cancelLabel: Zrušiť
29
29
 
30
30
  # The Now button text in the timepicker component
31
- now: NOW
31
+ now: Teraz
32
32
 
33
33
  # The label for the Now button in the timepicker component
34
- nowLabel: Select now
34
+ nowLabel: Vybrať aktuálny čas
35
35
 
36
36
  # The label for the today button in the calendar header
37
- today: TODAY
37
+ today: Dnes
38
38
 
39
39
  # The title of the previous button in the Classic calendar
40
- prevButtonTitle: Navigate to previous view
40
+ prevButtonTitle: Prejsť na predchádzajúce zobrazenie
41
41
 
42
42
  # The title of the next button in the Classic calendar
43
- nextButtonTitle: Navigate to next view
43
+ nextButtonTitle: Prejsť na nasledujúce zobrazenie
@@ -1,4 +1,4 @@
1
1
  kendo:
2
2
  dialog:
3
3
  # The title of the close button
4
- closeTitle: Close
4
+ closeTitle: Zavrieť
@@ -1,51 +1,51 @@
1
1
  kendo:
2
2
  autocomplete:
3
3
  # The text displayed in the popup when there are no items
4
- noDataText: No data found
4
+ noDataText: Nenašli sa žiadne údaje
5
5
 
6
6
  # The title of the clear button
7
- clearTitle: clear
7
+ clearTitle: Vyčistiť
8
8
 
9
9
  combobox:
10
10
  # The text displayed in the popup when there are no items
11
- noDataText: No data found
11
+ noDataText: Nenašli sa žiadne údaje
12
12
 
13
13
  # The title of the clear button
14
- clearTitle: clear
14
+ clearTitle: Vyčistiť
15
15
 
16
16
  # The text set as aria-label on the select button"
17
17
  selectButtonText: Select
18
18
 
19
19
  dropdownlist:
20
20
  # The text displayed in the popup when there are no items
21
- noDataText: No data found
21
+ noDataText: Nenašli sa žiadne údaje
22
22
 
23
23
  # The title of the clear button
24
- clearTitle: clear
24
+ clearTitle: Vyčistiť
25
25
 
26
26
  # The text set as aria-label on the select button"
27
27
  selectButtonText: Select
28
28
 
29
29
  dropdowntree:
30
30
  # The text displayed in the popup when there are no items
31
- noDataText: No data found
31
+ noDataText: Nenašli sa žiadne údaje
32
32
 
33
33
  # The title of the clear button
34
- clearTitle: clear
34
+ clearTitle: Vyčistiť
35
35
 
36
36
  # The text set as aria-label on the select button"
37
37
  selectButtonText: Select
38
38
 
39
39
  multicolumncombobox:
40
40
  # The text displayed in the popup when there are no items
41
- noDataText: No data found
41
+ noDataText: Nenašli sa žiadne údaje
42
42
 
43
43
  # The title of the clear button
44
- clearTitle: clear
44
+ clearTitle: Vyčistiť
45
45
 
46
46
  multiselect:
47
47
  # The text displayed in the popup when there are no items
48
- noDataText: No data found
48
+ noDataText: Nenašli sa žiadne údaje
49
49
 
50
50
  # The title of the clear button
51
- clearTitle: clear
51
+ clearTitle: Vyčistiť
@@ -1,163 +1,163 @@
1
1
  kendo:
2
2
  editor:
3
3
  # The title of the tool that aligns text in the center.
4
- alignCenter: Center text
4
+ alignCenter: Centrovať text
5
5
 
6
6
  # The title of the tool that justifies text both left and right.
7
- alignJustify: Justify
7
+ alignJustify: Zarovnať rovnako
8
8
 
9
9
  # The title of the tool that aligns text on the left.
10
- alignLeft: Align text left
10
+ alignLeft: Zarovnať naľavo
11
11
 
12
12
  # The title of the tool that aligns text on the right.
13
- alignRight: Align text right
13
+ alignRight: Zarovnať napravo
14
14
 
15
15
  # The title of the tool that changes the text background color.
16
- backColor: Background color
16
+ backColor: Farba pozadia
17
17
 
18
18
  # The title of the tool that makes text bold.
19
- bold: Bold
19
+ bold: Tučné
20
20
 
21
21
  # The title of the Clean Formatting tool.
22
- cleanFormatting: Clean formatting
22
+ cleanFormatting: Vyčistiť formátovanie
23
23
 
24
24
  # The title of the tool that creates hyperlinks.
25
- createLink: Insert link
25
+ createLink: Vložiť odkaz
26
26
 
27
27
  # The label of the **Apply** button in all editor dialogs.
28
- dialogApply: Apply
28
+ dialogApply: Aplikovať
29
29
 
30
30
  # The label of the **Cancel** button in all editor dialogs.
31
- dialogCancel: Cancel
31
+ dialogCancel: Zrušiť
32
32
 
33
33
  # The label of the **Insert** button in all editor dialogs.
34
- dialogInsert: Insert
34
+ dialogInsert: Vložiť
35
35
 
36
36
  # The label of the **Update** button in all editor dialogs.
37
- dialogUpdate: Update
37
+ dialogUpdate: Aktualizovať
38
38
 
39
39
  # The caption for the file text in the insertFile dialog.
40
40
  fileText: Text
41
41
 
42
42
  # The caption for the file Title in the insertFile dialog.
43
- fileTitle: Title
43
+ fileTitle: Názov
44
44
 
45
45
  # The caption for the file URL in the insertFile dialog.
46
- fileWebAddress: Web address
46
+ fileWebAddress: Webová adresa
47
47
 
48
48
  # The title of the tool that changes the text font.
49
- fontFamily: Select font family
49
+ fontFamily: Vybrať rodinu písma
50
50
 
51
51
  # The title of the tool that changes the text size.
52
- fontSize: Select font size
52
+ fontSize: Vybrať veľkosť písma
53
53
 
54
54
  # The title of the tool that changes the text color.
55
- foreColor: Color
55
+ foreColor: Farba
56
56
 
57
57
  # The title of the tool that lets users choose block formats.
58
- format: Format
58
+ format: Formát
59
59
 
60
60
  # The caption for the image alternate text in the insertImage dialog.
61
- imageAltText: Alternate text
61
+ imageAltText: Alternatívny text
62
62
 
63
63
  # The caption for the image height in the insertImage dialog.
64
- imageHeight: Height (px)
64
+ imageHeight: Výška (px)
65
65
 
66
66
  # The caption for the image URL in the insertImage dialog.
67
- imageWebAddress: Web address
67
+ imageWebAddress: Webová adresa
68
68
 
69
69
  # The caption for the image width in the insertImage dialog.
70
- imageWidth: Width (px)
70
+ imageWidth: Šírka (px)
71
71
 
72
72
  # The title of the tool that indents the content.
73
- indent: Indent
73
+ indent: Odsadiť
74
74
 
75
75
  # The title of the tool that inserts links to files.
76
- insertFile: Insert file
76
+ insertFile: Vložiť súbor
77
77
 
78
78
  # The title of the tool that inserts images.
79
- insertImage: Insert image
79
+ insertImage: Vložiť obrázok
80
80
 
81
81
  # The title of the tool that inserts an ordered list.
82
- insertOrderedList: Insert ordered list
82
+ insertOrderedList: Vložiť usporiadaný zoznam
83
83
 
84
84
  # The title of the tool that inserts an unordered list.
85
- insertUnorderedList: Insert unordered list
85
+ insertUnorderedList: Vložiť neusporiadaný zoznam
86
86
 
87
87
  # The title of the tool that makes text italicized.
88
- italic: Italic
88
+ italic: Kurzíva
89
89
 
90
90
  # The caption for the checkbox for opening the link in a new window in the createLink dialog.
91
- linkOpenInNewWindow: Open link in new window
91
+ linkOpenInNewWindow: Otvoriť odkaz v novom okne
92
92
 
93
93
  # The caption for the link text in the createLink dialog.
94
94
  linkText: Text
95
95
 
96
96
  # The caption for the link title in the createLink dialog.
97
- linkTitle: Title
97
+ linkTitle: Názov
98
98
 
99
99
  # The caption for the URL in the createLink dialog.
100
- linkWebAddress: Web address
100
+ linkWebAddress: Webová adresa
101
101
 
102
102
  # The title of the tool that outdents the content.
103
- outdent: Outdent
103
+ outdent: Predsadiť
104
104
 
105
105
  # The title of the tool that undos the last action.
106
- redo: Redo
106
+ redo: Urobiť znova
107
107
 
108
108
  # The title of the tool that strikes through text.
109
- strikethrough: Strikethrough
109
+ strikethrough: Prečiarknúť
110
110
 
111
111
  # The title of the tool that makes text subscript.
112
- subscript: Subscript
112
+ subscript: Dolný index
113
113
 
114
114
  # The title of the tool that makes text superscript.
115
- superscript: Superscript
115
+ superscript: Horný index
116
116
 
117
117
  # The title of the tool that underlines text.
118
- underline: Underline
118
+ underline: Podčiarknúť
119
119
 
120
120
  # The title of the tool that removes hyperlinks.
121
- unlink: Remove Link
121
+ unlink: Odstrániť odkaz
122
122
 
123
123
  # The title of the tool that undos the last action.
124
- undo: Undo
124
+ undo: Vrátiť späť
125
125
 
126
126
  # The title of the tool that shows the editor value as HTML.
127
- viewSource: View source
127
+ viewSource: Zobraziť zdroj
128
128
 
129
129
  # The title of the tool that inserts table.
130
- insertTable: Insert Table
130
+ insertTable: Vložiť tabuľku
131
131
 
132
132
  # The title of the tool that adds new column before currently selected column.
133
- addColumnBefore: Add column before
133
+ addColumnBefore: Pridať stĺpec pred
134
134
 
135
135
  # The title of the tool that adds new column after currently selected column.
136
- addColumnAfter: Add column after
136
+ addColumnAfter: Pridať stĺpec po
137
137
 
138
138
  # The title of the tool that adds new row before currently selected row.
139
- addRowBefore: Add row before
139
+ addRowBefore: Pridať riadok pred
140
140
 
141
141
  # The title of the tool that adds new row after currently selected row.
142
- addRowAfter: Add row after
142
+ addRowAfter: Pridať riadok po
143
143
 
144
144
  # The title of the tool that deletes a table column.
145
- deleteColumn: Delete column
145
+ deleteColumn: Odstrániť stĺpec
146
146
 
147
147
  # The title of the tool that deletes a table row.
148
- deleteRow: Delete row
148
+ deleteRow: Odstrániť riadok
149
149
 
150
150
  # The title of the tool that deletes a table.
151
- deleteTable: Delete table
151
+ deleteTable: Odstrániť tabuľku
152
152
 
153
153
  # The title of the tool that selects the editor's content.
154
- selectAll: Select All
154
+ selectAll: Vybrať všetky
155
155
 
156
156
  # The title of the tool that prints the editor's content.
157
- print: Print
157
+ print: Vytlačiť
158
158
 
159
159
  # The title of the tool that merges the currently selected cells.
160
- mergeCells: Merge cells
160
+ mergeCells: Spojiť bunky
161
161
 
162
162
  # The title of the tool that splits the currently selected cell.
163
- splitCell: Split cell
163
+ splitCell: Rozdeliť bunku
@@ -1,19 +1,19 @@
1
1
  kendo:
2
2
  fileselect:
3
3
  # The drop zone hint
4
- dropFilesHere: Drop files here to upload
4
+ dropFilesHere: Sem presuňte súbory na odovzdanie
5
5
 
6
6
  # The text for the invalid allowed extensions restriction message
7
- invalidFileExtension: File type not allowed.
7
+ invalidFileExtension: Typ súboru nie je povolený.
8
8
 
9
9
  # The text for the invalid max file size restriction message
10
- invalidMaxFileSize: File size too large.
10
+ invalidMaxFileSize: Veľkosť súboru je príliš veľká.
11
11
 
12
12
  # The text for the invalid min file size restriction message
13
- invalidMinFileSize: File size too small.
13
+ invalidMinFileSize: Veľkosť súboru je príliš malá.
14
14
 
15
15
  # The text for the Remove button
16
- remove: Remove
16
+ remove: Vymazať
17
17
 
18
18
  # The text for the Select button
19
- select: Select files...
19
+ select: Vybrať súbory...