@bitrix24/b24ui-nuxt 0.4.3 → 0.4.4
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/dist/meta.cjs +50 -0
- package/dist/meta.d.cts +50 -0
- package/dist/meta.d.mts +50 -0
- package/dist/meta.d.ts +50 -0
- package/dist/meta.mjs +50 -0
- package/dist/module.json +1 -1
- package/dist/runtime/locale/ar.js +55 -0
- package/dist/runtime/locale/br.d.ts +2 -0
- package/dist/runtime/locale/br.js +54 -0
- package/dist/runtime/locale/de.d.ts +2 -0
- package/dist/runtime/locale/de.js +54 -0
- package/dist/runtime/locale/en.js +6 -0
- package/dist/runtime/locale/fr.d.ts +2 -0
- package/dist/runtime/locale/fr.js +54 -0
- package/dist/runtime/locale/id.d.ts +2 -0
- package/dist/runtime/locale/id.js +54 -0
- package/dist/runtime/locale/index.d.ts +44 -1
- package/dist/runtime/locale/index.js +17 -1
- package/dist/runtime/locale/it.d.ts +2 -0
- package/dist/runtime/locale/it.js +54 -0
- package/dist/runtime/locale/ja.d.ts +2 -0
- package/dist/runtime/locale/ja.js +54 -0
- package/dist/runtime/locale/kz.d.ts +2 -0
- package/dist/runtime/locale/kz.js +54 -0
- package/dist/runtime/locale/la.d.ts +2 -0
- package/dist/runtime/locale/{es.js → la.js} +7 -1
- package/dist/runtime/locale/ms.d.ts +2 -0
- package/dist/runtime/locale/ms.js +54 -0
- package/dist/runtime/locale/pl.d.ts +2 -0
- package/dist/runtime/locale/pl.js +54 -0
- package/dist/runtime/locale/ru.js +6 -0
- package/dist/runtime/locale/sc.d.ts +2 -0
- package/dist/runtime/locale/sc.js +54 -0
- package/dist/runtime/locale/tc.d.ts +2 -0
- package/dist/runtime/locale/tc.js +54 -0
- package/dist/runtime/locale/th.d.ts +2 -0
- package/dist/runtime/locale/th.js +54 -0
- package/dist/runtime/locale/tr.d.ts +2 -0
- package/dist/runtime/locale/tr.js +54 -0
- package/dist/runtime/locale/ua.d.ts +2 -0
- package/dist/runtime/locale/ua.js +54 -0
- package/dist/runtime/locale/vn.d.ts +2 -0
- package/dist/runtime/locale/vn.js +54 -0
- package/dist/runtime/types/locale.d.ts +6 -0
- package/package.json +1 -1
- /package/dist/runtime/locale/{es.d.ts → ar.d.ts} +0 -0
package/dist/meta.cjs
CHANGED
|
@@ -2146,6 +2146,56 @@ const B24UIMeta = {
|
|
|
2146
2146
|
}
|
|
2147
2147
|
}
|
|
2148
2148
|
},
|
|
2149
|
+
"calendar": {
|
|
2150
|
+
"name": "calendar",
|
|
2151
|
+
"global": false,
|
|
2152
|
+
"description": "",
|
|
2153
|
+
"tags": [],
|
|
2154
|
+
"required": true,
|
|
2155
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2156
|
+
"schema": {
|
|
2157
|
+
"kind": "object",
|
|
2158
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2159
|
+
"schema": {
|
|
2160
|
+
"prevYear": {
|
|
2161
|
+
"name": "prevYear",
|
|
2162
|
+
"global": false,
|
|
2163
|
+
"description": "",
|
|
2164
|
+
"tags": [],
|
|
2165
|
+
"required": true,
|
|
2166
|
+
"type": "string",
|
|
2167
|
+
"schema": "string"
|
|
2168
|
+
},
|
|
2169
|
+
"nextYear": {
|
|
2170
|
+
"name": "nextYear",
|
|
2171
|
+
"global": false,
|
|
2172
|
+
"description": "",
|
|
2173
|
+
"tags": [],
|
|
2174
|
+
"required": true,
|
|
2175
|
+
"type": "string",
|
|
2176
|
+
"schema": "string"
|
|
2177
|
+
},
|
|
2178
|
+
"prevMonth": {
|
|
2179
|
+
"name": "prevMonth",
|
|
2180
|
+
"global": false,
|
|
2181
|
+
"description": "",
|
|
2182
|
+
"tags": [],
|
|
2183
|
+
"required": true,
|
|
2184
|
+
"type": "string",
|
|
2185
|
+
"schema": "string"
|
|
2186
|
+
},
|
|
2187
|
+
"nextMonth": {
|
|
2188
|
+
"name": "nextMonth",
|
|
2189
|
+
"global": false,
|
|
2190
|
+
"description": "",
|
|
2191
|
+
"tags": [],
|
|
2192
|
+
"required": true,
|
|
2193
|
+
"type": "string",
|
|
2194
|
+
"schema": "string"
|
|
2195
|
+
}
|
|
2196
|
+
}
|
|
2197
|
+
}
|
|
2198
|
+
},
|
|
2149
2199
|
"inputNumber": {
|
|
2150
2200
|
"name": "inputNumber",
|
|
2151
2201
|
"global": false,
|
package/dist/meta.d.cts
CHANGED
|
@@ -2144,6 +2144,56 @@ var B24UIMeta = {
|
|
|
2144
2144
|
}
|
|
2145
2145
|
}
|
|
2146
2146
|
},
|
|
2147
|
+
"calendar": {
|
|
2148
|
+
"name": "calendar",
|
|
2149
|
+
"global": false,
|
|
2150
|
+
"description": "",
|
|
2151
|
+
"tags": [],
|
|
2152
|
+
"required": true,
|
|
2153
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2154
|
+
"schema": {
|
|
2155
|
+
"kind": "object",
|
|
2156
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2157
|
+
"schema": {
|
|
2158
|
+
"prevYear": {
|
|
2159
|
+
"name": "prevYear",
|
|
2160
|
+
"global": false,
|
|
2161
|
+
"description": "",
|
|
2162
|
+
"tags": [],
|
|
2163
|
+
"required": true,
|
|
2164
|
+
"type": "string",
|
|
2165
|
+
"schema": "string"
|
|
2166
|
+
},
|
|
2167
|
+
"nextYear": {
|
|
2168
|
+
"name": "nextYear",
|
|
2169
|
+
"global": false,
|
|
2170
|
+
"description": "",
|
|
2171
|
+
"tags": [],
|
|
2172
|
+
"required": true,
|
|
2173
|
+
"type": "string",
|
|
2174
|
+
"schema": "string"
|
|
2175
|
+
},
|
|
2176
|
+
"prevMonth": {
|
|
2177
|
+
"name": "prevMonth",
|
|
2178
|
+
"global": false,
|
|
2179
|
+
"description": "",
|
|
2180
|
+
"tags": [],
|
|
2181
|
+
"required": true,
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"schema": "string"
|
|
2184
|
+
},
|
|
2185
|
+
"nextMonth": {
|
|
2186
|
+
"name": "nextMonth",
|
|
2187
|
+
"global": false,
|
|
2188
|
+
"description": "",
|
|
2189
|
+
"tags": [],
|
|
2190
|
+
"required": true,
|
|
2191
|
+
"type": "string",
|
|
2192
|
+
"schema": "string"
|
|
2193
|
+
}
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2147
2197
|
"inputNumber": {
|
|
2148
2198
|
"name": "inputNumber",
|
|
2149
2199
|
"global": false,
|
package/dist/meta.d.mts
CHANGED
|
@@ -2144,6 +2144,56 @@ var B24UIMeta = {
|
|
|
2144
2144
|
}
|
|
2145
2145
|
}
|
|
2146
2146
|
},
|
|
2147
|
+
"calendar": {
|
|
2148
|
+
"name": "calendar",
|
|
2149
|
+
"global": false,
|
|
2150
|
+
"description": "",
|
|
2151
|
+
"tags": [],
|
|
2152
|
+
"required": true,
|
|
2153
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2154
|
+
"schema": {
|
|
2155
|
+
"kind": "object",
|
|
2156
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2157
|
+
"schema": {
|
|
2158
|
+
"prevYear": {
|
|
2159
|
+
"name": "prevYear",
|
|
2160
|
+
"global": false,
|
|
2161
|
+
"description": "",
|
|
2162
|
+
"tags": [],
|
|
2163
|
+
"required": true,
|
|
2164
|
+
"type": "string",
|
|
2165
|
+
"schema": "string"
|
|
2166
|
+
},
|
|
2167
|
+
"nextYear": {
|
|
2168
|
+
"name": "nextYear",
|
|
2169
|
+
"global": false,
|
|
2170
|
+
"description": "",
|
|
2171
|
+
"tags": [],
|
|
2172
|
+
"required": true,
|
|
2173
|
+
"type": "string",
|
|
2174
|
+
"schema": "string"
|
|
2175
|
+
},
|
|
2176
|
+
"prevMonth": {
|
|
2177
|
+
"name": "prevMonth",
|
|
2178
|
+
"global": false,
|
|
2179
|
+
"description": "",
|
|
2180
|
+
"tags": [],
|
|
2181
|
+
"required": true,
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"schema": "string"
|
|
2184
|
+
},
|
|
2185
|
+
"nextMonth": {
|
|
2186
|
+
"name": "nextMonth",
|
|
2187
|
+
"global": false,
|
|
2188
|
+
"description": "",
|
|
2189
|
+
"tags": [],
|
|
2190
|
+
"required": true,
|
|
2191
|
+
"type": "string",
|
|
2192
|
+
"schema": "string"
|
|
2193
|
+
}
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2147
2197
|
"inputNumber": {
|
|
2148
2198
|
"name": "inputNumber",
|
|
2149
2199
|
"global": false,
|
package/dist/meta.d.ts
CHANGED
|
@@ -2144,6 +2144,56 @@ var B24UIMeta = {
|
|
|
2144
2144
|
}
|
|
2145
2145
|
}
|
|
2146
2146
|
},
|
|
2147
|
+
"calendar": {
|
|
2148
|
+
"name": "calendar",
|
|
2149
|
+
"global": false,
|
|
2150
|
+
"description": "",
|
|
2151
|
+
"tags": [],
|
|
2152
|
+
"required": true,
|
|
2153
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2154
|
+
"schema": {
|
|
2155
|
+
"kind": "object",
|
|
2156
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2157
|
+
"schema": {
|
|
2158
|
+
"prevYear": {
|
|
2159
|
+
"name": "prevYear",
|
|
2160
|
+
"global": false,
|
|
2161
|
+
"description": "",
|
|
2162
|
+
"tags": [],
|
|
2163
|
+
"required": true,
|
|
2164
|
+
"type": "string",
|
|
2165
|
+
"schema": "string"
|
|
2166
|
+
},
|
|
2167
|
+
"nextYear": {
|
|
2168
|
+
"name": "nextYear",
|
|
2169
|
+
"global": false,
|
|
2170
|
+
"description": "",
|
|
2171
|
+
"tags": [],
|
|
2172
|
+
"required": true,
|
|
2173
|
+
"type": "string",
|
|
2174
|
+
"schema": "string"
|
|
2175
|
+
},
|
|
2176
|
+
"prevMonth": {
|
|
2177
|
+
"name": "prevMonth",
|
|
2178
|
+
"global": false,
|
|
2179
|
+
"description": "",
|
|
2180
|
+
"tags": [],
|
|
2181
|
+
"required": true,
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"schema": "string"
|
|
2184
|
+
},
|
|
2185
|
+
"nextMonth": {
|
|
2186
|
+
"name": "nextMonth",
|
|
2187
|
+
"global": false,
|
|
2188
|
+
"description": "",
|
|
2189
|
+
"tags": [],
|
|
2190
|
+
"required": true,
|
|
2191
|
+
"type": "string",
|
|
2192
|
+
"schema": "string"
|
|
2193
|
+
}
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2147
2197
|
"inputNumber": {
|
|
2148
2198
|
"name": "inputNumber",
|
|
2149
2199
|
"global": false,
|
package/dist/meta.mjs
CHANGED
|
@@ -2144,6 +2144,56 @@ const B24UIMeta = {
|
|
|
2144
2144
|
}
|
|
2145
2145
|
}
|
|
2146
2146
|
},
|
|
2147
|
+
"calendar": {
|
|
2148
|
+
"name": "calendar",
|
|
2149
|
+
"global": false,
|
|
2150
|
+
"description": "",
|
|
2151
|
+
"tags": [],
|
|
2152
|
+
"required": true,
|
|
2153
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2154
|
+
"schema": {
|
|
2155
|
+
"kind": "object",
|
|
2156
|
+
"type": "{ prevYear: string; nextYear: string; prevMonth: string; nextMonth: string; }",
|
|
2157
|
+
"schema": {
|
|
2158
|
+
"prevYear": {
|
|
2159
|
+
"name": "prevYear",
|
|
2160
|
+
"global": false,
|
|
2161
|
+
"description": "",
|
|
2162
|
+
"tags": [],
|
|
2163
|
+
"required": true,
|
|
2164
|
+
"type": "string",
|
|
2165
|
+
"schema": "string"
|
|
2166
|
+
},
|
|
2167
|
+
"nextYear": {
|
|
2168
|
+
"name": "nextYear",
|
|
2169
|
+
"global": false,
|
|
2170
|
+
"description": "",
|
|
2171
|
+
"tags": [],
|
|
2172
|
+
"required": true,
|
|
2173
|
+
"type": "string",
|
|
2174
|
+
"schema": "string"
|
|
2175
|
+
},
|
|
2176
|
+
"prevMonth": {
|
|
2177
|
+
"name": "prevMonth",
|
|
2178
|
+
"global": false,
|
|
2179
|
+
"description": "",
|
|
2180
|
+
"tags": [],
|
|
2181
|
+
"required": true,
|
|
2182
|
+
"type": "string",
|
|
2183
|
+
"schema": "string"
|
|
2184
|
+
},
|
|
2185
|
+
"nextMonth": {
|
|
2186
|
+
"name": "nextMonth",
|
|
2187
|
+
"global": false,
|
|
2188
|
+
"description": "",
|
|
2189
|
+
"tags": [],
|
|
2190
|
+
"required": true,
|
|
2191
|
+
"type": "string",
|
|
2192
|
+
"schema": "string"
|
|
2193
|
+
}
|
|
2194
|
+
}
|
|
2195
|
+
}
|
|
2196
|
+
},
|
|
2147
2197
|
"inputNumber": {
|
|
2148
2198
|
"name": "inputNumber",
|
|
2149
2199
|
"global": false,
|
package/dist/module.json
CHANGED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { defineLocale } from "../composables/defineLocale.js";
|
|
2
|
+
export default defineLocale({
|
|
3
|
+
name: "\u0639\u0631\u0628\u064A,",
|
|
4
|
+
code: "ar",
|
|
5
|
+
dir: "rtl",
|
|
6
|
+
messages: {
|
|
7
|
+
inputMenu: {
|
|
8
|
+
noMatch: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C \u0645\u0637\u0627\u0628\u0642\u0629",
|
|
9
|
+
noData: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0628\u064A\u0627\u0646\u0627\u062A",
|
|
10
|
+
create: '\u0625\u0646\u0634\u0627\u0621 "{label}"'
|
|
11
|
+
},
|
|
12
|
+
calendar: {
|
|
13
|
+
prevYear: "\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629",
|
|
14
|
+
nextYear: "\u0627\u0644\u0633\u0646\u0629 \u0627\u0644\u0645\u0642\u0628\u0644\u0629",
|
|
15
|
+
prevMonth: "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u0633\u0627\u0628\u0642",
|
|
16
|
+
nextMonth: "\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u0645\u0642\u0628\u0644"
|
|
17
|
+
},
|
|
18
|
+
inputNumber: {
|
|
19
|
+
increment: "\u0632\u064A\u0627\u062F\u0629",
|
|
20
|
+
decrement: "\u062A\u0642\u0644\u064A\u0644"
|
|
21
|
+
},
|
|
22
|
+
commandPalette: {
|
|
23
|
+
placeholder: "\u0627\u0643\u062A\u0628 \u0623\u0645\u0631\u064B\u0627 \u0623\u0648 \u0627\u0628\u062D\u062B...",
|
|
24
|
+
noMatch: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C \u0645\u0637\u0627\u0628\u0642\u0629",
|
|
25
|
+
noData: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0628\u064A\u0627\u0646\u0627\u062A",
|
|
26
|
+
close: "\u0625\u063A\u0644\u0627\u0642"
|
|
27
|
+
},
|
|
28
|
+
selectMenu: {
|
|
29
|
+
noMatch: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C \u0645\u0637\u0627\u0628\u0642\u0629",
|
|
30
|
+
noData: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0628\u064A\u0627\u0646\u0627\u062A",
|
|
31
|
+
create: '\u0625\u0646\u0634\u0627\u0621 "{label}"',
|
|
32
|
+
search: "\u0628\u062D\u062B..."
|
|
33
|
+
},
|
|
34
|
+
toast: {
|
|
35
|
+
close: "\u0625\u063A\u0644\u0627\u0642"
|
|
36
|
+
},
|
|
37
|
+
carousel: {
|
|
38
|
+
prev: "\u0627\u0644\u0633\u0627\u0628\u0642",
|
|
39
|
+
next: "\u0627\u0644\u062A\u0627\u0644\u064A",
|
|
40
|
+
goto: "\u0627\u0644\u0630\u0647\u0627\u0628 \u0625\u0644\u064A \u0634\u0631\u064A\u062D\u0629 {slide}"
|
|
41
|
+
},
|
|
42
|
+
modal: {
|
|
43
|
+
close: "\u0625\u063A\u0644\u0627\u0642"
|
|
44
|
+
},
|
|
45
|
+
slideover: {
|
|
46
|
+
close: "\u0625\u063A\u0644\u0627\u0642"
|
|
47
|
+
},
|
|
48
|
+
alert: {
|
|
49
|
+
close: "\u0625\u063A\u0644\u0627\u0642"
|
|
50
|
+
},
|
|
51
|
+
table: {
|
|
52
|
+
noData: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0628\u064A\u0627\u0646\u0627\u062A"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
});
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { defineLocale } from "../composables/defineLocale.js";
|
|
2
|
+
export default defineLocale({
|
|
3
|
+
name: "Portugu\xEAs (Brasil)",
|
|
4
|
+
code: "br",
|
|
5
|
+
messages: {
|
|
6
|
+
inputMenu: {
|
|
7
|
+
noMatch: "Nenhum dado correspondente",
|
|
8
|
+
noData: "Nenhum dado",
|
|
9
|
+
create: 'Criar "{label}"'
|
|
10
|
+
},
|
|
11
|
+
calendar: {
|
|
12
|
+
prevYear: "Ano anterior",
|
|
13
|
+
nextYear: "Pr\xF3ximo ano",
|
|
14
|
+
prevMonth: "M\xEAs anterior",
|
|
15
|
+
nextMonth: "Pr\xF3ximo m\xEAs"
|
|
16
|
+
},
|
|
17
|
+
inputNumber: {
|
|
18
|
+
increment: "Incrementar",
|
|
19
|
+
decrement: "Decrementar"
|
|
20
|
+
},
|
|
21
|
+
commandPalette: {
|
|
22
|
+
placeholder: "Digite um comando ou pesquise...",
|
|
23
|
+
noMatch: "Nenhum dado correspondente",
|
|
24
|
+
noData: "Nenhum dado",
|
|
25
|
+
close: "Fechar"
|
|
26
|
+
},
|
|
27
|
+
selectMenu: {
|
|
28
|
+
noMatch: "Nenhum dado correspondente",
|
|
29
|
+
noData: "Nenhum dado",
|
|
30
|
+
create: 'Criar "{label}"',
|
|
31
|
+
search: "Pesquisar..."
|
|
32
|
+
},
|
|
33
|
+
toast: {
|
|
34
|
+
close: "Fechar"
|
|
35
|
+
},
|
|
36
|
+
carousel: {
|
|
37
|
+
prev: "Anterior",
|
|
38
|
+
next: "Pr\xF3ximo",
|
|
39
|
+
goto: "Ir para a slide {slide}"
|
|
40
|
+
},
|
|
41
|
+
modal: {
|
|
42
|
+
close: "Fechar"
|
|
43
|
+
},
|
|
44
|
+
slideover: {
|
|
45
|
+
close: "Fechar"
|
|
46
|
+
},
|
|
47
|
+
alert: {
|
|
48
|
+
close: "Fechar"
|
|
49
|
+
},
|
|
50
|
+
table: {
|
|
51
|
+
noData: "Nenhum dado"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
});
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { defineLocale } from "../composables/defineLocale.js";
|
|
2
|
+
export default defineLocale({
|
|
3
|
+
name: "Deutsch",
|
|
4
|
+
code: "de",
|
|
5
|
+
messages: {
|
|
6
|
+
inputMenu: {
|
|
7
|
+
noMatch: "Nichts gefunden",
|
|
8
|
+
noData: "Keine Daten",
|
|
9
|
+
create: '"{label}" erstellen'
|
|
10
|
+
},
|
|
11
|
+
calendar: {
|
|
12
|
+
prevYear: "Vorheriges Jahr",
|
|
13
|
+
nextYear: "N\xE4chstes Jahr",
|
|
14
|
+
prevMonth: "Vorheriger Monat",
|
|
15
|
+
nextMonth: "N\xE4chster Monat"
|
|
16
|
+
},
|
|
17
|
+
inputNumber: {
|
|
18
|
+
increment: "Erh\xF6hen",
|
|
19
|
+
decrement: "Verringern"
|
|
20
|
+
},
|
|
21
|
+
commandPalette: {
|
|
22
|
+
placeholder: "Geben Sie einen Befehl ein oder suchen Sie...",
|
|
23
|
+
noMatch: "Nichts gefunden",
|
|
24
|
+
noData: "Keine Daten",
|
|
25
|
+
close: "Schlie\xDFen"
|
|
26
|
+
},
|
|
27
|
+
selectMenu: {
|
|
28
|
+
noMatch: "Nichts gefunden",
|
|
29
|
+
noData: "Keine Daten",
|
|
30
|
+
create: '"{label}" erstellen',
|
|
31
|
+
search: "Suchen..."
|
|
32
|
+
},
|
|
33
|
+
toast: {
|
|
34
|
+
close: "Schlie\xDFen"
|
|
35
|
+
},
|
|
36
|
+
carousel: {
|
|
37
|
+
prev: "Zur\xFCck",
|
|
38
|
+
next: "Weiter",
|
|
39
|
+
goto: "Gehe zu {slide}"
|
|
40
|
+
},
|
|
41
|
+
modal: {
|
|
42
|
+
close: "Schlie\xDFen"
|
|
43
|
+
},
|
|
44
|
+
slideover: {
|
|
45
|
+
close: "Schlie\xDFen"
|
|
46
|
+
},
|
|
47
|
+
alert: {
|
|
48
|
+
close: "Schlie\xDFen"
|
|
49
|
+
},
|
|
50
|
+
table: {
|
|
51
|
+
noData: "Keine Daten"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
});
|
|
@@ -8,6 +8,12 @@ export default defineLocale({
|
|
|
8
8
|
noData: "No data",
|
|
9
9
|
create: 'Create "{label}"'
|
|
10
10
|
},
|
|
11
|
+
calendar: {
|
|
12
|
+
prevYear: "Previous year",
|
|
13
|
+
nextYear: "Next year",
|
|
14
|
+
prevMonth: "Previous month",
|
|
15
|
+
nextMonth: "Next month"
|
|
16
|
+
},
|
|
11
17
|
inputNumber: {
|
|
12
18
|
increment: "Increment",
|
|
13
19
|
decrement: "Decrement"
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { defineLocale } from "../composables/defineLocale.js";
|
|
2
|
+
export default defineLocale({
|
|
3
|
+
name: "Fran\xE7ais",
|
|
4
|
+
code: "fr",
|
|
5
|
+
messages: {
|
|
6
|
+
inputMenu: {
|
|
7
|
+
noMatch: "Aucune donn\xE9e correspondante",
|
|
8
|
+
noData: "Aucune donn\xE9e",
|
|
9
|
+
create: 'Cr\xE9er "{label}"'
|
|
10
|
+
},
|
|
11
|
+
calendar: {
|
|
12
|
+
prevYear: "Ann\xE9e pr\xE9c\xE9dente",
|
|
13
|
+
nextYear: "Ann\xE9e suivante",
|
|
14
|
+
prevMonth: "Mois pr\xE9c\xE9dent",
|
|
15
|
+
nextMonth: "Mois suivant"
|
|
16
|
+
},
|
|
17
|
+
inputNumber: {
|
|
18
|
+
increment: "Augmenter",
|
|
19
|
+
decrement: "Diminuer"
|
|
20
|
+
},
|
|
21
|
+
commandPalette: {
|
|
22
|
+
placeholder: "Tapez une commande ou recherchez...",
|
|
23
|
+
noMatch: "Aucune donn\xE9e correspondante",
|
|
24
|
+
noData: "Aucune donn\xE9e",
|
|
25
|
+
close: "Fermer"
|
|
26
|
+
},
|
|
27
|
+
selectMenu: {
|
|
28
|
+
noMatch: "Aucune donn\xE9e correspondante",
|
|
29
|
+
noData: "Aucune donn\xE9e",
|
|
30
|
+
create: 'Cr\xE9er "{label}"',
|
|
31
|
+
search: "Rechercher..."
|
|
32
|
+
},
|
|
33
|
+
toast: {
|
|
34
|
+
close: "Fermer"
|
|
35
|
+
},
|
|
36
|
+
carousel: {
|
|
37
|
+
prev: "Pr\xE9c\xE9dent",
|
|
38
|
+
next: "Suivant",
|
|
39
|
+
goto: "Aller \xE0 {slide}"
|
|
40
|
+
},
|
|
41
|
+
modal: {
|
|
42
|
+
close: "Fermer"
|
|
43
|
+
},
|
|
44
|
+
slideover: {
|
|
45
|
+
close: "Fermer"
|
|
46
|
+
},
|
|
47
|
+
alert: {
|
|
48
|
+
close: "Fermer"
|
|
49
|
+
},
|
|
50
|
+
table: {
|
|
51
|
+
noData: "Aucune donn\xE9e"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
});
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { defineLocale } from "../composables/defineLocale.js";
|
|
2
|
+
export default defineLocale({
|
|
3
|
+
name: "Bahasa Indonesia",
|
|
4
|
+
code: "id",
|
|
5
|
+
messages: {
|
|
6
|
+
inputMenu: {
|
|
7
|
+
noMatch: "Tidak ada data yang cocok",
|
|
8
|
+
noData: "Tidak ada data",
|
|
9
|
+
create: 'Buat "{label}"'
|
|
10
|
+
},
|
|
11
|
+
calendar: {
|
|
12
|
+
prevYear: "Tahun sebelumnya",
|
|
13
|
+
nextYear: "Tahun berikutnya",
|
|
14
|
+
prevMonth: "Bulan sebelumnya",
|
|
15
|
+
nextMonth: "Bulan berikutnya"
|
|
16
|
+
},
|
|
17
|
+
inputNumber: {
|
|
18
|
+
increment: "Tambah",
|
|
19
|
+
decrement: "Kurangi"
|
|
20
|
+
},
|
|
21
|
+
commandPalette: {
|
|
22
|
+
placeholder: "Ketik perintah atau cari...",
|
|
23
|
+
noMatch: "Tidak ada data yang cocok",
|
|
24
|
+
noData: "Tidak ada data",
|
|
25
|
+
close: "Tutup"
|
|
26
|
+
},
|
|
27
|
+
selectMenu: {
|
|
28
|
+
noMatch: "Tidak ada data yang cocok",
|
|
29
|
+
noData: "Tidak ada data",
|
|
30
|
+
create: 'Buat "{label}"',
|
|
31
|
+
search: "Cari..."
|
|
32
|
+
},
|
|
33
|
+
toast: {
|
|
34
|
+
close: "Tutup"
|
|
35
|
+
},
|
|
36
|
+
carousel: {
|
|
37
|
+
prev: "Sebelumnya",
|
|
38
|
+
next: "Berikutnya",
|
|
39
|
+
goto: "Pergi ke slide {slide}"
|
|
40
|
+
},
|
|
41
|
+
modal: {
|
|
42
|
+
close: "Tutup"
|
|
43
|
+
},
|
|
44
|
+
slideover: {
|
|
45
|
+
close: "Tutup"
|
|
46
|
+
},
|
|
47
|
+
alert: {
|
|
48
|
+
close: "Tutup"
|
|
49
|
+
},
|
|
50
|
+
table: {
|
|
51
|
+
noData: "Tidak ada data"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
});
|
|
@@ -1,3 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* en English
|
|
3
|
+
* de Deutsch
|
|
4
|
+
* la Español
|
|
5
|
+
*
|
|
6
|
+
* br Português (Brasil)
|
|
7
|
+
* fr Français
|
|
8
|
+
* it Italiano
|
|
9
|
+
*
|
|
10
|
+
* pl Polski
|
|
11
|
+
* ru Русский
|
|
12
|
+
* ua Українська
|
|
13
|
+
*
|
|
14
|
+
* tr Türkçe
|
|
15
|
+
* sc 中文(简体)
|
|
16
|
+
* tc 中文(繁體)
|
|
17
|
+
*
|
|
18
|
+
* ja 日本語
|
|
19
|
+
* vn Tiếng Việt
|
|
20
|
+
* id Bahasa Indonesia
|
|
21
|
+
*
|
|
22
|
+
* ms Bahasa Melayu
|
|
23
|
+
* th ภาษาไทย
|
|
24
|
+
* ar عربي,
|
|
25
|
+
*
|
|
26
|
+
* kz Қазақша
|
|
27
|
+
*/
|
|
1
28
|
export { default as en } from './en';
|
|
2
|
-
export { default as
|
|
29
|
+
export { default as de } from './de';
|
|
30
|
+
export { default as es } from './la';
|
|
31
|
+
export { default as br } from './br';
|
|
32
|
+
export { default as fr } from './fr';
|
|
33
|
+
export { default as it } from './it';
|
|
34
|
+
export { default as pl } from './pl';
|
|
3
35
|
export { default as ru } from './ru';
|
|
36
|
+
export { default as ua } from './ua';
|
|
37
|
+
export { default as tr } from './tr';
|
|
38
|
+
export { default as sc } from './sc';
|
|
39
|
+
export { default as tc } from './tc';
|
|
40
|
+
export { default as ja } from './ja';
|
|
41
|
+
export { default as vn } from './vn';
|
|
42
|
+
export { default as id } from './id';
|
|
43
|
+
export { default as ms } from './ms';
|
|
44
|
+
export { default as th } from './th';
|
|
45
|
+
export { default as ar } from './ar';
|
|
46
|
+
export { default as kz } from './kz';
|
|
@@ -1,3 +1,19 @@
|
|
|
1
1
|
export { default as en } from "./en.js";
|
|
2
|
-
export { default as
|
|
2
|
+
export { default as de } from "./de.js";
|
|
3
|
+
export { default as es } from "./la.js";
|
|
4
|
+
export { default as br } from "./br.js";
|
|
5
|
+
export { default as fr } from "./fr.js";
|
|
6
|
+
export { default as it } from "./it.js";
|
|
7
|
+
export { default as pl } from "./pl.js";
|
|
3
8
|
export { default as ru } from "./ru.js";
|
|
9
|
+
export { default as ua } from "./ua.js";
|
|
10
|
+
export { default as tr } from "./tr.js";
|
|
11
|
+
export { default as sc } from "./sc.js";
|
|
12
|
+
export { default as tc } from "./tc.js";
|
|
13
|
+
export { default as ja } from "./ja.js";
|
|
14
|
+
export { default as vn } from "./vn.js";
|
|
15
|
+
export { default as id } from "./id.js";
|
|
16
|
+
export { default as ms } from "./ms.js";
|
|
17
|
+
export { default as th } from "./th.js";
|
|
18
|
+
export { default as ar } from "./ar.js";
|
|
19
|
+
export { default as kz } from "./kz.js";
|