Code review comment for lp:~thomas-voss/trust-store/qml-fix-1354092

Revision history for this message
David Planella (dpm) wrote :

After talking to the SDK guys, what they suggested was:

        Button {
            objectName: "deny"
- text: i18n.tr("Deny")
+ text: i18n.dtr("trust-store", "Deny")
            color: UbuntuColors.red
            onClicked: quit(1)
        }

        Button {
            objectName: "allow"
- text: i18n.tr("Allow")
+ text: i18n.dtr("trust-store", "Allow")
            color: UbuntuColors.green
            onClicked: quit(0)

This seems to work for me after testing it on the phone.

« Back to merge proposal