view/js/bootstrap-wysihtml5/locales/bootstrap-wysihtml5.sk-SK.js   A
last analyzed

Complexity

Total Complexity 3
Complexity/F 1.5

Size

Lines of Code 53
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 3
eloc 41
c 0
b 0
f 0
dl 0
loc 53
rs 10
mnd 1
bc 1
fnc 2
bpm 0.5
cpm 1.5
noi 1
1
/**
2
 * Slovak translation for bootstrap-wysihtml5
3
 */
4
(function (factory) {
5
    if (typeof define === 'function' && define.amd) {
0 ignored issues
show
Bug introduced by
The variable define seems to be never declared. If this is a global, consider adding a /** global: define */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
6
        // AMD. Register as an anonymous module.
7
        define('bootstrap.wysihtml5.sk-SK', ['jquery', 'bootstrap.wysihtml5'], factory);
8
    } else {
9
        // Browser globals
10
        factory(jQuery);
11
    }
12
}(function($){
13
    $.fn.wysihtml5.locale["sk-SK"] = {
14
        font_styles: {
15
            normal: "Normálny text",
16
            h1: "Nadpis úrovne 1",
17
            h2: "Nadpis úrovne 2",
18
            h3: "Nadpis úrovne 3"
19
        },
20
        emphasis: {
21
            bold: "Tučné",
22
            italic: "Kurzíva",
23
            underline: "Podčiarknuté"
24
        },
25
        lists: {
26
            unordered: "Neusporiadaný zoznam",
27
            ordered: "Číslovaný zoznam",
28
            outdent: "Zväčšiť odsadenie",
29
            indent: "Zmenšiť odsadenie"
30
        },
31
        link: {
32
            insert: "Vložiť odkaz",
33
            cancel: "Zrušiť"
34
        },
35
        image: {
36
            insert: "Vložiť obrázok",
37
            cancel: "Zrušiť"
38
        },
39
        html: {
40
            edit: "Editovať HTML"
41
        },
42
        colours: {
43
            black: "Čierna",
44
            silver: "Strieborná",
45
            gray: "Šedá",
46
            maroon: "Bordová",
47
            red: "Červená",
48
            purple: "Fialová",
49
            green: "Zelená",
50
            olive: "Olivová",
51
            navy: "Tmavomodrá",
52
            blue: "Modrá",
53
            orange: "Oranžová"
54
        }
55
    };
56
}));
57