diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index f38f16a..a37c8fe 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -48,7 +48,7 @@ }, "separator": { "desc": "CSV column separator.", - "tab": "tabulation", + "tab": "Tabulation", "title": "Separator" }, "thesaurusPath": { diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index 00b0e61..920d3a8 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -48,7 +48,7 @@ }, "separator": { "desc": "Séparateur des colonnes du fichier CSV.", - "tab": "tabulation", + "tab": "Tabulation", "title": "Séparateur" }, "thesaurusPath": { diff --git a/src/settings.ts b/src/settings.ts index 94427a5..c43732f 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -35,7 +35,7 @@ export class MyThesaurusSettingTab extends PluginSettingTab { dropdown .addOption(";", ";") .addOption(",", ",") - .addOption("\t", `\\t (${i18next.t("settings.separator.tab")})`) + .addOption("\t", `${i18next.t("settings.separator.tab")}`) .addOption("|", "|") .setValue(this.settings.separator) .onChange(async (value) => {