I18n and translations done. Increased Timer to 200, removed unneeded import (i think)

This commit is contained in:
Corey Woodworth
2025-10-30 20:41:56 -04:00
parent 6a74924e04
commit a6d7d077f1
7 changed files with 90 additions and 6 deletions
+14
View File
@@ -1273,6 +1273,20 @@
"label": "Ausblenden, wenn keine Medien wiedergegeben werden",
"description": "Wenn aktiviert, wird der Visualizer ausgeblendet, sofern keine Wiedergabe läuft."
}
},
"lock-keys": {
"show-caps-lock": {
"description": "Caps Lock Status anzeigen.",
"label": "Feststelltaste"
},
"show-num-lock": {
"description": "Num-Lock-Status anzeigen.",
"label": "Num-Taste"
},
"show-scroll-lock": {
"description": "Scroll-Lock-Status anzeigen.",
"label": "Rollenfeststelltaste"
}
}
}
},
+14
View File
@@ -1256,6 +1256,20 @@
"label": "Hide when no media is playing",
"description": "When enabled, the visualizer is hidden unless a player is actively playing."
}
},
"lock-keys": {
"show-caps-lock": {
"label": "Caps Lock",
"description": "Display caps lock status."
},
"show-num-lock": {
"label": "Num Lock",
"description": "Display num lock status."
},
"show-scroll-lock": {
"label": "Scroll Lock",
"description": "Display scroll lock status."
}
}
}
},
+14
View File
@@ -1256,6 +1256,20 @@
"label": "Ocultar cuando no se reproduce",
"description": "Si está activado, el visualizador se oculta salvo que haya reproducción activa."
}
},
"lock-keys": {
"show-caps-lock": {
"description": "Mostrar el estado de Bloq Mayús.",
"label": "Bloq Mayús"
},
"show-num-lock": {
"description": "Mostrar el estado de bloqueo numérico.",
"label": "Bloq Num"
},
"show-scroll-lock": {
"description": "Mostrar el estado de Bloq Despl.",
"label": "Bloq Despl"
}
}
}
},
+14
View File
@@ -1256,6 +1256,20 @@
"label": "Masquer lorsqu'aucun média n'est en lecture",
"description": "Si activé, le visualiseur est masqué sauf lorsqu'un lecteur est en lecture."
}
},
"lock-keys": {
"show-caps-lock": {
"description": "Afficher l'état du verrouillage majuscule.",
"label": "Verr Maj"
},
"show-num-lock": {
"description": "Afficher l'état du verrouillage numérique.",
"label": "Verr Num"
},
"show-scroll-lock": {
"description": "Afficher l'état du verrouillage du défilement.",
"label": "Verr Maj"
}
}
}
},
+14
View File
@@ -1256,6 +1256,20 @@
"label": "Ocultar quando não houver reprodução",
"description": "Quando ativado, o visualizador fica oculto a menos que haja reprodução ativa."
}
},
"lock-keys": {
"show-caps-lock": {
"description": "Exibir o status do Caps Lock.",
"label": "Caps Lock"
},
"show-num-lock": {
"description": "Exibir o status do Num Lock.",
"label": "Bloq Num"
},
"show-scroll-lock": {
"description": "Exibir o status do Scroll Lock.",
"label": "Scroll Lock"
}
}
}
},
+14
View File
@@ -1256,6 +1256,20 @@
"label": "无媒体播放时隐藏",
"description": "启用后,除非正在播放媒体,否则隐藏可视化显示。"
}
},
"lock-keys": {
"show-caps-lock": {
"description": "显示大写锁定状态。",
"label": "大写锁定"
},
"show-num-lock": {
"description": "显示数字锁定键状态。",
"label": "数字锁定"
},
"show-scroll-lock": {
"description": "显示滚动锁定状态。",
"label": "滚动锁定"
}
}
}
},
@@ -27,22 +27,22 @@ ColumnLayout {
}
NToggle {
label: "Caps Lock"
description: "Display caps lock status"
label: I18n.tr("bar.widget-settings.lock-keys.show-caps-lock.label")
description: I18n.tr("bar.widget-settings.lock-keys.show-caps-lock.description")
checked: valueShowCapsLock
onToggled: checked => valueShowCapsLock = checked
}
NToggle {
label: "Num Lock"
description: "Display num lock status"
label: I18n.tr("bar.widget-settings.lock-keys.show-num-lock.label")
description: I18n.tr("bar.widget-settings.lock-keys.show-num-lock.description")
checked: valueShowNumLock
onToggled: checked => valueShowNumLock = checked
}
NToggle {
label: "Scroll Lock"
description: "Display scroll lock status"
label: I18n.tr("bar.widget-settings.lock-keys.show-scroll-lock.label")
description: I18n.tr("bar.widget-settings.lock-keys.show-scroll-lock.description")
checked: valueShowScrollLock
onToggled: checked => valueShowScrollLock = checked
}