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