@react-aria/combobox 3.3.2-nightly.3362 → 3.3.2-nightly.3373
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/main.js +827 -62
- package/dist/main.js.map +1 -1
- package/dist/module.js +824 -47
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts.map +1 -1
- package/package.json +17 -17
- package/src/index.ts +1 -2
- package/src/useComboBox.ts +7 -7
package/dist/main.js
CHANGED
|
@@ -5,35 +5,18 @@ var $8Zqhq$reactariautils = require("@react-aria/utils");
|
|
|
5
5
|
var $8Zqhq$react = require("react");
|
|
6
6
|
var $8Zqhq$reactstatelycollections = require("@react-stately/collections");
|
|
7
7
|
var $8Zqhq$reactariaselection = require("@react-aria/selection");
|
|
8
|
-
var $8Zqhq$reactariamenu = require("@react-aria/menu");
|
|
9
8
|
var $8Zqhq$reactariai18n = require("@react-aria/i18n");
|
|
9
|
+
var $8Zqhq$reactariamenu = require("@react-aria/menu");
|
|
10
10
|
var $8Zqhq$reactariatextfield = require("@react-aria/textfield");
|
|
11
11
|
|
|
12
|
-
function $parcel$
|
|
13
|
-
Object.
|
|
14
|
-
if (key === 'default' || key === '__esModule' || dest.hasOwnProperty(key)) {
|
|
15
|
-
return;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
Object.defineProperty(dest, key, {
|
|
19
|
-
enumerable: true,
|
|
20
|
-
get: function get() {
|
|
21
|
-
return source[key];
|
|
22
|
-
}
|
|
23
|
-
});
|
|
24
|
-
});
|
|
25
|
-
|
|
26
|
-
return dest;
|
|
12
|
+
function $parcel$export(e, n, v, s) {
|
|
13
|
+
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
27
14
|
}
|
|
28
15
|
function $parcel$interopDefault(a) {
|
|
29
16
|
return a && a.__esModule ? a.default : a;
|
|
30
17
|
}
|
|
31
|
-
function $parcel$export(e, n, v, s) {
|
|
32
|
-
Object.defineProperty(e, n, {get: v, set: s, enumerable: true, configurable: true});
|
|
33
|
-
}
|
|
34
|
-
var $242452271d1e4c0e$exports = {};
|
|
35
18
|
|
|
36
|
-
$parcel$export(
|
|
19
|
+
$parcel$export(module.exports, "useComboBox", () => $242452271d1e4c0e$export$8c18d1b4f7232bbf);
|
|
37
20
|
|
|
38
21
|
|
|
39
22
|
|
|
@@ -42,139 +25,922 @@ $parcel$export($242452271d1e4c0e$exports, "useComboBox", () => $242452271d1e4c0e
|
|
|
42
25
|
|
|
43
26
|
var $2da059a9a42f95bf$exports = {};
|
|
44
27
|
var $a756282ae45b5180$exports = {};
|
|
45
|
-
$a756282ae45b5180$exports =
|
|
28
|
+
$a756282ae45b5180$exports = {
|
|
29
|
+
"buttonLabel": `عرض المقترحات`,
|
|
30
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
31
|
+
one: ()=>`${formatter.number(args.optionCount)} خيار`
|
|
32
|
+
,
|
|
33
|
+
other: ()=>`${formatter.number(args.optionCount)} خيارات`
|
|
34
|
+
})} متاحة.`
|
|
35
|
+
,
|
|
36
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
37
|
+
true: ()=>`المجموعة المدخلة ${args.groupTitle}, مع ${formatter.plural(args.groupCount, {
|
|
38
|
+
one: ()=>`${formatter.number(args.groupCount)} خيار`
|
|
39
|
+
,
|
|
40
|
+
other: ()=>`${formatter.number(args.groupCount)} خيارات`
|
|
41
|
+
})}. `
|
|
42
|
+
,
|
|
43
|
+
other: ``
|
|
44
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
45
|
+
true: `, محدد`,
|
|
46
|
+
other: ``
|
|
47
|
+
}, args.isSelected)}`
|
|
48
|
+
,
|
|
49
|
+
"listboxLabel": `مقترحات`,
|
|
50
|
+
"selectedAnnouncement": (args)=>`${args.optionText}، محدد`
|
|
51
|
+
};
|
|
46
52
|
|
|
47
53
|
|
|
48
54
|
var $50569559b1387c57$exports = {};
|
|
49
|
-
$50569559b1387c57$exports =
|
|
55
|
+
$50569559b1387c57$exports = {
|
|
56
|
+
"buttonLabel": `Покажи предложения`,
|
|
57
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
58
|
+
one: ()=>`${formatter.number(args.optionCount)} опция`
|
|
59
|
+
,
|
|
60
|
+
other: ()=>`${formatter.number(args.optionCount)} опции`
|
|
61
|
+
})} на разположение.`
|
|
62
|
+
,
|
|
63
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
64
|
+
true: ()=>`Въведена група ${args.groupTitle}, с ${formatter.plural(args.groupCount, {
|
|
65
|
+
one: ()=>`${formatter.number(args.groupCount)} опция`
|
|
66
|
+
,
|
|
67
|
+
other: ()=>`${formatter.number(args.groupCount)} опции`
|
|
68
|
+
})}. `
|
|
69
|
+
,
|
|
70
|
+
other: ``
|
|
71
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
72
|
+
true: `, избрани`,
|
|
73
|
+
other: ``
|
|
74
|
+
}, args.isSelected)}`
|
|
75
|
+
,
|
|
76
|
+
"listboxLabel": `Предложения`,
|
|
77
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, избрани`
|
|
78
|
+
};
|
|
50
79
|
|
|
51
80
|
|
|
52
81
|
var $bff243ee21f5616f$exports = {};
|
|
53
|
-
$bff243ee21f5616f$exports =
|
|
82
|
+
$bff243ee21f5616f$exports = {
|
|
83
|
+
"buttonLabel": `Zobrazit doporučení`,
|
|
84
|
+
"countAnnouncement": (args, formatter)=>`K dispozici ${formatter.plural(args.optionCount, {
|
|
85
|
+
one: ()=>`je ${formatter.number(args.optionCount)} možnost`
|
|
86
|
+
,
|
|
87
|
+
other: ()=>`jsou/je ${formatter.number(args.optionCount)} možnosti/-í`
|
|
88
|
+
})}.`
|
|
89
|
+
,
|
|
90
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
91
|
+
true: ()=>`Zadaná skupina „${args.groupTitle}“ ${formatter.plural(args.groupCount, {
|
|
92
|
+
one: ()=>`s ${formatter.number(args.groupCount)} možností`
|
|
93
|
+
,
|
|
94
|
+
other: ()=>`se ${formatter.number(args.groupCount)} možnostmi`
|
|
95
|
+
})}. `
|
|
96
|
+
,
|
|
97
|
+
other: ``
|
|
98
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
99
|
+
true: ` (vybráno)`,
|
|
100
|
+
other: ``
|
|
101
|
+
}, args.isSelected)}`
|
|
102
|
+
,
|
|
103
|
+
"listboxLabel": `Návrhy`,
|
|
104
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, vybráno`
|
|
105
|
+
};
|
|
54
106
|
|
|
55
107
|
|
|
56
108
|
var $1508d10b8eb2180a$exports = {};
|
|
57
|
-
$1508d10b8eb2180a$exports =
|
|
109
|
+
$1508d10b8eb2180a$exports = {
|
|
110
|
+
"buttonLabel": `Vis forslag`,
|
|
111
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
112
|
+
one: ()=>`${formatter.number(args.optionCount)} mulighed tilgængelig`
|
|
113
|
+
,
|
|
114
|
+
other: ()=>`${formatter.number(args.optionCount)} muligheder tilgængelige`
|
|
115
|
+
})}.`
|
|
116
|
+
,
|
|
117
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
118
|
+
true: ()=>`Angivet gruppe ${args.groupTitle}, med ${formatter.plural(args.groupCount, {
|
|
119
|
+
one: ()=>`${formatter.number(args.groupCount)} mulighed`
|
|
120
|
+
,
|
|
121
|
+
other: ()=>`${formatter.number(args.groupCount)} muligheder`
|
|
122
|
+
})}. `
|
|
123
|
+
,
|
|
124
|
+
other: ``
|
|
125
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
126
|
+
true: `, valgt`,
|
|
127
|
+
other: ``
|
|
128
|
+
}, args.isSelected)}`
|
|
129
|
+
,
|
|
130
|
+
"listboxLabel": `Forslag`,
|
|
131
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, valgt`
|
|
132
|
+
};
|
|
58
133
|
|
|
59
134
|
|
|
60
135
|
var $aa4e6d422b8a72e9$exports = {};
|
|
61
|
-
$aa4e6d422b8a72e9$exports =
|
|
136
|
+
$aa4e6d422b8a72e9$exports = {
|
|
137
|
+
"buttonLabel": `Empfehlungen anzeigen`,
|
|
138
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
139
|
+
one: ()=>`${formatter.number(args.optionCount)} Option`
|
|
140
|
+
,
|
|
141
|
+
other: ()=>`${formatter.number(args.optionCount)} Optionen`
|
|
142
|
+
})} verfügbar.`
|
|
143
|
+
,
|
|
144
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
145
|
+
true: ()=>`Eingetretene Gruppe ${args.groupTitle}, mit ${formatter.plural(args.groupCount, {
|
|
146
|
+
one: ()=>`${formatter.number(args.groupCount)} Option`
|
|
147
|
+
,
|
|
148
|
+
other: ()=>`${formatter.number(args.groupCount)} Optionen`
|
|
149
|
+
})}. `
|
|
150
|
+
,
|
|
151
|
+
other: ``
|
|
152
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
153
|
+
true: `, ausgewählt`,
|
|
154
|
+
other: ``
|
|
155
|
+
}, args.isSelected)}`
|
|
156
|
+
,
|
|
157
|
+
"listboxLabel": `Empfehlungen`,
|
|
158
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, ausgewählt`
|
|
159
|
+
};
|
|
62
160
|
|
|
63
161
|
|
|
64
162
|
var $b88e038b0dd4dc0a$exports = {};
|
|
65
|
-
$b88e038b0dd4dc0a$exports =
|
|
163
|
+
$b88e038b0dd4dc0a$exports = {
|
|
164
|
+
"buttonLabel": `Προβολή προτάσεων`,
|
|
165
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
166
|
+
one: ()=>`${formatter.number(args.optionCount)} επιλογή`
|
|
167
|
+
,
|
|
168
|
+
other: ()=>`${formatter.number(args.optionCount)} επιλογές `
|
|
169
|
+
})} διαθέσιμες.`
|
|
170
|
+
,
|
|
171
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
172
|
+
true: ()=>`Εισαγμένη ομάδα ${args.groupTitle}, με ${formatter.plural(args.groupCount, {
|
|
173
|
+
one: ()=>`${formatter.number(args.groupCount)} επιλογή`
|
|
174
|
+
,
|
|
175
|
+
other: ()=>`${formatter.number(args.groupCount)} επιλογές`
|
|
176
|
+
})}. `
|
|
177
|
+
,
|
|
178
|
+
other: ``
|
|
179
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
180
|
+
true: `, επιλεγμένο`,
|
|
181
|
+
other: ``
|
|
182
|
+
}, args.isSelected)}`
|
|
183
|
+
,
|
|
184
|
+
"listboxLabel": `Προτάσεις`,
|
|
185
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, επιλέχθηκε`
|
|
186
|
+
};
|
|
66
187
|
|
|
67
188
|
|
|
68
189
|
var $dbcec05b5ddcd323$exports = {};
|
|
69
|
-
$dbcec05b5ddcd323$exports =
|
|
190
|
+
$dbcec05b5ddcd323$exports = {
|
|
191
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
192
|
+
true: ()=>`Entered group ${args.groupTitle}, with ${formatter.plural(args.groupCount, {
|
|
193
|
+
one: ()=>`${formatter.number(args.groupCount)} option`
|
|
194
|
+
,
|
|
195
|
+
other: ()=>`${formatter.number(args.groupCount)} options`
|
|
196
|
+
})}. `
|
|
197
|
+
,
|
|
198
|
+
other: ``
|
|
199
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
200
|
+
true: `, selected`,
|
|
201
|
+
other: ``
|
|
202
|
+
}, args.isSelected)}`
|
|
203
|
+
,
|
|
204
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
205
|
+
one: ()=>`${formatter.number(args.optionCount)} option`
|
|
206
|
+
,
|
|
207
|
+
other: ()=>`${formatter.number(args.optionCount)} options`
|
|
208
|
+
})} available.`
|
|
209
|
+
,
|
|
210
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, selected`
|
|
211
|
+
,
|
|
212
|
+
"buttonLabel": `Show suggestions`,
|
|
213
|
+
"listboxLabel": `Suggestions`
|
|
214
|
+
};
|
|
70
215
|
|
|
71
216
|
|
|
72
217
|
var $3a762c75d410ecfe$exports = {};
|
|
73
|
-
$3a762c75d410ecfe$exports =
|
|
218
|
+
$3a762c75d410ecfe$exports = {
|
|
219
|
+
"buttonLabel": `Mostrar sugerencias`,
|
|
220
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
221
|
+
one: ()=>`${formatter.number(args.optionCount)} opción`
|
|
222
|
+
,
|
|
223
|
+
other: ()=>`${formatter.number(args.optionCount)} opciones`
|
|
224
|
+
})} disponible(s).`
|
|
225
|
+
,
|
|
226
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
227
|
+
true: ()=>`Se ha unido al grupo ${args.groupTitle}, con ${formatter.plural(args.groupCount, {
|
|
228
|
+
one: ()=>`${formatter.number(args.groupCount)} opción`
|
|
229
|
+
,
|
|
230
|
+
other: ()=>`${formatter.number(args.groupCount)} opciones`
|
|
231
|
+
})}. `
|
|
232
|
+
,
|
|
233
|
+
other: ``
|
|
234
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
235
|
+
true: `, seleccionado`,
|
|
236
|
+
other: ``
|
|
237
|
+
}, args.isSelected)}`
|
|
238
|
+
,
|
|
239
|
+
"listboxLabel": `Sugerencias`,
|
|
240
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, seleccionado`
|
|
241
|
+
};
|
|
74
242
|
|
|
75
243
|
|
|
76
244
|
var $345540ad7e1ca6bf$exports = {};
|
|
77
|
-
$345540ad7e1ca6bf$exports =
|
|
245
|
+
$345540ad7e1ca6bf$exports = {
|
|
246
|
+
"buttonLabel": `Kuva soovitused`,
|
|
247
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
248
|
+
one: ()=>`${formatter.number(args.optionCount)} valik`
|
|
249
|
+
,
|
|
250
|
+
other: ()=>`${formatter.number(args.optionCount)} valikud`
|
|
251
|
+
})} saadaval.`
|
|
252
|
+
,
|
|
253
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
254
|
+
true: ()=>`Sisestatud rühm ${args.groupTitle}, valikuga ${formatter.plural(args.groupCount, {
|
|
255
|
+
one: ()=>`${formatter.number(args.groupCount)} valik`
|
|
256
|
+
,
|
|
257
|
+
other: ()=>`${formatter.number(args.groupCount)} valikud`
|
|
258
|
+
})}. `
|
|
259
|
+
,
|
|
260
|
+
other: ``
|
|
261
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
262
|
+
true: `, valitud`,
|
|
263
|
+
other: ``
|
|
264
|
+
}, args.isSelected)}`
|
|
265
|
+
,
|
|
266
|
+
"listboxLabel": `Soovitused`,
|
|
267
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, valitud`
|
|
268
|
+
};
|
|
78
269
|
|
|
79
270
|
|
|
80
271
|
var $f314257d456879ad$exports = {};
|
|
81
|
-
$f314257d456879ad$exports =
|
|
272
|
+
$f314257d456879ad$exports = {
|
|
273
|
+
"buttonLabel": `Näytä ehdotukset`,
|
|
274
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
275
|
+
one: ()=>`${formatter.number(args.optionCount)} vaihtoehto`
|
|
276
|
+
,
|
|
277
|
+
other: ()=>`${formatter.number(args.optionCount)} vaihtoehdot`
|
|
278
|
+
})} saatavilla.`
|
|
279
|
+
,
|
|
280
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
281
|
+
true: ()=>`Mentiin ryhmään ${args.groupTitle}, ${formatter.plural(args.groupCount, {
|
|
282
|
+
one: ()=>`${formatter.number(args.groupCount)} vaihtoehdon`
|
|
283
|
+
,
|
|
284
|
+
other: ()=>`${formatter.number(args.groupCount)} vaihtoehdon`
|
|
285
|
+
})} kanssa.`
|
|
286
|
+
,
|
|
287
|
+
other: ``
|
|
288
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
289
|
+
true: `, valittu`,
|
|
290
|
+
other: ``
|
|
291
|
+
}, args.isSelected)}`
|
|
292
|
+
,
|
|
293
|
+
"listboxLabel": `Ehdotukset`,
|
|
294
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, valittu`
|
|
295
|
+
};
|
|
82
296
|
|
|
83
297
|
|
|
84
298
|
var $ebebc2f5e8da1157$exports = {};
|
|
85
|
-
$ebebc2f5e8da1157$exports =
|
|
299
|
+
$ebebc2f5e8da1157$exports = {
|
|
300
|
+
"buttonLabel": `Afficher les suggestions`,
|
|
301
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
302
|
+
one: ()=>`${formatter.number(args.optionCount)} option`
|
|
303
|
+
,
|
|
304
|
+
other: ()=>`${formatter.number(args.optionCount)} options`
|
|
305
|
+
})} disponible(s).`
|
|
306
|
+
,
|
|
307
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
308
|
+
true: ()=>`Groupe ${args.groupTitle} saisi, avec ${formatter.plural(args.groupCount, {
|
|
309
|
+
one: ()=>`${formatter.number(args.groupCount)} option`
|
|
310
|
+
,
|
|
311
|
+
other: ()=>`${formatter.number(args.groupCount)} options`
|
|
312
|
+
})}. `
|
|
313
|
+
,
|
|
314
|
+
other: ``
|
|
315
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
316
|
+
true: `, sélectionné(s)`,
|
|
317
|
+
other: ``
|
|
318
|
+
}, args.isSelected)}`
|
|
319
|
+
,
|
|
320
|
+
"listboxLabel": `Suggestions`,
|
|
321
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, sélectionné`
|
|
322
|
+
};
|
|
86
323
|
|
|
87
324
|
|
|
88
325
|
var $3dda6220a904406b$exports = {};
|
|
89
|
-
$3dda6220a904406b$exports =
|
|
326
|
+
$3dda6220a904406b$exports = {
|
|
327
|
+
"buttonLabel": `הצג הצעות`,
|
|
328
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
329
|
+
one: ()=>`אפשרות ${formatter.number(args.optionCount)}`
|
|
330
|
+
,
|
|
331
|
+
other: ()=>`${formatter.number(args.optionCount)} אפשרויות`
|
|
332
|
+
})} במצב זמין.`
|
|
333
|
+
,
|
|
334
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
335
|
+
true: ()=>`נכנס לקבוצה ${args.groupTitle}, עם ${formatter.plural(args.groupCount, {
|
|
336
|
+
one: ()=>`אפשרות ${formatter.number(args.groupCount)}`
|
|
337
|
+
,
|
|
338
|
+
other: ()=>`${formatter.number(args.groupCount)} אפשרויות`
|
|
339
|
+
})}. `
|
|
340
|
+
,
|
|
341
|
+
other: ``
|
|
342
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
343
|
+
true: `, נבחר`,
|
|
344
|
+
other: ``
|
|
345
|
+
}, args.isSelected)}`
|
|
346
|
+
,
|
|
347
|
+
"listboxLabel": `הצעות`,
|
|
348
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, נבחר`
|
|
349
|
+
};
|
|
90
350
|
|
|
91
351
|
|
|
92
352
|
var $21178dd033a9f6f2$exports = {};
|
|
93
|
-
$21178dd033a9f6f2$exports =
|
|
353
|
+
$21178dd033a9f6f2$exports = {
|
|
354
|
+
"buttonLabel": `Prikaži prijedloge`,
|
|
355
|
+
"countAnnouncement": (args, formatter)=>`Dostupno još: ${formatter.plural(args.optionCount, {
|
|
356
|
+
one: ()=>`${formatter.number(args.optionCount)} opcija`
|
|
357
|
+
,
|
|
358
|
+
other: ()=>`${formatter.number(args.optionCount)} opcije/a`
|
|
359
|
+
})}.`
|
|
360
|
+
,
|
|
361
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
362
|
+
true: ()=>`Unesena skupina ${args.groupTitle}, s ${formatter.plural(args.groupCount, {
|
|
363
|
+
one: ()=>`${formatter.number(args.groupCount)} opcijom`
|
|
364
|
+
,
|
|
365
|
+
other: ()=>`${formatter.number(args.groupCount)} opcije/a`
|
|
366
|
+
})}. `
|
|
367
|
+
,
|
|
368
|
+
other: ``
|
|
369
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
370
|
+
true: `, odabranih`,
|
|
371
|
+
other: ``
|
|
372
|
+
}, args.isSelected)}`
|
|
373
|
+
,
|
|
374
|
+
"listboxLabel": `Prijedlozi`,
|
|
375
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, odabrano`
|
|
376
|
+
};
|
|
94
377
|
|
|
95
378
|
|
|
96
379
|
var $f12e9cac54fcde83$exports = {};
|
|
97
|
-
$f12e9cac54fcde83$exports =
|
|
380
|
+
$f12e9cac54fcde83$exports = {
|
|
381
|
+
"buttonLabel": `Javaslatok megjelenítése`,
|
|
382
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
383
|
+
one: ()=>`${formatter.number(args.optionCount)} lehetőség`
|
|
384
|
+
,
|
|
385
|
+
other: ()=>`${formatter.number(args.optionCount)} lehetőség`
|
|
386
|
+
})} áll rendelkezésre.`
|
|
387
|
+
,
|
|
388
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
389
|
+
true: ()=>`Belépett a(z) ${args.groupTitle} csoportba, amely ${formatter.plural(args.groupCount, {
|
|
390
|
+
one: ()=>`${formatter.number(args.groupCount)} lehetőséget`
|
|
391
|
+
,
|
|
392
|
+
other: ()=>`${formatter.number(args.groupCount)} lehetőséget`
|
|
393
|
+
})} tartalmaz. `
|
|
394
|
+
,
|
|
395
|
+
other: ``
|
|
396
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
397
|
+
true: `, kijelölve`,
|
|
398
|
+
other: ``
|
|
399
|
+
}, args.isSelected)}`
|
|
400
|
+
,
|
|
401
|
+
"listboxLabel": `Javaslatok`,
|
|
402
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, kijelölve`
|
|
403
|
+
};
|
|
98
404
|
|
|
99
405
|
|
|
100
406
|
var $c7ad5d19d847ae9c$exports = {};
|
|
101
|
-
$c7ad5d19d847ae9c$exports =
|
|
407
|
+
$c7ad5d19d847ae9c$exports = {
|
|
408
|
+
"buttonLabel": `Mostra suggerimenti`,
|
|
409
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
410
|
+
one: ()=>`${formatter.number(args.optionCount)} opzione disponibile`
|
|
411
|
+
,
|
|
412
|
+
other: ()=>`${formatter.number(args.optionCount)} opzioni disponibili`
|
|
413
|
+
})}.`
|
|
414
|
+
,
|
|
415
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
416
|
+
true: ()=>`Ingresso nel gruppo ${args.groupTitle}, con ${formatter.plural(args.groupCount, {
|
|
417
|
+
one: ()=>`${formatter.number(args.groupCount)} opzione`
|
|
418
|
+
,
|
|
419
|
+
other: ()=>`${formatter.number(args.groupCount)} opzioni`
|
|
420
|
+
})}. `
|
|
421
|
+
,
|
|
422
|
+
other: ``
|
|
423
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
424
|
+
true: `, selezionato`,
|
|
425
|
+
other: ``
|
|
426
|
+
}, args.isSelected)}`
|
|
427
|
+
,
|
|
428
|
+
"listboxLabel": `Suggerimenti`,
|
|
429
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, selezionato`
|
|
430
|
+
};
|
|
102
431
|
|
|
103
432
|
|
|
104
433
|
var $2cd660cb05523578$exports = {};
|
|
105
|
-
$2cd660cb05523578$exports =
|
|
434
|
+
$2cd660cb05523578$exports = {
|
|
435
|
+
"buttonLabel": `候補を表示`,
|
|
436
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
437
|
+
one: ()=>`${formatter.number(args.optionCount)} 個のオプション`
|
|
438
|
+
,
|
|
439
|
+
other: ()=>`${formatter.number(args.optionCount)} 個のオプション`
|
|
440
|
+
})}を利用できます。`
|
|
441
|
+
,
|
|
442
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
443
|
+
true: ()=>`入力されたグループ ${args.groupTitle}、${formatter.plural(args.groupCount, {
|
|
444
|
+
one: ()=>`${formatter.number(args.groupCount)} 個のオプション`
|
|
445
|
+
,
|
|
446
|
+
other: ()=>`${formatter.number(args.groupCount)} 個のオプション`
|
|
447
|
+
})}を含む。`
|
|
448
|
+
,
|
|
449
|
+
other: ``
|
|
450
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
451
|
+
true: `、選択済み`,
|
|
452
|
+
other: ``
|
|
453
|
+
}, args.isSelected)}`
|
|
454
|
+
,
|
|
455
|
+
"listboxLabel": `候補`,
|
|
456
|
+
"selectedAnnouncement": (args)=>`${args.optionText}、選択済み`
|
|
457
|
+
};
|
|
106
458
|
|
|
107
459
|
|
|
108
460
|
var $854156a4c27f569c$exports = {};
|
|
109
|
-
$854156a4c27f569c$exports =
|
|
461
|
+
$854156a4c27f569c$exports = {
|
|
462
|
+
"buttonLabel": `제안 사항 표시`,
|
|
463
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
464
|
+
one: ()=>`${formatter.number(args.optionCount)}개 옵션`
|
|
465
|
+
,
|
|
466
|
+
other: ()=>`${formatter.number(args.optionCount)}개 옵션`
|
|
467
|
+
})}을 사용할 수 있습니다.`
|
|
468
|
+
,
|
|
469
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
470
|
+
true: ()=>`입력한 그룹 ${args.groupTitle}, ${formatter.plural(args.groupCount, {
|
|
471
|
+
one: ()=>`${formatter.number(args.groupCount)}개 옵션`
|
|
472
|
+
,
|
|
473
|
+
other: ()=>`${formatter.number(args.groupCount)}개 옵션`
|
|
474
|
+
})}. `
|
|
475
|
+
,
|
|
476
|
+
other: ``
|
|
477
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
478
|
+
true: `, 선택됨`,
|
|
479
|
+
other: ``
|
|
480
|
+
}, args.isSelected)}`
|
|
481
|
+
,
|
|
482
|
+
"listboxLabel": `제안`,
|
|
483
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, 선택됨`
|
|
484
|
+
};
|
|
110
485
|
|
|
111
486
|
|
|
112
487
|
var $dabe6c727809b774$exports = {};
|
|
113
|
-
$dabe6c727809b774$exports =
|
|
488
|
+
$dabe6c727809b774$exports = {
|
|
489
|
+
"buttonLabel": `Rodyti pasiūlymus`,
|
|
490
|
+
"countAnnouncement": (args, formatter)=>`Yra ${formatter.plural(args.optionCount, {
|
|
491
|
+
one: ()=>`${formatter.number(args.optionCount)} parinktis`
|
|
492
|
+
,
|
|
493
|
+
other: ()=>`${formatter.number(args.optionCount)} parinktys (-ių)`
|
|
494
|
+
})}.`
|
|
495
|
+
,
|
|
496
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
497
|
+
true: ()=>`Įvesta grupė ${args.groupTitle}, su ${formatter.plural(args.groupCount, {
|
|
498
|
+
one: ()=>`${formatter.number(args.groupCount)} parinktimi`
|
|
499
|
+
,
|
|
500
|
+
other: ()=>`${formatter.number(args.groupCount)} parinktimis (-ių)`
|
|
501
|
+
})}. `
|
|
502
|
+
,
|
|
503
|
+
other: ``
|
|
504
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
505
|
+
true: `, pasirinkta`,
|
|
506
|
+
other: ``
|
|
507
|
+
}, args.isSelected)}`
|
|
508
|
+
,
|
|
509
|
+
"listboxLabel": `Pasiūlymai`,
|
|
510
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, pasirinkta`
|
|
511
|
+
};
|
|
114
512
|
|
|
115
513
|
|
|
116
514
|
var $7810eacb77cdba0d$exports = {};
|
|
117
|
-
$7810eacb77cdba0d$exports =
|
|
515
|
+
$7810eacb77cdba0d$exports = {
|
|
516
|
+
"buttonLabel": `Rādīt ieteikumus`,
|
|
517
|
+
"countAnnouncement": (args, formatter)=>`Pieejamo opciju skaits: ${formatter.plural(args.optionCount, {
|
|
518
|
+
one: ()=>`${formatter.number(args.optionCount)} opcija`
|
|
519
|
+
,
|
|
520
|
+
other: ()=>`${formatter.number(args.optionCount)} opcijas`
|
|
521
|
+
})}.`
|
|
522
|
+
,
|
|
523
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
524
|
+
true: ()=>`Ievadīta grupa ${args.groupTitle}, ar ${formatter.plural(args.groupCount, {
|
|
525
|
+
one: ()=>`${formatter.number(args.groupCount)} opciju`
|
|
526
|
+
,
|
|
527
|
+
other: ()=>`${formatter.number(args.groupCount)} opcijām`
|
|
528
|
+
})}. `
|
|
529
|
+
,
|
|
530
|
+
other: ``
|
|
531
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
532
|
+
true: `, atlasīta`,
|
|
533
|
+
other: ``
|
|
534
|
+
}, args.isSelected)}`
|
|
535
|
+
,
|
|
536
|
+
"listboxLabel": `Ieteikumi`,
|
|
537
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, atlasīta`
|
|
538
|
+
};
|
|
118
539
|
|
|
119
540
|
|
|
120
541
|
var $5e329fda39bb6d70$exports = {};
|
|
121
|
-
$5e329fda39bb6d70$exports =
|
|
542
|
+
$5e329fda39bb6d70$exports = {
|
|
543
|
+
"buttonLabel": `Vis forslag`,
|
|
544
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
545
|
+
one: ()=>`${formatter.number(args.optionCount)} alternativ`
|
|
546
|
+
,
|
|
547
|
+
other: ()=>`${formatter.number(args.optionCount)} alternativer`
|
|
548
|
+
})} finnes.`
|
|
549
|
+
,
|
|
550
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
551
|
+
true: ()=>`Angitt gruppe ${args.groupTitle}, med ${formatter.plural(args.groupCount, {
|
|
552
|
+
one: ()=>`${formatter.number(args.groupCount)} alternativ`
|
|
553
|
+
,
|
|
554
|
+
other: ()=>`${formatter.number(args.groupCount)} alternativer`
|
|
555
|
+
})}. `
|
|
556
|
+
,
|
|
557
|
+
other: ``
|
|
558
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
559
|
+
true: `, valgt`,
|
|
560
|
+
other: ``
|
|
561
|
+
}, args.isSelected)}`
|
|
562
|
+
,
|
|
563
|
+
"listboxLabel": `Forslag`,
|
|
564
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, valgt`
|
|
565
|
+
};
|
|
122
566
|
|
|
123
567
|
|
|
124
568
|
var $29be2a564837167c$exports = {};
|
|
125
|
-
$29be2a564837167c$exports =
|
|
569
|
+
$29be2a564837167c$exports = {
|
|
570
|
+
"buttonLabel": `Suggesties weergeven`,
|
|
571
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
572
|
+
one: ()=>`${formatter.number(args.optionCount)} optie`
|
|
573
|
+
,
|
|
574
|
+
other: ()=>`${formatter.number(args.optionCount)} opties`
|
|
575
|
+
})} beschikbaar.`
|
|
576
|
+
,
|
|
577
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
578
|
+
true: ()=>`Groep ${args.groupTitle} ingevoerd met ${formatter.plural(args.groupCount, {
|
|
579
|
+
one: ()=>`${formatter.number(args.groupCount)} optie`
|
|
580
|
+
,
|
|
581
|
+
other: ()=>`${formatter.number(args.groupCount)} opties`
|
|
582
|
+
})}. `
|
|
583
|
+
,
|
|
584
|
+
other: ``
|
|
585
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
586
|
+
true: `, geselecteerd`,
|
|
587
|
+
other: ``
|
|
588
|
+
}, args.isSelected)}`
|
|
589
|
+
,
|
|
590
|
+
"listboxLabel": `Suggesties`,
|
|
591
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, geselecteerd`
|
|
592
|
+
};
|
|
126
593
|
|
|
127
594
|
|
|
128
595
|
var $7c0ffa214495a56b$exports = {};
|
|
129
|
-
$7c0ffa214495a56b$exports =
|
|
596
|
+
$7c0ffa214495a56b$exports = {
|
|
597
|
+
"buttonLabel": `Wyświetlaj sugestie`,
|
|
598
|
+
"countAnnouncement": (args, formatter)=>`dostępna/dostępne(-nych) ${formatter.plural(args.optionCount, {
|
|
599
|
+
one: ()=>`${formatter.number(args.optionCount)} opcja`
|
|
600
|
+
,
|
|
601
|
+
other: ()=>`${formatter.number(args.optionCount)} opcje(-i)`
|
|
602
|
+
})}.`
|
|
603
|
+
,
|
|
604
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
605
|
+
true: ()=>`Dołączono do grupy ${args.groupTitle}, z ${formatter.plural(args.groupCount, {
|
|
606
|
+
one: ()=>`${formatter.number(args.groupCount)} opcją`
|
|
607
|
+
,
|
|
608
|
+
other: ()=>`${formatter.number(args.groupCount)} opcjami`
|
|
609
|
+
})}. `
|
|
610
|
+
,
|
|
611
|
+
other: ``
|
|
612
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
613
|
+
true: `, wybrano`,
|
|
614
|
+
other: ``
|
|
615
|
+
}, args.isSelected)}`
|
|
616
|
+
,
|
|
617
|
+
"listboxLabel": `Sugestie`,
|
|
618
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, wybrano`
|
|
619
|
+
};
|
|
130
620
|
|
|
131
621
|
|
|
132
622
|
var $e8665834548c9563$exports = {};
|
|
133
|
-
$e8665834548c9563$exports =
|
|
623
|
+
$e8665834548c9563$exports = {
|
|
624
|
+
"buttonLabel": `Mostrar sugestões`,
|
|
625
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
626
|
+
one: ()=>`${formatter.number(args.optionCount)} opção`
|
|
627
|
+
,
|
|
628
|
+
other: ()=>`${formatter.number(args.optionCount)} opções`
|
|
629
|
+
})} disponível.`
|
|
630
|
+
,
|
|
631
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
632
|
+
true: ()=>`Grupo inserido ${args.groupTitle}, com ${formatter.plural(args.groupCount, {
|
|
633
|
+
one: ()=>`${formatter.number(args.groupCount)} opção`
|
|
634
|
+
,
|
|
635
|
+
other: ()=>`${formatter.number(args.groupCount)} opções`
|
|
636
|
+
})}. `
|
|
637
|
+
,
|
|
638
|
+
other: ``
|
|
639
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
640
|
+
true: `, selecionado`,
|
|
641
|
+
other: ``
|
|
642
|
+
}, args.isSelected)}`
|
|
643
|
+
,
|
|
644
|
+
"listboxLabel": `Sugestões`,
|
|
645
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, selecionado`
|
|
646
|
+
};
|
|
134
647
|
|
|
135
648
|
|
|
136
649
|
var $3f614fe48e86ff5a$exports = {};
|
|
137
|
-
$3f614fe48e86ff5a$exports =
|
|
650
|
+
$3f614fe48e86ff5a$exports = {
|
|
651
|
+
"buttonLabel": `Apresentar sugestões`,
|
|
652
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
653
|
+
one: ()=>`${formatter.number(args.optionCount)} opção`
|
|
654
|
+
,
|
|
655
|
+
other: ()=>`${formatter.number(args.optionCount)} opções`
|
|
656
|
+
})} disponível.`
|
|
657
|
+
,
|
|
658
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
659
|
+
true: ()=>`Grupo introduzido ${args.groupTitle}, com ${formatter.plural(args.groupCount, {
|
|
660
|
+
one: ()=>`${formatter.number(args.groupCount)} opção`
|
|
661
|
+
,
|
|
662
|
+
other: ()=>`${formatter.number(args.groupCount)} opções`
|
|
663
|
+
})}. `
|
|
664
|
+
,
|
|
665
|
+
other: ``
|
|
666
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
667
|
+
true: `, selecionado`,
|
|
668
|
+
other: ``
|
|
669
|
+
}, args.isSelected)}`
|
|
670
|
+
,
|
|
671
|
+
"listboxLabel": `Sugestões`,
|
|
672
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, selecionado`
|
|
673
|
+
};
|
|
138
674
|
|
|
139
675
|
|
|
140
676
|
var $e7efe9ced5993d70$exports = {};
|
|
141
|
-
$e7efe9ced5993d70$exports =
|
|
677
|
+
$e7efe9ced5993d70$exports = {
|
|
678
|
+
"buttonLabel": `Afișare sugestii`,
|
|
679
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
680
|
+
one: ()=>`${formatter.number(args.optionCount)} opțiune`
|
|
681
|
+
,
|
|
682
|
+
other: ()=>`${formatter.number(args.optionCount)} opțiuni`
|
|
683
|
+
})} disponibile.`
|
|
684
|
+
,
|
|
685
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
686
|
+
true: ()=>`Grup ${args.groupTitle} introdus, cu ${formatter.plural(args.groupCount, {
|
|
687
|
+
one: ()=>`${formatter.number(args.groupCount)} opțiune`
|
|
688
|
+
,
|
|
689
|
+
other: ()=>`${formatter.number(args.groupCount)} opțiuni`
|
|
690
|
+
})}. `
|
|
691
|
+
,
|
|
692
|
+
other: ``
|
|
693
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
694
|
+
true: `, selectat`,
|
|
695
|
+
other: ``
|
|
696
|
+
}, args.isSelected)}`
|
|
697
|
+
,
|
|
698
|
+
"listboxLabel": `Sugestii`,
|
|
699
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, selectat`
|
|
700
|
+
};
|
|
142
701
|
|
|
143
702
|
|
|
144
703
|
var $d56743931b3be207$exports = {};
|
|
145
|
-
$d56743931b3be207$exports =
|
|
704
|
+
$d56743931b3be207$exports = {
|
|
705
|
+
"buttonLabel": `Показать предложения`,
|
|
706
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
707
|
+
one: ()=>`${formatter.number(args.optionCount)} параметр`
|
|
708
|
+
,
|
|
709
|
+
other: ()=>`${formatter.number(args.optionCount)} параметров`
|
|
710
|
+
})} доступно.`
|
|
711
|
+
,
|
|
712
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
713
|
+
true: ()=>`Введенная группа ${args.groupTitle}, с ${formatter.plural(args.groupCount, {
|
|
714
|
+
one: ()=>`${formatter.number(args.groupCount)} параметром`
|
|
715
|
+
,
|
|
716
|
+
other: ()=>`${formatter.number(args.groupCount)} параметрами`
|
|
717
|
+
})}. `
|
|
718
|
+
,
|
|
719
|
+
other: ``
|
|
720
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
721
|
+
true: `, выбранными`,
|
|
722
|
+
other: ``
|
|
723
|
+
}, args.isSelected)}`
|
|
724
|
+
,
|
|
725
|
+
"listboxLabel": `Предложения`,
|
|
726
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, выбрано`
|
|
727
|
+
};
|
|
146
728
|
|
|
147
729
|
|
|
148
730
|
var $68a40ce74b5b67bf$exports = {};
|
|
149
|
-
$68a40ce74b5b67bf$exports =
|
|
731
|
+
$68a40ce74b5b67bf$exports = {
|
|
732
|
+
"buttonLabel": `Zobraziť návrhy`,
|
|
733
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
734
|
+
one: ()=>`${formatter.number(args.optionCount)} možnosť`
|
|
735
|
+
,
|
|
736
|
+
other: ()=>`${formatter.number(args.optionCount)} možnosti/-í`
|
|
737
|
+
})} k dispozícii.`
|
|
738
|
+
,
|
|
739
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
740
|
+
true: ()=>`Zadaná skupina ${args.groupTitle}, s ${formatter.plural(args.groupCount, {
|
|
741
|
+
one: ()=>`${formatter.number(args.groupCount)} možnosťou`
|
|
742
|
+
,
|
|
743
|
+
other: ()=>`${formatter.number(args.groupCount)} možnosťami`
|
|
744
|
+
})}. `
|
|
745
|
+
,
|
|
746
|
+
other: ``
|
|
747
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
748
|
+
true: `, vybraté`,
|
|
749
|
+
other: ``
|
|
750
|
+
}, args.isSelected)}`
|
|
751
|
+
,
|
|
752
|
+
"listboxLabel": `Návrhy`,
|
|
753
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, vybraté`
|
|
754
|
+
};
|
|
150
755
|
|
|
151
756
|
|
|
152
757
|
var $58f7d43d88008c7d$exports = {};
|
|
153
|
-
$58f7d43d88008c7d$exports =
|
|
758
|
+
$58f7d43d88008c7d$exports = {
|
|
759
|
+
"buttonLabel": `Prikaži predloge`,
|
|
760
|
+
"countAnnouncement": (args, formatter)=>`Na voljo je ${formatter.plural(args.optionCount, {
|
|
761
|
+
one: ()=>`${formatter.number(args.optionCount)} opcija`
|
|
762
|
+
,
|
|
763
|
+
other: ()=>`${formatter.number(args.optionCount)} opcije`
|
|
764
|
+
})}.`
|
|
765
|
+
,
|
|
766
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
767
|
+
true: ()=>`Vnesena skupina ${args.groupTitle}, z ${formatter.plural(args.groupCount, {
|
|
768
|
+
one: ()=>`${formatter.number(args.groupCount)} opcija`
|
|
769
|
+
,
|
|
770
|
+
other: ()=>`${formatter.number(args.groupCount)} opcije`
|
|
771
|
+
})}. `
|
|
772
|
+
,
|
|
773
|
+
other: ``
|
|
774
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
775
|
+
true: `, izbrano`,
|
|
776
|
+
other: ``
|
|
777
|
+
}, args.isSelected)}`
|
|
778
|
+
,
|
|
779
|
+
"listboxLabel": `Predlogi`,
|
|
780
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, izbrano`
|
|
781
|
+
};
|
|
154
782
|
|
|
155
783
|
|
|
156
784
|
var $914aa7442fad912d$exports = {};
|
|
157
|
-
$914aa7442fad912d$exports =
|
|
785
|
+
$914aa7442fad912d$exports = {
|
|
786
|
+
"buttonLabel": `Prikaži predloge`,
|
|
787
|
+
"countAnnouncement": (args, formatter)=>`Dostupno još: ${formatter.plural(args.optionCount, {
|
|
788
|
+
one: ()=>`${formatter.number(args.optionCount)} opcija`
|
|
789
|
+
,
|
|
790
|
+
other: ()=>`${formatter.number(args.optionCount)} opcije/a`
|
|
791
|
+
})}.`
|
|
792
|
+
,
|
|
793
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
794
|
+
true: ()=>`Unesena grupa ${args.groupTitle}, s ${formatter.plural(args.groupCount, {
|
|
795
|
+
one: ()=>`${formatter.number(args.groupCount)} opcijom`
|
|
796
|
+
,
|
|
797
|
+
other: ()=>`${formatter.number(args.groupCount)} optione/a`
|
|
798
|
+
})}. `
|
|
799
|
+
,
|
|
800
|
+
other: ``
|
|
801
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
802
|
+
true: `, izabranih`,
|
|
803
|
+
other: ``
|
|
804
|
+
}, args.isSelected)}`
|
|
805
|
+
,
|
|
806
|
+
"listboxLabel": `Predlozi`,
|
|
807
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, izabrano`
|
|
808
|
+
};
|
|
158
809
|
|
|
159
810
|
|
|
160
811
|
var $85af38f91b727899$exports = {};
|
|
161
|
-
$85af38f91b727899$exports =
|
|
812
|
+
$85af38f91b727899$exports = {
|
|
813
|
+
"buttonLabel": `Visa förslag`,
|
|
814
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
815
|
+
one: ()=>`${formatter.number(args.optionCount)} alternativ`
|
|
816
|
+
,
|
|
817
|
+
other: ()=>`${formatter.number(args.optionCount)} alternativ`
|
|
818
|
+
})} tillgängliga.`
|
|
819
|
+
,
|
|
820
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
821
|
+
true: ()=>`Ingick i gruppen ${args.groupTitle} med ${formatter.plural(args.groupCount, {
|
|
822
|
+
one: ()=>`${formatter.number(args.groupCount)} alternativ`
|
|
823
|
+
,
|
|
824
|
+
other: ()=>`${formatter.number(args.groupCount)} alternativ`
|
|
825
|
+
})}. `
|
|
826
|
+
,
|
|
827
|
+
other: ``
|
|
828
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
829
|
+
true: `, valda`,
|
|
830
|
+
other: ``
|
|
831
|
+
}, args.isSelected)}`
|
|
832
|
+
,
|
|
833
|
+
"listboxLabel": `Förslag`,
|
|
834
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, valda`
|
|
835
|
+
};
|
|
162
836
|
|
|
163
837
|
|
|
164
838
|
var $72a40ca4dde96679$exports = {};
|
|
165
|
-
$72a40ca4dde96679$exports =
|
|
839
|
+
$72a40ca4dde96679$exports = {
|
|
840
|
+
"buttonLabel": `Önerileri göster`,
|
|
841
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
842
|
+
one: ()=>`${formatter.number(args.optionCount)} seçenek`
|
|
843
|
+
,
|
|
844
|
+
other: ()=>`${formatter.number(args.optionCount)} seçenekler`
|
|
845
|
+
})} kullanılabilir.`
|
|
846
|
+
,
|
|
847
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
848
|
+
true: ()=>`Girilen grup ${args.groupTitle}, ile ${formatter.plural(args.groupCount, {
|
|
849
|
+
one: ()=>`${formatter.number(args.groupCount)} seçenek`
|
|
850
|
+
,
|
|
851
|
+
other: ()=>`${formatter.number(args.groupCount)} seçenekler`
|
|
852
|
+
})}. `
|
|
853
|
+
,
|
|
854
|
+
other: ``
|
|
855
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
856
|
+
true: `, seçildi`,
|
|
857
|
+
other: ``
|
|
858
|
+
}, args.isSelected)}`
|
|
859
|
+
,
|
|
860
|
+
"listboxLabel": `Öneriler`,
|
|
861
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, seçildi`
|
|
862
|
+
};
|
|
166
863
|
|
|
167
864
|
|
|
168
865
|
var $300dce19c9e0d13f$exports = {};
|
|
169
|
-
$300dce19c9e0d13f$exports =
|
|
866
|
+
$300dce19c9e0d13f$exports = {
|
|
867
|
+
"buttonLabel": `Показати пропозиції`,
|
|
868
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
869
|
+
one: ()=>`${formatter.number(args.optionCount)} параметр`
|
|
870
|
+
,
|
|
871
|
+
other: ()=>`${formatter.number(args.optionCount)} параметри(-ів)`
|
|
872
|
+
})} доступно.`
|
|
873
|
+
,
|
|
874
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
875
|
+
true: ()=>`Введена група ${args.groupTitle}, з ${formatter.plural(args.groupCount, {
|
|
876
|
+
one: ()=>`${formatter.number(args.groupCount)} параметр`
|
|
877
|
+
,
|
|
878
|
+
other: ()=>`${formatter.number(args.groupCount)} параметри(-ів)`
|
|
879
|
+
})}. `
|
|
880
|
+
,
|
|
881
|
+
other: ``
|
|
882
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
883
|
+
true: `, вибрано`,
|
|
884
|
+
other: ``
|
|
885
|
+
}, args.isSelected)}`
|
|
886
|
+
,
|
|
887
|
+
"listboxLabel": `Пропозиції`,
|
|
888
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, вибрано`
|
|
889
|
+
};
|
|
170
890
|
|
|
171
891
|
|
|
172
892
|
var $015ff4188b7f78eb$exports = {};
|
|
173
|
-
$015ff4188b7f78eb$exports =
|
|
893
|
+
$015ff4188b7f78eb$exports = {
|
|
894
|
+
"buttonLabel": `显示建议`,
|
|
895
|
+
"countAnnouncement": (args, formatter)=>`有 ${formatter.plural(args.optionCount, {
|
|
896
|
+
one: ()=>`${formatter.number(args.optionCount)} 个选项`
|
|
897
|
+
,
|
|
898
|
+
other: ()=>`${formatter.number(args.optionCount)} 个选项`
|
|
899
|
+
})}可用。`
|
|
900
|
+
,
|
|
901
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
902
|
+
true: ()=>`进入了 ${args.groupTitle} 组,其中有 ${formatter.plural(args.groupCount, {
|
|
903
|
+
one: ()=>`${formatter.number(args.groupCount)} 个选项`
|
|
904
|
+
,
|
|
905
|
+
other: ()=>`${formatter.number(args.groupCount)} 个选项`
|
|
906
|
+
})}. `
|
|
907
|
+
,
|
|
908
|
+
other: ``
|
|
909
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
910
|
+
true: `, 已选择`,
|
|
911
|
+
other: ``
|
|
912
|
+
}, args.isSelected)}`
|
|
913
|
+
,
|
|
914
|
+
"listboxLabel": `建议`,
|
|
915
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, 已选择`
|
|
916
|
+
};
|
|
174
917
|
|
|
175
918
|
|
|
176
919
|
var $713552ac3e0ac749$exports = {};
|
|
177
|
-
$713552ac3e0ac749$exports =
|
|
920
|
+
$713552ac3e0ac749$exports = {
|
|
921
|
+
"buttonLabel": `顯示建議`,
|
|
922
|
+
"countAnnouncement": (args, formatter)=>`${formatter.plural(args.optionCount, {
|
|
923
|
+
one: ()=>`${formatter.number(args.optionCount)} 選項`
|
|
924
|
+
,
|
|
925
|
+
other: ()=>`${formatter.number(args.optionCount)} 選項`
|
|
926
|
+
})} 可用。`
|
|
927
|
+
,
|
|
928
|
+
"focusAnnouncement": (args, formatter)=>`${formatter.select({
|
|
929
|
+
true: ()=>`輸入的群組 ${args.groupTitle}, 有 ${formatter.plural(args.groupCount, {
|
|
930
|
+
one: ()=>`${formatter.number(args.groupCount)} 選項`
|
|
931
|
+
,
|
|
932
|
+
other: ()=>`${formatter.number(args.groupCount)} 選項`
|
|
933
|
+
})}. `
|
|
934
|
+
,
|
|
935
|
+
other: ``
|
|
936
|
+
}, args.isGroupChange)}${args.optionText}${formatter.select({
|
|
937
|
+
true: `, 已選取`,
|
|
938
|
+
other: ``
|
|
939
|
+
}, args.isSelected)}`
|
|
940
|
+
,
|
|
941
|
+
"listboxLabel": `建議`,
|
|
942
|
+
"selectedAnnouncement": (args)=>`${args.optionText}, 已選取`
|
|
943
|
+
};
|
|
178
944
|
|
|
179
945
|
|
|
180
946
|
$2da059a9a42f95bf$exports = {
|
|
@@ -222,7 +988,7 @@ $2da059a9a42f95bf$exports = {
|
|
|
222
988
|
function $242452271d1e4c0e$export$8c18d1b4f7232bbf(props, state) {
|
|
223
989
|
let { buttonRef: buttonRef , popoverRef: popoverRef , inputRef: inputRef , listBoxRef: listBoxRef , keyboardDelegate: keyboardDelegate , shouldFocusWrap: // completionMode = 'suggest',
|
|
224
990
|
shouldFocusWrap , isReadOnly: isReadOnly , isDisabled: isDisabled } = props;
|
|
225
|
-
let
|
|
991
|
+
let stringFormatter = $8Zqhq$reactariai18n.useLocalizedStringFormatter((/*@__PURE__*/$parcel$interopDefault($2da059a9a42f95bf$exports)));
|
|
226
992
|
let { menuTriggerProps: menuTriggerProps , menuProps: menuProps } = $8Zqhq$reactariamenu.useMenuTrigger({
|
|
227
993
|
type: 'listbox',
|
|
228
994
|
isDisabled: isDisabled || isReadOnly
|
|
@@ -312,12 +1078,12 @@ function $242452271d1e4c0e$export$8c18d1b4f7232bbf(props, state) {
|
|
|
312
1078
|
};
|
|
313
1079
|
let triggerLabelProps = $8Zqhq$reactariautils.useLabels({
|
|
314
1080
|
id: menuTriggerProps.id,
|
|
315
|
-
'aria-label':
|
|
1081
|
+
'aria-label': stringFormatter.format('buttonLabel'),
|
|
316
1082
|
'aria-labelledby': props['aria-labelledby'] || labelProps.id
|
|
317
1083
|
});
|
|
318
1084
|
let listBoxProps = $8Zqhq$reactariautils.useLabels({
|
|
319
1085
|
id: menuProps.id,
|
|
320
|
-
'aria-label':
|
|
1086
|
+
'aria-label': stringFormatter.format('listboxLabel'),
|
|
321
1087
|
'aria-labelledby': props['aria-labelledby'] || labelProps.id
|
|
322
1088
|
});
|
|
323
1089
|
// If a touch happens on direct center of ComboBox input, might be virtual click from iPad so open ComboBox menu
|
|
@@ -356,7 +1122,7 @@ function $242452271d1e4c0e$export$8c18d1b4f7232bbf(props, state) {
|
|
|
356
1122
|
let isSelected = state.selectionManager.isSelected(itemKey);
|
|
357
1123
|
let section = sectionKey != null ? state.collection.getItem(sectionKey) : null;
|
|
358
1124
|
let sectionTitle = (section === null || section === void 0 ? void 0 : section['aria-label']) || (typeof (section === null || section === void 0 ? void 0 : section.rendered) === 'string' ? section.rendered : '') || '';
|
|
359
|
-
let announcement =
|
|
1125
|
+
let announcement = stringFormatter.format('focusAnnouncement', {
|
|
360
1126
|
isGroupChange: section && sectionKey !== lastSection.current,
|
|
361
1127
|
groupTitle: sectionTitle,
|
|
362
1128
|
groupCount: section ? [
|
|
@@ -380,7 +1146,7 @@ function $242452271d1e4c0e$export$8c18d1b4f7232bbf(props, state) {
|
|
|
380
1146
|
// The exception is VoiceOver since this isn't included in the message above.
|
|
381
1147
|
let didOpenWithoutFocusedItem = state.isOpen !== lastOpen.current && (state.selectionManager.focusedKey == null || $8Zqhq$reactariautils.isAppleDevice());
|
|
382
1148
|
if (state.isOpen && (didOpenWithoutFocusedItem || optionCount !== lastSize.current)) {
|
|
383
|
-
let announcement =
|
|
1149
|
+
let announcement = stringFormatter.format('countAnnouncement', {
|
|
384
1150
|
optionCount: optionCount
|
|
385
1151
|
});
|
|
386
1152
|
$8Zqhq$reactarialiveannouncer.announce(announcement);
|
|
@@ -393,7 +1159,7 @@ function $242452271d1e4c0e$export$8c18d1b4f7232bbf(props, state) {
|
|
|
393
1159
|
$8Zqhq$react.useEffect(()=>{
|
|
394
1160
|
if ($8Zqhq$reactariautils.isAppleDevice() && state.isFocused && state.selectedItem && state.selectedKey !== lastSelectedKey.current) {
|
|
395
1161
|
let optionText = state.selectedItem['aria-label'] || state.selectedItem.textValue || '';
|
|
396
|
-
let announcement =
|
|
1162
|
+
let announcement = stringFormatter.format('selectedAnnouncement', {
|
|
397
1163
|
optionText: optionText
|
|
398
1164
|
});
|
|
399
1165
|
$8Zqhq$reactarialiveannouncer.announce(announcement);
|
|
@@ -445,7 +1211,6 @@ function $242452271d1e4c0e$export$8c18d1b4f7232bbf(props, state) {
|
|
|
445
1211
|
}
|
|
446
1212
|
|
|
447
1213
|
|
|
448
|
-
$parcel$exportWildcard(module.exports, $242452271d1e4c0e$exports);
|
|
449
1214
|
|
|
450
1215
|
|
|
451
1216
|
//# sourceMappingURL=main.js.map
|