1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-24 21:42:51 -05:00

i18n: don't load en json - move animated terms to properties

This commit is contained in:
bbedward
2025-10-08 20:31:41 -04:00
parent 9f3685e4d5
commit 3fb5d5c4f3
5 changed files with 33 additions and 32 deletions

View File

@@ -14,6 +14,7 @@ PanelWindow {
property var modelData
property bool shouldBeVisible: false
property real frozenWidth: 0
readonly property string copiedText: I18n.tr("Copied!")
Connections {
target: ToastService
@@ -280,7 +281,7 @@ PanelWindow {
StyledText {
id: tooltipLabel
anchors.centerIn: parent
text: I18n.tr("Copied!")
text: root.copiedText
font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceText
}