Changeset 738:d51ccfc6e8a9
- Timestamp:
- 01/02/16 12:09:24 (9 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
locale/en/mlx.po
r729 r738 1737 1737 "know what you are doing!" 1738 1738 1739 msgid "prefs_use_rpc" 1740 msgstr "Use _RPC calls" 1741 1742 msgid "prefs_use_rpc_tooltip" 1743 msgstr "" 1744 "If checked the program will use RPC calls towards the MAVA server. " 1745 "This should be the normal operation, but if some server operation " 1746 "fails, you may want to try to uncheck here. Note, that some new " 1747 "functionality will still be called over RPC." 1748 1739 1749 msgid "prefs_msgs_fs" 1740 1750 msgstr "Displayed in FS" -
locale/hu/mlx.po
r729 r738 1748 1748 "ha biztos vagy a dolgodban!" 1749 1749 1750 msgid "prefs_use_rpc" 1751 msgstr "_RPC hívások" 1752 1753 msgid "prefs_use_rpc_tooltip" 1754 msgstr "" 1755 "Ha ez be van jelölve, a program RPC hívásokkal kommunikál a MAVA " 1756 "szerverrel. Ez a normális, azonban ha valamilyen szerverművelet " 1757 "nem sikerül, megpróbálhatjuk itt megszüntetni a kijelölést. " 1758 "Azonban bizonyos új funkciókat továbbra is RPC-n fog hívni a program." 1759 1750 1760 msgid "prefs_msgs_fs" 1751 1761 msgstr "" -
src/mlx/config.py
r733 r738 258 258 if secondaryInstallation: 259 259 self._updateURL += "/exp" 260 self._useRPC = True 260 261 261 262 self._messageTypeLevels = {} … … 666 667 if updateURL!=self._updateURL: 667 668 self._updateURL = updateURL 669 self._modified = True 670 671 @property 672 def useRPC(self): 673 """Determine if RPC calls should be used.""" 674 return self._useRPC 675 676 @useRPC.setter 677 def useRPC(self, useRPC): 678 """Set whether RPC calls should be used.""" 679 if useRPC!=self._useRPC: 680 self._useRPC = useRPC 668 681 self._modified = True 669 682 … … 775 788 Config.DEFAULT_UPDATE_URL + 776 789 ("/exp" if secondaryInstallation else "")) 790 self._useRPC = self._getBoolean(config, "general", "useRPC", True) 777 791 778 792 for aircraftType in const.aircraftTypes: … … 867 881 config.set("update", "url", self._updateURL) 868 882 883 config.set("general", "useRPC", 884 "yes" if self._useRPC else "no") 885 869 886 config.add_section(Checklist.SECTION) 870 887 config.add_section(ApproachCallouts.SECTION) … … 1001 1018 print " autoUpdate:", self._autoUpdate 1002 1019 print " updateURL:", self._updateURL 1020 print " useRPC:", self._useRPC 1003 1021 1004 1022 print " messageTypeLevels:" -
src/mlx/gui/prefs.py
r684 r738 276 276 277 277 self._updateURL.set_text(config.updateURL) 278 279 self._useRPC.set_active(config.useRPC) 278 280 279 281 self._settingFromConfig = False … … 320 322 config.autoUpdate = self._autoUpdate.get_active() 321 323 config.updateURL = self._updateURL.get_text() 324 config.useRPC = self._useRPC.get_active() 322 325 323 326 def _buildGeneral(self): … … 814 817 updateURLBox.pack_start(self._updateURL, True, True, 4) 815 818 819 self._useRPC = gtk.CheckButton(xstr("prefs_use_rpc")) 820 mainBox.pack_start(self._useRPC, False, False, 16) 821 822 self._useRPC.set_use_underline(True) 823 self._useRPC.set_tooltip_text(xstr("prefs_use_rpc_tooltip")) 824 816 825 return mainAlignment 817 826
Note:
See TracChangeset
for help on using the changeset viewer.