为什么只有重启是中文其它都是英文,在哪里可以修改一下,或者有什么其它的SDDM推荐的
這個在某一次 KDE 改版後就這樣了,到現在都還無解。要 KDE Plasma 那邊修改才行。
是不是可以在/usr/share/sddm/themes/
这里面改呢?
就是我想:
1.把英文的部分改回中文
2.把时间改成24小时
反正同步SDDM是解决不了的
actionItems: [
ActionButton {
iconSource: "system-suspend"
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Suspend")
onClicked: sddm.suspend()
enabled: sddm.canSuspend
visible: !inputPanel.keyboardActive
},
ActionButton {
iconSource: "system-reboot"
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Restart")
onClicked: sddm.reboot()
enabled: sddm.canReboot
visible: !inputPanel.keyboardActive
},
ActionButton {
iconSource: "system-shutdown"
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Shutdown")
onClicked: sddm.powerOff()
enabled: sddm.canPowerOff
visible: !inputPanel.keyboardActive
},
ActionButton {
iconSource: "system-switch-user"
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel","Different User")
onClicked: mainStack.push(userPromptComponent)
enabled: true
visible: !userListComponent.showUsernamePrompt && !inputPanel.keyboardActive
}]
摘自/usr/share/sddm/themes/breath2/Main.qml
这玩意居然是qml的吗。。
qml的话理论上把text: i18nd(...)
改成text: ”重启“
就行了。
换成Breeze(微风)主题以及配套的sddm主题后,就正常显示中文了。
换个sddm主题就可以了,可能是默认主题中文翻译的问题
中文部分还没有修复
The Chinese part has not been fixed.
只能换了,推荐一个SDDM:Fluent
最容易的就是在设置里换一个sddm主题,自带的或是下载的。
好像这是上游的Bug吧,换一个SDDM主题就解决了
也希望Philip他们把这个解决了吧,这可是默认主题诶
更改时间为24h:
/usr/share/sddm/themes/(your sddm)/components/Clock.qml
中
Label {
text: Qt.formatTime(timeSource.data["Local"]["DateTime"], "hh:mm:ss")
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.