@cavuno/board 1.31.0-preview.0 → 1.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{board--nLjpneU.d.ts → board-0yI5ZRJw.d.ts} +1 -1
- package/dist/{board-BS8Ax7hz.d.mts → board-BTVapQiL.d.mts} +1 -1
- package/dist/filters.d.mts +11 -11
- package/dist/filters.d.ts +11 -11
- package/dist/filters.js +590 -6
- package/dist/filters.mjs +590 -6
- package/dist/format.d.mts +12 -7
- package/dist/format.d.ts +12 -7
- package/dist/format.js +561 -3
- package/dist/format.mjs +561 -3
- package/dist/index.d.mts +11 -6
- package/dist/index.d.ts +11 -6
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/{jobs-Dmz8uexp.d.mts → jobs-Di4AV-02.d.mts} +6 -0
- package/dist/{jobs-Dmz8uexp.d.ts → jobs-Di4AV-02.d.ts} +6 -0
- package/dist/{salaries-CrtQBy81.d.ts → salaries-B-zJKjkk.d.ts} +1 -1
- package/dist/{salaries-QXFAyysR.d.mts → salaries-D-BGZpDC.d.mts} +1 -1
- package/dist/seo.d.mts +9 -16
- package/dist/seo.d.ts +9 -16
- package/dist/seo.js +497 -7
- package/dist/seo.mjs +497 -7
- package/dist/server.d.mts +3 -3
- package/dist/server.d.ts +3 -3
- package/dist/sitemap.d.mts +3 -3
- package/dist/sitemap.d.ts +3 -3
- package/dist/theme.d.mts +8 -1
- package/dist/theme.d.ts +8 -1
- package/dist/theme.js +7 -1
- package/dist/theme.mjs +7 -1
- package/dist/ui-copy-rlfoH9P3.d.mts +232 -0
- package/dist/ui-copy-rlfoH9P3.d.ts +232 -0
- package/package.json +1 -1
- package/skills/manifest.json +1 -1
package/dist/filters.js
CHANGED
|
@@ -126,6 +126,584 @@ function getSalaryLexicon(locale) {
|
|
|
126
126
|
return locale && LEXICONS[locale] || EN;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
+
// src/format/labels.ts
|
|
130
|
+
var EN_LABELS = {
|
|
131
|
+
// remoteOption
|
|
132
|
+
on_site: "On-site",
|
|
133
|
+
hybrid: "Hybrid",
|
|
134
|
+
remote: "Remote",
|
|
135
|
+
// employmentType
|
|
136
|
+
full_time: "Full-time",
|
|
137
|
+
part_time: "Part-time",
|
|
138
|
+
contract: "Contract",
|
|
139
|
+
internship: "Internship",
|
|
140
|
+
temporary: "Temporary",
|
|
141
|
+
volunteer: "Volunteer",
|
|
142
|
+
other: "Other"
|
|
143
|
+
};
|
|
144
|
+
var DE_LABELS = {
|
|
145
|
+
on_site: "Vor Ort",
|
|
146
|
+
hybrid: "Hybrid",
|
|
147
|
+
remote: "Remote",
|
|
148
|
+
full_time: "Vollzeit",
|
|
149
|
+
part_time: "Teilzeit",
|
|
150
|
+
contract: "Freiberuflich",
|
|
151
|
+
internship: "Praktikum",
|
|
152
|
+
temporary: "Befristet",
|
|
153
|
+
volunteer: "Ehrenamtlich",
|
|
154
|
+
other: "Sonstiges"
|
|
155
|
+
};
|
|
156
|
+
var FR_LABELS = {
|
|
157
|
+
on_site: "Sur site",
|
|
158
|
+
hybrid: "Hybride",
|
|
159
|
+
remote: "T\xE9l\xE9travail",
|
|
160
|
+
full_time: "Temps plein",
|
|
161
|
+
part_time: "Temps partiel",
|
|
162
|
+
contract: "Contrat",
|
|
163
|
+
internship: "Stage",
|
|
164
|
+
temporary: "Temporaire",
|
|
165
|
+
volunteer: "B\xE9n\xE9volat",
|
|
166
|
+
other: "Autre"
|
|
167
|
+
};
|
|
168
|
+
var VOCABULARIES = {
|
|
169
|
+
en: EN_LABELS,
|
|
170
|
+
de: DE_LABELS,
|
|
171
|
+
fr: FR_LABELS
|
|
172
|
+
};
|
|
173
|
+
var OVERRIDE_KEYS = {
|
|
174
|
+
on_site: "onSiteLabel",
|
|
175
|
+
hybrid: "hybridLabel",
|
|
176
|
+
remote: "remoteLabel",
|
|
177
|
+
full_time: "fullTimeLabel",
|
|
178
|
+
part_time: "partTimeLabel",
|
|
179
|
+
contract: "contractLabel",
|
|
180
|
+
internship: "internshipLabel",
|
|
181
|
+
temporary: "temporaryLabel",
|
|
182
|
+
volunteer: "volunteerLabel",
|
|
183
|
+
entry_level: "seniorityEntryLevel",
|
|
184
|
+
associate: "seniorityAssociate",
|
|
185
|
+
mid_level: "seniorityMidLevel",
|
|
186
|
+
senior: "senioritySenior",
|
|
187
|
+
lead: "seniorityLead",
|
|
188
|
+
principal: "seniorityPrincipal",
|
|
189
|
+
director: "seniorityDirector",
|
|
190
|
+
executive: "seniorityExecutive"
|
|
191
|
+
};
|
|
192
|
+
var SENIORITY_KEYS = /* @__PURE__ */ new Set([
|
|
193
|
+
"entry_level",
|
|
194
|
+
"associate",
|
|
195
|
+
"mid_level",
|
|
196
|
+
"senior",
|
|
197
|
+
"lead",
|
|
198
|
+
"principal",
|
|
199
|
+
"director",
|
|
200
|
+
"executive"
|
|
201
|
+
]);
|
|
202
|
+
function storedOverride(value, labels) {
|
|
203
|
+
const key = OVERRIDE_KEYS[value];
|
|
204
|
+
const override = key ? labels?.jobCardLabels?.[key] : void 0;
|
|
205
|
+
return typeof override === "string" && override.trim() !== "" ? override : null;
|
|
206
|
+
}
|
|
207
|
+
function fieldLabel(locale, value, labels) {
|
|
208
|
+
if (!value) return null;
|
|
209
|
+
const override = storedOverride(value, labels);
|
|
210
|
+
if (override) return override;
|
|
211
|
+
if (SENIORITY_KEYS.has(value)) {
|
|
212
|
+
return getSalaryLexicon(locale).seniority[value];
|
|
213
|
+
}
|
|
214
|
+
const vocabulary = VOCABULARIES[locale] ?? EN_LABELS;
|
|
215
|
+
return vocabulary[value] ?? EN_LABELS[value] ?? value;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// src/format/ui-copy.ts
|
|
219
|
+
var EN2 = {
|
|
220
|
+
jobCard: {
|
|
221
|
+
featuredLabel: "Featured",
|
|
222
|
+
aiRankedLabel: "AI-ranked",
|
|
223
|
+
sortNewestLabel: "Most recent",
|
|
224
|
+
sortSalaryHighLabel: "Salary: high to low"
|
|
225
|
+
},
|
|
226
|
+
jobSearch: {
|
|
227
|
+
headingJobs: "Jobs",
|
|
228
|
+
keywordLabel: "Keyword",
|
|
229
|
+
keywordPlaceholder: "Search jobs\u2026",
|
|
230
|
+
locationLabel: "Location",
|
|
231
|
+
locationPlaceholder: "City or region",
|
|
232
|
+
workplacePlaceholder: "Workplace",
|
|
233
|
+
anyWorkplaceLabel: "Any workplace",
|
|
234
|
+
typePlaceholder: "Type",
|
|
235
|
+
anyTypeLabel: "Any type",
|
|
236
|
+
sortPlaceholder: "Sort",
|
|
237
|
+
loadMoreLabel: "Load more",
|
|
238
|
+
noJobsMatchText: "No jobs match \u2014 try clearing a filter."
|
|
239
|
+
},
|
|
240
|
+
jobDetail: {
|
|
241
|
+
categoriesHeading: "Categories",
|
|
242
|
+
skillsHeading: "Skills",
|
|
243
|
+
additionalDetailsHeading: "Additional details",
|
|
244
|
+
customFieldYesLabel: "Yes",
|
|
245
|
+
customFieldNoLabel: "No",
|
|
246
|
+
locationsLabel: "Locations",
|
|
247
|
+
workPermitsLabel: "Work permits",
|
|
248
|
+
timezonesLabel: "Timezones",
|
|
249
|
+
educationLabel: "Education",
|
|
250
|
+
experienceLabel: "Experience",
|
|
251
|
+
worldwideLabel: "Worldwide",
|
|
252
|
+
noExperienceRequiredLabel: "No experience required",
|
|
253
|
+
experienceYears: (years) => `${years}+ years`,
|
|
254
|
+
posted: (published) => `Posted ${published}`,
|
|
255
|
+
noDescriptionText: "No description provided.",
|
|
256
|
+
viewCompanyProfileLabel: "View company profile",
|
|
257
|
+
similarJobsHeading: "Similar jobs",
|
|
258
|
+
breadcrumbAriaLabel: "Breadcrumb"
|
|
259
|
+
},
|
|
260
|
+
apply: {
|
|
261
|
+
applyButtonText: "Apply for this job",
|
|
262
|
+
applyingLabel: "Applying\u2026",
|
|
263
|
+
applyOnEmployerSiteLabel: "Apply on employer site",
|
|
264
|
+
signInToApplyLabel: "Sign in to apply",
|
|
265
|
+
verifyEmailToApplyLabel: "Verify email to apply",
|
|
266
|
+
appliedViewApplicationsLabel: "Applied \u2014 view applications",
|
|
267
|
+
applicationSubmitError: "Something went wrong. Please try again."
|
|
268
|
+
},
|
|
269
|
+
alerts: {
|
|
270
|
+
jobAlertTitle: "Get job alerts",
|
|
271
|
+
jobAlertEmailPlaceholder: "you@example.com",
|
|
272
|
+
jobAlertButtonText: "Get alerts",
|
|
273
|
+
subscribingLabel: "Subscribing\u2026",
|
|
274
|
+
jobAlertSuccessToast: "Check your email to confirm your subscription.",
|
|
275
|
+
jobAlertDuplicateToast: "You're already subscribed to this alert.",
|
|
276
|
+
jobAlertErrorToast: "Something went wrong. Please try again.",
|
|
277
|
+
sectionAriaLabel: "Job alerts",
|
|
278
|
+
emailAriaLabel: "email",
|
|
279
|
+
submitAriaLabel: "get job alerts"
|
|
280
|
+
},
|
|
281
|
+
copyLink: {
|
|
282
|
+
copyLinkLabel: "Copy link",
|
|
283
|
+
copiedLabel: "Copied",
|
|
284
|
+
ariaLabel: "copy link"
|
|
285
|
+
},
|
|
286
|
+
salary: {
|
|
287
|
+
comparisonHeadlineAverage: "Average salary",
|
|
288
|
+
perYearSuffix: "/ year",
|
|
289
|
+
comparisonPercentile25Label: "25th percentile",
|
|
290
|
+
medianLabel: "Median",
|
|
291
|
+
comparisonPercentile75Label: "75th percentile",
|
|
292
|
+
basedOnLabel: "Based on",
|
|
293
|
+
seniorityTableHeaderLevel: "Level",
|
|
294
|
+
seniorityTableHeaderAvg: "Average",
|
|
295
|
+
boardBaselineLabel: "Board baseline",
|
|
296
|
+
seniorityTableHeaderDiff: "vs. board",
|
|
297
|
+
faqHeading: "Frequently asked questions"
|
|
298
|
+
},
|
|
299
|
+
nav: {
|
|
300
|
+
home: "Jobs",
|
|
301
|
+
companies: "Companies",
|
|
302
|
+
pricing: "Pricing",
|
|
303
|
+
talent: "Talent",
|
|
304
|
+
post: "Post a job",
|
|
305
|
+
blog: "Blog"
|
|
306
|
+
},
|
|
307
|
+
footer: {
|
|
308
|
+
forCandidatesHeading: "For Candidates",
|
|
309
|
+
forCompaniesHeading: "For Companies",
|
|
310
|
+
resourcesHeading: "Resources",
|
|
311
|
+
aboutHeading: "About",
|
|
312
|
+
websiteLabel: "Website",
|
|
313
|
+
aboutLabel: "About",
|
|
314
|
+
contactLabel: "Contact us",
|
|
315
|
+
locationsLabel: "Locations",
|
|
316
|
+
salariesLabel: "Salaries",
|
|
317
|
+
sitemapLabel: "Sitemap",
|
|
318
|
+
termsOfServiceLabel: "Terms of Service",
|
|
319
|
+
privacyPolicyLabel: "Privacy Policy",
|
|
320
|
+
cookiePolicyLabel: "Cookie Policy",
|
|
321
|
+
impressumLabel: "Impressum",
|
|
322
|
+
allRightsReservedText: "All rights reserved.",
|
|
323
|
+
copyrightPrefix: "\xA9 {{year}} {{board_name}}.",
|
|
324
|
+
poweredByText: "Powered by",
|
|
325
|
+
defaultDescription: "Discover the latest roles from {{board_name}}."
|
|
326
|
+
},
|
|
327
|
+
breadcrumbs: {
|
|
328
|
+
home: "Home",
|
|
329
|
+
jobs: "Jobs",
|
|
330
|
+
locations: "Locations",
|
|
331
|
+
salaries: "Salaries",
|
|
332
|
+
companies: "Companies",
|
|
333
|
+
skills: "Skills",
|
|
334
|
+
titles: "Titles",
|
|
335
|
+
blog: "Blog",
|
|
336
|
+
post: "Post a Job",
|
|
337
|
+
pricing: "Pricing",
|
|
338
|
+
about: "About",
|
|
339
|
+
impressum: "Impressum",
|
|
340
|
+
termsOfService: "Terms of Service",
|
|
341
|
+
privacyPolicy: "Privacy Policy",
|
|
342
|
+
cookiePolicy: "Cookie Policy",
|
|
343
|
+
talent: "Talent"
|
|
344
|
+
},
|
|
345
|
+
pagination: {
|
|
346
|
+
ariaLabel: "Pagination",
|
|
347
|
+
previousLabel: "Previous",
|
|
348
|
+
nextLabel: "Next"
|
|
349
|
+
},
|
|
350
|
+
blog: {
|
|
351
|
+
bylineLabel: "By",
|
|
352
|
+
readingTimeLabel: "min read",
|
|
353
|
+
searchLabel: "Search",
|
|
354
|
+
searchPlaceholder: "Search posts...",
|
|
355
|
+
clearButtonLabel: "Clear search",
|
|
356
|
+
tagFilterLabel: "Topics",
|
|
357
|
+
tagFilterAllLabel: "All",
|
|
358
|
+
emptyTitle: "No matching posts",
|
|
359
|
+
emptyDescription: "Try adjusting your search or clearing your filters.",
|
|
360
|
+
emptyResetLabel: "Clear filters"
|
|
361
|
+
},
|
|
362
|
+
entity: {
|
|
363
|
+
jobSingular: "job",
|
|
364
|
+
jobPlural: "jobs",
|
|
365
|
+
companySingular: "company",
|
|
366
|
+
companyPlural: "companies"
|
|
367
|
+
}
|
|
368
|
+
};
|
|
369
|
+
var DE2 = {
|
|
370
|
+
jobCard: {
|
|
371
|
+
featuredLabel: "Hervorgehoben",
|
|
372
|
+
aiRankedLabel: "KI-sortiert",
|
|
373
|
+
sortNewestLabel: "Neueste zuerst",
|
|
374
|
+
sortSalaryHighLabel: "Gehalt: absteigend"
|
|
375
|
+
},
|
|
376
|
+
jobSearch: {
|
|
377
|
+
headingJobs: "Jobs",
|
|
378
|
+
keywordLabel: "Stichwort",
|
|
379
|
+
keywordPlaceholder: "Jobtitel oder -beschreibungen suchen",
|
|
380
|
+
locationLabel: "Standort",
|
|
381
|
+
locationPlaceholder: "Stadt, Land oder Region",
|
|
382
|
+
workplacePlaceholder: "Arbeitsmodell",
|
|
383
|
+
anyWorkplaceLabel: "Alle Arbeitsmodelle",
|
|
384
|
+
typePlaceholder: "Anstellungsart",
|
|
385
|
+
anyTypeLabel: "Alle Anstellungsarten",
|
|
386
|
+
sortPlaceholder: "Sortieren",
|
|
387
|
+
loadMoreLabel: "Mehr laden",
|
|
388
|
+
noJobsMatchText: "Keine passenden Jobs \u2014 setze einen Filter zur\xFCck."
|
|
389
|
+
},
|
|
390
|
+
jobDetail: {
|
|
391
|
+
categoriesHeading: "Kategorien",
|
|
392
|
+
skillsHeading: "F\xE4higkeiten",
|
|
393
|
+
additionalDetailsHeading: "Weitere Details",
|
|
394
|
+
customFieldYesLabel: "Ja",
|
|
395
|
+
customFieldNoLabel: "Nein",
|
|
396
|
+
locationsLabel: "Standorte",
|
|
397
|
+
workPermitsLabel: "Arbeitserlaubnis",
|
|
398
|
+
timezonesLabel: "Zeitzonen",
|
|
399
|
+
educationLabel: "Ausbildung",
|
|
400
|
+
experienceLabel: "Berufserfahrung",
|
|
401
|
+
worldwideLabel: "Weltweit",
|
|
402
|
+
noExperienceRequiredLabel: "Keine Berufserfahrung erforderlich",
|
|
403
|
+
experienceYears: (years) => `${years}+ Jahre`,
|
|
404
|
+
posted: (published) => `Ver\xF6ffentlicht ${published}`,
|
|
405
|
+
noDescriptionText: "Keine Beschreibung vorhanden.",
|
|
406
|
+
viewCompanyProfileLabel: "Unternehmensprofil ansehen",
|
|
407
|
+
similarJobsHeading: "\xC4hnliche Jobs",
|
|
408
|
+
breadcrumbAriaLabel: "Seitenpfad"
|
|
409
|
+
},
|
|
410
|
+
apply: {
|
|
411
|
+
applyButtonText: "Jetzt bewerben",
|
|
412
|
+
applyingLabel: "Wird gesendet \u2026",
|
|
413
|
+
applyOnEmployerSiteLabel: "Beim Unternehmen bewerben",
|
|
414
|
+
signInToApplyLabel: "Zum Bewerben anmelden",
|
|
415
|
+
verifyEmailToApplyLabel: "E-Mail best\xE4tigen, um dich zu bewerben",
|
|
416
|
+
appliedViewApplicationsLabel: "Beworben \u2014 Bewerbungen ansehen",
|
|
417
|
+
applicationSubmitError: "Etwas ist schiefgelaufen. Bitte versuche es erneut."
|
|
418
|
+
},
|
|
419
|
+
alerts: {
|
|
420
|
+
jobAlertTitle: "Job-Benachrichtigungen erhalten",
|
|
421
|
+
jobAlertEmailPlaceholder: "name@beispiel.de",
|
|
422
|
+
jobAlertButtonText: "Abonnieren",
|
|
423
|
+
subscribingLabel: "Wird abonniert \u2026",
|
|
424
|
+
jobAlertSuccessToast: "\xDCberpr\xFCfe deine E-Mails, um dein Abonnement zu best\xE4tigen.",
|
|
425
|
+
jobAlertDuplicateToast: "Du hast diese Benachrichtigung bereits abonniert.",
|
|
426
|
+
jobAlertErrorToast: "Etwas ist schiefgelaufen. Bitte versuche es erneut.",
|
|
427
|
+
sectionAriaLabel: "Job-Benachrichtigungen",
|
|
428
|
+
emailAriaLabel: "E-Mail",
|
|
429
|
+
submitAriaLabel: "Job-Benachrichtigungen erhalten"
|
|
430
|
+
},
|
|
431
|
+
copyLink: {
|
|
432
|
+
copyLinkLabel: "Link kopieren",
|
|
433
|
+
copiedLabel: "Kopiert",
|
|
434
|
+
ariaLabel: "Link kopieren"
|
|
435
|
+
},
|
|
436
|
+
salary: {
|
|
437
|
+
comparisonHeadlineAverage: "Durchschnittsgehalt",
|
|
438
|
+
perYearSuffix: "/ Jahr",
|
|
439
|
+
comparisonPercentile25Label: "25. Perzentil",
|
|
440
|
+
medianLabel: "Median",
|
|
441
|
+
comparisonPercentile75Label: "75. Perzentil",
|
|
442
|
+
basedOnLabel: "Basierend auf",
|
|
443
|
+
seniorityTableHeaderLevel: "Erfahrungslevel",
|
|
444
|
+
seniorityTableHeaderAvg: "Durchschnitt",
|
|
445
|
+
boardBaselineLabel: "Board-Durchschnitt",
|
|
446
|
+
seniorityTableHeaderDiff: "vs. Board",
|
|
447
|
+
faqHeading: "H\xE4ufig gestellte Fragen"
|
|
448
|
+
},
|
|
449
|
+
nav: {
|
|
450
|
+
home: "Jobs",
|
|
451
|
+
companies: "Unternehmen",
|
|
452
|
+
pricing: "Preise",
|
|
453
|
+
talent: "Talente",
|
|
454
|
+
post: "Job ver\xF6ffentlichen",
|
|
455
|
+
blog: "Blog"
|
|
456
|
+
},
|
|
457
|
+
footer: {
|
|
458
|
+
forCandidatesHeading: "F\xFCr Kandidaten",
|
|
459
|
+
forCompaniesHeading: "F\xFCr Unternehmen",
|
|
460
|
+
resourcesHeading: "Ressourcen",
|
|
461
|
+
aboutHeading: "\xDCber uns",
|
|
462
|
+
websiteLabel: "Website",
|
|
463
|
+
aboutLabel: "\xDCber uns",
|
|
464
|
+
contactLabel: "Kontakt",
|
|
465
|
+
locationsLabel: "Standorte",
|
|
466
|
+
salariesLabel: "Geh\xE4lter",
|
|
467
|
+
sitemapLabel: "Sitemap",
|
|
468
|
+
termsOfServiceLabel: "Nutzungsbedingungen",
|
|
469
|
+
privacyPolicyLabel: "Datenschutzerkl\xE4rung",
|
|
470
|
+
cookiePolicyLabel: "Cookie-Richtlinie",
|
|
471
|
+
impressumLabel: "Impressum",
|
|
472
|
+
allRightsReservedText: "Alle Rechte vorbehalten.",
|
|
473
|
+
copyrightPrefix: "\xA9 {{year}} {{board_name}}.",
|
|
474
|
+
poweredByText: "Bereitgestellt von",
|
|
475
|
+
defaultDescription: "Entdecke die neuesten Stellen von {{board_name}}."
|
|
476
|
+
},
|
|
477
|
+
breadcrumbs: {
|
|
478
|
+
home: "Startseite",
|
|
479
|
+
jobs: "Jobs",
|
|
480
|
+
locations: "Standorte",
|
|
481
|
+
salaries: "Geh\xE4lter",
|
|
482
|
+
companies: "Unternehmen",
|
|
483
|
+
skills: "F\xE4higkeiten",
|
|
484
|
+
titles: "Berufsbezeichnungen",
|
|
485
|
+
blog: "Blog",
|
|
486
|
+
post: "Job ver\xF6ffentlichen",
|
|
487
|
+
pricing: "Preise",
|
|
488
|
+
about: "\xDCber uns",
|
|
489
|
+
impressum: "Impressum",
|
|
490
|
+
termsOfService: "Nutzungsbedingungen",
|
|
491
|
+
privacyPolicy: "Datenschutzerkl\xE4rung",
|
|
492
|
+
cookiePolicy: "Cookie-Richtlinie",
|
|
493
|
+
talent: "Talente"
|
|
494
|
+
},
|
|
495
|
+
pagination: {
|
|
496
|
+
ariaLabel: "Seitennummerierung",
|
|
497
|
+
previousLabel: "Zur\xFCck",
|
|
498
|
+
nextLabel: "Weiter"
|
|
499
|
+
},
|
|
500
|
+
blog: {
|
|
501
|
+
bylineLabel: "Von",
|
|
502
|
+
readingTimeLabel: "Minuten Lesezeit",
|
|
503
|
+
searchLabel: "Suche",
|
|
504
|
+
searchPlaceholder: "Artikel suchen...",
|
|
505
|
+
clearButtonLabel: "Suche leeren",
|
|
506
|
+
tagFilterLabel: "Themen",
|
|
507
|
+
tagFilterAllLabel: "Alle",
|
|
508
|
+
emptyTitle: "Keine passenden Artikel gefunden",
|
|
509
|
+
emptyDescription: "Versuche, deine Suche anzupassen oder die Filter zur\xFCckzusetzen.",
|
|
510
|
+
emptyResetLabel: "Filter zur\xFCcksetzen"
|
|
511
|
+
},
|
|
512
|
+
entity: {
|
|
513
|
+
jobSingular: "Job",
|
|
514
|
+
jobPlural: "Jobs",
|
|
515
|
+
companySingular: "Unternehmen",
|
|
516
|
+
companyPlural: "Unternehmen"
|
|
517
|
+
}
|
|
518
|
+
};
|
|
519
|
+
var FR = {
|
|
520
|
+
jobCard: {
|
|
521
|
+
featuredLabel: "\xC0 la une",
|
|
522
|
+
aiRankedLabel: "Classement IA",
|
|
523
|
+
sortNewestLabel: "Plus r\xE9centes",
|
|
524
|
+
sortSalaryHighLabel: "Salaire : d\xE9croissant"
|
|
525
|
+
},
|
|
526
|
+
jobSearch: {
|
|
527
|
+
headingJobs: "Offres d'emploi",
|
|
528
|
+
keywordLabel: "Mot-cl\xE9",
|
|
529
|
+
keywordPlaceholder: "Rechercher une offre\u2026",
|
|
530
|
+
locationLabel: "Lieu",
|
|
531
|
+
locationPlaceholder: "Ville ou r\xE9gion",
|
|
532
|
+
workplacePlaceholder: "Mode de travail",
|
|
533
|
+
anyWorkplaceLabel: "Tous les modes de travail",
|
|
534
|
+
typePlaceholder: "Type de contrat",
|
|
535
|
+
anyTypeLabel: "Tous les types",
|
|
536
|
+
sortPlaceholder: "Trier",
|
|
537
|
+
loadMoreLabel: "Voir plus",
|
|
538
|
+
noJobsMatchText: "Aucune offre ne correspond \u2014 essayez de retirer un filtre."
|
|
539
|
+
},
|
|
540
|
+
jobDetail: {
|
|
541
|
+
categoriesHeading: "Cat\xE9gories",
|
|
542
|
+
skillsHeading: "Comp\xE9tences",
|
|
543
|
+
additionalDetailsHeading: "Informations compl\xE9mentaires",
|
|
544
|
+
customFieldYesLabel: "Oui",
|
|
545
|
+
customFieldNoLabel: "Non",
|
|
546
|
+
locationsLabel: "Lieux",
|
|
547
|
+
workPermitsLabel: "Permis de travail",
|
|
548
|
+
timezonesLabel: "Fuseaux horaires",
|
|
549
|
+
educationLabel: "Formation",
|
|
550
|
+
experienceLabel: "Exp\xE9rience",
|
|
551
|
+
worldwideLabel: "Monde entier",
|
|
552
|
+
noExperienceRequiredLabel: "Aucune exp\xE9rience requise",
|
|
553
|
+
experienceYears: (years) => `${years}+ ans`,
|
|
554
|
+
posted: (published) => `Publi\xE9e ${published}`,
|
|
555
|
+
noDescriptionText: "Aucune description fournie.",
|
|
556
|
+
viewCompanyProfileLabel: "Voir le profil de l'entreprise",
|
|
557
|
+
similarJobsHeading: "Offres similaires",
|
|
558
|
+
breadcrumbAriaLabel: "Fil d'Ariane"
|
|
559
|
+
},
|
|
560
|
+
apply: {
|
|
561
|
+
applyButtonText: "Postuler \xE0 cette offre",
|
|
562
|
+
applyingLabel: "Envoi en cours\u2026",
|
|
563
|
+
applyOnEmployerSiteLabel: "Postuler sur le site de l'employeur",
|
|
564
|
+
signInToApplyLabel: "Connectez-vous pour postuler",
|
|
565
|
+
verifyEmailToApplyLabel: "V\xE9rifiez votre e-mail pour postuler",
|
|
566
|
+
appliedViewApplicationsLabel: "Candidature envoy\xE9e \u2014 voir mes candidatures",
|
|
567
|
+
applicationSubmitError: "Une erreur est survenue. Veuillez r\xE9essayer."
|
|
568
|
+
},
|
|
569
|
+
alerts: {
|
|
570
|
+
jobAlertTitle: "Recevoir des alertes emploi",
|
|
571
|
+
jobAlertEmailPlaceholder: "vous@exemple.fr",
|
|
572
|
+
jobAlertButtonText: "Activer les alertes",
|
|
573
|
+
subscribingLabel: "Abonnement en cours\u2026",
|
|
574
|
+
jobAlertSuccessToast: "V\xE9rifiez votre e-mail pour confirmer votre abonnement.",
|
|
575
|
+
jobAlertDuplicateToast: "Vous \xEAtes d\xE9j\xE0 abonn\xE9 \xE0 cette alerte.",
|
|
576
|
+
jobAlertErrorToast: "Une erreur est survenue. Veuillez r\xE9essayer.",
|
|
577
|
+
sectionAriaLabel: "Alertes emploi",
|
|
578
|
+
emailAriaLabel: "e-mail",
|
|
579
|
+
submitAriaLabel: "recevoir des alertes emploi"
|
|
580
|
+
},
|
|
581
|
+
copyLink: {
|
|
582
|
+
copyLinkLabel: "Copier le lien",
|
|
583
|
+
copiedLabel: "Copi\xE9",
|
|
584
|
+
ariaLabel: "copier le lien"
|
|
585
|
+
},
|
|
586
|
+
salary: {
|
|
587
|
+
comparisonHeadlineAverage: "Salaire moyen",
|
|
588
|
+
perYearSuffix: "/ an",
|
|
589
|
+
comparisonPercentile25Label: "25e percentile",
|
|
590
|
+
medianLabel: "M\xE9diane",
|
|
591
|
+
comparisonPercentile75Label: "75e percentile",
|
|
592
|
+
basedOnLabel: "Bas\xE9 sur",
|
|
593
|
+
seniorityTableHeaderLevel: "Niveau",
|
|
594
|
+
seniorityTableHeaderAvg: "Moyenne",
|
|
595
|
+
boardBaselineLabel: "R\xE9f\xE9rence du site",
|
|
596
|
+
seniorityTableHeaderDiff: "vs site",
|
|
597
|
+
faqHeading: "Questions fr\xE9quentes"
|
|
598
|
+
},
|
|
599
|
+
nav: {
|
|
600
|
+
home: "Offres",
|
|
601
|
+
companies: "Entreprises",
|
|
602
|
+
pricing: "Tarifs",
|
|
603
|
+
talent: "Talents",
|
|
604
|
+
post: "Publier une offre",
|
|
605
|
+
blog: "Blog"
|
|
606
|
+
},
|
|
607
|
+
footer: {
|
|
608
|
+
forCandidatesHeading: "Pour les candidats",
|
|
609
|
+
forCompaniesHeading: "Pour les entreprises",
|
|
610
|
+
resourcesHeading: "Ressources",
|
|
611
|
+
aboutHeading: "\xC0 propos",
|
|
612
|
+
websiteLabel: "Site web",
|
|
613
|
+
aboutLabel: "\xC0 propos",
|
|
614
|
+
contactLabel: "Nous contacter",
|
|
615
|
+
locationsLabel: "Lieux",
|
|
616
|
+
salariesLabel: "Salaires",
|
|
617
|
+
sitemapLabel: "Plan du site",
|
|
618
|
+
termsOfServiceLabel: "Conditions d'utilisation",
|
|
619
|
+
privacyPolicyLabel: "Politique de confidentialit\xE9",
|
|
620
|
+
cookiePolicyLabel: "Politique de cookies",
|
|
621
|
+
impressumLabel: "Mentions l\xE9gales",
|
|
622
|
+
allRightsReservedText: "Tous droits r\xE9serv\xE9s.",
|
|
623
|
+
copyrightPrefix: "\xA9 {{year}} {{board_name}}.",
|
|
624
|
+
poweredByText: "Propuls\xE9 par",
|
|
625
|
+
defaultDescription: "D\xE9couvrez les derni\xE8res offres de {{board_name}}."
|
|
626
|
+
},
|
|
627
|
+
breadcrumbs: {
|
|
628
|
+
home: "Accueil",
|
|
629
|
+
jobs: "Offres",
|
|
630
|
+
locations: "Lieux",
|
|
631
|
+
salaries: "Salaires",
|
|
632
|
+
companies: "Entreprises",
|
|
633
|
+
skills: "Comp\xE9tences",
|
|
634
|
+
titles: "Intitul\xE9s de poste",
|
|
635
|
+
blog: "Blog",
|
|
636
|
+
post: "Publier une offre",
|
|
637
|
+
pricing: "Tarifs",
|
|
638
|
+
about: "\xC0 propos",
|
|
639
|
+
impressum: "Mentions l\xE9gales",
|
|
640
|
+
termsOfService: "Conditions d'utilisation",
|
|
641
|
+
privacyPolicy: "Politique de confidentialit\xE9",
|
|
642
|
+
cookiePolicy: "Politique de cookies",
|
|
643
|
+
talent: "Talents"
|
|
644
|
+
},
|
|
645
|
+
pagination: {
|
|
646
|
+
ariaLabel: "Pagination",
|
|
647
|
+
previousLabel: "Pr\xE9c\xE9dent",
|
|
648
|
+
nextLabel: "Suivant"
|
|
649
|
+
},
|
|
650
|
+
blog: {
|
|
651
|
+
bylineLabel: "Par",
|
|
652
|
+
readingTimeLabel: "min de lecture",
|
|
653
|
+
searchLabel: "Recherche",
|
|
654
|
+
searchPlaceholder: "Rechercher un article...",
|
|
655
|
+
clearButtonLabel: "Effacer la recherche",
|
|
656
|
+
tagFilterLabel: "Th\xE8mes",
|
|
657
|
+
tagFilterAllLabel: "Tous",
|
|
658
|
+
emptyTitle: "Aucun article correspondant",
|
|
659
|
+
emptyDescription: "Essayez de modifier votre recherche ou de r\xE9initialiser les filtres.",
|
|
660
|
+
emptyResetLabel: "R\xE9initialiser les filtres"
|
|
661
|
+
},
|
|
662
|
+
entity: {
|
|
663
|
+
jobSingular: "offre",
|
|
664
|
+
jobPlural: "offres",
|
|
665
|
+
companySingular: "entreprise",
|
|
666
|
+
companyPlural: "entreprises"
|
|
667
|
+
}
|
|
668
|
+
};
|
|
669
|
+
var CATALOGS = { en: EN2, de: DE2, fr: FR };
|
|
670
|
+
function mergeGroup(group, overrides) {
|
|
671
|
+
if (!overrides) return group;
|
|
672
|
+
const out = { ...group };
|
|
673
|
+
for (const [key, value] of Object.entries(group)) {
|
|
674
|
+
if (typeof value !== "string") continue;
|
|
675
|
+
const override = overrides[key];
|
|
676
|
+
if (typeof override === "string" && override.trim() !== "") {
|
|
677
|
+
out[key] = override;
|
|
678
|
+
}
|
|
679
|
+
}
|
|
680
|
+
return out;
|
|
681
|
+
}
|
|
682
|
+
var GROUP_OVERRIDE_SOURCE = {
|
|
683
|
+
jobCard: "jobCardLabels",
|
|
684
|
+
jobSearch: "jobSearchLabels",
|
|
685
|
+
jobDetail: "jobCardLabels",
|
|
686
|
+
apply: "jobCardLabels",
|
|
687
|
+
alerts: "jobCardLabels",
|
|
688
|
+
copyLink: "jobCardLabels",
|
|
689
|
+
salary: "salaryLabels",
|
|
690
|
+
nav: "navLabels",
|
|
691
|
+
footer: "footerLabels",
|
|
692
|
+
breadcrumbs: "breadcrumbsLabels",
|
|
693
|
+
pagination: "globalPaginationLabels",
|
|
694
|
+
blog: "blogSharedLabels",
|
|
695
|
+
entity: "entityLabels"
|
|
696
|
+
};
|
|
697
|
+
function uiCopy(language, labels) {
|
|
698
|
+
const catalog = language && CATALOGS[language] || EN2;
|
|
699
|
+
if (!labels) return catalog;
|
|
700
|
+
const resolved = {};
|
|
701
|
+
for (const [group, source] of Object.entries(GROUP_OVERRIDE_SOURCE)) {
|
|
702
|
+
resolved[group] = mergeGroup(catalog[group], labels[source]);
|
|
703
|
+
}
|
|
704
|
+
return resolved;
|
|
705
|
+
}
|
|
706
|
+
|
|
129
707
|
// src/filters/index.ts
|
|
130
708
|
var REMOTE_OPTIONS = [
|
|
131
709
|
"on_site",
|
|
@@ -155,14 +733,20 @@ var JOB_SORTS = [
|
|
|
155
733
|
"salary_high"
|
|
156
734
|
];
|
|
157
735
|
var DEFAULT_SORT = "relevance";
|
|
158
|
-
function seniorityLabels(locale) {
|
|
159
|
-
return getSalaryLexicon(locale).seniority;
|
|
736
|
+
function seniorityLabels(locale, labels) {
|
|
737
|
+
if (!labels?.jobCardLabels) return getSalaryLexicon(locale).seniority;
|
|
738
|
+
const out = {};
|
|
739
|
+
for (const seniority of SENIORITIES) {
|
|
740
|
+
out[seniority] = fieldLabel(locale, seniority, labels) ?? seniority;
|
|
741
|
+
}
|
|
742
|
+
return out;
|
|
160
743
|
}
|
|
161
|
-
function sortLabels(
|
|
744
|
+
function sortLabels(locale, labels) {
|
|
745
|
+
const copy = uiCopy(locale, labels).jobCard;
|
|
162
746
|
return {
|
|
163
|
-
relevance:
|
|
164
|
-
newest:
|
|
165
|
-
salary_high:
|
|
747
|
+
relevance: copy.aiRankedLabel,
|
|
748
|
+
newest: copy.sortNewestLabel,
|
|
749
|
+
salary_high: copy.sortSalaryHighLabel
|
|
166
750
|
};
|
|
167
751
|
}
|
|
168
752
|
var SENIORITY_LOOKUP = new Set(SENIORITIES);
|