@pagefind/component-ui 1.5.0-alpha.3

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.
@@ -0,0 +1,2826 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __export = (target, all) => {
3
+ for (var name in all)
4
+ __defProp(target, name, { get: all[name], enumerable: true });
5
+ };
6
+
7
+ // core/focus-utils.ts
8
+ var FOCUSABLE_SELECTOR = "a[href], button, input, [tabindex]";
9
+ function getTabbablesInOrder(container = document) {
10
+ const elements = Array.from(container.querySelectorAll(FOCUSABLE_SELECTOR));
11
+ const tabbable = elements.filter((el) => {
12
+ if (el.tabIndex < 0) return false;
13
+ if (el.disabled) return false;
14
+ if (el.hasAttribute("hidden")) return false;
15
+ if (window.getComputedStyle(el).display === "none") return false;
16
+ return true;
17
+ });
18
+ const withPositiveTabIndex = [];
19
+ const withZeroTabIndex = [];
20
+ for (const el of tabbable) {
21
+ if (el.tabIndex > 0) {
22
+ withPositiveTabIndex.push(el);
23
+ } else {
24
+ withZeroTabIndex.push(el);
25
+ }
26
+ }
27
+ withPositiveTabIndex.sort((a, b) => a.tabIndex - b.tabIndex);
28
+ return [...withPositiveTabIndex, ...withZeroTabIndex];
29
+ }
30
+ function findNextComponentInTabOrder(fromElement, components) {
31
+ const tabbables = getTabbablesInOrder();
32
+ const currentIndex = tabbables.indexOf(fromElement);
33
+ if (currentIndex === -1) return null;
34
+ const componentsWithTabPos = components.map((component) => {
35
+ const firstTabbable = tabbables.find((t) => component.contains(t));
36
+ return {
37
+ component,
38
+ tabPos: firstTabbable ? tabbables.indexOf(firstTabbable) : -1
39
+ };
40
+ }).filter((c) => c.tabPos > currentIndex).sort((a, b) => a.tabPos - b.tabPos);
41
+ return componentsWithTabPos[0]?.component || null;
42
+ }
43
+ function findPreviousComponentInTabOrder(fromElement, components) {
44
+ const tabbables = getTabbablesInOrder();
45
+ const currentIndex = tabbables.indexOf(fromElement);
46
+ if (currentIndex === -1) return null;
47
+ const componentsWithTabPos = components.map((component) => {
48
+ const componentTabbables = tabbables.filter((t) => component.contains(t));
49
+ const lastTabbable = componentTabbables[componentTabbables.length - 1];
50
+ return {
51
+ component,
52
+ tabPos: lastTabbable ? tabbables.indexOf(lastTabbable) : -1
53
+ };
54
+ }).filter((c) => c.tabPos >= 0 && c.tabPos < currentIndex).sort((a, b) => b.tabPos - a.tabPos);
55
+ return componentsWithTabPos[0]?.component || null;
56
+ }
57
+
58
+ // ../translations/af.json
59
+ var af_exports = {};
60
+ __export(af_exports, {
61
+ comments: () => comments,
62
+ default: () => af_default,
63
+ direction: () => direction,
64
+ strings: () => strings,
65
+ thanks_to: () => thanks_to
66
+ });
67
+ var thanks_to = "Jan Claasen <jan@cloudcannon.com>";
68
+ var comments = "";
69
+ var direction = "ltr";
70
+ var strings = {
71
+ placeholder: "Soek",
72
+ clear_search: "Opruim",
73
+ load_more: "Laai nog resultate",
74
+ search_label: "Soek hierdie webwerf",
75
+ filters_label: "Filters",
76
+ zero_results: "Geen resultate vir [SEARCH_TERM]",
77
+ many_results: "[COUNT] resultate vir [SEARCH_TERM]",
78
+ one_result: "[COUNT] resultate vir [SEARCH_TERM]",
79
+ total_zero_results: "No results",
80
+ total_one_result: "[COUNT] result",
81
+ total_many_results: "[COUNT] results",
82
+ alt_search: "Geen resultate vir [SEARCH_TERM]. Toon resultate vir [DIFFERENT_TERM] in plaas daarvan",
83
+ search_suggestion: "Geen resultate vir [SEARCH_TERM]. Probeer eerder een van die volgende terme:",
84
+ searching: "Soek vir [SEARCH_TERM]",
85
+ results_label: "Search results",
86
+ keyboard_navigate: "navigate",
87
+ keyboard_select: "select",
88
+ keyboard_clear: "clear",
89
+ keyboard_close: "close",
90
+ keyboard_search: "search",
91
+ error_search: "Search failed",
92
+ filter_selected_one: "[COUNT] selected",
93
+ filter_selected_many: "[COUNT] selected"
94
+ };
95
+ var af_default = {
96
+ thanks_to,
97
+ comments,
98
+ direction,
99
+ strings
100
+ };
101
+
102
+ // ../translations/ar.json
103
+ var ar_exports = {};
104
+ __export(ar_exports, {
105
+ comments: () => comments2,
106
+ default: () => ar_default,
107
+ direction: () => direction2,
108
+ strings: () => strings2,
109
+ thanks_to: () => thanks_to2
110
+ });
111
+ var thanks_to2 = "Jermanuts";
112
+ var comments2 = "";
113
+ var direction2 = "rtl";
114
+ var strings2 = {
115
+ placeholder: "\u0628\u062D\u062B",
116
+ clear_search: "\u0627\u0645\u0633\u062D",
117
+ load_more: "\u062D\u0645\u0651\u0650\u0644 \u0627\u0644\u0645\u0632\u064A\u062F \u0645\u0646 \u0627\u0644\u0646\u062A\u0627\u0626\u062C",
118
+ search_label: "\u0627\u0628\u062D\u062B \u0641\u064A \u0647\u0630\u0627 \u0627\u0644\u0645\u0648\u0642\u0639",
119
+ filters_label: "\u062A\u0635\u0641\u064A\u0627\u062A",
120
+ zero_results: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C \u0644 [SEARCH_TERM]",
121
+ many_results: "[COUNT] \u0646\u062A\u0627\u0626\u062C \u0644 [SEARCH_TERM]",
122
+ one_result: "[COUNT] \u0646\u062A\u064A\u062C\u0629 \u0644 [SEARCH_TERM]",
123
+ total_zero_results: "No results",
124
+ total_one_result: "[COUNT] result",
125
+ total_many_results: "[COUNT] results",
126
+ alt_search: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C \u0644 [SEARCH_TERM]. \u064A\u0639\u0631\u0636 \u0627\u0644\u0646\u062A\u0627\u0626\u062C \u0644 [DIFFERENT_TERM] \u0628\u062F\u0644\u0627\u064B \u0645\u0646 \u0630\u0644\u0643",
127
+ search_suggestion: "\u0644\u0627 \u062A\u0648\u062C\u062F \u0646\u062A\u0627\u0626\u062C \u0644 [SEARCH_TERM]. \u062C\u0631\u0628 \u0623\u062D\u062F \u0639\u0645\u0644\u064A\u0627\u062A \u0627\u0644\u0628\u062D\u062B \u0627\u0644\u062A\u0627\u0644\u064A\u0629:",
128
+ searching: "\u064A\u0628\u062D\u062B \u0639\u0646 [SEARCH_TERM]...",
129
+ results_label: "Search results",
130
+ keyboard_navigate: "navigate",
131
+ keyboard_select: "select",
132
+ keyboard_clear: "clear",
133
+ keyboard_close: "close",
134
+ keyboard_search: "search",
135
+ error_search: "Search failed",
136
+ filter_selected_one: "[COUNT] selected",
137
+ filter_selected_many: "[COUNT] selected"
138
+ };
139
+ var ar_default = {
140
+ thanks_to: thanks_to2,
141
+ comments: comments2,
142
+ direction: direction2,
143
+ strings: strings2
144
+ };
145
+
146
+ // ../translations/bn.json
147
+ var bn_exports = {};
148
+ __export(bn_exports, {
149
+ comments: () => comments3,
150
+ default: () => bn_default,
151
+ direction: () => direction3,
152
+ strings: () => strings3,
153
+ thanks_to: () => thanks_to3
154
+ });
155
+ var thanks_to3 = "Maruf Alom <mail@marufalom.com>";
156
+ var comments3 = "";
157
+ var direction3 = "ltr";
158
+ var strings3 = {
159
+ placeholder: "\u0985\u09A8\u09C1\u09B8\u09A8\u09CD\u09A7\u09BE\u09A8 \u0995\u09B0\u09C1\u09A8",
160
+ clear_search: "\u09AE\u09C1\u099B\u09C7 \u09AB\u09C7\u09B2\u09C1\u09A8",
161
+ load_more: "\u0986\u09B0\u09CB \u09AB\u09B2\u09BE\u09AB\u09B2 \u09A6\u09C7\u0996\u09C1\u09A8",
162
+ search_label: "\u098F\u0987 \u0993\u09AF\u09BC\u09C7\u09AC\u09B8\u09BE\u0987\u099F\u09C7 \u0985\u09A8\u09C1\u09B8\u09A8\u09CD\u09A7\u09BE\u09A8 \u0995\u09B0\u09C1\u09A8",
163
+ filters_label: "\u09AB\u09BF\u09B2\u09CD\u099F\u09BE\u09B0",
164
+ zero_results: "[SEARCH_TERM] \u098F\u09B0 \u099C\u09A8\u09CD\u09AF \u0995\u09BF\u099B\u09C1 \u0996\u09C1\u0981\u099C\u09C7 \u09AA\u09BE\u0993\u09AF\u09BC\u09BE \u09AF\u09BE\u09AF\u09BC\u09A8\u09BF",
165
+ many_results: "[COUNT]-\u099F\u09BF \u09AB\u09B2\u09BE\u09AB\u09B2 \u09AA\u09BE\u0993\u09AF\u09BC\u09BE \u0997\u09BF\u09AF\u09BC\u09C7\u099B\u09C7 [SEARCH_TERM] \u098F\u09B0 \u099C\u09A8\u09CD\u09AF",
166
+ one_result: "[COUNT]-\u099F\u09BF \u09AB\u09B2\u09BE\u09AB\u09B2 \u09AA\u09BE\u0993\u09AF\u09BC\u09BE \u0997\u09BF\u09AF\u09BC\u09C7\u099B\u09C7 [SEARCH_TERM] \u098F\u09B0 \u099C\u09A8\u09CD\u09AF",
167
+ total_zero_results: "No results",
168
+ total_one_result: "[COUNT] result",
169
+ total_many_results: "[COUNT] results",
170
+ alt_search: "\u0995\u09CB\u09A8 \u0995\u09BF\u099B\u09C1 \u0996\u09C1\u0981\u099C\u09C7 \u09AA\u09BE\u0993\u09AF\u09BC\u09BE \u09AF\u09BE\u09AF\u09BC\u09A8\u09BF [SEARCH_TERM] \u098F\u09B0 \u099C\u09A8\u09CD\u09AF. \u09AA\u09B0\u09BF\u09AC\u09B0\u09CD\u09A4\u09C7 [DIFFERENT_TERM] \u098F\u09B0 \u099C\u09A8\u09CD\u09AF \u09A6\u09C7\u0996\u09BE\u09A8\u09CB \u09B9\u099A\u09CD\u099B\u09C7",
171
+ search_suggestion: "\u0995\u09CB\u09A8 \u0995\u09BF\u099B\u09C1 \u0996\u09C1\u0981\u099C\u09C7 \u09AA\u09BE\u0993\u09AF\u09BC\u09BE \u09AF\u09BE\u09AF\u09BC\u09A8\u09BF [SEARCH_TERM] \u098F\u09B0 \u09AC\u09BF\u09B7\u09AF\u09BC\u09C7. \u09A8\u09BF\u09A8\u09CD\u09AE\u09C7\u09B0 \u09AC\u09BF\u09B7\u09AF\u09BC\u09AC\u09B8\u09CD\u09A4\u09C1 \u0996\u09C1\u0981\u099C\u09C7 \u09A6\u09C7\u0996\u09C1\u09A8:",
172
+ searching: "\u0985\u09A8\u09C1\u09B8\u09A8\u09CD\u09A7\u09BE\u09A8 \u099A\u09B2\u099B\u09C7 [SEARCH_TERM]...",
173
+ results_label: "Search results",
174
+ keyboard_navigate: "navigate",
175
+ keyboard_select: "select",
176
+ keyboard_clear: "clear",
177
+ keyboard_close: "close",
178
+ keyboard_search: "search",
179
+ error_search: "Search failed",
180
+ filter_selected_one: "[COUNT] selected",
181
+ filter_selected_many: "[COUNT] selected"
182
+ };
183
+ var bn_default = {
184
+ thanks_to: thanks_to3,
185
+ comments: comments3,
186
+ direction: direction3,
187
+ strings: strings3
188
+ };
189
+
190
+ // ../translations/ca.json
191
+ var ca_exports = {};
192
+ __export(ca_exports, {
193
+ comments: () => comments4,
194
+ default: () => ca_default,
195
+ direction: () => direction4,
196
+ strings: () => strings4,
197
+ thanks_to: () => thanks_to4
198
+ });
199
+ var thanks_to4 = "Pablo Villaverde <https://github.com/pvillaverde>";
200
+ var comments4 = "";
201
+ var direction4 = "ltr";
202
+ var strings4 = {
203
+ placeholder: "Cerca",
204
+ clear_search: "Netejar",
205
+ load_more: "Veure m\xE9s resultats",
206
+ search_label: "Cerca en aquest lloc",
207
+ filters_label: "Filtres",
208
+ zero_results: "No es van trobar resultats per [SEARCH_TERM]",
209
+ many_results: "[COUNT] resultats trobats per [SEARCH_TERM]",
210
+ one_result: "[COUNT] resultat trobat per [SEARCH_TERM]",
211
+ total_zero_results: "No results",
212
+ total_one_result: "[COUNT] result",
213
+ total_many_results: "[COUNT] results",
214
+ alt_search: "No es van trobar resultats per [SEARCH_TERM]. Mostrant al seu lloc resultats per [DIFFERENT_TERM]",
215
+ search_suggestion: "No es van trobar resultats per [SEARCH_TERM]. Proveu una de les cerques seg\xFCents:",
216
+ searching: "Cercant [SEARCH_TERM]...",
217
+ results_label: "Search results",
218
+ keyboard_navigate: "navigate",
219
+ keyboard_select: "select",
220
+ keyboard_clear: "clear",
221
+ keyboard_close: "close",
222
+ keyboard_search: "search",
223
+ error_search: "Search failed",
224
+ filter_selected_one: "[COUNT] selected",
225
+ filter_selected_many: "[COUNT] selected"
226
+ };
227
+ var ca_default = {
228
+ thanks_to: thanks_to4,
229
+ comments: comments4,
230
+ direction: direction4,
231
+ strings: strings4
232
+ };
233
+
234
+ // ../translations/cs.json
235
+ var cs_exports = {};
236
+ __export(cs_exports, {
237
+ comments: () => comments5,
238
+ default: () => cs_default,
239
+ direction: () => direction5,
240
+ strings: () => strings5,
241
+ thanks_to: () => thanks_to5
242
+ });
243
+ var thanks_to5 = "Dalibor Hon <https://github.com/dallyh>";
244
+ var comments5 = "";
245
+ var direction5 = "ltr";
246
+ var strings5 = {
247
+ placeholder: "Hledat",
248
+ clear_search: "Smazat",
249
+ load_more: "Na\u010D\xEDst dal\u0161\xED v\xFDsledky",
250
+ search_label: "Prohledat tuto str\xE1nku",
251
+ filters_label: "Filtry",
252
+ zero_results: "\u017D\xE1dn\xE9 v\xFDsledky pro [SEARCH_TERM]",
253
+ many_results: "[COUNT] v\xFDsledk\u016F pro [SEARCH_TERM]",
254
+ one_result: "[COUNT] v\xFDsledek pro [SEARCH_TERM]",
255
+ total_zero_results: "No results",
256
+ total_one_result: "[COUNT] result",
257
+ total_many_results: "[COUNT] results",
258
+ alt_search: "\u017D\xE1dn\xE9 v\xFDsledky pro [SEARCH_TERM]. Zobrazuj\xED se v\xFDsledky pro [DIFFERENT_TERM]",
259
+ search_suggestion: "\u017D\xE1dn\xE9 v\xFDsledky pro [SEARCH_TERM]. Souvisej\xEDc\xED v\xFDsledky hled\xE1n\xED:",
260
+ searching: "Hled\xE1m [SEARCH_TERM]...",
261
+ results_label: "Search results",
262
+ keyboard_navigate: "navigate",
263
+ keyboard_select: "select",
264
+ keyboard_clear: "clear",
265
+ keyboard_close: "close",
266
+ keyboard_search: "search",
267
+ error_search: "Search failed",
268
+ filter_selected_one: "[COUNT] selected",
269
+ filter_selected_many: "[COUNT] selected"
270
+ };
271
+ var cs_default = {
272
+ thanks_to: thanks_to5,
273
+ comments: comments5,
274
+ direction: direction5,
275
+ strings: strings5
276
+ };
277
+
278
+ // ../translations/da.json
279
+ var da_exports = {};
280
+ __export(da_exports, {
281
+ comments: () => comments6,
282
+ default: () => da_default,
283
+ direction: () => direction6,
284
+ strings: () => strings6,
285
+ thanks_to: () => thanks_to6
286
+ });
287
+ var thanks_to6 = "Jonas Smedegaard <dr@jones.dk>";
288
+ var comments6 = "";
289
+ var direction6 = "ltr";
290
+ var strings6 = {
291
+ placeholder: "S\xF8g",
292
+ clear_search: "Nulstil",
293
+ load_more: "Indl\xE6s flere resultater",
294
+ search_label: "S\xF8g p\xE5 dette website",
295
+ filters_label: "Filtre",
296
+ zero_results: "Ingen resultater for [SEARCH_TERM]",
297
+ many_results: "[COUNT] resultater for [SEARCH_TERM]",
298
+ one_result: "[COUNT] resultat for [SEARCH_TERM]",
299
+ total_zero_results: "No results",
300
+ total_one_result: "[COUNT] result",
301
+ total_many_results: "[COUNT] results",
302
+ alt_search: "Ingen resultater for [SEARCH_TERM]. Viser resultater for [DIFFERENT_TERM] i stedet",
303
+ search_suggestion: "Ingen resultater for [SEARCH_TERM]. Pr\xF8v et af disse s\xF8geord i stedet:",
304
+ searching: "S\xF8ger efter [SEARCH_TERM]...",
305
+ results_label: "Search results",
306
+ keyboard_navigate: "navigate",
307
+ keyboard_select: "select",
308
+ keyboard_clear: "clear",
309
+ keyboard_close: "close",
310
+ keyboard_search: "search",
311
+ error_search: "Search failed",
312
+ filter_selected_one: "[COUNT] selected",
313
+ filter_selected_many: "[COUNT] selected"
314
+ };
315
+ var da_default = {
316
+ thanks_to: thanks_to6,
317
+ comments: comments6,
318
+ direction: direction6,
319
+ strings: strings6
320
+ };
321
+
322
+ // ../translations/de.json
323
+ var de_exports = {};
324
+ __export(de_exports, {
325
+ comments: () => comments7,
326
+ default: () => de_default,
327
+ direction: () => direction7,
328
+ strings: () => strings7,
329
+ thanks_to: () => thanks_to7
330
+ });
331
+ var thanks_to7 = "Jan Claasen <jan@cloudcannon.com>";
332
+ var comments7 = "";
333
+ var direction7 = "ltr";
334
+ var strings7 = {
335
+ placeholder: "Suche",
336
+ clear_search: "L\xF6schen",
337
+ load_more: "Mehr Ergebnisse laden",
338
+ search_label: "Suche diese Seite",
339
+ filters_label: "Filter",
340
+ zero_results: "Keine Ergebnisse f\xFCr [SEARCH_TERM]",
341
+ many_results: "[COUNT] Ergebnisse f\xFCr [SEARCH_TERM]",
342
+ one_result: "[COUNT] Ergebnis f\xFCr [SEARCH_TERM]",
343
+ total_zero_results: "No results",
344
+ total_one_result: "[COUNT] result",
345
+ total_many_results: "[COUNT] results",
346
+ alt_search: "Keine Ergebnisse f\xFCr [SEARCH_TERM]. Stattdessen werden Ergebnisse f\xFCr [DIFFERENT_TERM] angezeigt",
347
+ search_suggestion: "Keine Ergebnisse f\xFCr [SEARCH_TERM]. Versuchen Sie eine der folgenden Suchen:",
348
+ searching: "Suche nach [SEARCH_TERM]\u202F\u2026",
349
+ results_label: "Search results",
350
+ keyboard_navigate: "navigate",
351
+ keyboard_select: "select",
352
+ keyboard_clear: "clear",
353
+ keyboard_close: "close",
354
+ keyboard_search: "search",
355
+ error_search: "Search failed",
356
+ filter_selected_one: "[COUNT] selected",
357
+ filter_selected_many: "[COUNT] selected"
358
+ };
359
+ var de_default = {
360
+ thanks_to: thanks_to7,
361
+ comments: comments7,
362
+ direction: direction7,
363
+ strings: strings7
364
+ };
365
+
366
+ // ../translations/en.json
367
+ var en_exports = {};
368
+ __export(en_exports, {
369
+ comments: () => comments8,
370
+ default: () => en_default,
371
+ direction: () => direction8,
372
+ strings: () => strings8,
373
+ thanks_to: () => thanks_to8
374
+ });
375
+ var thanks_to8 = "Liam Bigelow <liam@cloudcannon.com>";
376
+ var comments8 = "";
377
+ var direction8 = "ltr";
378
+ var strings8 = {
379
+ placeholder: "Search",
380
+ clear_search: "Clear",
381
+ load_more: "Load more results",
382
+ search_label: "Search this site",
383
+ filters_label: "Filters",
384
+ zero_results: "No results for [SEARCH_TERM]",
385
+ many_results: "[COUNT] results for [SEARCH_TERM]",
386
+ one_result: "[COUNT] result for [SEARCH_TERM]",
387
+ total_zero_results: "No results",
388
+ total_one_result: "[COUNT] result",
389
+ total_many_results: "[COUNT] results",
390
+ alt_search: "No results for [SEARCH_TERM]. Showing results for [DIFFERENT_TERM] instead",
391
+ search_suggestion: "No results for [SEARCH_TERM]. Try one of the following searches:",
392
+ searching: "Searching for [SEARCH_TERM]...",
393
+ results_label: "Search results",
394
+ keyboard_navigate: "navigate",
395
+ keyboard_select: "select",
396
+ keyboard_clear: "clear",
397
+ keyboard_close: "close",
398
+ keyboard_search: "search",
399
+ error_search: "Search failed",
400
+ filter_selected_one: "[COUNT] selected",
401
+ filter_selected_many: "[COUNT] selected"
402
+ };
403
+ var en_default = {
404
+ thanks_to: thanks_to8,
405
+ comments: comments8,
406
+ direction: direction8,
407
+ strings: strings8
408
+ };
409
+
410
+ // ../translations/es.json
411
+ var es_exports = {};
412
+ __export(es_exports, {
413
+ comments: () => comments9,
414
+ default: () => es_default,
415
+ direction: () => direction9,
416
+ strings: () => strings9,
417
+ thanks_to: () => thanks_to9
418
+ });
419
+ var thanks_to9 = "Pablo Villaverde <https://github.com/pvillaverde>";
420
+ var comments9 = "";
421
+ var direction9 = "ltr";
422
+ var strings9 = {
423
+ placeholder: "Buscar",
424
+ clear_search: "Limpiar",
425
+ load_more: "Ver m\xE1s resultados",
426
+ search_label: "Buscar en este sitio",
427
+ filters_label: "Filtros",
428
+ zero_results: "No se encontraron resultados para [SEARCH_TERM]",
429
+ many_results: "[COUNT] resultados encontrados para [SEARCH_TERM]",
430
+ one_result: "[COUNT] resultado encontrado para [SEARCH_TERM]",
431
+ total_zero_results: "No results",
432
+ total_one_result: "[COUNT] result",
433
+ total_many_results: "[COUNT] results",
434
+ alt_search: "No se encontraron resultados para [SEARCH_TERM]. Mostrando en su lugar resultados para [DIFFERENT_TERM]",
435
+ search_suggestion: "No se encontraron resultados para [SEARCH_TERM]. Prueba una de las siguientes b\xFAsquedas:",
436
+ searching: "Buscando [SEARCH_TERM]...",
437
+ results_label: "Search results",
438
+ keyboard_navigate: "navigate",
439
+ keyboard_select: "select",
440
+ keyboard_clear: "clear",
441
+ keyboard_close: "close",
442
+ keyboard_search: "search",
443
+ error_search: "Search failed",
444
+ filter_selected_one: "[COUNT] selected",
445
+ filter_selected_many: "[COUNT] selected"
446
+ };
447
+ var es_default = {
448
+ thanks_to: thanks_to9,
449
+ comments: comments9,
450
+ direction: direction9,
451
+ strings: strings9
452
+ };
453
+
454
+ // ../translations/eu.json
455
+ var eu_exports = {};
456
+ __export(eu_exports, {
457
+ comments: () => comments10,
458
+ default: () => eu_default,
459
+ direction: () => direction10,
460
+ strings: () => strings10,
461
+ thanks_to: () => thanks_to10
462
+ });
463
+ var thanks_to10 = "Mikel Larreategi <mlarreaegi@codesyntax.com>";
464
+ var comments10 = "";
465
+ var direction10 = "ltr";
466
+ var strings10 = {
467
+ placeholder: "Bilatu",
468
+ clear_search: "Garbitu",
469
+ load_more: "Kargatu emaitza gehiagi",
470
+ search_label: "Bilatu",
471
+ filters_label: "Iragazkiak",
472
+ zero_results: "Ez dago emaitzarik [SEARCH_TERM] bilaketarentzat",
473
+ many_results: "[COUNT] emaitza [SEARCH_TERM] bilaketarentzat",
474
+ one_result: "Emaitza bat [COUNT] [SEARCH_TERM] bilaketarentzat",
475
+ total_zero_results: "No results",
476
+ total_one_result: "[COUNT] result",
477
+ total_many_results: "[COUNT] results",
478
+ alt_search: "Ez dago emaitzarik [SEARCH_TERM] bilaketarentzat. [DIFFERENT_TERM] bilaketaren emaitzak erakusten",
479
+ search_suggestion: "Ez dago emaitzarik [SEARCH_TERM] bilaketarentzat. Saiatu hauetako beste bateikin:",
480
+ searching: "[SEARCH_TERM] bilatzen...",
481
+ results_label: "Search results",
482
+ keyboard_navigate: "navigate",
483
+ keyboard_select: "select",
484
+ keyboard_clear: "clear",
485
+ keyboard_close: "close",
486
+ keyboard_search: "search",
487
+ error_search: "Search failed",
488
+ filter_selected_one: "[COUNT] selected",
489
+ filter_selected_many: "[COUNT] selected"
490
+ };
491
+ var eu_default = {
492
+ thanks_to: thanks_to10,
493
+ comments: comments10,
494
+ direction: direction10,
495
+ strings: strings10
496
+ };
497
+
498
+ // ../translations/fa.json
499
+ var fa_exports = {};
500
+ __export(fa_exports, {
501
+ comments: () => comments11,
502
+ default: () => fa_default,
503
+ direction: () => direction11,
504
+ strings: () => strings11,
505
+ thanks_to: () => thanks_to11
506
+ });
507
+ var thanks_to11 = "Ali Khaleqi Yekta <https://yekta.dev>";
508
+ var comments11 = "";
509
+ var direction11 = "rtl";
510
+ var strings11 = {
511
+ placeholder: "\u062C\u0633\u062A\u062C\u0648",
512
+ clear_search: "\u067E\u0627\u06A9\u0633\u0627\u0632\u06CC",
513
+ load_more: "\u0628\u0627\u0631\u06AF\u0630\u0627\u0631\u06CC \u0646\u062A\u0627\u06CC\u062C \u0628\u06CC\u0634\u062A\u0631",
514
+ search_label: "\u062C\u0633\u062A\u062C\u0648 \u062F\u0631 \u0633\u0627\u06CC\u062A",
515
+ filters_label: "\u0641\u06CC\u0644\u062A\u0631\u0647\u0627",
516
+ zero_results: "\u0646\u062A\u06CC\u062C\u0647\u200C\u0627\u06CC \u0628\u0631\u0627\u06CC [SEARCH_TERM] \u06CC\u0627\u0641\u062A \u0646\u0634\u062F",
517
+ many_results: "[COUNT] \u0646\u062A\u06CC\u062C\u0647 \u0628\u0631\u0627\u06CC [SEARCH_TERM] \u06CC\u0627\u0641\u062A \u0634\u062F",
518
+ one_result: "[COUNT] \u0646\u062A\u06CC\u062C\u0647 \u0628\u0631\u0627\u06CC [SEARCH_TERM] \u06CC\u0627\u0641\u062A \u0634\u062F",
519
+ total_zero_results: "No results",
520
+ total_one_result: "[COUNT] result",
521
+ total_many_results: "[COUNT] results",
522
+ alt_search: "\u0646\u062A\u06CC\u062C\u0647\u200C\u0627\u06CC \u0628\u0631\u0627\u06CC [SEARCH_TERM] \u06CC\u0627\u0641\u062A \u0646\u0634\u062F. \u062F\u0631 \u0639\u0648\u0636 \u0646\u062A\u0627\u06CC\u062C \u0628\u0631\u0627\u06CC [DIFFERENT_TERM] \u0646\u0645\u0627\u06CC\u0634 \u062F\u0627\u062F\u0647 \u0645\u06CC\u200C\u0634\u0648\u062F",
523
+ search_suggestion: "\u0646\u062A\u06CC\u062C\u0647\u200C\u0627\u06CC \u0628\u0631\u0627\u06CC [SEARCH_TERM] \u06CC\u0627\u0641\u062A \u0646\u0634\u062F. \u06CC\u06A9\u06CC \u0627\u0632 \u062C\u0633\u062A\u062C\u0648\u0647\u0627\u06CC \u0632\u06CC\u0631 \u0631\u0627 \u0627\u0645\u062A\u062D\u0627\u0646 \u06A9\u0646\u06CC\u062F:",
524
+ searching: "\u062F\u0631 \u062D\u0627\u0644 \u062C\u0633\u062A\u062C\u0648\u06CC [SEARCH_TERM]...",
525
+ results_label: "Search results",
526
+ keyboard_navigate: "navigate",
527
+ keyboard_select: "select",
528
+ keyboard_clear: "clear",
529
+ keyboard_close: "close",
530
+ keyboard_search: "search",
531
+ error_search: "Search failed",
532
+ filter_selected_one: "[COUNT] selected",
533
+ filter_selected_many: "[COUNT] selected"
534
+ };
535
+ var fa_default = {
536
+ thanks_to: thanks_to11,
537
+ comments: comments11,
538
+ direction: direction11,
539
+ strings: strings11
540
+ };
541
+
542
+ // ../translations/fi.json
543
+ var fi_exports = {};
544
+ __export(fi_exports, {
545
+ comments: () => comments12,
546
+ default: () => fi_default,
547
+ direction: () => direction12,
548
+ strings: () => strings12,
549
+ thanks_to: () => thanks_to12
550
+ });
551
+ var thanks_to12 = "Valtteri Laitinen <dev@valtlai.fi>";
552
+ var comments12 = "";
553
+ var direction12 = "ltr";
554
+ var strings12 = {
555
+ placeholder: "Haku",
556
+ clear_search: "Tyhjenn\xE4",
557
+ load_more: "Lataa lis\xE4\xE4 tuloksia",
558
+ search_label: "Hae t\xE4lt\xE4 sivustolta",
559
+ filters_label: "Suodattimet",
560
+ zero_results: "Ei tuloksia haulle [SEARCH_TERM]",
561
+ many_results: "[COUNT] tulosta haulle [SEARCH_TERM]",
562
+ one_result: "[COUNT] tulos haulle [SEARCH_TERM]",
563
+ total_zero_results: "No results",
564
+ total_one_result: "[COUNT] result",
565
+ total_many_results: "[COUNT] results",
566
+ alt_search: "Ei tuloksia haulle [SEARCH_TERM]. N\xE4ytet\xE4\xE4n tulokset sen sijaan haulle [DIFFERENT_TERM]",
567
+ search_suggestion: "Ei tuloksia haulle [SEARCH_TERM]. Kokeile jotain seuraavista:",
568
+ searching: "Haetaan [SEARCH_TERM]...",
569
+ results_label: "Search results",
570
+ keyboard_navigate: "navigate",
571
+ keyboard_select: "select",
572
+ keyboard_clear: "clear",
573
+ keyboard_close: "close",
574
+ keyboard_search: "search",
575
+ error_search: "Search failed",
576
+ filter_selected_one: "[COUNT] selected",
577
+ filter_selected_many: "[COUNT] selected"
578
+ };
579
+ var fi_default = {
580
+ thanks_to: thanks_to12,
581
+ comments: comments12,
582
+ direction: direction12,
583
+ strings: strings12
584
+ };
585
+
586
+ // ../translations/fr.json
587
+ var fr_exports = {};
588
+ __export(fr_exports, {
589
+ comments: () => comments13,
590
+ default: () => fr_default,
591
+ direction: () => direction13,
592
+ strings: () => strings13,
593
+ thanks_to: () => thanks_to13
594
+ });
595
+ var thanks_to13 = "Nicolas Friedli <nicolas@theologique.ch>";
596
+ var comments13 = "";
597
+ var direction13 = "ltr";
598
+ var strings13 = {
599
+ placeholder: "Rechercher",
600
+ clear_search: "Nettoyer",
601
+ load_more: "Charger plus de r\xE9sultats",
602
+ search_label: "Recherche sur ce site",
603
+ filters_label: "Filtres",
604
+ zero_results: "Pas de r\xE9sultat pour [SEARCH_TERM]",
605
+ many_results: "[COUNT] r\xE9sultats pour [SEARCH_TERM]",
606
+ one_result: "[COUNT] r\xE9sultat pour [SEARCH_TERM]",
607
+ total_zero_results: "No results",
608
+ total_one_result: "[COUNT] result",
609
+ total_many_results: "[COUNT] results",
610
+ alt_search: "Pas de r\xE9sultat pour [SEARCH_TERM]. Montre les r\xE9sultats pour [DIFFERENT_TERM] \xE0 la place",
611
+ search_suggestion: "Pas de r\xE9sultat pour [SEARCH_TERM]. Essayer une des recherches suivantes:",
612
+ searching: "Recherche [SEARCH_TERM]...",
613
+ results_label: "Search results",
614
+ keyboard_navigate: "navigate",
615
+ keyboard_select: "select",
616
+ keyboard_clear: "clear",
617
+ keyboard_close: "close",
618
+ keyboard_search: "search",
619
+ error_search: "Search failed",
620
+ filter_selected_one: "[COUNT] selected",
621
+ filter_selected_many: "[COUNT] selected"
622
+ };
623
+ var fr_default = {
624
+ thanks_to: thanks_to13,
625
+ comments: comments13,
626
+ direction: direction13,
627
+ strings: strings13
628
+ };
629
+
630
+ // ../translations/gl.json
631
+ var gl_exports = {};
632
+ __export(gl_exports, {
633
+ comments: () => comments14,
634
+ default: () => gl_default,
635
+ direction: () => direction14,
636
+ strings: () => strings14,
637
+ thanks_to: () => thanks_to14
638
+ });
639
+ var thanks_to14 = "Pablo Villaverde <https://github.com/pvillaverde>";
640
+ var comments14 = "";
641
+ var direction14 = "ltr";
642
+ var strings14 = {
643
+ placeholder: "Buscar",
644
+ clear_search: "Limpar",
645
+ load_more: "Ver m\xE1is resultados",
646
+ search_label: "Buscar neste sitio",
647
+ filters_label: "Filtros",
648
+ zero_results: "Non se atoparon resultados para [SEARCH_TERM]",
649
+ many_results: "[COUNT] resultados atopados para [SEARCH_TERM]",
650
+ one_result: "[COUNT] resultado atopado para [SEARCH_TERM]",
651
+ total_zero_results: "No results",
652
+ total_one_result: "[COUNT] result",
653
+ total_many_results: "[COUNT] results",
654
+ alt_search: "Non se atoparon resultados para [SEARCH_TERM]. Amosando no seu lugar resultados para [DIFFERENT_TERM]",
655
+ search_suggestion: "Non se atoparon resultados para [SEARCH_TERM]. Probe unha das seguintes pesquisas:",
656
+ searching: "Buscando [SEARCH_TERM]...",
657
+ results_label: "Search results",
658
+ keyboard_navigate: "navigate",
659
+ keyboard_select: "select",
660
+ keyboard_clear: "clear",
661
+ keyboard_close: "close",
662
+ keyboard_search: "search",
663
+ error_search: "Search failed",
664
+ filter_selected_one: "[COUNT] selected",
665
+ filter_selected_many: "[COUNT] selected"
666
+ };
667
+ var gl_default = {
668
+ thanks_to: thanks_to14,
669
+ comments: comments14,
670
+ direction: direction14,
671
+ strings: strings14
672
+ };
673
+
674
+ // ../translations/he.json
675
+ var he_exports = {};
676
+ __export(he_exports, {
677
+ comments: () => comments15,
678
+ default: () => he_default,
679
+ direction: () => direction15,
680
+ strings: () => strings15,
681
+ thanks_to: () => thanks_to15
682
+ });
683
+ var thanks_to15 = "Nir Tamir <nirtamir2@gmail.com>";
684
+ var comments15 = "";
685
+ var direction15 = "rtl";
686
+ var strings15 = {
687
+ placeholder: "\u05D7\u05D9\u05E4\u05D5\u05E9",
688
+ clear_search: "\u05E0\u05D9\u05E7\u05D5\u05D9",
689
+ load_more: "\u05E2\u05D5\u05D3 \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA",
690
+ search_label: "\u05D7\u05D9\u05E4\u05D5\u05E9 \u05D1\u05D0\u05EA\u05E8 \u05D6\u05D4",
691
+ filters_label: "\u05DE\u05E1\u05E0\u05E0\u05D9\u05DD",
692
+ zero_results: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0\u05D5 \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 [SEARCH_TERM]",
693
+ many_results: "\u05E0\u05DE\u05E6\u05D0\u05D5 [COUNT] \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 [SEARCH_TERM]",
694
+ one_result: "\u05E0\u05DE\u05E6\u05D0\u05D4 \u05EA\u05D5\u05E6\u05D0\u05D4 \u05D0\u05D7\u05EA \u05E2\u05D1\u05D5\u05E8 [SEARCH_TERM]",
695
+ total_zero_results: "No results",
696
+ total_one_result: "[COUNT] result",
697
+ total_many_results: "[COUNT] results",
698
+ alt_search: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0\u05D5 \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 [SEARCH_TERM]. \u05DE\u05D5\u05E6\u05D2\u05D5\u05EA \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 [DIFFERENT_TERM]",
699
+ search_suggestion: "\u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0\u05D5 \u05EA\u05D5\u05E6\u05D0\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 [SEARCH_TERM]. \u05E0\u05E1\u05D5 \u05D0\u05D7\u05D3 \u05DE\u05D4\u05D7\u05D9\u05E4\u05D5\u05E9\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD:",
700
+ searching: "\u05DE\u05D7\u05E4\u05E9 \u05D0\u05EA [SEARCH_TERM]...",
701
+ results_label: "Search results",
702
+ keyboard_navigate: "navigate",
703
+ keyboard_select: "select",
704
+ keyboard_clear: "clear",
705
+ keyboard_close: "close",
706
+ keyboard_search: "search",
707
+ error_search: "Search failed",
708
+ filter_selected_one: "[COUNT] selected",
709
+ filter_selected_many: "[COUNT] selected"
710
+ };
711
+ var he_default = {
712
+ thanks_to: thanks_to15,
713
+ comments: comments15,
714
+ direction: direction15,
715
+ strings: strings15
716
+ };
717
+
718
+ // ../translations/hi.json
719
+ var hi_exports = {};
720
+ __export(hi_exports, {
721
+ comments: () => comments16,
722
+ default: () => hi_default,
723
+ direction: () => direction16,
724
+ strings: () => strings16,
725
+ thanks_to: () => thanks_to16
726
+ });
727
+ var thanks_to16 = "Amit Yadav <amit@thetechbasket.com>";
728
+ var comments16 = "";
729
+ var direction16 = "ltr";
730
+ var strings16 = {
731
+ placeholder: "\u0916\u094B\u091C\u0947\u0902",
732
+ clear_search: "\u0938\u093E\u092B \u0915\u0930\u0947\u0902",
733
+ load_more: "\u0914\u0930 \u0905\u0927\u093F\u0915 \u092A\u0930\u093F\u0923\u093E\u092E \u0932\u094B\u0921 \u0915\u0930\u0947\u0902",
734
+ search_label: "\u0907\u0938 \u0938\u093E\u0907\u091F \u092E\u0947\u0902 \u0916\u094B\u091C\u0947\u0902",
735
+ filters_label: "\u092B\u093C\u093F\u0932\u094D\u091F\u0930",
736
+ zero_results: "\u0915\u094B\u0908 \u092A\u0930\u093F\u0923\u093E\u092E [SEARCH_TERM] \u0915\u0947 \u0932\u093F\u090F \u0928\u0939\u0940\u0902 \u092E\u093F\u0932\u093E",
737
+ many_results: "[COUNT] \u092A\u0930\u093F\u0923\u093E\u092E [SEARCH_TERM] \u0915\u0947 \u0932\u093F\u090F \u092E\u093F\u0932\u0947",
738
+ one_result: "[COUNT] \u092A\u0930\u093F\u0923\u093E\u092E [SEARCH_TERM] \u0915\u0947 \u0932\u093F\u090F \u092E\u093F\u0932\u093E",
739
+ total_zero_results: "No results",
740
+ total_one_result: "[COUNT] result",
741
+ total_many_results: "[COUNT] results",
742
+ alt_search: "[SEARCH_TERM] \u0915\u0947 \u0932\u093F\u090F \u0915\u094B\u0908 \u092A\u0930\u093F\u0923\u093E\u092E \u0928\u0939\u0940\u0902 \u092E\u093F\u0932\u093E\u0964 \u0907\u0938\u0915\u0947 \u092C\u091C\u093E\u092F [DIFFERENT_TERM] \u0915\u0947 \u0932\u093F\u090F \u092A\u0930\u093F\u0923\u093E\u092E \u0926\u093F\u0916\u093E \u0930\u0939\u093E \u0939\u0948",
743
+ search_suggestion: "[SEARCH_TERM] \u0915\u0947 \u0932\u093F\u090F \u0915\u094B\u0908 \u092A\u0930\u093F\u0923\u093E\u092E \u0928\u0939\u0940\u0902 \u092E\u093F\u0932\u093E\u0964 \u0928\u093F\u092E\u094D\u0928\u0932\u093F\u0916\u093F\u0924 \u0916\u094B\u091C\u094B\u0902 \u092E\u0947\u0902 \u0938\u0947 \u0915\u094B\u0908 \u090F\u0915 \u0906\u091C\u093C\u092E\u093E\u090F\u0902:",
744
+ searching: "[SEARCH_TERM] \u0915\u0940 \u0916\u094B\u091C \u0915\u0940 \u091C\u093E \u0930\u0939\u0940 \u0939\u0948...",
745
+ results_label: "Search results",
746
+ keyboard_navigate: "navigate",
747
+ keyboard_select: "select",
748
+ keyboard_clear: "clear",
749
+ keyboard_close: "close",
750
+ keyboard_search: "search",
751
+ error_search: "Search failed",
752
+ filter_selected_one: "[COUNT] selected",
753
+ filter_selected_many: "[COUNT] selected"
754
+ };
755
+ var hi_default = {
756
+ thanks_to: thanks_to16,
757
+ comments: comments16,
758
+ direction: direction16,
759
+ strings: strings16
760
+ };
761
+
762
+ // ../translations/hr.json
763
+ var hr_exports = {};
764
+ __export(hr_exports, {
765
+ comments: () => comments17,
766
+ default: () => hr_default,
767
+ direction: () => direction17,
768
+ strings: () => strings17,
769
+ thanks_to: () => thanks_to17
770
+ });
771
+ var thanks_to17 = "Diomed <https://github.com/diomed>";
772
+ var comments17 = "";
773
+ var direction17 = "ltr";
774
+ var strings17 = {
775
+ placeholder: "Tra\u017Ei",
776
+ clear_search: "O\u010Disti",
777
+ load_more: "U\u010Ditaj vi\u0161e rezultata",
778
+ search_label: "Pretra\u017Ei ovu stranicu",
779
+ filters_label: "Filteri",
780
+ zero_results: "Nema rezultata za [SEARCH_TERM]",
781
+ many_results: "[COUNT] rezultata za [SEARCH_TERM]",
782
+ one_result: "[COUNT] rezultat za [SEARCH_TERM]",
783
+ total_zero_results: "No results",
784
+ total_one_result: "[COUNT] result",
785
+ total_many_results: "[COUNT] results",
786
+ alt_search: "Nema rezultata za [SEARCH_TERM]. Prikazujem rezultate za [DIFFERENT_TERM]",
787
+ search_suggestion: "Nema rezultata za [SEARCH_TERM]. Poku\u0161aj s jednom od ovih pretraga:",
788
+ searching: "Pretra\u017Eujem [SEARCH_TERM]...",
789
+ results_label: "Search results",
790
+ keyboard_navigate: "navigate",
791
+ keyboard_select: "select",
792
+ keyboard_clear: "clear",
793
+ keyboard_close: "close",
794
+ keyboard_search: "search",
795
+ error_search: "Search failed",
796
+ filter_selected_one: "[COUNT] selected",
797
+ filter_selected_many: "[COUNT] selected"
798
+ };
799
+ var hr_default = {
800
+ thanks_to: thanks_to17,
801
+ comments: comments17,
802
+ direction: direction17,
803
+ strings: strings17
804
+ };
805
+
806
+ // ../translations/hu.json
807
+ var hu_exports = {};
808
+ __export(hu_exports, {
809
+ comments: () => comments18,
810
+ default: () => hu_default,
811
+ direction: () => direction18,
812
+ strings: () => strings18,
813
+ thanks_to: () => thanks_to18
814
+ });
815
+ var thanks_to18 = "Adam Laki <info@adamlaki.com>";
816
+ var comments18 = "";
817
+ var direction18 = "ltr";
818
+ var strings18 = {
819
+ placeholder: "Keres\xE9s",
820
+ clear_search: "T\xF6rl\xE9s",
821
+ load_more: "Tov\xE1bbi tal\xE1latok bet\xF6lt\xE9se",
822
+ search_label: "Keres\xE9s az oldalon",
823
+ filters_label: "Sz\u0171r\xE9s",
824
+ zero_results: "Nincs tal\xE1lat a(z) [SEARCH_TERM] kifejez\xE9sre",
825
+ many_results: "[COUNT] db tal\xE1lat a(z) [SEARCH_TERM] kifejez\xE9sre",
826
+ one_result: "[COUNT] db tal\xE1lat a(z) [SEARCH_TERM] kifejez\xE9sre",
827
+ total_zero_results: "No results",
828
+ total_one_result: "[COUNT] result",
829
+ total_many_results: "[COUNT] results",
830
+ alt_search: "Nincs tal\xE1lat a(z) [SEARCH_TERM] kifejez\xE9sre. Tal\xE1latok mutat\xE1sa ink\xE1bb a(z) [DIFFERENT_TERM] kifejez\xE9sre",
831
+ search_suggestion: "Nincs tal\xE1lat a(z) [SEARCH_TERM] kifejez\xE9sre. Pr\xF3b\xE1ld meg a k\xF6vetkez\u0151 keres\xE9sek egyik\xE9t:",
832
+ searching: "Keres\xE9s a(z) [SEARCH_TERM] kifejez\xE9sre...",
833
+ results_label: "Search results",
834
+ keyboard_navigate: "navigate",
835
+ keyboard_select: "select",
836
+ keyboard_clear: "clear",
837
+ keyboard_close: "close",
838
+ keyboard_search: "search",
839
+ error_search: "Search failed",
840
+ filter_selected_one: "[COUNT] selected",
841
+ filter_selected_many: "[COUNT] selected"
842
+ };
843
+ var hu_default = {
844
+ thanks_to: thanks_to18,
845
+ comments: comments18,
846
+ direction: direction18,
847
+ strings: strings18
848
+ };
849
+
850
+ // ../translations/id.json
851
+ var id_exports = {};
852
+ __export(id_exports, {
853
+ comments: () => comments19,
854
+ default: () => id_default,
855
+ direction: () => direction19,
856
+ strings: () => strings19,
857
+ thanks_to: () => thanks_to19
858
+ });
859
+ var thanks_to19 = "Nixentric";
860
+ var comments19 = "";
861
+ var direction19 = "ltr";
862
+ var strings19 = {
863
+ placeholder: "Cari",
864
+ clear_search: "Bersihkan",
865
+ load_more: "Muat lebih banyak hasil",
866
+ search_label: "Telusuri situs ini",
867
+ filters_label: "Filter",
868
+ zero_results: "[SEARCH_TERM] tidak ditemukan",
869
+ many_results: "Ditemukan [COUNT] hasil untuk [SEARCH_TERM]",
870
+ one_result: "Ditemukan [COUNT] hasil untuk [SEARCH_TERM]",
871
+ total_zero_results: "No results",
872
+ total_one_result: "[COUNT] result",
873
+ total_many_results: "[COUNT] results",
874
+ alt_search: "[SEARCH_TERM] tidak ditemukan. Menampilkan hasil [DIFFERENT_TERM] sebagai gantinya",
875
+ search_suggestion: "[SEARCH_TERM] tidak ditemukan. Coba salah satu pencarian berikut ini:",
876
+ searching: "Mencari [SEARCH_TERM]...",
877
+ results_label: "Search results",
878
+ keyboard_navigate: "navigate",
879
+ keyboard_select: "select",
880
+ keyboard_clear: "clear",
881
+ keyboard_close: "close",
882
+ keyboard_search: "search",
883
+ error_search: "Search failed",
884
+ filter_selected_one: "[COUNT] selected",
885
+ filter_selected_many: "[COUNT] selected"
886
+ };
887
+ var id_default = {
888
+ thanks_to: thanks_to19,
889
+ comments: comments19,
890
+ direction: direction19,
891
+ strings: strings19
892
+ };
893
+
894
+ // ../translations/it.json
895
+ var it_exports = {};
896
+ __export(it_exports, {
897
+ comments: () => comments20,
898
+ default: () => it_default,
899
+ direction: () => direction20,
900
+ strings: () => strings20,
901
+ thanks_to: () => thanks_to20
902
+ });
903
+ var thanks_to20 = "Cosette Bruhns Alonso, Andrew Janco <apjanco@upenn.edu>";
904
+ var comments20 = "";
905
+ var direction20 = "ltr";
906
+ var strings20 = {
907
+ placeholder: "Cerca",
908
+ clear_search: "Cancella la cronologia",
909
+ load_more: "Mostra pi\xF9 risultati",
910
+ search_label: "Cerca nel sito",
911
+ filters_label: "Filtri di ricerca",
912
+ zero_results: "Nessun risultato per [SEARCH_TERM]",
913
+ many_results: "[COUNT] risultati per [SEARCH_TERM]",
914
+ one_result: "[COUNT] risultato per [SEARCH_TERM]",
915
+ total_zero_results: "No results",
916
+ total_one_result: "[COUNT] result",
917
+ total_many_results: "[COUNT] results",
918
+ alt_search: "Nessun risultato per [SEARCH_TERM]. Mostrando risultati per [DIFFERENT_TERM] come alternativa.",
919
+ search_suggestion: "Nessun risultato per [SEARCH_TERM]. Prova una delle seguenti ricerche:",
920
+ searching: "Cercando [SEARCH_TERM]...",
921
+ results_label: "Search results",
922
+ keyboard_navigate: "navigate",
923
+ keyboard_select: "select",
924
+ keyboard_clear: "clear",
925
+ keyboard_close: "close",
926
+ keyboard_search: "search",
927
+ error_search: "Search failed",
928
+ filter_selected_one: "[COUNT] selected",
929
+ filter_selected_many: "[COUNT] selected"
930
+ };
931
+ var it_default = {
932
+ thanks_to: thanks_to20,
933
+ comments: comments20,
934
+ direction: direction20,
935
+ strings: strings20
936
+ };
937
+
938
+ // ../translations/ja.json
939
+ var ja_exports = {};
940
+ __export(ja_exports, {
941
+ comments: () => comments21,
942
+ default: () => ja_default,
943
+ direction: () => direction21,
944
+ strings: () => strings21,
945
+ thanks_to: () => thanks_to21
946
+ });
947
+ var thanks_to21 = "Tate";
948
+ var comments21 = "";
949
+ var direction21 = "ltr";
950
+ var strings21 = {
951
+ placeholder: "\u691C\u7D22",
952
+ clear_search: "\u30AF\u30EA\u30A2",
953
+ load_more: "\u6B21\u3092\u8AAD\u307F\u8FBC\u3080",
954
+ search_label: "\u3053\u306E\u30B5\u30A4\u30C8\u3092\u691C\u7D22",
955
+ filters_label: "\u30D5\u30A3\u30EB\u30BF",
956
+ zero_results: "[SEARCH_TERM]\u306E\u691C\u7D22\u306B\u4E00\u81F4\u3059\u308B\u60C5\u5831\u306F\u3042\u308A\u307E\u305B\u3093\u3067\u3057\u305F",
957
+ many_results: "[SEARCH_TERM]\u306E[COUNT]\u4EF6\u306E\u691C\u7D22\u7D50\u679C",
958
+ one_result: "[SEARCH_TERM]\u306E[COUNT]\u4EF6\u306E\u691C\u7D22\u7D50\u679C",
959
+ total_zero_results: "No results",
960
+ total_one_result: "[COUNT] result",
961
+ total_many_results: "[COUNT] results",
962
+ alt_search: "[SEARCH_TERM]\u306E\u691C\u7D22\u306B\u4E00\u81F4\u3059\u308B\u60C5\u5831\u306F\u3042\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002[DIFFERENT_TERM]\u306E\u691C\u7D22\u7D50\u679C\u3092\u8868\u793A\u3057\u3066\u3044\u307E\u3059",
963
+ search_suggestion: "[SEARCH_TERM]\u306E\u691C\u7D22\u306B\u4E00\u81F4\u3059\u308B\u60C5\u5831\u306F\u3042\u308A\u307E\u305B\u3093\u3067\u3057\u305F\u3002\u6B21\u306E\u3044\u305A\u308C\u304B\u306E\u691C\u7D22\u3092\u8A66\u3057\u3066\u304F\u3060\u3055\u3044",
964
+ searching: "[SEARCH_TERM]\u3092\u691C\u7D22\u3057\u3066\u3044\u307E\u3059",
965
+ results_label: "Search results",
966
+ keyboard_navigate: "navigate",
967
+ keyboard_select: "select",
968
+ keyboard_clear: "clear",
969
+ keyboard_close: "close",
970
+ keyboard_search: "search",
971
+ error_search: "Search failed",
972
+ filter_selected_one: "[COUNT] selected",
973
+ filter_selected_many: "[COUNT] selected"
974
+ };
975
+ var ja_default = {
976
+ thanks_to: thanks_to21,
977
+ comments: comments21,
978
+ direction: direction21,
979
+ strings: strings21
980
+ };
981
+
982
+ // ../translations/ko.json
983
+ var ko_exports = {};
984
+ __export(ko_exports, {
985
+ comments: () => comments22,
986
+ default: () => ko_default,
987
+ direction: () => direction22,
988
+ strings: () => strings22,
989
+ thanks_to: () => thanks_to22
990
+ });
991
+ var thanks_to22 = "Seokho Son <https://github.com/seokho-son>";
992
+ var comments22 = "";
993
+ var direction22 = "ltr";
994
+ var strings22 = {
995
+ placeholder: "\uAC80\uC0C9\uC5B4",
996
+ clear_search: "\uBE44\uC6B0\uAE30",
997
+ load_more: "\uAC80\uC0C9 \uACB0\uACFC \uB354 \uBCF4\uAE30",
998
+ search_label: "\uC0AC\uC774\uD2B8 \uAC80\uC0C9",
999
+ filters_label: "\uD544\uD130",
1000
+ zero_results: "[SEARCH_TERM]\uC5D0 \uB300\uD55C \uACB0\uACFC \uC5C6\uC74C",
1001
+ many_results: "[SEARCH_TERM]\uC5D0 \uB300\uD55C \uACB0\uACFC [COUNT]\uAC74",
1002
+ one_result: "[SEARCH_TERM]\uC5D0 \uB300\uD55C \uACB0\uACFC [COUNT]\uAC74",
1003
+ total_zero_results: "No results",
1004
+ total_one_result: "[COUNT] result",
1005
+ total_many_results: "[COUNT] results",
1006
+ alt_search: "[SEARCH_TERM]\uC5D0 \uB300\uD55C \uACB0\uACFC \uC5C6\uC74C. [DIFFERENT_TERM]\uC5D0 \uB300\uD55C \uACB0\uACFC",
1007
+ search_suggestion: "[SEARCH_TERM]\uC5D0 \uB300\uD55C \uACB0\uACFC \uC5C6\uC74C. \uCD94\uCC9C \uAC80\uC0C9\uC5B4: ",
1008
+ searching: "[SEARCH_TERM] \uAC80\uC0C9 \uC911...",
1009
+ results_label: "Search results",
1010
+ keyboard_navigate: "navigate",
1011
+ keyboard_select: "select",
1012
+ keyboard_clear: "clear",
1013
+ keyboard_close: "close",
1014
+ keyboard_search: "search",
1015
+ error_search: "Search failed",
1016
+ filter_selected_one: "[COUNT] selected",
1017
+ filter_selected_many: "[COUNT] selected"
1018
+ };
1019
+ var ko_default = {
1020
+ thanks_to: thanks_to22,
1021
+ comments: comments22,
1022
+ direction: direction22,
1023
+ strings: strings22
1024
+ };
1025
+
1026
+ // ../translations/mi.json
1027
+ var mi_exports = {};
1028
+ __export(mi_exports, {
1029
+ comments: () => comments23,
1030
+ default: () => mi_default,
1031
+ direction: () => direction23,
1032
+ strings: () => strings23,
1033
+ thanks_to: () => thanks_to23
1034
+ });
1035
+ var thanks_to23 = "";
1036
+ var comments23 = "";
1037
+ var direction23 = "ltr";
1038
+ var strings23 = {
1039
+ placeholder: "Rapu",
1040
+ clear_search: "Whakakore",
1041
+ load_more: "Whakauta \u0113tahi otinga k\u0113",
1042
+ search_label: "Rapu",
1043
+ filters_label: "T\u0101tari",
1044
+ zero_results: "Otinga kore ki [SEARCH_TERM]",
1045
+ many_results: "[COUNT] otinga ki [SEARCH_TERM]",
1046
+ one_result: "[COUNT] otinga ki [SEARCH_TERM]",
1047
+ total_zero_results: "No results",
1048
+ total_one_result: "[COUNT] result",
1049
+ total_many_results: "[COUNT] results",
1050
+ alt_search: "Otinga kore ki [SEARCH_TERM]. Otinga k\u0113 ki [DIFFERENT_TERM]",
1051
+ search_suggestion: "Otinga kore ki [SEARCH_TERM]. whakam\u0101tau ki ng\u0101 mea atu:",
1052
+ searching: "Rapu ki [SEARCH_TERM]...",
1053
+ results_label: "Search results",
1054
+ keyboard_navigate: "navigate",
1055
+ keyboard_select: "select",
1056
+ keyboard_clear: "clear",
1057
+ keyboard_close: "close",
1058
+ keyboard_search: "search",
1059
+ error_search: "Search failed",
1060
+ filter_selected_one: "[COUNT] selected",
1061
+ filter_selected_many: "[COUNT] selected"
1062
+ };
1063
+ var mi_default = {
1064
+ thanks_to: thanks_to23,
1065
+ comments: comments23,
1066
+ direction: direction23,
1067
+ strings: strings23
1068
+ };
1069
+
1070
+ // ../translations/my.json
1071
+ var my_exports = {};
1072
+ __export(my_exports, {
1073
+ comments: () => comments24,
1074
+ default: () => my_default,
1075
+ direction: () => direction24,
1076
+ strings: () => strings24,
1077
+ thanks_to: () => thanks_to24
1078
+ });
1079
+ var thanks_to24 = "Harry Min Khant <https://harrymkt.github.io>";
1080
+ var comments24 = "";
1081
+ var direction24 = "ltr";
1082
+ var strings24 = {
1083
+ placeholder: "\u101B\u103E\u102C\u101B\u1014\u103A",
1084
+ clear_search: "\u101B\u103E\u102C\u1016\u103D\u1031\u1019\u103E\u102F\u1000\u102D\u102F \u101B\u103E\u1004\u103A\u1038\u101C\u1004\u103A\u1038\u1015\u102B\u104B",
1085
+ load_more: "\u1014\u1031\u102C\u1000\u103A\u1011\u1015\u103A\u101B\u101C\u1012\u103A\u1019\u103B\u102C\u1038\u1000\u102D\u102F \u1010\u1004\u103A\u1015\u102B\u104B",
1086
+ search_label: "\u1024\u1006\u102D\u102F\u1000\u103A\u1010\u103D\u1004\u103A\u101B\u103E\u102C\u1016\u103D\u1031\u1015\u102B\u104B",
1087
+ filters_label: "\u1005\u1005\u103A\u1011\u102F\u1010\u103A\u1019\u103E\u102F\u1019\u103B\u102C\u1038",
1088
+ zero_results: "[SEARCH_TERM] \u1021\u1010\u103D\u1000\u103A \u101B\u101C\u1012\u103A\u1019\u103B\u102C\u1038 \u1019\u101B\u103E\u102D\u1015\u102B",
1089
+ many_results: "[SEARCH_TERM] \u1021\u1010\u103D\u1000\u103A \u101B\u101C\u1012\u103A [COUNT] \u1001\u102F",
1090
+ one_result: "[SEARCH_TERM] \u1021\u1010\u103D\u1000\u103A \u101B\u101C\u1012\u103A [COUNT]",
1091
+ total_zero_results: "No results",
1092
+ total_one_result: "[COUNT] result",
1093
+ total_many_results: "[COUNT] results",
1094
+ alt_search: "[SEARCH_TERM] \u1021\u1010\u103D\u1000\u103A \u101B\u101C\u1012\u103A\u1019\u101B\u103E\u102D\u1015\u102B\u104B \u104E\u1004\u103A\u1038\u1021\u1005\u102C\u1038 [DIFFERENT_TERM] \u1021\u1010\u103D\u1000\u103A \u101B\u101C\u1012\u103A\u1019\u103B\u102C\u1038\u1000\u102D\u102F \u1015\u103C\u101E\u101E\u100A\u103A\u104B",
1095
+ search_suggestion: "[SEARCH_TERM] \u1021\u1010\u103D\u1000\u103A \u101B\u101C\u1012\u103A\u1019\u101B\u103E\u102D\u1015\u102B\u104B \u1021\u1031\u102C\u1000\u103A\u1015\u102B\u101B\u103E\u102C\u1016\u103D\u1031\u1019\u103E\u102F\u1019\u103B\u102C\u1038\u1011\u1032\u1019\u103E \u1010\u1005\u103A\u1001\u102F\u1000\u102D\u102F \u1005\u1019\u103A\u1038\u1000\u103C\u100A\u1037\u103A\u1015\u102B:",
1096
+ searching: "[SEARCH_TERM] \u1000\u102D\u102F \u101B\u103E\u102C\u1016\u103D\u1031\u1014\u1031\u101E\u100A\u103A...",
1097
+ results_label: "Search results",
1098
+ keyboard_navigate: "navigate",
1099
+ keyboard_select: "select",
1100
+ keyboard_clear: "clear",
1101
+ keyboard_close: "close",
1102
+ keyboard_search: "search",
1103
+ error_search: "Search failed",
1104
+ filter_selected_one: "[COUNT] selected",
1105
+ filter_selected_many: "[COUNT] selected"
1106
+ };
1107
+ var my_default = {
1108
+ thanks_to: thanks_to24,
1109
+ comments: comments24,
1110
+ direction: direction24,
1111
+ strings: strings24
1112
+ };
1113
+
1114
+ // ../translations/nb.json
1115
+ var nb_exports = {};
1116
+ __export(nb_exports, {
1117
+ comments: () => comments25,
1118
+ default: () => nb_default,
1119
+ direction: () => direction25,
1120
+ strings: () => strings25,
1121
+ thanks_to: () => thanks_to25
1122
+ });
1123
+ var thanks_to25 = "Eirik Mikkelsen";
1124
+ var comments25 = "";
1125
+ var direction25 = "ltr";
1126
+ var strings25 = {
1127
+ placeholder: "S\xF8k",
1128
+ clear_search: "Fjern",
1129
+ load_more: "Last flere resultater",
1130
+ search_label: "S\xF8k p\xE5 denne siden",
1131
+ filters_label: "Filtre",
1132
+ zero_results: "Ingen resultater for [SEARCH_TERM]",
1133
+ many_results: "[COUNT] resultater for [SEARCH_TERM]",
1134
+ one_result: "[COUNT] resultat for [SEARCH_TERM]",
1135
+ total_zero_results: "No results",
1136
+ total_one_result: "[COUNT] result",
1137
+ total_many_results: "[COUNT] results",
1138
+ alt_search: "Ingen resultater for [SEARCH_TERM]. Viser resultater for [DIFFERENT_TERM] i stedet",
1139
+ search_suggestion: "Ingen resultater for [SEARCH_TERM]. Pr\xF8v en av disse s\xF8keordene i stedet:",
1140
+ searching: "S\xF8ker etter [SEARCH_TERM]",
1141
+ results_label: "Search results",
1142
+ keyboard_navigate: "navigate",
1143
+ keyboard_select: "select",
1144
+ keyboard_clear: "clear",
1145
+ keyboard_close: "close",
1146
+ keyboard_search: "search",
1147
+ error_search: "Search failed",
1148
+ filter_selected_one: "[COUNT] selected",
1149
+ filter_selected_many: "[COUNT] selected"
1150
+ };
1151
+ var nb_default = {
1152
+ thanks_to: thanks_to25,
1153
+ comments: comments25,
1154
+ direction: direction25,
1155
+ strings: strings25
1156
+ };
1157
+
1158
+ // ../translations/nl.json
1159
+ var nl_exports = {};
1160
+ __export(nl_exports, {
1161
+ comments: () => comments26,
1162
+ default: () => nl_default,
1163
+ direction: () => direction26,
1164
+ strings: () => strings26,
1165
+ thanks_to: () => thanks_to26
1166
+ });
1167
+ var thanks_to26 = "Paul van Brouwershaven";
1168
+ var comments26 = "";
1169
+ var direction26 = "ltr";
1170
+ var strings26 = {
1171
+ placeholder: "Zoeken",
1172
+ clear_search: "Reset",
1173
+ load_more: "Meer resultaten laden",
1174
+ search_label: "Doorzoek deze site",
1175
+ filters_label: "Filters",
1176
+ zero_results: "Geen resultaten voor [SEARCH_TERM]",
1177
+ many_results: "[COUNT] resultaten voor [SEARCH_TERM]",
1178
+ one_result: "[COUNT] resultaat voor [SEARCH_TERM]",
1179
+ total_zero_results: "No results",
1180
+ total_one_result: "[COUNT] result",
1181
+ total_many_results: "[COUNT] results",
1182
+ alt_search: "Geen resultaten voor [SEARCH_TERM]. In plaats daarvan worden resultaten voor [DIFFERENT_TERM] weergegeven",
1183
+ search_suggestion: "Geen resultaten voor [SEARCH_TERM]. Probeer een van de volgende zoekopdrachten:",
1184
+ searching: "Zoeken naar [SEARCH_TERM]...",
1185
+ results_label: "Search results",
1186
+ keyboard_navigate: "navigate",
1187
+ keyboard_select: "select",
1188
+ keyboard_clear: "clear",
1189
+ keyboard_close: "close",
1190
+ keyboard_search: "search",
1191
+ error_search: "Search failed",
1192
+ filter_selected_one: "[COUNT] selected",
1193
+ filter_selected_many: "[COUNT] selected"
1194
+ };
1195
+ var nl_default = {
1196
+ thanks_to: thanks_to26,
1197
+ comments: comments26,
1198
+ direction: direction26,
1199
+ strings: strings26
1200
+ };
1201
+
1202
+ // ../translations/nn.json
1203
+ var nn_exports = {};
1204
+ __export(nn_exports, {
1205
+ comments: () => comments27,
1206
+ default: () => nn_default,
1207
+ direction: () => direction27,
1208
+ strings: () => strings27,
1209
+ thanks_to: () => thanks_to27
1210
+ });
1211
+ var thanks_to27 = "Eirik Mikkelsen";
1212
+ var comments27 = "";
1213
+ var direction27 = "ltr";
1214
+ var strings27 = {
1215
+ placeholder: "S\xF8k",
1216
+ clear_search: "Fjern",
1217
+ load_more: "Last fleire resultat",
1218
+ search_label: "S\xF8k p\xE5 denne sida",
1219
+ filters_label: "Filter",
1220
+ zero_results: "Ingen resultat for [SEARCH_TERM]",
1221
+ many_results: "[COUNT] resultat for [SEARCH_TERM]",
1222
+ one_result: "[COUNT] resultat for [SEARCH_TERM]",
1223
+ total_zero_results: "No results",
1224
+ total_one_result: "[COUNT] result",
1225
+ total_many_results: "[COUNT] results",
1226
+ alt_search: "Ingen resultat for [SEARCH_TERM]. Viser resultat for [DIFFERENT_TERM] i staden",
1227
+ search_suggestion: "Ingen resultat for [SEARCH_TERM]. Pr\xF8v eitt av desse s\xF8keorda i staden:",
1228
+ searching: "S\xF8ker etter [SEARCH_TERM]",
1229
+ results_label: "Search results",
1230
+ keyboard_navigate: "navigate",
1231
+ keyboard_select: "select",
1232
+ keyboard_clear: "clear",
1233
+ keyboard_close: "close",
1234
+ keyboard_search: "search",
1235
+ error_search: "Search failed",
1236
+ filter_selected_one: "[COUNT] selected",
1237
+ filter_selected_many: "[COUNT] selected"
1238
+ };
1239
+ var nn_default = {
1240
+ thanks_to: thanks_to27,
1241
+ comments: comments27,
1242
+ direction: direction27,
1243
+ strings: strings27
1244
+ };
1245
+
1246
+ // ../translations/no.json
1247
+ var no_exports = {};
1248
+ __export(no_exports, {
1249
+ comments: () => comments28,
1250
+ default: () => no_default,
1251
+ direction: () => direction28,
1252
+ strings: () => strings28,
1253
+ thanks_to: () => thanks_to28
1254
+ });
1255
+ var thanks_to28 = "Christopher Wingate";
1256
+ var comments28 = "";
1257
+ var direction28 = "ltr";
1258
+ var strings28 = {
1259
+ placeholder: "S\xF8k",
1260
+ clear_search: "Fjern",
1261
+ load_more: "Last flere resultater",
1262
+ search_label: "S\xF8k p\xE5 denne siden",
1263
+ filters_label: "Filtre",
1264
+ zero_results: "Ingen resultater for [SEARCH_TERM]",
1265
+ many_results: "[COUNT] resultater for [SEARCH_TERM]",
1266
+ one_result: "[COUNT] resultat for [SEARCH_TERM]",
1267
+ total_zero_results: "No results",
1268
+ total_one_result: "[COUNT] result",
1269
+ total_many_results: "[COUNT] results",
1270
+ alt_search: "Ingen resultater for [SEARCH_TERM]. Viser resultater for [DIFFERENT_TERM] i stedet",
1271
+ search_suggestion: "Ingen resultater for [SEARCH_TERM]. Pr\xF8v en av disse s\xF8keordene i stedet:",
1272
+ searching: "S\xF8ker etter [SEARCH_TERM]",
1273
+ results_label: "Search results",
1274
+ keyboard_navigate: "navigate",
1275
+ keyboard_select: "select",
1276
+ keyboard_clear: "clear",
1277
+ keyboard_close: "close",
1278
+ keyboard_search: "search",
1279
+ error_search: "Search failed",
1280
+ filter_selected_one: "[COUNT] selected",
1281
+ filter_selected_many: "[COUNT] selected"
1282
+ };
1283
+ var no_default = {
1284
+ thanks_to: thanks_to28,
1285
+ comments: comments28,
1286
+ direction: direction28,
1287
+ strings: strings28
1288
+ };
1289
+
1290
+ // ../translations/pl.json
1291
+ var pl_exports = {};
1292
+ __export(pl_exports, {
1293
+ comments: () => comments29,
1294
+ default: () => pl_default,
1295
+ direction: () => direction29,
1296
+ strings: () => strings29,
1297
+ thanks_to: () => thanks_to29
1298
+ });
1299
+ var thanks_to29 = "";
1300
+ var comments29 = "";
1301
+ var direction29 = "ltr";
1302
+ var strings29 = {
1303
+ placeholder: "Szukaj",
1304
+ clear_search: "Wyczy\u015B\u0107",
1305
+ load_more: "Za\u0142aduj wi\u0119cej",
1306
+ search_label: "Przeszukaj t\u0119 stron\u0119",
1307
+ filters_label: "Filtry",
1308
+ zero_results: "Brak wynik\xF3w dla [SEARCH_TERM]",
1309
+ many_results: "[COUNT] wynik\xF3w dla [SEARCH_TERM]",
1310
+ one_result: "[COUNT] wynik dla [SEARCH_TERM]",
1311
+ total_zero_results: "No results",
1312
+ total_one_result: "[COUNT] result",
1313
+ total_many_results: "[COUNT] results",
1314
+ alt_search: "Brak wynik\xF3w dla [SEARCH_TERM]. Wy\u015Bwietlam wyniki dla [DIFFERENT_TERM]",
1315
+ search_suggestion: "Brak wynik\xF3w dla [SEARCH_TERM]. Pokrewne wyniki wyszukiwania:",
1316
+ searching: "Szukam [SEARCH_TERM]...",
1317
+ results_label: "Search results",
1318
+ keyboard_navigate: "navigate",
1319
+ keyboard_select: "select",
1320
+ keyboard_clear: "clear",
1321
+ keyboard_close: "close",
1322
+ keyboard_search: "search",
1323
+ error_search: "Search failed",
1324
+ filter_selected_one: "[COUNT] selected",
1325
+ filter_selected_many: "[COUNT] selected"
1326
+ };
1327
+ var pl_default = {
1328
+ thanks_to: thanks_to29,
1329
+ comments: comments29,
1330
+ direction: direction29,
1331
+ strings: strings29
1332
+ };
1333
+
1334
+ // ../translations/pt.json
1335
+ var pt_exports = {};
1336
+ __export(pt_exports, {
1337
+ comments: () => comments30,
1338
+ default: () => pt_default,
1339
+ direction: () => direction30,
1340
+ strings: () => strings30,
1341
+ thanks_to: () => thanks_to30
1342
+ });
1343
+ var thanks_to30 = "Jonatah";
1344
+ var comments30 = "";
1345
+ var direction30 = "ltr";
1346
+ var strings30 = {
1347
+ placeholder: "Pesquisar",
1348
+ clear_search: "Limpar",
1349
+ load_more: "Ver mais resultados",
1350
+ search_label: "Pesquisar",
1351
+ filters_label: "Filtros",
1352
+ zero_results: "Nenhum resultado encontrado para [SEARCH_TERM]",
1353
+ many_results: "[COUNT] resultados encontrados para [SEARCH_TERM]",
1354
+ one_result: "[COUNT] resultado encontrado para [SEARCH_TERM]",
1355
+ total_zero_results: "No results",
1356
+ total_one_result: "[COUNT] result",
1357
+ total_many_results: "[COUNT] results",
1358
+ alt_search: "Nenhum resultado encontrado para [SEARCH_TERM]. Exibindo resultados para [DIFFERENT_TERM]",
1359
+ search_suggestion: "Nenhum resultado encontrado para [SEARCH_TERM]. Tente uma das seguintes pesquisas:",
1360
+ searching: "Pesquisando por [SEARCH_TERM]...",
1361
+ results_label: "Search results",
1362
+ keyboard_navigate: "navigate",
1363
+ keyboard_select: "select",
1364
+ keyboard_clear: "clear",
1365
+ keyboard_close: "close",
1366
+ keyboard_search: "search",
1367
+ error_search: "Search failed",
1368
+ filter_selected_one: "[COUNT] selected",
1369
+ filter_selected_many: "[COUNT] selected"
1370
+ };
1371
+ var pt_default = {
1372
+ thanks_to: thanks_to30,
1373
+ comments: comments30,
1374
+ direction: direction30,
1375
+ strings: strings30
1376
+ };
1377
+
1378
+ // ../translations/ro.json
1379
+ var ro_exports = {};
1380
+ __export(ro_exports, {
1381
+ comments: () => comments31,
1382
+ default: () => ro_default,
1383
+ direction: () => direction31,
1384
+ strings: () => strings31,
1385
+ thanks_to: () => thanks_to31
1386
+ });
1387
+ var thanks_to31 = "Bogdan Mateescu <bogdan@surfverse.com>";
1388
+ var comments31 = "";
1389
+ var direction31 = "ltr";
1390
+ var strings31 = {
1391
+ placeholder: "C\u0103utare",
1392
+ clear_search: "\u015Eterge\u0163i",
1393
+ load_more: "\xCEnc\u0103rca\u021Bi mai multe rezultate",
1394
+ search_label: "C\u0103uta\u021Bi \xEEn acest site",
1395
+ filters_label: "Filtre",
1396
+ zero_results: "Niciun rezultat pentru [SEARCH_TERM]",
1397
+ many_results: "[COUNT] rezultate pentru [SEARCH_TERM]",
1398
+ one_result: "[COUNT] rezultat pentru [SEARCH_TERM]",
1399
+ total_zero_results: "No results",
1400
+ total_one_result: "[COUNT] result",
1401
+ total_many_results: "[COUNT] results",
1402
+ alt_search: "Niciun rezultat pentru [SEARCH_TERM]. Se afi\u0219eaz\u0103 \xEEn schimb rezultatele pentru [DIFFERENT_TERM]",
1403
+ search_suggestion: "Niciun rezultat pentru [SEARCH_TERM]. \xCEncerca\u021Bi una dintre urm\u0103toarele c\u0103ut\u0103ri:",
1404
+ searching: "Se caut\u0103 dup\u0103: [SEARCH_TERM]...",
1405
+ results_label: "Search results",
1406
+ keyboard_navigate: "navigate",
1407
+ keyboard_select: "select",
1408
+ keyboard_clear: "clear",
1409
+ keyboard_close: "close",
1410
+ keyboard_search: "search",
1411
+ error_search: "Search failed",
1412
+ filter_selected_one: "[COUNT] selected",
1413
+ filter_selected_many: "[COUNT] selected"
1414
+ };
1415
+ var ro_default = {
1416
+ thanks_to: thanks_to31,
1417
+ comments: comments31,
1418
+ direction: direction31,
1419
+ strings: strings31
1420
+ };
1421
+
1422
+ // ../translations/ru.json
1423
+ var ru_exports = {};
1424
+ __export(ru_exports, {
1425
+ comments: () => comments32,
1426
+ default: () => ru_default,
1427
+ direction: () => direction32,
1428
+ strings: () => strings32,
1429
+ thanks_to: () => thanks_to32
1430
+ });
1431
+ var thanks_to32 = "Aleksandr Gordeev";
1432
+ var comments32 = "";
1433
+ var direction32 = "ltr";
1434
+ var strings32 = {
1435
+ placeholder: "\u041F\u043E\u0438\u0441\u043A",
1436
+ clear_search: "\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u044C \u043F\u043E\u043B\u0435",
1437
+ load_more: "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044C \u0435\u0449\u0435",
1438
+ search_label: "\u041F\u043E\u0438\u0441\u043A \u043F\u043E \u0441\u0430\u0439\u0442\u0443",
1439
+ filters_label: "\u0424\u0438\u043B\u044C\u0442\u0440\u044B",
1440
+ zero_results: "\u041D\u0438\u0447\u0435\u0433\u043E \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [SEARCH_TERM]",
1441
+ many_results: "[COUNT] \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u043E\u0432 \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [SEARCH_TERM]",
1442
+ one_result: "[COUNT] \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [SEARCH_TERM]",
1443
+ total_zero_results: "No results",
1444
+ total_one_result: "[COUNT] result",
1445
+ total_many_results: "[COUNT] results",
1446
+ alt_search: "\u041D\u0438\u0447\u0435\u0433\u043E \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [SEARCH_TERM]. \u041F\u043E\u043A\u0430\u0437\u0430\u043D\u044B \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u044B \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [DIFFERENT_TERM]",
1447
+ search_suggestion: "\u041D\u0438\u0447\u0435\u0433\u043E \u043D\u0435 \u043D\u0430\u0439\u0434\u0435\u043D\u043E \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [SEARCH_TERM]. \u041F\u043E\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u043E\u0434\u0438\u043D \u0438\u0437 \u0441\u043B\u0435\u0434\u0443\u044E\u0449\u0438\u0445 \u0432\u0430\u0440\u0438\u0430\u043D\u0442\u043E\u0432",
1448
+ searching: "\u041F\u043E\u0438\u0441\u043A \u043F\u043E \u0437\u0430\u043F\u0440\u043E\u0441\u0443: [SEARCH_TERM]",
1449
+ results_label: "Search results",
1450
+ keyboard_navigate: "navigate",
1451
+ keyboard_select: "select",
1452
+ keyboard_clear: "clear",
1453
+ keyboard_close: "close",
1454
+ keyboard_search: "search",
1455
+ error_search: "Search failed",
1456
+ filter_selected_one: "[COUNT] selected",
1457
+ filter_selected_many: "[COUNT] selected"
1458
+ };
1459
+ var ru_default = {
1460
+ thanks_to: thanks_to32,
1461
+ comments: comments32,
1462
+ direction: direction32,
1463
+ strings: strings32
1464
+ };
1465
+
1466
+ // ../translations/sr.json
1467
+ var sr_exports = {};
1468
+ __export(sr_exports, {
1469
+ comments: () => comments33,
1470
+ default: () => sr_default,
1471
+ direction: () => direction33,
1472
+ strings: () => strings33,
1473
+ thanks_to: () => thanks_to33
1474
+ });
1475
+ var thanks_to33 = "Andrija Sagicc";
1476
+ var comments33 = "";
1477
+ var direction33 = "ltr";
1478
+ var strings33 = {
1479
+ placeholder: "\u041F\u0440\u0435\u0442\u0440\u0430\u0433\u0430",
1480
+ clear_search: "\u0411\u0440\u0438\u0441\u0430\u045A\u0435",
1481
+ load_more: "\u041F\u0440\u0438\u043A\u0430\u0437 \u0432\u0438\u0448\u0435 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430",
1482
+ search_label: "\u041F\u0440\u0435\u0442\u0440\u0430\u0433\u0430 \u0441\u0430\u0458\u0442\u0430",
1483
+ filters_label: "\u0424\u0438\u043B\u0442\u0435\u0440\u0438",
1484
+ zero_results: "\u041D\u0435\u043C\u0430 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u0437\u0430 [SEARCH_TERM]",
1485
+ many_results: "[COUNT] \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u0437\u0430 [SEARCH_TERM]",
1486
+ one_result: "[COUNT] \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u0437\u0430 [SEARCH_TERM]",
1487
+ total_zero_results: "No results",
1488
+ total_one_result: "[COUNT] result",
1489
+ total_many_results: "[COUNT] results",
1490
+ alt_search: "\u041D\u0435\u043C\u0430 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u0437\u0430 [SEARCH_TERM]. \u041F\u0440\u0438\u043A\u0430\u0437 \u0434\u043E\u0434\u0430\u0442\u043D\u0438\u043A \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u0437\u0430 [DIFFERENT_TERM]",
1491
+ search_suggestion: "\u041D\u0435\u043C\u0430 \u0440\u0435\u0437\u0443\u043B\u0442\u0430\u0442\u0430 \u0437\u0430 [SEARCH_TERM]. \u041F\u043E\u043A\u0443\u0448\u0430\u0458\u0442\u0435 \u0441\u0430 \u043D\u0435\u043A\u043E\u043C \u043E\u0434 \u0441\u043B\u0435\u0434\u0435\u045B\u0438\u0445 \u043F\u0440\u0435\u0442\u0440\u0430\u0433\u0430:",
1492
+ searching: "\u041F\u0440\u0435\u0442\u0440\u0430\u0433\u0430 \u0442\u0435\u0440\u043C\u0438\u043D\u0430 [SEARCH_TERM]...",
1493
+ results_label: "Search results",
1494
+ keyboard_navigate: "navigate",
1495
+ keyboard_select: "select",
1496
+ keyboard_clear: "clear",
1497
+ keyboard_close: "close",
1498
+ keyboard_search: "search",
1499
+ error_search: "Search failed",
1500
+ filter_selected_one: "[COUNT] selected",
1501
+ filter_selected_many: "[COUNT] selected"
1502
+ };
1503
+ var sr_default = {
1504
+ thanks_to: thanks_to33,
1505
+ comments: comments33,
1506
+ direction: direction33,
1507
+ strings: strings33
1508
+ };
1509
+
1510
+ // ../translations/sv.json
1511
+ var sv_exports = {};
1512
+ __export(sv_exports, {
1513
+ comments: () => comments34,
1514
+ default: () => sv_default,
1515
+ direction: () => direction34,
1516
+ strings: () => strings34,
1517
+ thanks_to: () => thanks_to34
1518
+ });
1519
+ var thanks_to34 = "Montazar Al-Jaber <montazar@nanawee.tech>";
1520
+ var comments34 = "";
1521
+ var direction34 = "ltr";
1522
+ var strings34 = {
1523
+ placeholder: "S\xF6k",
1524
+ clear_search: "Rensa",
1525
+ load_more: "Visa fler tr\xE4ffar",
1526
+ search_label: "S\xF6k p\xE5 denna sida",
1527
+ filters_label: "Filter",
1528
+ zero_results: "[SEARCH_TERM] gav inga tr\xE4ffar",
1529
+ many_results: "[SEARCH_TERM] gav [COUNT] tr\xE4ffar",
1530
+ one_result: "[SEARCH_TERM] gav [COUNT] tr\xE4ff",
1531
+ total_zero_results: "No results",
1532
+ total_one_result: "[COUNT] result",
1533
+ total_many_results: "[COUNT] results",
1534
+ alt_search: "[SEARCH_TERM] gav inga tr\xE4ffar. Visar resultat f\xF6r [DIFFERENT_TERM] ist\xE4llet",
1535
+ search_suggestion: "[SEARCH_TERM] gav inga tr\xE4ffar. F\xF6rs\xF6k igen med en av f\xF6ljande s\xF6kord:",
1536
+ searching: "S\xF6ker efter [SEARCH_TERM]...",
1537
+ results_label: "Search results",
1538
+ keyboard_navigate: "navigate",
1539
+ keyboard_select: "select",
1540
+ keyboard_clear: "clear",
1541
+ keyboard_close: "close",
1542
+ keyboard_search: "search",
1543
+ error_search: "Search failed",
1544
+ filter_selected_one: "[COUNT] selected",
1545
+ filter_selected_many: "[COUNT] selected"
1546
+ };
1547
+ var sv_default = {
1548
+ thanks_to: thanks_to34,
1549
+ comments: comments34,
1550
+ direction: direction34,
1551
+ strings: strings34
1552
+ };
1553
+
1554
+ // ../translations/sw.json
1555
+ var sw_exports = {};
1556
+ __export(sw_exports, {
1557
+ comments: () => comments35,
1558
+ default: () => sw_default,
1559
+ direction: () => direction35,
1560
+ strings: () => strings35,
1561
+ thanks_to: () => thanks_to35
1562
+ });
1563
+ var thanks_to35 = "Anonymous";
1564
+ var comments35 = "";
1565
+ var direction35 = "ltr";
1566
+ var strings35 = {
1567
+ placeholder: "Tafuta",
1568
+ clear_search: "Futa",
1569
+ load_more: "Pakia matokeo zaidi",
1570
+ search_label: "Tafuta tovuti hii",
1571
+ filters_label: "Vichujio",
1572
+ zero_results: "Hakuna matokeo ya [SEARCH_TERM]",
1573
+ many_results: "Matokeo [COUNT] ya [SEARCH_TERM]",
1574
+ one_result: "Tokeo [COUNT] la [SEARCH_TERM]",
1575
+ total_zero_results: "No results",
1576
+ total_one_result: "[COUNT] result",
1577
+ total_many_results: "[COUNT] results",
1578
+ alt_search: "Hakuna mayokeo ya [SEARCH_TERM]. Badala yake, inaonyesha matokeo ya [DIFFERENT_TERM]",
1579
+ search_suggestion: "Hakuna matokeo ya [SEARCH_TERM]. Jaribu mojawapo ya utafutaji ufuatao:",
1580
+ searching: "Kutafuta [SEARCH_TERM]...",
1581
+ results_label: "Search results",
1582
+ keyboard_navigate: "navigate",
1583
+ keyboard_select: "select",
1584
+ keyboard_clear: "clear",
1585
+ keyboard_close: "close",
1586
+ keyboard_search: "search",
1587
+ error_search: "Search failed",
1588
+ filter_selected_one: "[COUNT] selected",
1589
+ filter_selected_many: "[COUNT] selected"
1590
+ };
1591
+ var sw_default = {
1592
+ thanks_to: thanks_to35,
1593
+ comments: comments35,
1594
+ direction: direction35,
1595
+ strings: strings35
1596
+ };
1597
+
1598
+ // ../translations/ta.json
1599
+ var ta_exports = {};
1600
+ __export(ta_exports, {
1601
+ comments: () => comments36,
1602
+ default: () => ta_default,
1603
+ direction: () => direction36,
1604
+ strings: () => strings36,
1605
+ thanks_to: () => thanks_to36
1606
+ });
1607
+ var thanks_to36 = "";
1608
+ var comments36 = "";
1609
+ var direction36 = "ltr";
1610
+ var strings36 = {
1611
+ placeholder: "\u0BA4\u0BC7\u0B9F\u0BC1\u0B95",
1612
+ clear_search: "\u0B85\u0BB4\u0BBF\u0B95\u0BCD\u0B95\u0BC1\u0B95",
1613
+ load_more: "\u0BAE\u0BC7\u0BB2\u0BC1\u0BAE\u0BCD \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1\u0B95\u0BB3\u0BC8\u0B95\u0BCD \u0B95\u0BBE\u0B9F\u0BCD\u0B9F\u0BC1\u0B95",
1614
+ search_label: "\u0B87\u0BA8\u0BCD\u0BA4 \u0BA4\u0BB3\u0BA4\u0BCD\u0BA4\u0BBF\u0BB2\u0BCD \u0BA4\u0BC7\u0B9F\u0BC1\u0B95",
1615
+ filters_label: "\u0BB5\u0B9F\u0BBF\u0B95\u0B9F\u0BCD\u0B9F\u0BB2\u0BCD\u0B95\u0BB3\u0BCD",
1616
+ zero_results: "[SEARCH_TERM] \u0B95\u0BCD\u0B95\u0BBE\u0BA9 \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1\u0B95\u0BB3\u0BCD \u0B87\u0BB2\u0BCD\u0BB2\u0BC8",
1617
+ many_results: "[SEARCH_TERM] \u0B95\u0BCD\u0B95\u0BBE\u0BA9 [COUNT] \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1\u0B95\u0BB3\u0BCD",
1618
+ one_result: "[SEARCH_TERM] \u0B95\u0BCD\u0B95\u0BBE\u0BA9 \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1",
1619
+ total_zero_results: "No results",
1620
+ total_one_result: "[COUNT] result",
1621
+ total_many_results: "[COUNT] results",
1622
+ alt_search: "[SEARCH_TERM] \u0B87\u0BA4\u0BCD\u0BA4\u0BC7\u0B9F\u0BB2\u0BC1\u0B95\u0BCD\u0B95\u0BBE\u0BA9 \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1\u0B95\u0BB3\u0BCD \u0B87\u0BB2\u0BCD\u0BB2\u0BC8, \u0B87\u0BA8\u0BCD\u0BA4 \u0BA4\u0BC7\u0B9F\u0BB2\u0BCD\u0B95\u0BB3\u0BC1\u0B95\u0BCD\u0B95\u0BBE\u0BA9 \u0B92\u0BA4\u0BCD\u0BA4 \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1\u0B95\u0BB3\u0BCD [DIFFERENT_TERM]",
1623
+ search_suggestion: "[SEARCH_TERM] \u0B87\u0BA4\u0BCD \u0BA4\u0BC7\u0B9F\u0BB2\u0BC1\u0B95\u0BCD\u0B95\u0BBE\u0BA9 \u0BAE\u0BC1\u0B9F\u0BBF\u0BB5\u0BC1\u0B95\u0BB3\u0BCD \u0B87\u0BB2\u0BCD\u0BB2\u0BC8.\u0B87\u0BA4\u0BB1\u0BCD\u0B95\u0BC1 \u0BAA\u0BA4\u0BBF\u0BB2\u0BC0\u0B9F\u0BBE\u0BA9 \u0BA4\u0BC7\u0B9F\u0BB2\u0BCD\u0B95\u0BB3\u0BC8 \u0BA4\u0BC7\u0B9F\u0BC1\u0B95:",
1624
+ searching: "[SEARCH_TERM] \u0BA4\u0BC7\u0B9F\u0BAA\u0BCD\u0BAA\u0B9F\u0BC1\u0B95\u0BBF\u0BA9\u0BCD\u0BB1\u0BA4\u0BC1",
1625
+ results_label: "Search results",
1626
+ keyboard_navigate: "navigate",
1627
+ keyboard_select: "select",
1628
+ keyboard_clear: "clear",
1629
+ keyboard_close: "close",
1630
+ keyboard_search: "search",
1631
+ error_search: "Search failed",
1632
+ filter_selected_one: "[COUNT] selected",
1633
+ filter_selected_many: "[COUNT] selected"
1634
+ };
1635
+ var ta_default = {
1636
+ thanks_to: thanks_to36,
1637
+ comments: comments36,
1638
+ direction: direction36,
1639
+ strings: strings36
1640
+ };
1641
+
1642
+ // ../translations/th.json
1643
+ var th_exports = {};
1644
+ __export(th_exports, {
1645
+ comments: () => comments37,
1646
+ default: () => th_default,
1647
+ direction: () => direction37,
1648
+ strings: () => strings37,
1649
+ thanks_to: () => thanks_to37
1650
+ });
1651
+ var thanks_to37 = "Patiphon Loetsuthakun <ptphon@gmail.com>";
1652
+ var comments37 = "";
1653
+ var direction37 = "ltr";
1654
+ var strings37 = {
1655
+ placeholder: "\u0E04\u0E49\u0E19\u0E2B\u0E32",
1656
+ clear_search: "\u0E25\u0E49\u0E32\u0E07",
1657
+ load_more: "\u0E42\u0E2B\u0E25\u0E14\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E40\u0E1E\u0E34\u0E48\u0E21\u0E40\u0E15\u0E34\u0E21",
1658
+ search_label: "\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E1A\u0E19\u0E40\u0E27\u0E47\u0E1A\u0E44\u0E0B\u0E15\u0E4C",
1659
+ filters_label: "\u0E15\u0E31\u0E27\u0E01\u0E23\u0E2D\u0E07",
1660
+ zero_results: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A [SEARCH_TERM]",
1661
+ many_results: "\u0E1E\u0E1A [COUNT] \u0E1C\u0E25\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A [SEARCH_TERM]",
1662
+ one_result: "\u0E1E\u0E1A [COUNT] \u0E1C\u0E25\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A [SEARCH_TERM]",
1663
+ total_zero_results: "No results",
1664
+ total_one_result: "[COUNT] result",
1665
+ total_many_results: "[COUNT] results",
1666
+ alt_search: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A [SEARCH_TERM] \u0E41\u0E2A\u0E14\u0E07\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E08\u0E32\u0E01\u0E01\u0E32\u0E23\u0E04\u0E49\u0E19\u0E2B\u0E32 [DIFFERENT_TERM] \u0E41\u0E17\u0E19",
1667
+ search_suggestion: "\u0E44\u0E21\u0E48\u0E1E\u0E1A\u0E1C\u0E25\u0E25\u0E31\u0E1E\u0E18\u0E4C\u0E2A\u0E33\u0E2B\u0E23\u0E31\u0E1A [SEARCH_TERM] \u0E25\u0E2D\u0E07\u0E04\u0E33\u0E04\u0E49\u0E19\u0E2B\u0E32\u0E40\u0E2B\u0E25\u0E48\u0E32\u0E19\u0E35\u0E49\u0E41\u0E17\u0E19:",
1668
+ searching: "\u0E01\u0E33\u0E25\u0E31\u0E07\u0E04\u0E49\u0E19\u0E2B\u0E32 [SEARCH_TERM]...",
1669
+ results_label: "Search results",
1670
+ keyboard_navigate: "navigate",
1671
+ keyboard_select: "select",
1672
+ keyboard_clear: "clear",
1673
+ keyboard_close: "close",
1674
+ keyboard_search: "search",
1675
+ error_search: "Search failed",
1676
+ filter_selected_one: "[COUNT] selected",
1677
+ filter_selected_many: "[COUNT] selected"
1678
+ };
1679
+ var th_default = {
1680
+ thanks_to: thanks_to37,
1681
+ comments: comments37,
1682
+ direction: direction37,
1683
+ strings: strings37
1684
+ };
1685
+
1686
+ // ../translations/tr.json
1687
+ var tr_exports = {};
1688
+ __export(tr_exports, {
1689
+ comments: () => comments38,
1690
+ default: () => tr_default,
1691
+ direction: () => direction38,
1692
+ strings: () => strings38,
1693
+ thanks_to: () => thanks_to38
1694
+ });
1695
+ var thanks_to38 = "Taylan \xD6zg\xFCr Bildik";
1696
+ var comments38 = "";
1697
+ var direction38 = "ltr";
1698
+ var strings38 = {
1699
+ placeholder: "Ara\u015Ft\u0131r",
1700
+ clear_search: "Temizle",
1701
+ load_more: "Daha fazla sonu\xE7",
1702
+ search_label: "Site genelinde arama",
1703
+ filters_label: "Filtreler",
1704
+ zero_results: "[SEARCH_TERM] i\xE7in sonu\xE7 yok",
1705
+ many_results: "[SEARCH_TERM] i\xE7in [COUNT] sonu\xE7 bulundu",
1706
+ one_result: "[SEARCH_TERM] i\xE7in [COUNT] sonu\xE7 bulundu",
1707
+ total_zero_results: "No results",
1708
+ total_one_result: "[COUNT] result",
1709
+ total_many_results: "[COUNT] results",
1710
+ alt_search: "[SEARCH_TERM] i\xE7in sonu\xE7 yok. Bunun yerine [DIFFERENT_TERM] i\xE7in sonu\xE7lar g\xF6steriliyor",
1711
+ search_suggestion: "[SEARCH_TERM] i\xE7in sonu\xE7 yok. Alternatif olarak a\u015Fa\u011F\u0131daki kelimelerden birini deneyebilirsiniz:",
1712
+ searching: "[SEARCH_TERM] ara\u015Ft\u0131r\u0131l\u0131yor...",
1713
+ results_label: "Search results",
1714
+ keyboard_navigate: "navigate",
1715
+ keyboard_select: "select",
1716
+ keyboard_clear: "clear",
1717
+ keyboard_close: "close",
1718
+ keyboard_search: "search",
1719
+ error_search: "Search failed",
1720
+ filter_selected_one: "[COUNT] selected",
1721
+ filter_selected_many: "[COUNT] selected"
1722
+ };
1723
+ var tr_default = {
1724
+ thanks_to: thanks_to38,
1725
+ comments: comments38,
1726
+ direction: direction38,
1727
+ strings: strings38
1728
+ };
1729
+
1730
+ // ../translations/uk.json
1731
+ var uk_exports = {};
1732
+ __export(uk_exports, {
1733
+ comments: () => comments39,
1734
+ default: () => uk_default,
1735
+ direction: () => direction39,
1736
+ strings: () => strings39,
1737
+ thanks_to: () => thanks_to39
1738
+ });
1739
+ var thanks_to39 = "Vladyslav Lyshenko <vladdnepr1989@gmail.com>";
1740
+ var comments39 = "";
1741
+ var direction39 = "ltr";
1742
+ var strings39 = {
1743
+ placeholder: "\u041F\u043E\u0448\u0443\u043A",
1744
+ clear_search: "\u041E\u0447\u0438\u0441\u0442\u0438\u0442\u0438 \u043F\u043E\u043B\u0435",
1745
+ load_more: "\u0417\u0430\u0432\u0430\u043D\u0442\u0430\u0436\u0438\u0442\u0438 \u0449\u0435",
1746
+ search_label: "\u041F\u043E\u0448\u0443\u043A \u043F\u043E \u0441\u0430\u0439\u0442\u0443",
1747
+ filters_label: "\u0424\u0456\u043B\u044C\u0442\u0440\u0438",
1748
+ zero_results: "\u041D\u0456\u0447\u043E\u0433\u043E \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E \u0437\u0430 \u0437\u0430\u043F\u0438\u0442\u043E\u043C: [SEARCH_TERM]",
1749
+ many_results: "[COUNT] \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0456\u0432 \u043D\u0430 \u0437\u0430\u043F\u0438\u0442: [SEARCH_TERM]",
1750
+ one_result: "[COUNT] \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442 \u0437\u0430 \u0437\u0430\u043F\u0438\u0442\u043E\u043C: [SEARCH_TERM]",
1751
+ total_zero_results: "No results",
1752
+ total_one_result: "[COUNT] result",
1753
+ total_many_results: "[COUNT] results",
1754
+ alt_search: "\u041D\u0456\u0447\u043E\u0433\u043E \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E \u043D\u0430 \u0437\u0430\u043F\u0438\u0442: [SEARCH_TERM]. \u041F\u043E\u043A\u0430\u0437\u0430\u043D\u043E \u0440\u0435\u0437\u0443\u043B\u044C\u0442\u0430\u0442\u0438 \u043D\u0430 \u0437\u0430\u043F\u0438\u0442: [DIFFERENT_TERM]",
1755
+ search_suggestion: "\u041D\u0456\u0447\u043E\u0433\u043E \u043D\u0435 \u0437\u043D\u0430\u0439\u0434\u0435\u043D\u043E \u043D\u0430 \u0437\u0430\u043F\u0438\u0442: [SEARCH_TERM]. \u0421\u043F\u0440\u043E\u0431\u0443\u0439\u0442\u0435 \u043E\u0434\u0438\u043D \u0456\u0437 \u0442\u0430\u043A\u0438\u0445 \u0432\u0430\u0440\u0456\u0430\u043D\u0442\u0456\u0432",
1756
+ searching: "\u041F\u043E\u0448\u0443\u043A \u0437\u0430 \u0437\u0430\u043F\u0438\u0442\u043E\u043C: [SEARCH_TERM]",
1757
+ results_label: "Search results",
1758
+ keyboard_navigate: "navigate",
1759
+ keyboard_select: "select",
1760
+ keyboard_clear: "clear",
1761
+ keyboard_close: "close",
1762
+ keyboard_search: "search",
1763
+ error_search: "Search failed",
1764
+ filter_selected_one: "[COUNT] selected",
1765
+ filter_selected_many: "[COUNT] selected"
1766
+ };
1767
+ var uk_default = {
1768
+ thanks_to: thanks_to39,
1769
+ comments: comments39,
1770
+ direction: direction39,
1771
+ strings: strings39
1772
+ };
1773
+
1774
+ // ../translations/vi.json
1775
+ var vi_exports = {};
1776
+ __export(vi_exports, {
1777
+ comments: () => comments40,
1778
+ default: () => vi_default,
1779
+ direction: () => direction40,
1780
+ strings: () => strings40,
1781
+ thanks_to: () => thanks_to40
1782
+ });
1783
+ var thanks_to40 = "Long Nhat Nguyen";
1784
+ var comments40 = "";
1785
+ var direction40 = "ltr";
1786
+ var strings40 = {
1787
+ placeholder: "T\xECm ki\u1EBFm",
1788
+ clear_search: "X\xF3a",
1789
+ load_more: "Nhi\u1EC1u k\u1EBFt qu\u1EA3 h\u01A1n",
1790
+ search_label: "T\xECm ki\u1EBFm trong trang n\xE0y",
1791
+ filters_label: "B\u1ED9 l\u1ECDc",
1792
+ zero_results: "Kh\xF4ng t\xECm th\u1EA5y k\u1EBFt qu\u1EA3 cho [SEARCH_TERM]",
1793
+ many_results: "[COUNT] k\u1EBFt qu\u1EA3 cho [SEARCH_TERM]",
1794
+ one_result: "[COUNT] k\u1EBFt qu\u1EA3 cho [SEARCH_TERM]",
1795
+ total_zero_results: "No results",
1796
+ total_one_result: "[COUNT] result",
1797
+ total_many_results: "[COUNT] results",
1798
+ alt_search: "Kh\xF4ng t\xECm th\u1EA5y k\u1EBFt qu\u1EA3 cho [SEARCH_TERM]. Ki\u1EC3m th\u1ECB k\u1EBFt qu\u1EA3 thay th\u1EBF v\u1EDBi [DIFFERENT_TERM]",
1799
+ search_suggestion: "Kh\xF4ng t\xECm th\u1EA5y k\u1EBFt qu\u1EA3 cho [SEARCH_TERM]. Th\u1EED m\u1ED9t trong c\xE1c t\xECm ki\u1EBFm:",
1800
+ searching: "\u0110ang t\xECm ki\u1EBFm cho [SEARCH_TERM]...",
1801
+ results_label: "Search results",
1802
+ keyboard_navigate: "navigate",
1803
+ keyboard_select: "select",
1804
+ keyboard_clear: "clear",
1805
+ keyboard_close: "close",
1806
+ keyboard_search: "search",
1807
+ error_search: "Search failed",
1808
+ filter_selected_one: "[COUNT] selected",
1809
+ filter_selected_many: "[COUNT] selected"
1810
+ };
1811
+ var vi_default = {
1812
+ thanks_to: thanks_to40,
1813
+ comments: comments40,
1814
+ direction: direction40,
1815
+ strings: strings40
1816
+ };
1817
+
1818
+ // ../translations/zh-cn.json
1819
+ var zh_cn_exports = {};
1820
+ __export(zh_cn_exports, {
1821
+ comments: () => comments41,
1822
+ default: () => zh_cn_default,
1823
+ direction: () => direction41,
1824
+ strings: () => strings41,
1825
+ thanks_to: () => thanks_to41
1826
+ });
1827
+ var thanks_to41 = "Amber Song";
1828
+ var comments41 = "";
1829
+ var direction41 = "ltr";
1830
+ var strings41 = {
1831
+ placeholder: "\u641C\u7D22",
1832
+ clear_search: "\u6E05\u9664",
1833
+ load_more: "\u52A0\u8F7D\u66F4\u591A\u7ED3\u679C",
1834
+ search_label: "\u7AD9\u5185\u641C\u7D22",
1835
+ filters_label: "\u7B5B\u9009",
1836
+ zero_results: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1837
+ many_results: "\u627E\u5230 [COUNT] \u4E2A [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1838
+ one_result: "\u627E\u5230 [COUNT] \u4E2A [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1839
+ total_zero_results: "No results",
1840
+ total_one_result: "[COUNT] result",
1841
+ total_many_results: "[COUNT] results",
1842
+ alt_search: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C\u3002\u6539\u4E3A\u663E\u793A [DIFFERENT_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1843
+ search_suggestion: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C\u3002\u8BF7\u5C1D\u8BD5\u4EE5\u4E0B\u641C\u7D22\u3002",
1844
+ searching: "\u6B63\u5728\u641C\u7D22 [SEARCH_TERM]...",
1845
+ results_label: "Search results",
1846
+ keyboard_navigate: "navigate",
1847
+ keyboard_select: "select",
1848
+ keyboard_clear: "clear",
1849
+ keyboard_close: "close",
1850
+ keyboard_search: "search",
1851
+ error_search: "Search failed",
1852
+ filter_selected_one: "[COUNT] selected",
1853
+ filter_selected_many: "[COUNT] selected"
1854
+ };
1855
+ var zh_cn_default = {
1856
+ thanks_to: thanks_to41,
1857
+ comments: comments41,
1858
+ direction: direction41,
1859
+ strings: strings41
1860
+ };
1861
+
1862
+ // ../translations/zh-tw.json
1863
+ var zh_tw_exports = {};
1864
+ __export(zh_tw_exports, {
1865
+ comments: () => comments42,
1866
+ default: () => zh_tw_default,
1867
+ direction: () => direction42,
1868
+ strings: () => strings42,
1869
+ thanks_to: () => thanks_to42
1870
+ });
1871
+ var thanks_to42 = "Amber Song";
1872
+ var comments42 = "";
1873
+ var direction42 = "ltr";
1874
+ var strings42 = {
1875
+ placeholder: "\u641C\u5C0B",
1876
+ clear_search: "\u6E05\u9664",
1877
+ load_more: "\u8F09\u5165\u66F4\u591A\u7D50\u679C",
1878
+ search_label: "\u7AD9\u5167\u641C\u5C0B",
1879
+ filters_label: "\u7BE9\u9078",
1880
+ zero_results: "\u627E\u4E0D\u5230 [SEARCH_TERM] \u7684\u76F8\u95DC\u7D50\u679C",
1881
+ many_results: "\u627E\u5230 [COUNT] \u500B [SEARCH_TERM] \u7684\u76F8\u95DC\u7D50\u679C",
1882
+ one_result: "\u627E\u5230 [COUNT] \u500B [SEARCH_TERM] \u7684\u76F8\u95DC\u7D50\u679C",
1883
+ total_zero_results: "No results",
1884
+ total_one_result: "[COUNT] result",
1885
+ total_many_results: "[COUNT] results",
1886
+ alt_search: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u95DC\u7D50\u679C\u3002\u6539\u70BA\u986F\u793A [DIFFERENT_TERM] \u7684\u76F8\u95DC\u7D50\u679C",
1887
+ search_suggestion: "\u627E\u4E0D\u5230 [SEARCH_TERM] \u7684\u76F8\u95DC\u7D50\u679C\u3002\u8ACB\u5617\u8A66\u4EE5\u4E0B\u7684\u5EFA\u8B70\u4E4B\u4E00\u3002",
1888
+ searching: "\u6B63\u5728\u641C\u5C0B[SEARCH_TERM]...",
1889
+ results_label: "Search results",
1890
+ keyboard_navigate: "navigate",
1891
+ keyboard_select: "select",
1892
+ keyboard_clear: "clear",
1893
+ keyboard_close: "close",
1894
+ keyboard_search: "search",
1895
+ error_search: "Search failed",
1896
+ filter_selected_one: "[COUNT] selected",
1897
+ filter_selected_many: "[COUNT] selected"
1898
+ };
1899
+ var zh_tw_default = {
1900
+ thanks_to: thanks_to42,
1901
+ comments: comments42,
1902
+ direction: direction42,
1903
+ strings: strings42
1904
+ };
1905
+
1906
+ // ../translations/zh.json
1907
+ var zh_exports = {};
1908
+ __export(zh_exports, {
1909
+ comments: () => comments43,
1910
+ default: () => zh_default,
1911
+ direction: () => direction43,
1912
+ strings: () => strings43,
1913
+ thanks_to: () => thanks_to43
1914
+ });
1915
+ var thanks_to43 = "Amber Song";
1916
+ var comments43 = "";
1917
+ var direction43 = "ltr";
1918
+ var strings43 = {
1919
+ placeholder: "\u641C\u7D22",
1920
+ clear_search: "\u6E05\u9664",
1921
+ load_more: "\u52A0\u8F7D\u66F4\u591A\u7ED3\u679C",
1922
+ search_label: "\u7AD9\u5185\u641C\u7D22",
1923
+ filters_label: "\u7B5B\u9009",
1924
+ zero_results: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1925
+ many_results: "\u627E\u5230 [COUNT] \u4E2A [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1926
+ one_result: "\u627E\u5230 [COUNT] \u4E2A [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1927
+ total_zero_results: "No results",
1928
+ total_one_result: "[COUNT] result",
1929
+ total_many_results: "[COUNT] results",
1930
+ alt_search: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C\u3002\u6539\u4E3A\u663E\u793A [DIFFERENT_TERM] \u7684\u76F8\u5173\u7ED3\u679C",
1931
+ search_suggestion: "\u672A\u627E\u5230 [SEARCH_TERM] \u7684\u76F8\u5173\u7ED3\u679C\u3002\u8BF7\u5C1D\u8BD5\u4EE5\u4E0B\u641C\u7D22\u3002",
1932
+ searching: "\u6B63\u5728\u641C\u7D22 [SEARCH_TERM]...",
1933
+ results_label: "Search results",
1934
+ keyboard_navigate: "navigate",
1935
+ keyboard_select: "select",
1936
+ keyboard_clear: "clear",
1937
+ keyboard_close: "close",
1938
+ keyboard_search: "search",
1939
+ error_search: "Search failed",
1940
+ filter_selected_one: "[COUNT] selected",
1941
+ filter_selected_many: "[COUNT] selected"
1942
+ };
1943
+ var zh_default = {
1944
+ thanks_to: thanks_to43,
1945
+ comments: comments43,
1946
+ direction: direction43,
1947
+ strings: strings43
1948
+ };
1949
+
1950
+ // import-glob:../../translations/*.json
1951
+ var modules = [af_exports, ar_exports, bn_exports, ca_exports, cs_exports, da_exports, de_exports, en_exports, es_exports, eu_exports, fa_exports, fi_exports, fr_exports, gl_exports, he_exports, hi_exports, hr_exports, hu_exports, id_exports, it_exports, ja_exports, ko_exports, mi_exports, my_exports, nb_exports, nl_exports, nn_exports, no_exports, pl_exports, pt_exports, ro_exports, ru_exports, sr_exports, sv_exports, sw_exports, ta_exports, th_exports, tr_exports, uk_exports, vi_exports, zh_cn_exports, zh_tw_exports, zh_exports];
1952
+ var __default = modules;
1953
+ var filenames = ["../../translations/af.json", "../../translations/ar.json", "../../translations/bn.json", "../../translations/ca.json", "../../translations/cs.json", "../../translations/da.json", "../../translations/de.json", "../../translations/en.json", "../../translations/es.json", "../../translations/eu.json", "../../translations/fa.json", "../../translations/fi.json", "../../translations/fr.json", "../../translations/gl.json", "../../translations/he.json", "../../translations/hi.json", "../../translations/hr.json", "../../translations/hu.json", "../../translations/id.json", "../../translations/it.json", "../../translations/ja.json", "../../translations/ko.json", "../../translations/mi.json", "../../translations/my.json", "../../translations/nb.json", "../../translations/nl.json", "../../translations/nn.json", "../../translations/no.json", "../../translations/pl.json", "../../translations/pt.json", "../../translations/ro.json", "../../translations/ru.json", "../../translations/sr.json", "../../translations/sv.json", "../../translations/sw.json", "../../translations/ta.json", "../../translations/th.json", "../../translations/tr.json", "../../translations/uk.json", "../../translations/vi.json", "../../translations/zh-cn.json", "../../translations/zh-tw.json", "../../translations/zh.json"];
1954
+
1955
+ // node_modules/is-alphabetical/index.js
1956
+ function isAlphabetical(character) {
1957
+ const code = typeof character === "string" ? character.charCodeAt(0) : character;
1958
+ return code >= 97 && code <= 122 || code >= 65 && code <= 90;
1959
+ }
1960
+
1961
+ // node_modules/is-decimal/index.js
1962
+ function isDecimal(character) {
1963
+ const code = typeof character === "string" ? character.charCodeAt(0) : character;
1964
+ return code >= 48 && code <= 57;
1965
+ }
1966
+
1967
+ // node_modules/is-alphanumerical/index.js
1968
+ function isAlphanumerical(character) {
1969
+ return isAlphabetical(character) || isDecimal(character);
1970
+ }
1971
+
1972
+ // node_modules/bcp-47/lib/regular.js
1973
+ var regular = [
1974
+ "art-lojban",
1975
+ "cel-gaulish",
1976
+ "no-bok",
1977
+ "no-nyn",
1978
+ "zh-guoyu",
1979
+ "zh-hakka",
1980
+ "zh-min",
1981
+ "zh-min-nan",
1982
+ "zh-xiang"
1983
+ ];
1984
+
1985
+ // node_modules/bcp-47/lib/normal.js
1986
+ var normal = {
1987
+ "en-gb-oed": "en-GB-oxendict",
1988
+ "i-ami": "ami",
1989
+ "i-bnn": "bnn",
1990
+ "i-default": null,
1991
+ "i-enochian": null,
1992
+ "i-hak": "hak",
1993
+ "i-klingon": "tlh",
1994
+ "i-lux": "lb",
1995
+ "i-mingo": null,
1996
+ "i-navajo": "nv",
1997
+ "i-pwn": "pwn",
1998
+ "i-tao": "tao",
1999
+ "i-tay": "tay",
2000
+ "i-tsu": "tsu",
2001
+ "sgn-be-fr": "sfb",
2002
+ "sgn-be-nl": "vgt",
2003
+ "sgn-ch-de": "sgg",
2004
+ "art-lojban": "jbo",
2005
+ "cel-gaulish": null,
2006
+ "no-bok": "nb",
2007
+ "no-nyn": "nn",
2008
+ "zh-guoyu": "cmn",
2009
+ "zh-hakka": "hak",
2010
+ "zh-min": null,
2011
+ "zh-min-nan": "nan",
2012
+ "zh-xiang": "hsn"
2013
+ };
2014
+
2015
+ // node_modules/bcp-47/lib/parse.js
2016
+ var own = {}.hasOwnProperty;
2017
+ function parse(tag, options = {}) {
2018
+ const result = empty();
2019
+ const source = String(tag);
2020
+ const value = source.toLowerCase();
2021
+ let index = 0;
2022
+ if (tag === null || tag === void 0) {
2023
+ throw new Error("Expected string, got `" + tag + "`");
2024
+ }
2025
+ if (own.call(normal, value)) {
2026
+ const replacement = normal[value];
2027
+ if ((options.normalize === void 0 || options.normalize === null || options.normalize) && typeof replacement === "string") {
2028
+ return parse(replacement);
2029
+ }
2030
+ result[regular.includes(value) ? "regular" : "irregular"] = source;
2031
+ return result;
2032
+ }
2033
+ while (isAlphabetical(value.charCodeAt(index)) && index < 9) index++;
2034
+ if (index > 1 && index < 9) {
2035
+ result.language = source.slice(0, index);
2036
+ if (index < 4) {
2037
+ let groups = 0;
2038
+ while (value.charCodeAt(index) === 45 && isAlphabetical(value.charCodeAt(index + 1)) && isAlphabetical(value.charCodeAt(index + 2)) && isAlphabetical(value.charCodeAt(index + 3)) && !isAlphabetical(value.charCodeAt(index + 4))) {
2039
+ if (groups > 2) {
2040
+ return fail(
2041
+ index,
2042
+ 3,
2043
+ "Too many extended language subtags, expected at most 3 subtags"
2044
+ );
2045
+ }
2046
+ result.extendedLanguageSubtags.push(source.slice(index + 1, index + 4));
2047
+ index += 4;
2048
+ groups++;
2049
+ }
2050
+ }
2051
+ if (value.charCodeAt(index) === 45 && isAlphabetical(value.charCodeAt(index + 1)) && isAlphabetical(value.charCodeAt(index + 2)) && isAlphabetical(value.charCodeAt(index + 3)) && isAlphabetical(value.charCodeAt(index + 4)) && !isAlphabetical(value.charCodeAt(index + 5))) {
2052
+ result.script = source.slice(index + 1, index + 5);
2053
+ index += 5;
2054
+ }
2055
+ if (value.charCodeAt(index) === 45) {
2056
+ if (isAlphabetical(value.charCodeAt(index + 1)) && isAlphabetical(value.charCodeAt(index + 2)) && !isAlphabetical(value.charCodeAt(index + 3))) {
2057
+ result.region = source.slice(index + 1, index + 3);
2058
+ index += 3;
2059
+ } else if (isDecimal(value.charCodeAt(index + 1)) && isDecimal(value.charCodeAt(index + 2)) && isDecimal(value.charCodeAt(index + 3)) && !isDecimal(value.charCodeAt(index + 4))) {
2060
+ result.region = source.slice(index + 1, index + 4);
2061
+ index += 4;
2062
+ }
2063
+ }
2064
+ while (value.charCodeAt(index) === 45) {
2065
+ const start = index + 1;
2066
+ let offset = start;
2067
+ while (isAlphanumerical(value.charCodeAt(offset))) {
2068
+ if (offset - start > 7) {
2069
+ return fail(
2070
+ offset,
2071
+ 1,
2072
+ "Too long variant, expected at most 8 characters"
2073
+ );
2074
+ }
2075
+ offset++;
2076
+ }
2077
+ if (
2078
+ // Long variant.
2079
+ offset - start > 4 || // Short variant.
2080
+ offset - start > 3 && isDecimal(value.charCodeAt(start))
2081
+ ) {
2082
+ result.variants.push(source.slice(start, offset));
2083
+ index = offset;
2084
+ } else {
2085
+ break;
2086
+ }
2087
+ }
2088
+ while (value.charCodeAt(index) === 45) {
2089
+ if (value.charCodeAt(index + 1) === 120 || !isAlphanumerical(value.charCodeAt(index + 1)) || value.charCodeAt(index + 2) !== 45 || !isAlphanumerical(value.charCodeAt(index + 3))) {
2090
+ break;
2091
+ }
2092
+ let offset = index + 2;
2093
+ let groups = 0;
2094
+ while (value.charCodeAt(offset) === 45 && isAlphanumerical(value.charCodeAt(offset + 1)) && isAlphanumerical(value.charCodeAt(offset + 2))) {
2095
+ const start = offset + 1;
2096
+ offset = start + 2;
2097
+ groups++;
2098
+ while (isAlphanumerical(value.charCodeAt(offset))) {
2099
+ if (offset - start > 7) {
2100
+ return fail(
2101
+ offset,
2102
+ 2,
2103
+ "Too long extension, expected at most 8 characters"
2104
+ );
2105
+ }
2106
+ offset++;
2107
+ }
2108
+ }
2109
+ if (!groups) {
2110
+ return fail(
2111
+ offset,
2112
+ 4,
2113
+ "Empty extension, extensions must have at least 2 characters of content"
2114
+ );
2115
+ }
2116
+ result.extensions.push({
2117
+ singleton: source.charAt(index + 1),
2118
+ extensions: source.slice(index + 3, offset).split("-")
2119
+ });
2120
+ index = offset;
2121
+ }
2122
+ } else {
2123
+ index = 0;
2124
+ }
2125
+ if (index === 0 && value.charCodeAt(index) === 120 || value.charCodeAt(index) === 45 && value.charCodeAt(index + 1) === 120) {
2126
+ index = index ? index + 2 : 1;
2127
+ let offset = index;
2128
+ while (value.charCodeAt(offset) === 45 && isAlphanumerical(value.charCodeAt(offset + 1))) {
2129
+ const start = index + 1;
2130
+ offset = start;
2131
+ while (isAlphanumerical(value.charCodeAt(offset))) {
2132
+ if (offset - start > 7) {
2133
+ return fail(
2134
+ offset,
2135
+ 5,
2136
+ "Too long private-use area, expected at most 8 characters"
2137
+ );
2138
+ }
2139
+ offset++;
2140
+ }
2141
+ result.privateuse.push(source.slice(index + 1, offset));
2142
+ index = offset;
2143
+ }
2144
+ }
2145
+ if (index !== source.length) {
2146
+ return fail(index, 6, "Found superfluous content after tag");
2147
+ }
2148
+ return result;
2149
+ function fail(offset, code, reason) {
2150
+ if (options.warning) options.warning(reason, code, offset);
2151
+ return options.forgiving ? result : empty();
2152
+ }
2153
+ }
2154
+ function empty() {
2155
+ return {
2156
+ language: null,
2157
+ extendedLanguageSubtags: [],
2158
+ script: null,
2159
+ region: null,
2160
+ variants: [],
2161
+ extensions: [],
2162
+ privateuse: [],
2163
+ irregular: null,
2164
+ regular: null
2165
+ };
2166
+ }
2167
+
2168
+ // core/translations.ts
2169
+ var translations = {};
2170
+ var filenames2 = filenames;
2171
+ var contents = __default;
2172
+ for (let i = 0; i < filenames2.length; i++) {
2173
+ const match = filenames2[i].match(/([^\/]+)\.json$/);
2174
+ if (!match) continue;
2175
+ const lang = match[1];
2176
+ translations[lang] = {
2177
+ language: lang,
2178
+ direction: contents[i].direction || "ltr",
2179
+ ...contents[i].strings
2180
+ };
2181
+ }
2182
+ function getTranslations(langCode) {
2183
+ if (!langCode) {
2184
+ return translations["en"];
2185
+ }
2186
+ const parsed = parse(langCode.toLowerCase());
2187
+ const keys = [];
2188
+ if (parsed.language && parsed.script && parsed.region) {
2189
+ keys.push(`${parsed.language}-${parsed.script}-${parsed.region}`);
2190
+ }
2191
+ if (parsed.language && parsed.region) {
2192
+ keys.push(`${parsed.language}-${parsed.region}`);
2193
+ }
2194
+ if (parsed.language) {
2195
+ keys.push(parsed.language);
2196
+ }
2197
+ for (const key of keys) {
2198
+ if (translations[key]) {
2199
+ return translations[key];
2200
+ }
2201
+ }
2202
+ return translations["en"];
2203
+ }
2204
+ function interpolate(str, replacements = {}) {
2205
+ if (!str) return "";
2206
+ let result = str;
2207
+ for (const [placeholder, value] of Object.entries(replacements)) {
2208
+ result = result.replace(new RegExp(`\\[${placeholder}\\]`, "g"), String(value));
2209
+ }
2210
+ return result;
2211
+ }
2212
+
2213
+ // core/announcer.ts
2214
+ var ANNOUNCE_DELAY_MS = 100;
2215
+ var CLEAR_DELAY_MS = 350;
2216
+ var Announcer = class {
2217
+ constructor(idGenerator) {
2218
+ this.regions = null;
2219
+ this.politeIndex = 0;
2220
+ this.assertiveIndex = 0;
2221
+ this.clearTimeoutId = null;
2222
+ this.idGenerator = idGenerator;
2223
+ this.containerId = idGenerator("pf-announcer");
2224
+ this.createRegions();
2225
+ }
2226
+ createRegions() {
2227
+ if (typeof document === "undefined") return;
2228
+ const container = document.createElement("div");
2229
+ container.id = this.containerId;
2230
+ container.setAttribute("data-pagefind-announcer", "");
2231
+ const createRegionPair = (priority) => {
2232
+ const regions = [];
2233
+ for (let i = 0; i < 2; i++) {
2234
+ const region = document.createElement("div");
2235
+ region.id = this.idGenerator(`pf-${priority}-region`);
2236
+ region.setAttribute("role", "status");
2237
+ region.setAttribute("aria-live", priority);
2238
+ region.setAttribute("aria-atomic", "true");
2239
+ region.setAttribute("data-pf-sr-hidden", "");
2240
+ container.appendChild(region);
2241
+ regions.push(region);
2242
+ }
2243
+ return regions;
2244
+ };
2245
+ this.regions = {
2246
+ polite: createRegionPair("polite"),
2247
+ assertive: createRegionPair("assertive")
2248
+ };
2249
+ document.body.appendChild(container);
2250
+ }
2251
+ /**
2252
+ * Announce a message to screen readers.
2253
+ * Uses double-buffer technique for reliable successive announcements.
2254
+ *
2255
+ * @param message - The text to announce
2256
+ * @param priority - "polite" waits for pause in speech, "assertive" interrupts immediately
2257
+ */
2258
+ announce(message, priority = "polite") {
2259
+ if (!this.regions || !message) return;
2260
+ if (this.clearTimeoutId) {
2261
+ clearTimeout(this.clearTimeoutId);
2262
+ this.clearTimeoutId = null;
2263
+ }
2264
+ const currentIndex = priority === "polite" ? this.politeIndex : this.assertiveIndex;
2265
+ const region = this.regions[priority][currentIndex];
2266
+ if (priority === "polite") {
2267
+ this.politeIndex = currentIndex === 0 ? 1 : 0;
2268
+ } else {
2269
+ this.assertiveIndex = currentIndex === 0 ? 1 : 0;
2270
+ }
2271
+ const nextIndex = priority === "polite" ? this.politeIndex : this.assertiveIndex;
2272
+ this.regions[priority][nextIndex].textContent = "";
2273
+ setTimeout(() => {
2274
+ region.textContent = message;
2275
+ this.clearTimeoutId = setTimeout(() => {
2276
+ region.textContent = "";
2277
+ this.clearTimeoutId = null;
2278
+ }, CLEAR_DELAY_MS);
2279
+ }, ANNOUNCE_DELAY_MS);
2280
+ }
2281
+ /**
2282
+ * Clear all live regions immediately.
2283
+ * Useful when transitioning between states where old announcements are no longer relevant.
2284
+ */
2285
+ clear() {
2286
+ if (!this.regions) return;
2287
+ if (this.clearTimeoutId) {
2288
+ clearTimeout(this.clearTimeoutId);
2289
+ this.clearTimeoutId = null;
2290
+ }
2291
+ for (const priority of ["polite", "assertive"]) {
2292
+ for (const region of this.regions[priority]) {
2293
+ region.textContent = "";
2294
+ }
2295
+ }
2296
+ }
2297
+ /**
2298
+ * Remove announcer from DOM.
2299
+ * Call when Instance is destroyed to clean up.
2300
+ */
2301
+ destroy() {
2302
+ this.clear();
2303
+ if (typeof document !== "undefined") {
2304
+ const container = document.getElementById(this.containerId);
2305
+ if (container) {
2306
+ container.remove();
2307
+ }
2308
+ }
2309
+ this.regions = null;
2310
+ }
2311
+ };
2312
+
2313
+ // core/instance.ts
2314
+ var thinSubResults = (results, limit = 3) => {
2315
+ if (results.length <= limit) return results;
2316
+ const topUrls = [...results].sort((a, b) => (b.locations?.length ?? 0) - (a.locations?.length ?? 0)).slice(0, limit).map((r) => r.url);
2317
+ return results.filter((r) => topUrls.includes(r.url));
2318
+ };
2319
+ var getDisplaySubResults = (result, limit = 3) => {
2320
+ if (!Array.isArray(result.sub_results)) return [];
2321
+ const hasRootSubResult = result.sub_results[0]?.url === (result.meta?.url || result.url);
2322
+ const subResults = hasRootSubResult ? result.sub_results.slice(1) : result.sub_results;
2323
+ return thinSubResults(subResults, limit);
2324
+ };
2325
+ var scriptBundlePath;
2326
+ try {
2327
+ if (document?.currentScript && document.currentScript.tagName.toUpperCase() === "SCRIPT") {
2328
+ const match = new URL(document.currentScript.src).pathname.match(
2329
+ /^(.*\/)(?:pagefind[-_])?component[-_]?ui.js.*$/
2330
+ );
2331
+ if (match) {
2332
+ scriptBundlePath = match[1];
2333
+ }
2334
+ }
2335
+ } catch (e) {
2336
+ scriptBundlePath = "/pagefind/";
2337
+ }
2338
+ var Instance = class {
2339
+ constructor(name, opts = {}) {
2340
+ this.__pagefind__ = null;
2341
+ this.__loadPromise__ = null;
2342
+ this.__searchID__ = 0;
2343
+ // Translation state
2344
+ this._translations = null;
2345
+ this._userTranslations = {};
2346
+ this._direction = "ltr";
2347
+ this._languageSet = false;
2348
+ this.components = [];
2349
+ this.componentsByType = {};
2350
+ this.searchTerm = "";
2351
+ this.searchFilters = {};
2352
+ this.searchResult = { results: [] };
2353
+ this.availableFilters = null;
2354
+ this.totalFilters = null;
2355
+ this.activeShortcuts = [];
2356
+ this.faceted = false;
2357
+ this.generatedIds = /* @__PURE__ */ new Set();
2358
+ this.name = name;
2359
+ this.__hooks__ = {
2360
+ search: [],
2361
+ filters: [],
2362
+ loading: [],
2363
+ results: [],
2364
+ error: [],
2365
+ translations: []
2366
+ };
2367
+ this.options = {
2368
+ bundlePath: opts.bundlePath ?? scriptBundlePath ?? "/pagefind/",
2369
+ mergeIndex: opts.mergeIndex ?? []
2370
+ };
2371
+ const pagefindOpts = { ...opts };
2372
+ delete pagefindOpts.bundlePath;
2373
+ delete pagefindOpts.mergeIndex;
2374
+ this.pagefindOptions = pagefindOpts;
2375
+ this._announcer = new Announcer(this.generateId.bind(this));
2376
+ }
2377
+ generateId(prefix, length = 2) {
2378
+ const idChars = "abcdef";
2379
+ const randomSeg = (len = 3) => {
2380
+ let word = "";
2381
+ for (let i = 0; i < len; i++) {
2382
+ word += idChars[Math.floor(Math.random() * idChars.length)];
2383
+ }
2384
+ return word;
2385
+ };
2386
+ const instancePart = this.name !== "default" ? `${this.name}-` : "";
2387
+ const segments = Array.from({ length }, () => randomSeg()).join("-");
2388
+ const id = `${prefix}-${instancePart}${segments}`;
2389
+ if (this.generatedIds.has(id) || document.getElementById(id)) {
2390
+ return this.generateId(prefix, length + 1);
2391
+ }
2392
+ this.generatedIds.add(id);
2393
+ return id;
2394
+ }
2395
+ add(component) {
2396
+ component?.register?.(this);
2397
+ this.components.push(component);
2398
+ }
2399
+ registerInput(component, capabilities = {}) {
2400
+ this._registerComponent(component, "input", null, capabilities);
2401
+ }
2402
+ registerResults(component, capabilities = {}) {
2403
+ this._registerComponent(component, "results", null, capabilities);
2404
+ }
2405
+ registerSummary(component, capabilities = {}) {
2406
+ this._registerComponent(component, "summary", null, capabilities);
2407
+ }
2408
+ registerFilter(component, capabilities = {}) {
2409
+ this._registerComponent(component, "filter", null, capabilities);
2410
+ }
2411
+ registerSort(component, capabilities = {}) {
2412
+ this._registerComponent(component, "sort", null, capabilities);
2413
+ }
2414
+ registerUtility(component, subtype = null, capabilities = {}) {
2415
+ this._registerComponent(component, "utility", subtype, capabilities);
2416
+ }
2417
+ _registerComponent(component, type, subtype = null, capabilities = {}) {
2418
+ if (!this.componentsByType[type]) {
2419
+ this.componentsByType[type] = [];
2420
+ }
2421
+ if (!this._languageSet) {
2422
+ this.setLanguage();
2423
+ }
2424
+ if (this.components.includes(component)) {
2425
+ component.capabilities = capabilities;
2426
+ this.reconcileAria();
2427
+ return;
2428
+ }
2429
+ component.componentType = type;
2430
+ component.componentSubtype = subtype;
2431
+ component.capabilities = capabilities;
2432
+ this.componentsByType[type].push(component);
2433
+ this.components.push(component);
2434
+ this.reconcileAria();
2435
+ }
2436
+ getInputs(requiredCapability = null) {
2437
+ const components = this.componentsByType["input"] || [];
2438
+ if (!requiredCapability) return components;
2439
+ return components.filter((c) => c.capabilities?.[requiredCapability]);
2440
+ }
2441
+ getResults(requiredCapability = null) {
2442
+ const components = this.componentsByType["results"] || [];
2443
+ if (!requiredCapability) return components;
2444
+ return components.filter((c) => c.capabilities?.[requiredCapability]);
2445
+ }
2446
+ getSummaries(requiredCapability = null) {
2447
+ const components = this.componentsByType["summary"] || [];
2448
+ if (!requiredCapability) return components;
2449
+ return components.filter((c) => c.capabilities?.[requiredCapability]);
2450
+ }
2451
+ getFilters(requiredCapability = null) {
2452
+ const components = this.componentsByType["filter"] || [];
2453
+ if (!requiredCapability) return components;
2454
+ return components.filter((c) => c.capabilities?.[requiredCapability]);
2455
+ }
2456
+ getSorts(requiredCapability = null) {
2457
+ const components = this.componentsByType["sort"] || [];
2458
+ if (!requiredCapability) return components;
2459
+ return components.filter((c) => c.capabilities?.[requiredCapability]);
2460
+ }
2461
+ getUtilities(subtype = null, requiredCapability = null) {
2462
+ let utilities = this.componentsByType["utility"] || [];
2463
+ if (subtype !== null) {
2464
+ utilities = utilities.filter((u) => u.componentSubtype === subtype);
2465
+ }
2466
+ if (requiredCapability) {
2467
+ utilities = utilities.filter((c) => c.capabilities?.[requiredCapability]);
2468
+ }
2469
+ return utilities;
2470
+ }
2471
+ /**
2472
+ * Check if any component has registered announcement capability.
2473
+ * Used to determine if Instance should handle announcements as a fallback.
2474
+ */
2475
+ hasAnnouncementCapability() {
2476
+ return this.components.some((c) => c.capabilities?.announcements === true);
2477
+ }
2478
+ /**
2479
+ * Register an active shortcut. Triggers hints to re-render.
2480
+ */
2481
+ registerShortcut(shortcut, owner) {
2482
+ const entry = { ...shortcut, owner };
2483
+ this.activeShortcuts.push(entry);
2484
+ this.notifyShortcutsChanged();
2485
+ }
2486
+ /**
2487
+ * Deregister a shortcut by owner + label.
2488
+ */
2489
+ deregisterShortcut(label, owner) {
2490
+ this.activeShortcuts = this.activeShortcuts.filter(
2491
+ (s) => !(s.label === label && s.owner === owner)
2492
+ );
2493
+ this.notifyShortcutsChanged();
2494
+ }
2495
+ /**
2496
+ * Deregister all shortcuts from an owner.
2497
+ */
2498
+ deregisterAllShortcuts(owner) {
2499
+ this.activeShortcuts = this.activeShortcuts.filter((s) => s.owner !== owner);
2500
+ this.notifyShortcutsChanged();
2501
+ }
2502
+ /**
2503
+ * Get currently active shortcuts.
2504
+ */
2505
+ getActiveShortcuts() {
2506
+ return this.activeShortcuts;
2507
+ }
2508
+ /**
2509
+ * Notify keyboard-hints utilities to re-render.
2510
+ */
2511
+ notifyShortcutsChanged() {
2512
+ const hints = this.getUtilities("keyboard-hints");
2513
+ hints.forEach((h) => h.render?.());
2514
+ }
2515
+ /**
2516
+ * Get all registered shortcuts from all components.
2517
+ * @deprecated Use getActiveShortcuts() instead
2518
+ */
2519
+ getShortcuts(context = null) {
2520
+ const shortcuts = [];
2521
+ for (const component of this.components) {
2522
+ const componentShortcuts = component.capabilities?.shortcuts || [];
2523
+ for (const shortcut of componentShortcuts) {
2524
+ if (!context || !shortcut.context || shortcut.context === context) {
2525
+ shortcuts.push(shortcut);
2526
+ }
2527
+ }
2528
+ }
2529
+ return shortcuts;
2530
+ }
2531
+ /**
2532
+ * Focus the first result in the next keyboard-navigable results component.
2533
+ */
2534
+ focusNextResults(fromElement) {
2535
+ const results = this.getResults("keyboardNavigation");
2536
+ const resultsComponent = findNextComponentInTabOrder(fromElement, results);
2537
+ if (!resultsComponent) return false;
2538
+ const resultEls = resultsComponent.getResultElements?.() || resultsComponent.querySelectorAll(".pf-result") || [];
2539
+ const firstLink = resultEls[0]?.querySelector("a");
2540
+ if (firstLink) {
2541
+ firstLink.focus();
2542
+ return true;
2543
+ }
2544
+ return false;
2545
+ }
2546
+ /**
2547
+ * Focus the previous keyboard-navigable input component.
2548
+ */
2549
+ focusPreviousInput(fromElement) {
2550
+ const inputs = this.getInputs("keyboardNavigation");
2551
+ const inputComponent = findPreviousComponentInTabOrder(fromElement, inputs);
2552
+ if (!inputComponent) return false;
2553
+ if (inputComponent.focus) {
2554
+ inputComponent.focus();
2555
+ return true;
2556
+ }
2557
+ const inputEl = inputComponent.querySelector("input");
2558
+ if (inputEl) {
2559
+ inputEl.focus();
2560
+ return true;
2561
+ }
2562
+ return false;
2563
+ }
2564
+ /**
2565
+ * Focus input and append a character.
2566
+ */
2567
+ focusInputAndType(fromElement, char) {
2568
+ const inputs = this.getInputs("keyboardNavigation");
2569
+ const inputComponent = findPreviousComponentInTabOrder(fromElement, inputs);
2570
+ const inputEl = inputComponent?.inputEl || inputComponent?.querySelector("input");
2571
+ if (inputEl) {
2572
+ inputEl.value += char;
2573
+ inputEl.focus();
2574
+ inputEl.dispatchEvent(new Event("input", { bubbles: true }));
2575
+ }
2576
+ }
2577
+ /**
2578
+ * Focus input and delete last character.
2579
+ */
2580
+ focusInputAndDelete(fromElement) {
2581
+ const inputs = this.getInputs("keyboardNavigation");
2582
+ const inputComponent = findPreviousComponentInTabOrder(fromElement, inputs);
2583
+ const inputEl = inputComponent?.inputEl || inputComponent?.querySelector("input");
2584
+ if (inputEl) {
2585
+ inputEl.value = inputEl.value.slice(0, -1);
2586
+ inputEl.focus();
2587
+ inputEl.dispatchEvent(new Event("input", { bubbles: true }));
2588
+ }
2589
+ }
2590
+ reconcileAria() {
2591
+ this.components.forEach((c) => c.reconcileAria?.());
2592
+ }
2593
+ /**
2594
+ * Get current text direction.
2595
+ */
2596
+ get direction() {
2597
+ return this._direction;
2598
+ }
2599
+ /**
2600
+ * Set the language for translations.
2601
+ * Auto-detects from <html lang="..."> if no langCode provided.
2602
+ */
2603
+ setLanguage(langCode) {
2604
+ if (!langCode) {
2605
+ langCode = document?.documentElement?.lang || "en";
2606
+ }
2607
+ this._translations = getTranslations(langCode);
2608
+ this._direction = this._translations.direction || "ltr";
2609
+ this._languageSet = true;
2610
+ this.__dispatch__("translations", this._translations, this._direction);
2611
+ }
2612
+ /**
2613
+ * Set user translation overrides.
2614
+ */
2615
+ setTranslations(overrides) {
2616
+ this._userTranslations = { ...this._userTranslations, ...overrides };
2617
+ this.__dispatch__("translations", this._translations, this._direction);
2618
+ }
2619
+ /**
2620
+ * Get a translated string.
2621
+ * User overrides take precedence over automatic translations.
2622
+ */
2623
+ translate(key, replacements = {}) {
2624
+ const str = this._userTranslations[key] ?? this._translations?.[key];
2625
+ return interpolate(typeof str === "string" ? str : void 0, replacements);
2626
+ }
2627
+ /**
2628
+ * Announce a message to screen readers using a translation key.
2629
+ * @param key - Translation key (e.g., "many_results", "searching")
2630
+ * @param replacements - Values to interpolate into the message
2631
+ * @param priority - "polite" (default) waits for pause, "assertive" interrupts immediately
2632
+ */
2633
+ announce(key, replacements = {}, priority = "polite") {
2634
+ const message = this.translate(key, replacements);
2635
+ if (message) {
2636
+ this._announcer.announce(message, priority);
2637
+ }
2638
+ }
2639
+ /**
2640
+ * Announce a raw message to screen readers (bypasses translation system).
2641
+ * @param message - The message text to announce
2642
+ * @param priority - "polite" (default) waits for pause, "assertive" interrupts immediately
2643
+ */
2644
+ announceRaw(message, priority = "polite") {
2645
+ this._announcer.announce(message, priority);
2646
+ }
2647
+ /**
2648
+ * Clear any pending announcements.
2649
+ */
2650
+ clearAnnouncements() {
2651
+ this._announcer.clear();
2652
+ }
2653
+ on(event, callback, owner = null) {
2654
+ if (!this.__hooks__[event]) {
2655
+ const supportedEvents = Object.keys(this.__hooks__).join(", ");
2656
+ console.error(
2657
+ `[Pagefind Component UI]: Unknown event type ${event}. Supported events: [${supportedEvents}]`
2658
+ );
2659
+ return;
2660
+ }
2661
+ if (typeof callback !== "function") {
2662
+ console.error(
2663
+ `[Pagefind Component UI]: Expected callback to be a function, received ${typeof callback}`
2664
+ );
2665
+ return;
2666
+ }
2667
+ if (owner) {
2668
+ const existingIndex = this.__hooks__[event].findIndex(
2669
+ (h) => typeof h === "object" && h.owner === owner
2670
+ );
2671
+ if (existingIndex !== -1) {
2672
+ this.__hooks__[event][existingIndex] = { callback, owner };
2673
+ return;
2674
+ }
2675
+ this.__hooks__[event].push({ callback, owner });
2676
+ } else {
2677
+ this.__hooks__[event].push(callback);
2678
+ }
2679
+ }
2680
+ triggerLoad() {
2681
+ return this.__load__();
2682
+ }
2683
+ triggerSearch(term) {
2684
+ this.searchTerm = term;
2685
+ this.__dispatch__("search", term, this.searchFilters);
2686
+ this.__search__(term, this.searchFilters);
2687
+ }
2688
+ triggerSearchWithFilters(term, filters) {
2689
+ this.searchTerm = term;
2690
+ this.searchFilters = filters;
2691
+ this.__dispatch__("search", term, filters);
2692
+ this.__search__(term, filters);
2693
+ }
2694
+ triggerFilters(filters) {
2695
+ this.searchFilters = filters;
2696
+ this.__dispatch__("search", this.searchTerm, filters);
2697
+ this.__search__(this.searchTerm, filters);
2698
+ }
2699
+ triggerFilter(filter, values) {
2700
+ this.searchFilters = this.searchFilters || {};
2701
+ this.searchFilters[filter] = values;
2702
+ this.__dispatch__("search", this.searchTerm, this.searchFilters);
2703
+ this.__search__(this.searchTerm, this.searchFilters);
2704
+ }
2705
+ __dispatch__(e, ...args) {
2706
+ this.__hooks__[e]?.forEach((hook) => {
2707
+ if (typeof hook === "function") {
2708
+ hook(...args);
2709
+ } else if (hook?.callback) {
2710
+ hook.callback(...args);
2711
+ }
2712
+ });
2713
+ }
2714
+ async __clear__() {
2715
+ this.__dispatch__("results", { results: [], unfilteredTotalCount: 0 });
2716
+ if (this.__pagefind__) {
2717
+ this.availableFilters = await this.__pagefind__.filters();
2718
+ this.totalFilters = this.availableFilters;
2719
+ this.__dispatch__("filters", {
2720
+ available: this.availableFilters,
2721
+ total: this.totalFilters
2722
+ });
2723
+ }
2724
+ }
2725
+ async __search__(term, filters) {
2726
+ this.__dispatch__("loading");
2727
+ await this.__load__();
2728
+ const thisSearch = ++this.__searchID__;
2729
+ if ((!term || !term.length) && !this.faceted) {
2730
+ return this.__clear__();
2731
+ }
2732
+ if (!this.__pagefind__) return;
2733
+ const searchTerm = term && term.length ? term : null;
2734
+ const results = await this.__pagefind__.search(searchTerm, { filters });
2735
+ if (results && this.__searchID__ === thisSearch) {
2736
+ if (results.filters && Object.keys(results.filters)?.length) {
2737
+ this.availableFilters = results.filters;
2738
+ this.totalFilters = results.totalFilters ?? null;
2739
+ this.__dispatch__("filters", {
2740
+ available: this.availableFilters,
2741
+ total: this.totalFilters
2742
+ });
2743
+ }
2744
+ this.searchResult = results;
2745
+ this.__dispatch__("results", this.searchResult);
2746
+ if (!this.hasAnnouncementCapability() && term) {
2747
+ const count = results.results?.length ?? 0;
2748
+ const key = count === 0 ? "zero_results" : count === 1 ? "one_result" : "many_results";
2749
+ const priority = count === 0 ? "assertive" : "polite";
2750
+ this.announce(key, { SEARCH_TERM: term, COUNT: count }, priority);
2751
+ }
2752
+ }
2753
+ }
2754
+ async __load__() {
2755
+ if (this.__pagefind__) {
2756
+ return;
2757
+ }
2758
+ if (this.__loadPromise__) {
2759
+ return this.__loadPromise__;
2760
+ }
2761
+ this.__loadPromise__ = this.__doLoad__();
2762
+ try {
2763
+ await this.__loadPromise__;
2764
+ } finally {
2765
+ this.__loadPromise__ = null;
2766
+ }
2767
+ }
2768
+ async __doLoad__() {
2769
+ if (this.__pagefind__) return;
2770
+ let imported_pagefind;
2771
+ try {
2772
+ imported_pagefind = await import(
2773
+ /* @vite-ignore */
2774
+ `${this.options.bundlePath}pagefind.js`
2775
+ );
2776
+ } catch (e) {
2777
+ console.error(e);
2778
+ console.error(
2779
+ [
2780
+ `Pagefind couldn't be loaded from ${this.options.bundlePath}pagefind.js`,
2781
+ `You can configure this by passing a bundlePath option to the Pagefind Component UI`
2782
+ ].join("\n")
2783
+ );
2784
+ if (document?.currentScript && document.currentScript.tagName.toUpperCase() === "SCRIPT") {
2785
+ console.error(
2786
+ `[DEBUG: Loaded from ${document.currentScript?.src ?? "bad script location"}]`
2787
+ );
2788
+ } else {
2789
+ console.error("no known script location");
2790
+ }
2791
+ this.__dispatch__("error", {
2792
+ type: "bundle_load_failed",
2793
+ message: "Could not load search bundle",
2794
+ bundlePath: this.options.bundlePath,
2795
+ error: e
2796
+ });
2797
+ if (!this.hasAnnouncementCapability()) {
2798
+ this.announce("error_search", {}, "assertive");
2799
+ }
2800
+ return;
2801
+ }
2802
+ await imported_pagefind.options(this.pagefindOptions || {});
2803
+ for (const index of this.options.mergeIndex) {
2804
+ if (!index.bundlePath) {
2805
+ throw new Error("mergeIndex requires a bundlePath parameter");
2806
+ }
2807
+ const { bundlePath: url, ...indexOpts } = index;
2808
+ await imported_pagefind.mergeIndex(url, indexOpts);
2809
+ }
2810
+ this.__pagefind__ = imported_pagefind;
2811
+ this.availableFilters = await this.__pagefind__.filters();
2812
+ this.totalFilters = this.availableFilters;
2813
+ this.__dispatch__("filters", {
2814
+ available: this.availableFilters,
2815
+ total: this.totalFilters
2816
+ });
2817
+ if (this.faceted && this.__searchID__ === 0) {
2818
+ this.triggerSearch("");
2819
+ }
2820
+ }
2821
+ };
2822
+ export {
2823
+ Instance,
2824
+ getDisplaySubResults,
2825
+ thinSubResults
2826
+ };