view/js/bootstrap-wysihtml5/locales/bootstrap-wysihtml5.cs-CZ.js   A
last analyzed

Complexity

Total Complexity 3
Complexity/F 1.5

Size

Lines of Code 56
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 3
eloc 44
c 0
b 0
f 0
dl 0
loc 56
rs 10
mnd 1
bc 1
fnc 2
bpm 0.5
cpm 1.5
noi 1
1
/**
2
 * Czech 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.cs-CZ', ['jquery', 'bootstrap.wysihtml5'], factory);
8
    } else {
9
        // Browser globals
10
        factory(jQuery);
11
    }
12
}(function($){
13
    $.fn.wysihtml5.locale["cs-CZ"] = {
14
        font_styles: {
15
            normal: "Normální text",
16
            h1: "Nadpis úrovně 1",
17
            h2: "Nadpis úrovně 2",
18
            h3: "Nadpis úrovně 3",
19
            h4: "Nadpis úrovně 4",
20
            h5: "Nadpis úrovně 5",
21
            h6: "Nadpis úrovně 6"
22
        },
23
        emphasis: {
24
            bold: "Tučné",
25
            italic: "Kurzíva",
26
            underline: "Podtržení"
27
        },
28
        lists: {
29
            unordered: "Seznam s odrážkami",
30
            ordered: "Číslovaný seznam",
31
            outdent: "Zvětšit odsazení",
32
            indent: "Zmenšit odsazení"
33
        },
34
        link: {
35
            insert: "Vložit odkaz",
36
            cancel: "Zrušit"
37
        },
38
        image: {
39
            insert: "Vložit obrázek",
40
            cancel: "Zrušit"
41
        },
42
        html: {
43
            edit: "Upravit HTML"
44
        },
45
        colours: {
46
            black: "Černá",
47
            silver: "Stříbrná",
48
            gray: "Šedá",
49
            maroon: "Vínová",
50
            red: "Červená",
51
            purple: "Fialová",
52
            green: "Zelená",
53
            olive: "Olivová",
54
            navy: "Tmavomodrá",
55
            blue: "Modrá",
56
            orange: "Oranžová"
57
        }
58
    };
59
}));
60