Skip to content
Snippets Groups Projects
Commit 77935de8 authored by Aline Gondim Santos's avatar Aline Gondim Santos
Browse files

welcomepage: fix title translation

Change-Id: Ied989089c59293802b16cf252a538f56d1fbc147
parent 386ef224
No related branches found
No related tags found
No related merge requests found
......@@ -85,6 +85,14 @@ ListSelectionView {
property color mainBoxTextColor: JamiTheme.textColor
property color contentTipAndIdColor: JamiTheme.tintedBlue
Connections {
target: UtilsAdapter
function onChangeLanguage() {
title = hasCustomUi && uiCustomization.title !== undefined ? uiCustomization.title : JamiStrings.welcomeToJami;
description = hasCustomUi && uiCustomization.description !== undefined ? uiCustomization.description : JamiStrings.hereIsIdentifier;
}
}
function updateUiFlags() {
hasCustomUi = Object.keys(uiCustomization).length > 0;
hasTitle = hasCustomUi ? uiCustomization.title !== "" : true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment