Ignore:
Timestamp:
10/20/15 15:36:50 (9 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
cef
Phase:
public
Message:

Added translatable strings for the controls on the SimBrief setup page (re #279)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/gui/flight.py

    r690 r691  
    16381638
    16391639        super(SimBriefSetupPage, self).__init__(wizard,
    1640                                                 "SimBrief setup",
    1641                                                 "Complete the following data to "
    1642                                                 "start generating your "
    1643                                                 "SimBrief briefing.",
    1644                                                 "Your SimBrief briefing was "
    1645                                                 "generated with the following "
    1646                                                 "data.")
     1640                                                xstr("simbrief_setup_title"),
     1641                                                xstr("simbrief_setup_help"),
     1642                                                xstr("simbrief_setup_chelp"))
    16471643
    16481644        alignment = gtk.Alignment(xalign = 0.5, yalign = 0.5,
     
    16561652        self.setMainWidget(alignment)
    16571653
    1658         label = gtk.Label("_Username:")
     1654        label = gtk.Label(xstr("simbrief_username"))
    16591655        label.set_use_underline(True)
    16601656        label.set_alignment(0.0, 0.5)
     
    16651661        self._userName.connect("changed",
    16661662                               lambda button: self._updateForwardButton())
    1667         self._userName.set_tooltip_text("Your SimBrief username")
     1663        self._userName.set_tooltip_text(xstr("simbrief_username_tooltip"))
    16681664        table.attach(self._userName, 1, 2, 0, 1)
    16691665        label.set_mnemonic_widget(self._userName)
    16701666
    1671         label = gtk.Label("_Password:")
     1667        label = gtk.Label(xstr("simbrief_password"))
    16721668        label.set_use_underline(True)
    16731669        label.set_alignment(0.0, 0.5)
     
    16781674        self._password.connect("changed",
    16791675                               lambda button: self._updateForwardButton())
    1680         self._password.set_tooltip_text("Your SimBrief password")
     1676        self._password.set_tooltip_text(xstr("simbrief_password_tooltip"))
    16811677        table.attach(self._password, 1, 2, 1, 2)
    16821678        label.set_mnemonic_widget(self._password)
Note: See TracChangeset for help on using the changeset viewer.