We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suspend, reboot and shutdown buttons are not translated into Brazilian Portuguese.
Tested on Void Linux
xbps-install -y qt5-quickcontrols qt5-graphicaleffects
Main.qml.tar.gz
text = new Date().toLocaleString(Qt.locale("pt_BR"), "ddd dd MMMM, hh:mm A")
actionItems: [ ActionButton { iconSource: "assets/suspend.svgz" text: config.translationSuspend ? config.translationSuspend : "Suspender" onClicked: sddm.suspend() enabled: sddm.canSuspend iconSize: root.generalFontSize * 3 }, ActionButton { iconSource: "assets/reboot.svgz" text: config.translationReboot ? config.translationReboot : "Reiniciar" onClicked: sddm.reboot() enabled: sddm.canReboot iconSize: root.generalFontSize * 3 }, ActionButton { iconSource: "assets/shutdown.svgz" text: config.translationPowerOff ? config.translationPowerOff : "Desligar" onClicked: sddm.powerOff() enabled: sddm.canPowerOff iconSize: root.generalFontSize * 3 } ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Suspend, reboot and shutdown buttons are not translated into Brazilian Portuguese.
Tested on Void Linux
xbps-install -y qt5-quickcontrols qt5-graphicaleffects
Main.qml.tar.gz
The text was updated successfully, but these errors were encountered: