mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-01-24 13:32:50 -05:00
Add volume and brightness percentages (#1148)
This commit is contained in:
@@ -108,9 +108,12 @@ Singleton {
|
|||||||
property bool controlCenterShowNetworkIcon: true
|
property bool controlCenterShowNetworkIcon: true
|
||||||
property bool controlCenterShowBluetoothIcon: true
|
property bool controlCenterShowBluetoothIcon: true
|
||||||
property bool controlCenterShowAudioIcon: true
|
property bool controlCenterShowAudioIcon: true
|
||||||
|
property bool controlCenterShowAudioPercent: true
|
||||||
property bool controlCenterShowVpnIcon: true
|
property bool controlCenterShowVpnIcon: true
|
||||||
property bool controlCenterShowBrightnessIcon: false
|
property bool controlCenterShowBrightnessIcon: false
|
||||||
|
property bool controlCenterShowBrightnessPercent: false
|
||||||
property bool controlCenterShowMicIcon: false
|
property bool controlCenterShowMicIcon: false
|
||||||
|
property bool controlCenterShowMicPercent: true
|
||||||
property bool controlCenterShowBatteryIcon: false
|
property bool controlCenterShowBatteryIcon: false
|
||||||
property bool controlCenterShowPrinterIcon: false
|
property bool controlCenterShowPrinterIcon: false
|
||||||
property bool showPrivacyButton: true
|
property bool showPrivacyButton: true
|
||||||
|
|||||||
@@ -21,9 +21,12 @@ Singleton {
|
|||||||
showNetworkIcon: true,
|
showNetworkIcon: true,
|
||||||
showBluetoothIcon: true,
|
showBluetoothIcon: true,
|
||||||
showAudioIcon: true,
|
showAudioIcon: true,
|
||||||
|
showAudioPercent: true,
|
||||||
showVpnIcon: true,
|
showVpnIcon: true,
|
||||||
showBrightnessIcon: false,
|
showBrightnessIcon: false,
|
||||||
|
showBrightnessPercent: false,
|
||||||
showMicIcon: false,
|
showMicIcon: false,
|
||||||
|
showMicPercent: true,
|
||||||
showBatteryIcon: false,
|
showBatteryIcon: false,
|
||||||
showPrinterIcon: false
|
showPrinterIcon: false
|
||||||
};
|
};
|
||||||
@@ -65,12 +68,18 @@ Singleton {
|
|||||||
item.showBluetoothIcon = order[i].showBluetoothIcon;
|
item.showBluetoothIcon = order[i].showBluetoothIcon;
|
||||||
if (isObj && order[i].showAudioIcon !== undefined)
|
if (isObj && order[i].showAudioIcon !== undefined)
|
||||||
item.showAudioIcon = order[i].showAudioIcon;
|
item.showAudioIcon = order[i].showAudioIcon;
|
||||||
|
if (isObj && order[i].showAudioPercent !== undefined)
|
||||||
|
item.showAudioPercent = order[i].showAudioPercent;
|
||||||
if (isObj && order[i].showVpnIcon !== undefined)
|
if (isObj && order[i].showVpnIcon !== undefined)
|
||||||
item.showVpnIcon = order[i].showVpnIcon;
|
item.showVpnIcon = order[i].showVpnIcon;
|
||||||
if (isObj && order[i].showBrightnessIcon !== undefined)
|
if (isObj && order[i].showBrightnessIcon !== undefined)
|
||||||
item.showBrightnessIcon = order[i].showBrightnessIcon;
|
item.showBrightnessIcon = order[i].showBrightnessIcon;
|
||||||
|
if (isObj && order[i].showBrightnessPercent !== undefined)
|
||||||
|
item.showBrightnessPercent = order[i].showBrightnessPercent;
|
||||||
if (isObj && order[i].showMicIcon !== undefined)
|
if (isObj && order[i].showMicIcon !== undefined)
|
||||||
item.showMicIcon = order[i].showMicIcon;
|
item.showMicIcon = order[i].showMicIcon;
|
||||||
|
if (isObj && order[i].showMicPercent !== undefined)
|
||||||
|
item.showMicPercent = order[i].showMicPercent;
|
||||||
if (isObj && order[i].showBatteryIcon !== undefined)
|
if (isObj && order[i].showBatteryIcon !== undefined)
|
||||||
item.showBatteryIcon = order[i].showBatteryIcon;
|
item.showBatteryIcon = order[i].showBatteryIcon;
|
||||||
if (isObj && order[i].showPrinterIcon !== undefined)
|
if (isObj && order[i].showPrinterIcon !== undefined)
|
||||||
|
|||||||
@@ -54,9 +54,12 @@ var SPEC = {
|
|||||||
controlCenterShowNetworkIcon: { def: true },
|
controlCenterShowNetworkIcon: { def: true },
|
||||||
controlCenterShowBluetoothIcon: { def: true },
|
controlCenterShowBluetoothIcon: { def: true },
|
||||||
controlCenterShowAudioIcon: { def: true },
|
controlCenterShowAudioIcon: { def: true },
|
||||||
|
controlCenterShowAudioPercent: { def: false },
|
||||||
controlCenterShowVpnIcon: { def: true },
|
controlCenterShowVpnIcon: { def: true },
|
||||||
controlCenterShowBrightnessIcon: { def: false },
|
controlCenterShowBrightnessIcon: { def: false },
|
||||||
|
controlCenterShowBrightnessPercent: { def: false },
|
||||||
controlCenterShowMicIcon: { def: false },
|
controlCenterShowMicIcon: { def: false },
|
||||||
|
controlCenterShowMicPercent: { def: false },
|
||||||
controlCenterShowBatteryIcon: { def: false },
|
controlCenterShowBatteryIcon: { def: false },
|
||||||
controlCenterShowPrinterIcon: { def: false },
|
controlCenterShowPrinterIcon: { def: false },
|
||||||
|
|
||||||
|
|||||||
@@ -16,9 +16,12 @@ BasePill {
|
|||||||
property bool showNetworkIcon: widgetData?.showNetworkIcon !== undefined ? widgetData.showNetworkIcon : SettingsData.controlCenterShowNetworkIcon
|
property bool showNetworkIcon: widgetData?.showNetworkIcon !== undefined ? widgetData.showNetworkIcon : SettingsData.controlCenterShowNetworkIcon
|
||||||
property bool showBluetoothIcon: widgetData?.showBluetoothIcon !== undefined ? widgetData.showBluetoothIcon : SettingsData.controlCenterShowBluetoothIcon
|
property bool showBluetoothIcon: widgetData?.showBluetoothIcon !== undefined ? widgetData.showBluetoothIcon : SettingsData.controlCenterShowBluetoothIcon
|
||||||
property bool showAudioIcon: widgetData?.showAudioIcon !== undefined ? widgetData.showAudioIcon : SettingsData.controlCenterShowAudioIcon
|
property bool showAudioIcon: widgetData?.showAudioIcon !== undefined ? widgetData.showAudioIcon : SettingsData.controlCenterShowAudioIcon
|
||||||
|
property bool showAudioPercent: widgetData?.showAudioPercent !== undefined ? widgetData.showAudioPercent : SettingsData.controlCenterShowAudioPercent
|
||||||
property bool showVpnIcon: widgetData?.showVpnIcon !== undefined ? widgetData.showVpnIcon : SettingsData.controlCenterShowVpnIcon
|
property bool showVpnIcon: widgetData?.showVpnIcon !== undefined ? widgetData.showVpnIcon : SettingsData.controlCenterShowVpnIcon
|
||||||
property bool showBrightnessIcon: widgetData?.showBrightnessIcon !== undefined ? widgetData.showBrightnessIcon : SettingsData.controlCenterShowBrightnessIcon
|
property bool showBrightnessIcon: widgetData?.showBrightnessIcon !== undefined ? widgetData.showBrightnessIcon : SettingsData.controlCenterShowBrightnessIcon
|
||||||
|
property bool showBrightnessPercent: widgetData?.showBrightnessPercent !== undefined ? widgetData.showBrightnessPercent : SettingsData.controlCenterShowBrightnessPercent
|
||||||
property bool showMicIcon: widgetData?.showMicIcon !== undefined ? widgetData.showMicIcon : SettingsData.controlCenterShowMicIcon
|
property bool showMicIcon: widgetData?.showMicIcon !== undefined ? widgetData.showMicIcon : SettingsData.controlCenterShowMicIcon
|
||||||
|
property bool showMicPercent: widgetData?.showMicPercent !== undefined ? widgetData.showMicPercent : SettingsData.controlCenterShowMicPercent
|
||||||
property bool showBatteryIcon: widgetData?.showBatteryIcon !== undefined ? widgetData.showBatteryIcon : SettingsData.controlCenterShowBatteryIcon
|
property bool showBatteryIcon: widgetData?.showBatteryIcon !== undefined ? widgetData.showBatteryIcon : SettingsData.controlCenterShowBatteryIcon
|
||||||
property bool showPrinterIcon: widgetData?.showPrinterIcon !== undefined ? widgetData.showPrinterIcon : SettingsData.controlCenterShowPrinterIcon
|
property bool showPrinterIcon: widgetData?.showPrinterIcon !== undefined ? widgetData.showPrinterIcon : SettingsData.controlCenterShowPrinterIcon
|
||||||
property real touchpadThreshold: 100
|
property real touchpadThreshold: 100
|
||||||
@@ -187,6 +190,14 @@ BasePill {
|
|||||||
DisplayService.setBrightness(newBrightness, deviceName);
|
DisplayService.setBrightness(newBrightness, deviceName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getBrightness() {
|
||||||
|
const deviceName = getPinnedBrightnessDevice();
|
||||||
|
if (!deviceName) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
return DisplayService.getDeviceBrightness(deviceName) / 100;
|
||||||
|
}
|
||||||
|
|
||||||
function getBatteryIconColor() {
|
function getBatteryIconColor() {
|
||||||
if (!BatteryService.batteryAvailable)
|
if (!BatteryService.batteryAvailable)
|
||||||
return Theme.widgetIconColor;
|
return Theme.widgetIconColor;
|
||||||
@@ -242,7 +253,7 @@ BasePill {
|
|||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: audioIconV.implicitWidth + 4
|
width: audioIconV.implicitWidth + 4
|
||||||
height: audioIconV.implicitHeight + 4
|
height: audioIconV.implicitHeight + (root.showAudioPercent ? audioPercentV.implicitHeight : 0) + 4
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
visible: root.showAudioIcon
|
visible: root.showAudioIcon
|
||||||
@@ -252,7 +263,20 @@ BasePill {
|
|||||||
name: root.getVolumeIconName()
|
name: root.getVolumeIconName()
|
||||||
size: Theme.barIconSize(root.barThickness, -4)
|
size: Theme.barIconSize(root.barThickness, -4)
|
||||||
color: Theme.widgetIconColor
|
color: Theme.widgetIconColor
|
||||||
anchors.centerIn: parent
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: parent
|
||||||
|
anchors.topMargin: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: audioPercentV
|
||||||
|
visible: root.showAudioPercent
|
||||||
|
text: Math.round(AudioService.sink.audio.volume * 100) + "%"
|
||||||
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)
|
||||||
|
color: Theme.widgetTextColor
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: audioIconV.bottom
|
||||||
|
anchors.topMargin: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
@@ -270,7 +294,7 @@ BasePill {
|
|||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: micIconV.implicitWidth + 4
|
width: micIconV.implicitWidth + 4
|
||||||
height: micIconV.implicitHeight + 4
|
height: micIconV.implicitHeight + (root.showAudioPercent ? micPercentV.implicitHeight : 0) + 4
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
visible: root.showMicIcon
|
visible: root.showMicIcon
|
||||||
@@ -280,7 +304,20 @@ BasePill {
|
|||||||
name: root.getMicIconName()
|
name: root.getMicIconName()
|
||||||
size: Theme.barIconSize(root.barThickness, -4)
|
size: Theme.barIconSize(root.barThickness, -4)
|
||||||
color: root.getMicIconColor()
|
color: root.getMicIconColor()
|
||||||
anchors.centerIn: parent
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: parent
|
||||||
|
anchors.topMargin: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: micPercentV
|
||||||
|
visible: root.showMicPercent
|
||||||
|
text: Math.round(AudioService.source.audio.volume * 100) + "%"
|
||||||
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)
|
||||||
|
color: Theme.widgetTextColor
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: micIconV.bottom
|
||||||
|
anchors.topMargin: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
@@ -298,7 +335,7 @@ BasePill {
|
|||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: brightnessIconV.implicitWidth + 4
|
width: brightnessIconV.implicitWidth + 4
|
||||||
height: brightnessIconV.implicitHeight + 4
|
height: brightnessIconV.implicitHeight + (root.showBrightnessPercent ? brightnessPercentV.implicitHeight : 0) + 4
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
visible: root.showBrightnessIcon && DisplayService.brightnessAvailable && root.hasPinnedBrightnessDevice()
|
visible: root.showBrightnessIcon && DisplayService.brightnessAvailable && root.hasPinnedBrightnessDevice()
|
||||||
@@ -308,7 +345,20 @@ BasePill {
|
|||||||
name: root.getBrightnessIconName()
|
name: root.getBrightnessIconName()
|
||||||
size: Theme.barIconSize(root.barThickness, -4)
|
size: Theme.barIconSize(root.barThickness, -4)
|
||||||
color: Theme.widgetIconColor
|
color: Theme.widgetIconColor
|
||||||
anchors.centerIn: parent
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: parent
|
||||||
|
anchors.topMargin: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: brightnessPercentV
|
||||||
|
visible: root.showBrightnessPercent
|
||||||
|
text: Math.round(getBrightness() * 100) + "%"
|
||||||
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)
|
||||||
|
color: Theme.widgetTextColor
|
||||||
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
|
anchors.top: brightnessIconV.bottom
|
||||||
|
anchors.topMargin: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
@@ -380,7 +430,7 @@ BasePill {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: audioIcon.implicitWidth + 4
|
width: audioIcon.implicitWidth + (root.showAudioPercent ? audioPercent.implicitWidth : 0) + 4
|
||||||
height: audioIcon.implicitHeight + 4
|
height: audioIcon.implicitHeight + 4
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
@@ -391,7 +441,20 @@ BasePill {
|
|||||||
name: root.getVolumeIconName()
|
name: root.getVolumeIconName()
|
||||||
size: Theme.barIconSize(root.barThickness, -4)
|
size: Theme.barIconSize(root.barThickness, -4)
|
||||||
color: Theme.widgetIconColor
|
color: Theme.widgetIconColor
|
||||||
anchors.centerIn: parent
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: parent
|
||||||
|
anchors.leftMargin: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: audioPercent
|
||||||
|
visible: root.showAudioPercent
|
||||||
|
text: Math.round(AudioService.sink.audio.volume * 100) + "%"
|
||||||
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)
|
||||||
|
color: Theme.widgetTextColor
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: audioIcon.right
|
||||||
|
anchors.leftMargin: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
@@ -409,7 +472,7 @@ BasePill {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: micIcon.implicitWidth + 4
|
width: micIcon.implicitWidth + (root.showMicPercent ? micPercent.implicitWidth : 0) + 4
|
||||||
height: micIcon.implicitHeight + 4
|
height: micIcon.implicitHeight + 4
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
@@ -420,7 +483,20 @@ BasePill {
|
|||||||
name: root.getMicIconName()
|
name: root.getMicIconName()
|
||||||
size: Theme.barIconSize(root.barThickness, -4)
|
size: Theme.barIconSize(root.barThickness, -4)
|
||||||
color: root.getMicIconColor()
|
color: root.getMicIconColor()
|
||||||
anchors.centerIn: parent
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: parent
|
||||||
|
anchors.leftMargin: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: micPercent
|
||||||
|
visible: root.showMicPercent
|
||||||
|
text: Math.round(AudioService.source.audio.volume * 100) + "%"
|
||||||
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)
|
||||||
|
color: Theme.widgetTextColor
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: micIcon.right
|
||||||
|
anchors.leftMargin: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
@@ -438,7 +514,7 @@ BasePill {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
width: brightnessIcon.implicitWidth + 4
|
width: brightnessIcon.implicitWidth + (root.showBrightnessPercent ? brightnessPercent.implicitWidth : 0) + 4
|
||||||
height: brightnessIcon.implicitHeight + 4
|
height: brightnessIcon.implicitHeight + 4
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
anchors.verticalCenter: parent.verticalCenter
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
@@ -449,7 +525,20 @@ BasePill {
|
|||||||
name: root.getBrightnessIconName()
|
name: root.getBrightnessIconName()
|
||||||
size: Theme.barIconSize(root.barThickness, -4)
|
size: Theme.barIconSize(root.barThickness, -4)
|
||||||
color: Theme.widgetIconColor
|
color: Theme.widgetIconColor
|
||||||
anchors.centerIn: parent
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: parent
|
||||||
|
anchors.leftMargin: 2
|
||||||
|
}
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: brightnessPercent
|
||||||
|
visible: root.showBrightnessPercent
|
||||||
|
text: Math.round(getBrightness() * 100) + "%"
|
||||||
|
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale)
|
||||||
|
color: Theme.widgetTextColor
|
||||||
|
anchors.verticalCenter: parent.verticalCenter
|
||||||
|
anchors.left: brightnessIcon.right
|
||||||
|
anchors.leftMargin: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|||||||
@@ -374,9 +374,12 @@ Item {
|
|||||||
widgetObj.showNetworkIcon = SettingsData.controlCenterShowNetworkIcon;
|
widgetObj.showNetworkIcon = SettingsData.controlCenterShowNetworkIcon;
|
||||||
widgetObj.showBluetoothIcon = SettingsData.controlCenterShowBluetoothIcon;
|
widgetObj.showBluetoothIcon = SettingsData.controlCenterShowBluetoothIcon;
|
||||||
widgetObj.showAudioIcon = SettingsData.controlCenterShowAudioIcon;
|
widgetObj.showAudioIcon = SettingsData.controlCenterShowAudioIcon;
|
||||||
|
widgetObj.showAudioPercent = SettingsData.controlCenterShowAudioPercent;
|
||||||
widgetObj.showVpnIcon = SettingsData.controlCenterShowVpnIcon;
|
widgetObj.showVpnIcon = SettingsData.controlCenterShowVpnIcon;
|
||||||
widgetObj.showBrightnessIcon = SettingsData.controlCenterShowBrightnessIcon;
|
widgetObj.showBrightnessIcon = SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
widgetObj.showBrightnessPercent = SettingsData.controlCenterShowBrightnessPercent;
|
||||||
widgetObj.showMicIcon = SettingsData.controlCenterShowMicIcon;
|
widgetObj.showMicIcon = SettingsData.controlCenterShowMicIcon;
|
||||||
|
widgetObj.showMicPercent = SettingsData.controlCenterShowMicPercent;
|
||||||
widgetObj.showBatteryIcon = SettingsData.controlCenterShowBatteryIcon;
|
widgetObj.showBatteryIcon = SettingsData.controlCenterShowBatteryIcon;
|
||||||
widgetObj.showPrinterIcon = SettingsData.controlCenterShowPrinterIcon;
|
widgetObj.showPrinterIcon = SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -431,9 +434,12 @@ Item {
|
|||||||
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
||||||
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
newWidget.showAudioPercent = widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
||||||
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
newWidget.showBrightnessPercent = widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
newWidget.showMicPercent = widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -484,9 +490,12 @@ Item {
|
|||||||
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
||||||
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
newWidget.showAudioPercent = widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
||||||
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
newWidget.showBrightnessPercent = widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
newWidget.showMicPercent = widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -559,9 +568,12 @@ Item {
|
|||||||
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
||||||
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
newWidget.showAudioPercent = widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
||||||
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
newWidget.showBrightnessPercent = widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
newWidget.showMicPercent = widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -588,9 +600,12 @@ Item {
|
|||||||
"showNetworkIcon": widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon,
|
"showNetworkIcon": widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon,
|
||||||
"showBluetoothIcon": widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon,
|
"showBluetoothIcon": widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon,
|
||||||
"showAudioIcon": widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon,
|
"showAudioIcon": widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon,
|
||||||
|
"showAudioPercent": widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent,
|
||||||
"showVpnIcon": widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon,
|
"showVpnIcon": widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon,
|
||||||
"showBrightnessIcon": widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon,
|
"showBrightnessIcon": widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon,
|
||||||
|
"showBrightnessPercent": widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent,
|
||||||
"showMicIcon": widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon,
|
"showMicIcon": widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon,
|
||||||
|
"showMicPercent": widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent,
|
||||||
"showBatteryIcon": widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon,
|
"showBatteryIcon": widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon,
|
||||||
"showPrinterIcon": widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon
|
"showPrinterIcon": widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon
|
||||||
};
|
};
|
||||||
@@ -651,9 +666,12 @@ Item {
|
|||||||
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
||||||
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
newWidget.showAudioPercent = widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
||||||
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
newWidget.showBrightnessPercent = widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
newWidget.showMicPercent = widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -708,9 +726,12 @@ Item {
|
|||||||
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
||||||
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
newWidget.showAudioPercent = widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
||||||
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
newWidget.showBrightnessPercent = widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
newWidget.showMicPercent = widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -765,9 +786,12 @@ Item {
|
|||||||
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
newWidget.showNetworkIcon = widget.showNetworkIcon ?? SettingsData.controlCenterShowNetworkIcon;
|
||||||
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
newWidget.showBluetoothIcon = widget.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
newWidget.showAudioIcon = widget.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
newWidget.showAudioPercent = widget.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
newWidget.showVpnIcon = widget.showVpnIcon ?? SettingsData.controlCenterShowVpnIcon;
|
||||||
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
newWidget.showBrightnessIcon = widget.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
newWidget.showBrightnessPercent = widget.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
newWidget.showMicIcon = widget.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
newWidget.showMicPercent = widget.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
newWidget.showBatteryIcon = widget.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
newWidget.showPrinterIcon = widget.showPrinterIcon ?? SettingsData.controlCenterShowPrinterIcon;
|
||||||
}
|
}
|
||||||
@@ -826,12 +850,18 @@ Item {
|
|||||||
item.showBluetoothIcon = widget.showBluetoothIcon;
|
item.showBluetoothIcon = widget.showBluetoothIcon;
|
||||||
if (widget.showAudioIcon !== undefined)
|
if (widget.showAudioIcon !== undefined)
|
||||||
item.showAudioIcon = widget.showAudioIcon;
|
item.showAudioIcon = widget.showAudioIcon;
|
||||||
|
if (widget.showAudioPercent !== undefined)
|
||||||
|
item.showAudioPercent = widget.showAudioPercent;
|
||||||
if (widget.showVpnIcon !== undefined)
|
if (widget.showVpnIcon !== undefined)
|
||||||
item.showVpnIcon = widget.showVpnIcon;
|
item.showVpnIcon = widget.showVpnIcon;
|
||||||
if (widget.showBrightnessIcon !== undefined)
|
if (widget.showBrightnessIcon !== undefined)
|
||||||
item.showBrightnessIcon = widget.showBrightnessIcon;
|
item.showBrightnessIcon = widget.showBrightnessIcon;
|
||||||
|
if (widget.showBrightnessPercent !== undefined)
|
||||||
|
item.showBrightnessPercent = widget.showBrightnessPercent;
|
||||||
if (widget.showMicIcon !== undefined)
|
if (widget.showMicIcon !== undefined)
|
||||||
item.showMicIcon = widget.showMicIcon;
|
item.showMicIcon = widget.showMicIcon;
|
||||||
|
if (widget.showMicPercent !== undefined)
|
||||||
|
item.showMicPercent = widget.showMicPercent;
|
||||||
if (widget.showBatteryIcon !== undefined)
|
if (widget.showBatteryIcon !== undefined)
|
||||||
item.showBatteryIcon = widget.showBatteryIcon;
|
item.showBatteryIcon = widget.showBatteryIcon;
|
||||||
if (widget.showPrinterIcon !== undefined)
|
if (widget.showPrinterIcon !== undefined)
|
||||||
|
|||||||
@@ -823,16 +823,31 @@ Column {
|
|||||||
label: I18n.tr("Audio"),
|
label: I18n.tr("Audio"),
|
||||||
setting: "showAudioIcon"
|
setting: "showAudioIcon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: "percent",
|
||||||
|
label: I18n.tr("Volume"),
|
||||||
|
setting: "showAudioPercent"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: "mic",
|
icon: "mic",
|
||||||
label: I18n.tr("Microphone"),
|
label: I18n.tr("Microphone"),
|
||||||
setting: "showMicIcon"
|
setting: "showMicIcon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: "percent",
|
||||||
|
label: I18n.tr("Microphone Volume"),
|
||||||
|
setting: "showMicPercent"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: "brightness_high",
|
icon: "brightness_high",
|
||||||
label: I18n.tr("Brightness"),
|
label: I18n.tr("Brightness"),
|
||||||
setting: "showBrightnessIcon"
|
setting: "showBrightnessIcon"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
icon: "percent",
|
||||||
|
label: I18n.tr("Brightness Value"),
|
||||||
|
setting: "showBrightnessPercent"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
icon: "battery_full",
|
icon: "battery_full",
|
||||||
label: I18n.tr("Battery"),
|
label: I18n.tr("Battery"),
|
||||||
@@ -860,10 +875,16 @@ Column {
|
|||||||
return wd?.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
return wd?.showBluetoothIcon ?? SettingsData.controlCenterShowBluetoothIcon;
|
||||||
case "showAudioIcon":
|
case "showAudioIcon":
|
||||||
return wd?.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
return wd?.showAudioIcon ?? SettingsData.controlCenterShowAudioIcon;
|
||||||
|
case "showAudioPercent":
|
||||||
|
return wd?.showAudioPercent ?? SettingsData.controlCenterShowAudioPercent;
|
||||||
case "showMicIcon":
|
case "showMicIcon":
|
||||||
return wd?.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
return wd?.showMicIcon ?? SettingsData.controlCenterShowMicIcon;
|
||||||
|
case "showMicPercent":
|
||||||
|
return wd?.showMicPercent ?? SettingsData.controlCenterShowMicPercent;
|
||||||
case "showBrightnessIcon":
|
case "showBrightnessIcon":
|
||||||
return wd?.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
return wd?.showBrightnessIcon ?? SettingsData.controlCenterShowBrightnessIcon;
|
||||||
|
case "showBrightnessPercent":
|
||||||
|
return wd?.showBrightnessPercent ?? SettingsData.controlCenterShowBrightnessPercent;
|
||||||
case "showBatteryIcon":
|
case "showBatteryIcon":
|
||||||
return wd?.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
return wd?.showBatteryIcon ?? SettingsData.controlCenterShowBatteryIcon;
|
||||||
case "showPrinterIcon":
|
case "showPrinterIcon":
|
||||||
|
|||||||
@@ -1025,6 +1025,12 @@
|
|||||||
"reference": "Modules/ControlCenter/Models/WidgetModel.qml:143",
|
"reference": "Modules/ControlCenter/Models/WidgetModel.qml:143",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"term": "Brightness Value",
|
||||||
|
"context": "Brightness Value",
|
||||||
|
"reference": "Modules/Settings/WidgetsTabSection.qml:848",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"term": "Brightness control not available",
|
"term": "Brightness control not available",
|
||||||
"context": "Brightness control not available",
|
"context": "Brightness control not available",
|
||||||
@@ -4301,6 +4307,12 @@
|
|||||||
"reference": "Modules/Settings/OSDTab.qml:125",
|
"reference": "Modules/Settings/OSDTab.qml:125",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"term": "Microphone Volume",
|
||||||
|
"context": "Microphone Volume",
|
||||||
|
"reference": "Modules/Settings/WidgetsTabSection.qml:838",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"term": "Microphone settings",
|
"term": "Microphone settings",
|
||||||
"context": "Microphone settings",
|
"context": "Microphone settings",
|
||||||
|
|||||||
@@ -1196,6 +1196,13 @@
|
|||||||
"reference": "",
|
"reference": "",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"term": "Brightness Value",
|
||||||
|
"translation": "",
|
||||||
|
"context": "",
|
||||||
|
"reference": "",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"term": "Brightness control not available",
|
"term": "Brightness control not available",
|
||||||
"translation": "",
|
"translation": "",
|
||||||
@@ -5018,6 +5025,13 @@
|
|||||||
"reference": "",
|
"reference": "",
|
||||||
"comment": ""
|
"comment": ""
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"term": "Microphone Volume",
|
||||||
|
"translation": "",
|
||||||
|
"context": "",
|
||||||
|
"reference": "",
|
||||||
|
"comment": ""
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"term": "Microphone settings",
|
"term": "Microphone settings",
|
||||||
"translation": "",
|
"translation": "",
|
||||||
|
|||||||
Reference in New Issue
Block a user