From 59e8bd3cc2c9386a5b5e868cc07e7e07f6e8706b Mon Sep 17 00:00:00 2001 From: agsantos <aline.gondimsantos@savoirfairelinux.com> Date: Thu, 15 Oct 2020 14:02:41 -0400 Subject: [PATCH] settings: add "Enable" to translatable Change-Id: I46f34c53c393962f87c2ab99c628ca09eb97009c --- src/constant/JamiStrings.qml | 3 +++ src/settingsview/components/PluginSettingsPage.qml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/constant/JamiStrings.qml b/src/constant/JamiStrings.qml index 02b028da7..1278f35c3 100644 --- a/src/constant/JamiStrings.qml +++ b/src/constant/JamiStrings.qml @@ -331,6 +331,9 @@ Item { property string takePhone: qsTr("Take photo") property string retakePhone: qsTr("Retake photo") + // PluginSettingsPage + property string enable: qsTr("Enable") + // PluginListPreferencesView property string reset: qsTr("Reset") property string selectPluginInstall: qsTr("Select a plugin to install") diff --git a/src/settingsview/components/PluginSettingsPage.qml b/src/settingsview/components/PluginSettingsPage.qml index f1d9b7d2b..899e5f6da 100644 --- a/src/settingsview/components/PluginSettingsPage.qml +++ b/src/settingsview/components/PluginSettingsPage.qml @@ -57,7 +57,7 @@ Rectangle { Layout.leftMargin: JamiTheme.preferredMarginSize Layout.rightMargin: JamiTheme.preferredMarginSize - labelText: "Enable" + labelText: JamiStrings.enable fontPointSize: JamiTheme.headerFontSize onSwitchToggled: { -- GitLab