Blame view

bower_components/jsdatachecker/src/langs.js 2.56 KB
34789a0e   Renato De Donato   jsdatachecker ln,...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
  
  
  
  var JDC_LNG = {
  
      "key_declaretype": {
          "EN": "the column <%COL_NAME> is of type <%COL_TYPE>",
          "IT": "la colonna <%COL_NAME> è di tipo <%COL_TYPE>",
          "FR": "le colum <%COL_NAME> est de type <%COL_TYPE>",
          "NL": "de kolom <%COL_NAME> is van het type <%COL_TYPE>"
      },
  
      "key_notoftype_singular": {
          "EN": "a value is not <%COL_TYPE>",
          "IT": "un valore non è un <%COL_TYPE>",
          "FR": "une valeur est pas <%COL_TYPE> se trouvant",
          "NL": "een waarde is niet <%COL_TYPE>"
      },
  
      "key_notoftype_plural": {
          "EN": "%COL_ERRORS values are not <%COL_TYPE>",
          "IT": "%COL_ERRORS valori non sono di tipo <%COL_TYPE>",
          "FR": "les valeurs %COL_ERRORS sont du type <%COL_TYPE>",
          "NL": "%COL_ERRORS waarden niet <%COL_TYPE>"
      },
  
      "key_emptyvalue_singolar": {
          "EN": "the column <%COL_NAME> has an empty value",
          "IT": "la colonna <%COL_NAME> ha un valore vuoto",
          "FR": "la colonne <%COL_NAME> a une valeur vide",
          "NL": "de kolom <%COL_NAME> heeft een lege waarde"
      },
  
      "key_emptyvalue_plural": {
          "EN": "the column <%COL_NAME> has <%COL_NULLVALUES> empty values",
          "IT": "la colonna <%COL_NAME> ha <%COL_NULLVALUES> valori vuoti",
          "FR": "la colonne <%COL_NAME> a <%COL_NULLVALUES> valeurs vide",
          "NL": "de kolom <%COL_NAME> heeft <%COL_NULLVALUES> lege waarde"
      },
  
      "key_type": {
          "EN": "type",
          "IT": "tipo",
          "FR": "type",
          "NL": "type"
      },
  
      "key_subtype": {
          "EN": "subtype",
          "IT": "sottotipo",
          "FR": "sous-type",
          "NL": "subtype"
      },
  
      "key_typetext": {
          "EN": "text",
          "IT": "testo",
          "FR": "texte",
          "NL": "tekst"
      },
  
      "key_typenumber": {
          "EN": "number",
          "IT": "numero",
          "FR": "nombre",
          "NL": "aantal"
      },
  
      "key_typeobject": {
          "EN": "object",
          "IT": "oggetto",
          "FR": "objet",
          "NL": "voorwerp"
      },
  
      "key_typedatetime": {
          "EN": "date or time",
          "IT": "data o orario",
          "FR": "date ou l'heure",
          "NL": "datum of tijd"
      },
  
      "key_typeempty": {
          "EN": "empty",
          "IT": "vuoto",
          "FR": "vide",
          "NL": "leeg"
      },
  
      "key_typelatitude": {
          "EN": "latitude",
          "IT": "latitudine",
          "FR": "latitude",
          "NL": "breedtegraad"
      },
  
      "key_typelongitude": {
          "EN": "longitude",
          "IT": "longitudine",
          "FR": "longitude",
          "NL": "lengtegraad"
      }
  
  };