Skip to content
New issue

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. #19

Open
tuxslack opened this issue Nov 16, 2024 · 0 comments

Comments

@tuxslack
Copy link

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
                    }
                ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant