/* eslint-disable */ import { getLocale, experimentalStaticLocale } from '../runtime.js'; /** @typedef {import('../runtime.js').LocalizedString} LocalizedString */ /** @typedef {{}} Profile_Theme_MonoInputs */ const en_profile_theme_mono = /** @type {(inputs: Profile_Theme_MonoInputs) => LocalizedString} */ () => { return /** @type {LocalizedString} */ (`Mono`) }; const ru_profile_theme_mono = /** @type {(inputs: Profile_Theme_MonoInputs) => LocalizedString} */ () => { return /** @type {LocalizedString} */ (`Моно`) }; const id_profile_theme_mono = /** @type {(inputs: Profile_Theme_MonoInputs) => LocalizedString} */ () => { return /** @type {LocalizedString} */ (`Mono`) }; const pt_profile_theme_mono = /** @type {(inputs: Profile_Theme_MonoInputs) => LocalizedString} */ () => { return /** @type {LocalizedString} */ (`Mono`) }; const fr_profile_theme_mono = /** @type {(inputs: Profile_Theme_MonoInputs) => LocalizedString} */ () => { return /** @type {LocalizedString} */ (`Mono`) }; /** * | output | * | --- | * | "Mono" | * * @param {Profile_Theme_MonoInputs} inputs * @param {{ locale?: "en" | "ru" | "id" | "pt" | "fr" }} options * @returns {LocalizedString} */ export const profile_theme_mono = /** @type {((inputs?: Profile_Theme_MonoInputs, options?: { locale?: "en" | "ru" | "id" | "pt" | "fr" }) => LocalizedString) & import('../runtime.js').MessageMetadata} */ ((inputs = {}, options = {}) => { const locale = experimentalStaticLocale ?? options.locale ?? getLocale() if (locale === "en") return en_profile_theme_mono(inputs) if (locale === "ru") return ru_profile_theme_mono(inputs) if (locale === "id") return id_profile_theme_mono(inputs) if (locale === "pt") return pt_profile_theme_mono(inputs) return fr_profile_theme_mono(inputs) });