~thomas-deruyter-3/qreator/qreator

« back to all changes in this revision

Viewing changes to qreator/qrcodes/QRCodeSMSGtk.py

  • Committer: David Planella
  • Date: 2012-11-23 14:07:08 UTC
  • mfrom: (107.1.1 qreator)
  • Revision ID: david.planella@ubuntu.com-20121123140708-ef2ny921lpwo99eq
Merged i18n fixes and updated .pot file

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
from qreator_lib.helpers import get_data_file
21
21
 
22
22
 
23
 
MESSAGE_TYPES = [(_("Call"), "tel"),
24
 
                 # TRANSLATORS: this refers to an SMS message
25
 
                 (_("Text Message"), "SMS"),
26
 
                 ]
 
23
MESSAGE_TYPES = [
 
24
    # TRANSLATORS: this refers to a phone call QR code type
 
25
    (_("Call"), "tel"),
 
26
    # TRANSLATORS: this refers to an SMS message QR code type
 
27
    (_("Text Message"), "SMS"),
 
28
    ]
27
29
 
28
30
 
29
31
class QRCodeSMSGtk(object):
51
53
            'textviewMessage').get_buffer()
52
54
        # TRANSLATORS: this refers to an SMS message
53
55
        self.placeholdermessage = _(
54
 
            "  [Text message. Some code readers might not support " +
55
 
            "this QR code type]")
 
56
            "  [Text message. Some code readers might not support this QR code type]")  # pylint: disable=E0501
56
57
        self.textbuffer.set_text(self.placeholdermessage)
57
58
        self.messagechanged = self.textbuffer.connect(
58
59
            "changed", self.on_textviewMessage_changed, None)