From 1b3416bacf5c4842220e2ab30232efbdd8b76a1d Mon Sep 17 00:00:00 2001 From: Mara Date: Wed, 24 Jan 2024 13:55:15 +0100 Subject: [PATCH] add translation --- src/i18n/locales/en.json | 4 ++++ src/i18n/locales/fr.json | 4 ++++ src/settings.ts | 4 ++-- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/i18n/locales/en.json b/src/i18n/locales/en.json index 72309243..fcac11d1 100644 --- a/src/i18n/locales/en.json +++ b/src/i18n/locales/en.json @@ -482,6 +482,10 @@ "desc": "Allows you to reopen the settings on the previously used tab", "title": "Save tab" }, + "set": { + "desc": "Choose the property key you want to use to link the property of a file to another, without rewrite them each time. Work only for file linked by a wikilink in the frontmatter.", + "title": "Set of options" + }, "shareKey": { "all": { "desc": "Share all files regardless of the state of the share key of the notes", diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json index ad32de71..924dd22c 100644 --- a/src/i18n/locales/fr.json +++ b/src/i18n/locales/fr.json @@ -481,6 +481,10 @@ "desc": "Permet de rouvrir les paramètres sur l'onglet précédemment utilisé", "title": "Sauvegarder l'onglet" }, + "set": { + "desc": "Choisissez la clé de propriété que vous souhaitez utiliser pour lier la propriété d'un fichier à un autre, sans les réécrire à chaque fois. Ne fonctionne que pour les fichiers liés par un lien wiki dans le frontmatter.", + "title": "Set d'options" + }, "shareKey": { "all": { "desc": "Autoriser le partage de tous les fichiers et ignorer l'état de la clé de partage", diff --git a/src/settings.ts b/src/settings.ts index f46a0063..1d1b91fd 100644 --- a/src/settings.ts +++ b/src/settings.ts @@ -1100,8 +1100,8 @@ export class GithubPublisherSettingsTab extends PluginSettingTab { ); new Setting(this.settingsPage) - .setName("Set of options") - .setDesc("Choose the property key you want to use to link the property of a file to another, without rewrite them each time.") + .setName(i18next.t("settings.plugin.set.title")) + .setDesc(i18next.t("settings.plugin.set.desc")) .addText((text) => text .setPlaceholder("Set")