i18n.t: updates

This commit is contained in:
silentoplayz
2025-08-13 20:15:16 -04:00
parent b43acc2b3d
commit 82ed9b0a97
89 changed files with 3454 additions and 91 deletions

View File

@@ -41,7 +41,7 @@
export let id = '';
export let value = '';
export let placeholder = 'Select a model';
export let placeholder = $i18n.t('Select a model');
export let searchEnabled = true;
export let searchPlaceholder = $i18n.t('Search a model');
@@ -314,7 +314,7 @@
...$MODEL_DOWNLOAD_POOL
});
await deleteModel(localStorage.token, model);
toast.success(`${model} download has been canceled`);
toast.success(i18n.t("{{model}} download has been canceled", { model: model }));
}
};