Hand-authored the 12 missing .js message modules and updated _index.js since npm/paraglide-js codegen cannot run in this environment. These are equivalent to what 'npm run paraglide' would generate. Going forward: run 'npm run paraglide' after adding keys to messages/*.json.
41 lines
2.0 KiB
JavaScript
41 lines
2.0 KiB
JavaScript
/* eslint-disable */
|
|
import { getLocale, experimentalStaticLocale } from '../runtime.js';
|
|
|
|
/** @typedef {import('../runtime.js').LocalizedString} LocalizedString */
|
|
|
|
/** @typedef {{}} Admin_Ai_Jobs_SubheadingInputs */
|
|
|
|
const en_admin_ai_jobs_subheading = /** @type {(inputs: Admin_Ai_Jobs_SubheadingInputs) => LocalizedString} */ () => {
|
|
return /** @type {LocalizedString} */ (`Background AI generation tasks`)
|
|
};
|
|
|
|
const ru_admin_ai_jobs_subheading = /** @type {(inputs: Admin_Ai_Jobs_SubheadingInputs) => LocalizedString} */ () => {
|
|
return /** @type {LocalizedString} */ (`Background AI generation tasks`)
|
|
};
|
|
|
|
const id_admin_ai_jobs_subheading = /** @type {(inputs: Admin_Ai_Jobs_SubheadingInputs) => LocalizedString} */ () => {
|
|
return /** @type {LocalizedString} */ (`Background AI generation tasks`)
|
|
};
|
|
|
|
const pt_admin_ai_jobs_subheading = /** @type {(inputs: Admin_Ai_Jobs_SubheadingInputs) => LocalizedString} */ () => {
|
|
return /** @type {LocalizedString} */ (`Background AI generation tasks`)
|
|
};
|
|
|
|
const fr_admin_ai_jobs_subheading = /** @type {(inputs: Admin_Ai_Jobs_SubheadingInputs) => LocalizedString} */ () => {
|
|
return /** @type {LocalizedString} */ (`Background AI generation tasks`)
|
|
};
|
|
|
|
/**
|
|
* @param {Admin_Ai_Jobs_SubheadingInputs} inputs
|
|
* @param {{ locale?: "en" | "ru" | "id" | "pt" | "fr" }} options
|
|
* @returns {LocalizedString}
|
|
*/
|
|
export const admin_ai_jobs_subheading = /** @type {((inputs?: Admin_Ai_Jobs_SubheadingInputs, options?: { locale?: "en" | "ru" | "id" | "pt" | "fr" }) => LocalizedString) & import('../runtime.js').MessageMetadata<Admin_Ai_Jobs_SubheadingInputs, { locale?: "en" | "ru" | "id" | "pt" | "fr" }, {}>} */ ((inputs = {}, options = {}) => {
|
|
const locale = experimentalStaticLocale ?? options.locale ?? getLocale()
|
|
if (locale === "en") return en_admin_ai_jobs_subheading(inputs)
|
|
if (locale === "ru") return ru_admin_ai_jobs_subheading(inputs)
|
|
if (locale === "id") return id_admin_ai_jobs_subheading(inputs)
|
|
if (locale === "pt") return pt_admin_ai_jobs_subheading(inputs)
|
|
return fr_admin_ai_jobs_subheading(inputs)
|
|
});
|