mirror of
https://github.com/mara-li/obsidian-my-thesaurus.git
synced 2026-07-22 05:38:22 +00:00
refactor: update tabulation translation
This commit is contained in:
parent
b26cefabb6
commit
d260f7eba4
3 changed files with 3 additions and 3 deletions
|
|
@ -48,7 +48,7 @@
|
|||
},
|
||||
"separator": {
|
||||
"desc": "CSV column separator.",
|
||||
"tab": "tabulation",
|
||||
"tab": "Tabulation",
|
||||
"title": "Separator"
|
||||
},
|
||||
"thesaurusPath": {
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@
|
|||
},
|
||||
"separator": {
|
||||
"desc": "Séparateur des colonnes du fichier CSV.",
|
||||
"tab": "tabulation",
|
||||
"tab": "Tabulation",
|
||||
"title": "Séparateur"
|
||||
},
|
||||
"thesaurusPath": {
|
||||
|
|
|
|||
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue