IconEditor/IconEditorGrid.py

changeset 3190
a9a94491c4fd
parent 3160
209a07d7e401
child 3345
071afe8be2a1
--- a/IconEditor/IconEditorGrid.py	Fri Jan 10 19:30:21 2014 +0100
+++ b/IconEditor/IconEditorGrid.py	Sat Jan 11 11:55:33 2014 +0100
@@ -200,16 +200,16 @@
         for the various drawing tools.
         """
         self.__undoTexts = {
-            self.Pencil: self.trUtf8("Set Pixel"),
-            self.Rubber: self.trUtf8("Erase Pixel"),
-            self.Line: self.trUtf8("Draw Line"),
-            self.Rectangle: self.trUtf8("Draw Rectangle"),
-            self.FilledRectangle: self.trUtf8("Draw Filled Rectangle"),
-            self.Circle: self.trUtf8("Draw Circle"),
-            self.FilledCircle: self.trUtf8("Draw Filled Circle"),
-            self.Ellipse: self.trUtf8("Draw Ellipse"),
-            self.FilledEllipse: self.trUtf8("Draw Filled Ellipse"),
-            self.Fill: self.trUtf8("Fill Region"),
+            self.Pencil: self.tr("Set Pixel"),
+            self.Rubber: self.tr("Erase Pixel"),
+            self.Line: self.tr("Draw Line"),
+            self.Rectangle: self.tr("Draw Rectangle"),
+            self.FilledRectangle: self.tr("Draw Filled Rectangle"),
+            self.Circle: self.tr("Draw Circle"),
+            self.FilledCircle: self.tr("Draw Filled Circle"),
+            self.Ellipse: self.tr("Draw Ellipse"),
+            self.FilledEllipse: self.tr("Draw Filled Ellipse"),
+            self.Fill: self.tr("Fill Region"),
         }
     
     def isDirty(self):
@@ -834,7 +834,7 @@
         @return image of the selection (QImage)
         """
         if cut:
-            cmd = IconEditCommand(self, self.trUtf8("Cut Selection"),
+            cmd = IconEditCommand(self, self.tr("Cut Selection"),
                                   self.__image)
         
         img = QImage(self.__selRect.size(), QImage.Format_ARGB32)
@@ -892,8 +892,8 @@
                     img.height() > self.__image.height():
                 res = E5MessageBox.yesNo(
                     self,
-                    self.trUtf8("Paste"),
-                    self.trUtf8(
+                    self.tr("Paste"),
+                    self.tr(
                         """<p>The clipboard image is larger than the"""
                         """ current image.<br/>Paste as new image?</p>"""))
                 if res:
@@ -903,7 +903,7 @@
                 self.__isPasting = True
                 self.__clipboardSize = img.size()
             else:
-                cmd = IconEditCommand(self, self.trUtf8("Paste Clipboard"),
+                cmd = IconEditCommand(self, self.tr("Paste Clipboard"),
                                       self.__image)
                 self.__markImage.fill(self.NoMarkColor.rgba())
                 painter = QPainter(self.__image)
@@ -923,8 +923,8 @@
         else:
             E5MessageBox.warning(
                 self,
-                self.trUtf8("Pasting Image"),
-                self.trUtf8("""Invalid image data in clipboard."""))
+                self.tr("Pasting Image"),
+                self.tr("""Invalid image data in clipboard."""))
     
     def editPasteAsNew(self):
         """
@@ -933,7 +933,7 @@
         img, ok = self.__clipboardImage()
         if ok:
             cmd = IconEditCommand(
-                self, self.trUtf8("Paste Clipboard as New Image"),
+                self, self.tr("Paste Clipboard as New Image"),
                 self.__image)
             self.setIconImage(img)
             self.setDirty(True)
@@ -961,7 +961,7 @@
         """
         self.__unMark()
         
-        cmd = IconEditCommand(self, self.trUtf8("Clear Image"), self.__image)
+        cmd = IconEditCommand(self, self.tr("Clear Image"), self.__image)
         self.__image.fill(qRgba(0, 0, 0, 0))
         self.update()
         self.setDirty(True)
@@ -979,7 +979,7 @@
             newWidth, newHeight = dlg.getData()
             if newWidth != self.__image.width() or \
                     newHeight != self.__image.height():
-                cmd = IconEditCommand(self, self.trUtf8("Resize Image"),
+                cmd = IconEditCommand(self, self.tr("Resize Image"),
                                       self.__image)
                 img = self.__image.scaled(
                     newWidth, newHeight, Qt.IgnoreAspectRatio,
@@ -1006,7 +1006,7 @@
         """
         Public slot to convert the image to gray preserving transparency.
         """
-        cmd = IconEditCommand(self, self.trUtf8("Convert to Grayscale"),
+        cmd = IconEditCommand(self, self.tr("Convert to Grayscale"),
                               self.__image)
         for x in range(self.__image.width()):
             for y in range(self.__image.height()):

eric ide

mercurial