Skip to content
Snippets Groups Projects
Unverified Commit 452efbc7 authored by Sébastien Blin's avatar Sébastien Blin
Browse files

misc: fix some strings

Change-Id: I9a2c841d072c03d60e34197098daf6b710745ba9
GitLab: #837
GitLab: #788
parent 5df51721
No related branches found
No related tags found
No related merge requests found
......@@ -436,6 +436,7 @@ Item {
property string tipChooseDownloadFolder: qsTr("Choose download directory")
property string recordCall: qsTr("Record call")
property string textZoom: qsTr("Text zoom")
property string changeTextSize: qsTr("Change text size (%)")
// ChatviewSettings
property string enableTypingIndicator: qsTr("Typing indicators")
......
......@@ -153,11 +153,11 @@ Window {
}
ListElement {
shortcut: "M"
description: qsTr("Mute the microphone (during a call)")
description: qsTr("Mute microphone")
}
ListElement {
shortcut: "V"
description: qsTr("Mute the camera (during a call)")
description: qsTr("Stop camera")
}
}
......
......@@ -87,6 +87,7 @@ ColumnLayout {
Layout.leftMargin: JamiTheme.preferredMarginSize
labelText: JamiStrings.layout
tipText: JamiStrings.layout
fontPointSize: JamiTheme.settingsFontSize
comboModel: ListModel {
Component.onCompleted: {
......
......@@ -79,6 +79,7 @@ ColumnLayout {
checked: AVModel.getAlwaysRecord()
labelText: JamiStrings.alwaysRecordCalls
tooltipText: JamiStrings.alwaysRecordCalls
fontPointSize: JamiTheme.settingsFontSize
onSwitchToggled: AVModel.setAlwaysRecord(checked)
......@@ -152,6 +153,13 @@ ColumnLayout {
recordQualityValueLabel.text = UtilsAdapter.getRecordQualityString(value)
updateRecordQualityTimer.restart()
}
MaterialToolTip {
id: toolTip
text: JamiStrings.quality
visible: parent.hovered
delay: Qt.styleHints.mousePressAndHoldInterval
}
}
}
......
......@@ -84,7 +84,7 @@ ColumnLayout {
}
}
widthOfComboBox: itemWidth
tipText: JamiStrings.selectAudioInputDevice
tipText: JamiStrings.applicationTheme
role: "textDisplay"
modelIndex: {
......@@ -201,6 +201,7 @@ ColumnLayout {
Layout.leftMargin: JamiTheme.preferredMarginSize
labelText: JamiStrings.language
tipText: JamiStrings.language
fontPointSize: JamiTheme.settingsFontSize
comboModel: ListModel {
Component.onCompleted: {
......@@ -237,6 +238,7 @@ ColumnLayout {
Layout.leftMargin: JamiTheme.preferredMarginSize
title: JamiStrings.textZoom
tooltipText: JamiStrings.changeTextSize
itemWidth: root.itemWidth
valueField: Math.round(UtilsAdapter.getAppValue(Settings.BaseZoom) * 100.0)
......
......@@ -77,6 +77,7 @@ ColumnLayout {
secondary: true
text: JamiStrings.troubleshootButton
toolTipText: JamiStrings.troubleshootButton
onClicked: {
LogViewWindowCreation.createlogViewWindowObject()
......
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