69 orientation = self.tr("Portrait") |
69 orientation = self.tr("Portrait") |
70 else: |
70 else: |
71 orientation = self.tr("Landscape") |
71 orientation = self.tr("Landscape") |
72 self.pageLayoutLabel.setText( |
72 self.pageLayoutLabel.setText( |
73 self.tr("{0}, {1}", "page size, page orientation").format( |
73 self.tr("{0}, {1}", "page size, page orientation").format( |
74 self.__currentPageLayout.pageSize().name(), |
74 self.__currentPageLayout.pageSize().name(), |
75 orientation)) |
75 orientation)) |
76 |
76 |
77 def getData(self): |
77 def getData(self): |
78 """ |
78 """ |
79 Public method to get the dialog data. |
79 Public method to get the dialog data. |
80 |
80 |