Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Area.py137
-rw-r--r--Desenho.py13
-rw-r--r--NEWS5
-rw-r--r--po/Paint.pot164
-rw-r--r--po/ar.po184
-rw-r--r--po/de.po184
-rw-r--r--po/el.po184
-rw-r--r--po/es.po199
-rw-r--r--po/fr.po185
-rw-r--r--po/ko_KO.po184
-rw-r--r--po/pt_BR.po190
-rw-r--r--po/zh_CN.po184
-rw-r--r--po/zh_TW.po184
13 files changed, 1054 insertions, 943 deletions
diff --git a/Area.py b/Area.py
index b44081d..8e14eaf 100644
--- a/Area.py
+++ b/Area.py
@@ -89,12 +89,19 @@ class Area(gtk.DrawingArea):
gtk.gdk.POINTER_MOTION_HINT_MASK |
gtk.gdk.BUTTON_PRESS_MASK |
gtk.gdk.BUTTON_RELEASE_MASK|
- gtk.gdk.EXPOSURE_MASK)
+ gtk.gdk.EXPOSURE_MASK |
+ gtk.gdk.KEY_PRESS_MASK |
+ gtk.gdk.KEY_RELEASE_MASK)
self.connect("expose_event",self.expose)
self.connect("motion_notify_event", self.mousemove)
self.connect("button_press_event", self.mousedown)
- self.connect("button_release_event", self.mouseup)
+ self.connect("button_release_event", self.mouseup)
+ self.connect("key_press_event", self.key_press)
+ self.connect("key_release_event", self.key_release)
+
+ self.set_flags(gtk.CAN_FOCUS)
+ self.grab_focus()
self.set_extension_events(gtk.gdk.EXTENSION_EVENTS_CURSOR)
## Define which tool is been used. It is now described as a dictionnary,
@@ -240,12 +247,13 @@ class Area(gtk.DrawingArea):
"""
#logging.debug('Area.expose(self, widget, event)')
-
- area = event.area
+ area = event.area
+ if self.tool['name'] is not 'text':
+ self.grab_focus()
if self.desenha or self.selmove:
- widget.window.draw_drawable(self.gc,self.pixmap_temp,area[0],area[1],area[0],area[1],area[2],area[3])
+ widget.window.draw_drawable(self.gc,self.pixmap_temp,area[0],area[1],area[0],area[1],area[2],area[3])
else:
- widget.window.draw_drawable(self.gc,self.pixmap,area[0],area[1],area[0],area[1],area[2],area[3])
+ widget.window.draw_drawable(self.gc,self.pixmap,area[0],area[1],area[0],area[1],area[2],area[3])
return False
def mousedown(self,widget,event):
@@ -280,42 +288,50 @@ class Area(gtk.DrawingArea):
self.janela.textview.hide()
self.oldx, self.oldy = coords
- if self.selmove and self.tool['name'] != 'marquee-rectangular': #get out of the func selection
- self.getout()
- self.selmove = False
- if self.tool['name'] == 'eraser':
- self.last = []
- self.d.eraser(widget, coords, self.last, self.line_size, self.tool['line shape'])
- self.last = coords
- elif self.tool['name'] == 'brush':
- self.last = []
- self.d.brush(widget, coords, self.last, self.line_size, self.tool['line shape'])
- self.last = coords
- elif self.tool['name'] == 'rainbow':
- self.last = []
- self.d.rainbow(widget, coords, self.last, self.rainbow_counter,self.line_size, self.tool['line shape'])
- self.last = coords
- elif self.tool['name'] == 'polygon':
- self.configure_line(self.line_size)
-
+
+ if self.polygon_start is False and self.tool['name'] is not 'polygon':
+ self.d.polygon(widget, coords, False, self.tool['fill'],"bug")
+
x , y, state = event.window.get_pointer()
- if (state & gtk.gdk.BUTTON3_MASK):#Handle with the right button click event.
- self.sel_get_out = True
+ if state & gtk.gdk.BUTTON3_MASK:#Handle with the right button click event.
+ if self.tool['name'] == 'marquee-rectangular':
+ self.sel_get_out = True
elif state & gtk.gdk.BUTTON1_MASK: #Handle with the left button click event.
+ if self.tool['name'] == 'eraser':
+ self.last = []
+ self.d.eraser(widget, coords, self.last, self.line_size, self.tool['line shape'])
+ self.last = coords
+ elif self.tool['name'] == 'brush':
+ self.last = []
+ self.d.brush(widget, coords, self.last, self.line_size, self.tool['line shape'])
+ self.last = coords
+ elif self.tool['name'] == 'rainbow':
+ self.last = []
+ self.d.rainbow(widget, coords, self.last, self.rainbow_counter,self.line_size, self.tool['line shape'])
+ self.last = coords
+ elif self.tool['name'] == 'polygon':
+ self.configure_line(self.line_size)
+ if self.polygon_start == False:
+ self.desenha = True
if self.selmove:
- size = self.pixmap_sel.get_size()
- xi = self.orig_x
- yi = self.orig_y
- xf = xi + size[0]
- yf = yi + size[1]
- if (coords[0] < xi) or (coords[0] > xf) or (coords[1] < yi) or (coords[1] > yf):
- self.sel_get_out = True
+ if self.tool['name'] != 'marquee-rectangular': #get out of the func selection
+ self.getout()
+ self.selmove = False
+ else:
+ size = self.pixmap_sel.get_size()
+ xi = self.orig_x
+ yi = self.orig_y
+ xf = xi + size[0]
+ yf = yi + size[1]
+ if (coords[0] < xi) or (coords[0] > xf) or (coords[1] < yi) or (coords[1] > yf):
+ self.sel_get_out = True
else:
self.pixmap_temp.draw_drawable(self.gc, self.pixmap, 0,0,0,0, width, height)
+ self.desenha = True
widget.queue_draw()
- self.desenha = True
-
+
+
def mousemove(self,widget,event):
"""Make the Area object (GtkDrawingArea) recognize that the mouse is moving.
@@ -356,7 +372,7 @@ class Area(gtk.DrawingArea):
elif self.tool['name'] == 'rectangle':
self.configure_line(self.line_size)
- self.d.square(widget,coords,True,self.tool['fill'])
+ self.d.square(widget,event,coords,True,self.tool['fill'])
elif self.tool['name'] == 'marquee-rectangular' and not self.selmove:
self.d.selection(widget,coords)
@@ -408,7 +424,7 @@ class Area(gtk.DrawingArea):
else:
self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.FLEUR))
- elif self.tool['name'] == 'polygon':
+ elif self.tool['name'] == 'polygon' and not self.selmove:
self.desenha = True
self.configure_line(self.line_size)
self.d.polygon(widget,coords,True,self.tool['fill'],"moving")
@@ -423,7 +439,7 @@ class Area(gtk.DrawingArea):
"""
coords = int(event.x), int(event.y)
width, height = self.window.get_size()
- if self.desenha == True:
+ if self.desenha or self.sel_get_out:
if self.tool['name'] == 'line':
self.pixmap.draw_line(self.gc_line,self.oldx,self.oldy, int (event.x), int(event.y))
widget.queue_draw()
@@ -434,7 +450,7 @@ class Area(gtk.DrawingArea):
self.enableUndo(widget)
elif self.tool['name'] == 'rectangle':
- self.d.square(widget,coords,False,self.tool['fill'])
+ self.d.square(widget,event,coords,False,self.tool['fill'])
self.enableUndo(widget)
elif self.tool['name'] == 'marquee-rectangular':
@@ -1050,3 +1066,46 @@ class Area(gtk.DrawingArea):
except Exception, message:
logging.debug('Unexpected error: %s', message)
+ def key_press(self,widget,event):
+ if event.keyval == gtk.keysyms.BackSpace:
+ if self.selmove:
+ self.selmove = False
+ try:
+ del(self.pixmap_sel)
+ del(self.pixbuf_resize)
+ except: pass
+ if self.tool['name'] == 'marquee-rectangular':
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.TCROSS))
+ widget.queue_draw()
+ self.enableUndo(widget)
+ elif event.keyval == gtk.keysyms.a and gtk.gdk.CONTROL_MASK:
+ if self.selmove:
+ self.getout()
+ width, height = self.window.get_size()
+ if self.tool['name'] == 'marquee-rectangular':
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.FLEUR))
+ self.pixmap_sel = gtk.gdk.Pixmap(self.window,width,height,-1)
+ self.pixmap_sel.draw_drawable(self.gc,self.pixmap,0,0,0,0,width,height)
+ self.pixmap_temp.draw_drawable(self.gc,self.pixmap,0,0,0,0,width,height)
+ self.pixmap.draw_rectangle(self.get_style().white_gc,True,0,0,width,height)
+ self.orig_x = 0
+ self.orig_y = 0
+ self.pixmap_temp.draw_rectangle(self.gc_selection,False,0,0,width-1,height-1)
+ self.selmove = True
+ self.sel_get_out = False
+ self.emit('select')
+ widget.queue_draw()
+ elif event.keyval == gtk.keysyms.d and gtk.gdk.CONTROL_MASK:
+ if self.selmove:
+ self.getout(True,widget)
+ if self.tool['name'] == 'marquee-rectangular':
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.TCROSS))
+ widget.queue_draw()
+ elif event.keyval == gtk.keysyms.Return:
+ self.getout(True,widget)
+ if self.tool['name'] == 'marquee-rectangular':
+ self.window.set_cursor(gtk.gdk.Cursor(gtk.gdk.TCROSS))
+ widget.queue_draw()
+
+ def key_release(self,widget,event):
+ pass
diff --git a/Desenho.py b/Desenho.py
index cbaca21..c3a5bb8 100644
--- a/Desenho.py
+++ b/Desenho.py
@@ -190,7 +190,7 @@ class Desenho:
widget.queue_draw()
- def square(self, widget, coords, temp, fill):
+ def square(self, widget, event, coords, temp, fill):
"""Draw a square.
@param self -- Desenho.Desenho instance
@@ -713,7 +713,7 @@ class Desenho:
widget.pixmap.draw_line(widget.gc_line,widget.oldx,widget.oldy, coords[0], coords[1])
widget.enableUndo(widget)
widget.last = coords
- widget.polygon_start = False
+ widget.polygon_start = False
else:
if param == "motion":
# print "press"
@@ -740,6 +740,15 @@ class Desenho:
widget.polygon_start = True
widget.undo_times -= 1#destroy the undo screen of polygon start
widget.enableUndo(widget)
+ elif param == "bug":
+ tp = tuple(widget.points)
+ if fill == True:
+ pixmap.draw_polygon(widget.gc, True, tp)
+ pixmap.draw_polygon(widget.gc_line, False, tp)
+ widget.last = []
+ widget.polygon_start = True
+ widget.undo_times -= 1#destroy the undo screen of polygon start
+ widget.enableUndo(widget)
widget.queue_draw()
def adjust(self, widget, coords, locked=False):
diff --git a/NEWS b/NEWS
index 8ffd476..63eddd2 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,8 @@
+* Bug #3709 fixed; Right click only works with 'selection' and 'free polygon' (andre)
+* Fixed bug with free polygon (andre)
+* Bug #3703 fixed; 'Crtl+A' select all and 'Crtl+D' deselect, without buttons for now (andre)
+* Bug #3702 fixed; 'Erase' delete selection, 'return' confirm the selection (andre)
+
12
* Journal is now used to import images - using Sugar's ObjectChooser (alexandre)
diff --git a/po/Paint.pot b/po/Paint.pot
index aa7b326..6bbc6b4 100644
--- a/po/Paint.pot
+++ b/po/Paint.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -16,242 +16,230 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr ""
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr ""
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr ""
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr ""
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr ""
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr ""
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr ""
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr ""
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr ""
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr ""
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr ""
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr ""
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr ""
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr ""
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
msgid "Shape"
msgstr ""
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
-msgstr ""
-
-#: toolbox.py:598
-msgid "1"
-msgstr ""
-
-#: toolbox.py:599
-msgid "2"
-msgstr ""
-
-#: toolbox.py:600
-msgid "3"
-msgstr ""
-
-#: toolbox.py:601
-msgid "5"
-msgstr ""
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr ""
-
-#: toolbox.py:603
-msgid "20"
-msgstr ""
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
+#: toolbox.py:740
+msgid "Fill Color"
msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr ""
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr ""
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr ""
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr ""
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr ""
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr ""
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr ""
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr ""
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr ""
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr ""
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr ""
-#: toolbox.py:1237
-msgid "Height"
+#: toolbox.py:1179
+msgid "Rotate Left"
msgstr ""
-#: toolbox.py:1242
-msgid "Width"
+#: toolbox.py:1185
+msgid "Rotate Right"
msgstr ""
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1191
+msgid "Height"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
+#: toolbox.py:1203
+msgid "Width"
msgstr ""
-#: toolbox.py:1350
+#: toolbox.py:1298
+msgid "Choose image"
+msgstr ""
+
+#: toolbox.py:1345
msgid "Grayscale"
msgstr ""
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr ""
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr ""
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr ""
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr ""
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr ""
+
+#: toolbox.py:1492
+msgid "50"
+msgstr ""
+
+#: toolbox.py:1493
msgid "25"
msgstr ""
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr ""
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr ""
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 3e2f39d..b41a074 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 14:09-0300\n"
"Last-Translator: Khaled Hosny <khaledhosny@eglug.org>\n"
"Language-Team: Arabic <doc@arabeyes.org>\n"
@@ -20,243 +20,249 @@ msgstr ""
"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? "
"3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "حرّر"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "أدوات"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "أشكال"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "نص"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "صورة"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "مؤثِّرات"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "قلم"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "فرشاة"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "ممحاة"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "مضلع"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "محفظة"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "معلِّمة مربّعة"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "دائرة"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "مربّع"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "أشكال"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "١"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "٢"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "٣"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "٥"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "١٠"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "٢٠"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "٥٠"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "١٠٠"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "بيضاوي"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "مستطيل"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "خط"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "قلب"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "متوازي أضلا"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "سهم"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "نجمة"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "معيّن"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "مثلّث"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "نوع"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "أدرج صورة"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "الارتفا"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "العرض"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "افتح ملف..."
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "تدرج رمادي"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr ""
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr ""
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr ""
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr ""
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "١٠٠"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "٥٠"
+
+#: toolbox.py:1493
msgid "25"
msgstr ""
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "١٠"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "زووم +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "زووم -"
+
+#~ msgid "1"
+#~ msgstr "١"
+
+#~ msgid "2"
+#~ msgstr "٢"
+
+#~ msgid "3"
+#~ msgstr "٣"
+
+#~ msgid "5"
+#~ msgstr "٥"
+
+#~ msgid "20"
+#~ msgstr "٢٠"
+
+#~ msgid "Open File..."
+#~ msgstr "افتح ملف..."
diff --git a/po/de.po b/po/de.po
index 1d56899..7db10f2 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 13:57-0300\n"
"Last-Translator: Nathalia <nathalia.sautchuk@gmail.com>\n"
"Language-Team: Language locale/de/LC\n"
@@ -15,243 +15,249 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "Bearbeiten"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "Werkzeuge"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "Formen"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "Text"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "Bild"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "Effekte"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "Bleistift"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "Pinsel"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "Radiergummi"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "Polygon"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "Farbeimer"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "Rechteckige Auswahl"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "Kreis"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "Quadrat"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "Formen"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "Ellipse"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "Viereck"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "Linie"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "Herz"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "Parallelogramm"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "Pfeil"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "Stern"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "Paralleltrapez"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "Dreieck"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "Type"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "Bild-einsetzen"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "Höhe"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "Breite"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "Datei öffnen…"
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "Graustufen"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ZOOM +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ZOOM -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Open File..."
+#~ msgstr "Datei öffnen…"
diff --git a/po/el.po b/po/el.po
index e75ebce..1b8beac 100644
--- a/po/el.po
+++ b/po/el.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 13:58-0300\n"
"Last-Translator: Simos Xenitellis <simos.lists@googlemail.com>\n"
"Language-Team: Greek <olpc-l10n-el@googlegroups.com>\n"
@@ -17,243 +17,249 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "Επεξεργασία"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "Εργαλεία"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "Σχήματα"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "Κείμενο"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "Εικόνα"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "Εφέ"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "Μολύβι"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "Πινέλο"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "Γόμα"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "Πολύγωνο"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "Κουβάς"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "Ορθογώνια επιλογή"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "Κύκλος"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "Τετράγωνο"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "Σχήματα"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "Έλλειψη"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "Ορθογώνιο"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "Γραμμή"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "Καρδιά"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "Παραλληλόγραμμο"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "Βέλος"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "Άστρο"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "Τραπέζιο"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "Τρίγωνο"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "Τύπος"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "Εισαγωγή εικόνας"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "Ύψος"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "Πλάτος"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "Άνοιγμα αρχείου..."
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "Κλίμακα του γκρι"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ΕΣΤΙΑΣΗ +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ΕΣΤΙΑΣΗ -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Open File..."
+#~ msgstr "Άνοιγμα αρχείου..."
diff --git a/po/es.po b/po/es.po
index e93a050..d2c0981 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-24 12:41-0300\n"
"Last-Translator: Domingo Becker <domingobecker@gmail.com>\n"
"Language-Team: Fedora Spanish <fedora-trans-es@redhat.com>\n"
@@ -17,254 +17,251 @@ msgstr ""
"X-Poedit-Language: Spanish\n"
#: activity/activity.info:2
-#: OficinaActivity.py:79
msgid "Paint"
msgstr "Pintar"
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "Editar"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "Herramientas"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "Formas"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "Texto"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "Imagen"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "Efectos"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr "Deshacer"
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr "Rehacer"
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr "Copiar"
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr "Pegar"
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr "Limpiar"
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr "Color da Herramienta"
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "Lápiz"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "Pincel"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "Borrador"
-#: toolbox.py:340
-#: toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "Polígono"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "Balde"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "Selección Rectangular"
-#: toolbox.py:429
-#: toolbox.py:1102
-#: toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr "Tamaño:"
-#: toolbox.py:442
-#: toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "Círculo"
-#: toolbox.py:451
-#: toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "Cuadrado"
-#: toolbox.py:462
-#: toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
msgid "Shape"
msgstr "Forma"
-#: toolbox.py:481
-#: toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr "Llenar"
-#: toolbox.py:491
-#: toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+#, fuzzy
+msgid "Fill Color: "
msgstr "Color de llenado"
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602
-#: toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604
-#: toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605
-#: toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr "Color de llenado"
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr "Color de trazo"
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "Elipse"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "Rectángulo"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "Línea"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "Corazón"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "Paralelogramo"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "Flecha"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "Estrella"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "Trapezoide"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "Triángulo"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr "Lados: "
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr "Puntos: "
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "Teclear"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "Insertar Imagen"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "Altura"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "Anchura"
-#: toolbox.py:1293
-msgid "Resize (%): "
-msgstr "Retamañar (%)"
-
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "Abrir Archivo..."
+#: toolbox.py:1298
+msgid "Choose image"
+msgstr ""
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "Escala de Gris"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr "Arco iris"
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ZOOM +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ZOOM -"
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Resize (%): "
+#~ msgstr "Retamañar (%)"
+
+#~ msgid "Open File..."
+#~ msgstr "Abrir Archivo..."
diff --git a/po/fr.po b/po/fr.po
index a6f141f..bc7fe2e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 13:59-0300\n"
"Last-Translator: Nathalia <nathalia.sautchuk@gmail.com>\n"
"Language-Team: Language locale/fr/LC\n"
@@ -15,245 +15,252 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
#, fuzzy
msgid "Paint"
msgstr "Points: "
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "Éditer"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "Outils"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "Formes"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "Texte"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "Image"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "Effet"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr "Défaire"
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr "Refaire"
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr "Copier"
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr "Collier"
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr "Nettoyer"
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr "Couleur de le Outil"
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "Crayon"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "Pinceau"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "Gomme"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "Polygone"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "Seau"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "Sélection Rectangulaire"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
#, fuzzy
msgid "Size: "
msgstr "Taille"
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "Cercle"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "Carré"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "Formes"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
+#: toolbox.py:490
+#, fuzzy
+msgid "Fill Color: "
+msgstr "Couleur de le Outil"
+
+#: toolbox.py:740
msgid "Fill Color"
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
-
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "Ellipse"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "Rectangle"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "Ligne"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "Coeur"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "Parallélogramme"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "Flèche"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "Étoile"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "Trapèze"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "Triangle"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr "Côtés: "
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr "Points: "
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "Saisir"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "Insérer la Image"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "Hauteur"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "Largeur"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "Ouvrir le Dossier..."
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "Escale de Gris"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr "Arc-en-ciel"
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ZOOM +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ZOOM -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Open File..."
+#~ msgstr "Ouvrir le Dossier..."
diff --git a/po/ko_KO.po b/po/ko_KO.po
index 0b722a8..2cf266e 100644
--- a/po/ko_KO.po
+++ b/po/ko_KO.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 13:59-0300\n"
"Last-Translator: Do Young-Min <jeju123@gmail.com>\n"
"Language-Team: Language locale/ko\n"
@@ -15,243 +15,249 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "편집"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "툴"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "도형"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "텍스트"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "이미지"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "효과"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "연필"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "붓"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "지우개"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "다각형"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "부켓"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "사각 선택툴"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "원"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "사각형"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "도형"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "이클립스"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "사각형"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "선"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "중심"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "평행사각형"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "화살표"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "별표"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "사다리꼴"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "삼각형"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "타입"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "이미지 삽입"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "높이"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "폭"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "파일 열기…"
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "그레이 스케일"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "줌 +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "줌 -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Open File..."
+#~ msgstr "파일 열기…"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 5fa7333..1ac67d4 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 14:00-0300\n"
"Last-Translator: Nathalia <nathalia.sautchuk@gmail.com>\n"
"Language-Team: Language locale/pt\n"
@@ -15,245 +15,255 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
#, fuzzy
msgid "Paint"
msgstr "Pontos: "
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "Editar"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "Ferramentas"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "Formas"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "Texto"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "Imagem"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "Efeitos"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr "Desfazer"
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr "Refazer"
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr "Copiar"
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr "Colar"
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr "Limpar"
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr "Cor da Ferramenta"
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "Lápis"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "Pincel"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "Borracha"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "Polígono"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "Balde"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "Seleção Rectangular"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
#, fuzzy
msgid "Size: "
msgstr "Tamanho"
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "Círculo"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "Quadrado"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "Formas"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr "Preenchimento"
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+#, fuzzy
+msgid "Fill Color: "
msgstr "Cor do Preenchimento"
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr "Cor do Preenchimento"
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr "Cor da Linha"
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "Elipse"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "Retângulo"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "Linha"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "Coração"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "Paralelogramo"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "Seta"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "Estrela"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "Trapézio"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "Triângulo"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr "Lados: "
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr "Pontos: "
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "Digite"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "Inserir Imagem"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "Altura"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "Largura"
-#: toolbox.py:1293
-msgid "Resize (%): "
-msgstr "Redimensionar (%): "
-
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "Abrir Arquivo..."
+#: toolbox.py:1298
+msgid "Choose image"
+msgstr ""
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "Escala de Cinza"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr "Arco-Íris"
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ZOOM +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ZOOM -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Resize (%): "
+#~ msgstr "Redimensionar (%): "
+
+#~ msgid "Open File..."
+#~ msgstr "Abrir Arquivo..."
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 7426bcc..b8ddd42 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 14:01-0300\n"
"Last-Translator: Ho Tsung Yin <johnytyh@lsi.usp.br>\n"
"Language-Team: Language locale/zh\n"
@@ -15,243 +15,249 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "编辑"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "工具"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "形状"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "文字"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "图片"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "效果"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "铅笔"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "刷子"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "橡皮艇"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "多边形"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "色彩桶"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "方形选择"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "圆形"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "方形"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "形状"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "椭圆形"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "矩形"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "线条"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "中心"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "平行四边形"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "箭头"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "星状"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "梯形"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "三角形"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "类型"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "插入物件"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "高度"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "宽度"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "开启旧档..."
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "灰阶"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ZOOM +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ZOOM -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Open File..."
+#~ msgstr "开启旧档..."
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 28b1ad1..4392ca4 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: drawing.master\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-09-19 09:32-0400\n"
+"POT-Creation-Date: 2007-11-01 15:03-0200\n"
"PO-Revision-Date: 2007-09-11 14:01-0300\n"
"Last-Translator: Ho Tsung Yin <johnytyh@lsi.usp.br>\n"
"Language-Team: Language locale/zh\n"
@@ -15,243 +15,249 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: activity/activity.info:2 OficinaActivity.py:79
+#: activity/activity.info:2
msgid "Paint"
msgstr ""
-#: toolbox.py:76
+#: toolbox.py:77
msgid "Edit"
msgstr "編輯"
-#: toolbox.py:80
+#: toolbox.py:81
msgid "Tools"
msgstr "工具"
-#: toolbox.py:84
+#: toolbox.py:85
msgid "Shapes"
msgstr "形狀"
-#: toolbox.py:88
+#: toolbox.py:89
msgid "Text"
msgstr "文字"
-#: toolbox.py:92
+#: toolbox.py:93
msgid "Image"
msgstr "圖片"
-#: toolbox.py:96
+#: toolbox.py:97
msgid "Effects"
msgstr "效果"
-#: toolbox.py:114
+#: toolbox.py:115
msgid "Undo"
msgstr ""
-#: toolbox.py:115
+#: toolbox.py:116
msgid "Redo"
msgstr ""
-#: toolbox.py:116
+#: toolbox.py:117
msgid "Copy"
msgstr ""
-#: toolbox.py:117
+#: toolbox.py:118
msgid "Paste"
msgstr ""
-#: toolbox.py:127
+#: toolbox.py:128
msgid "Clear"
msgstr ""
-#: toolbox.py:284
+#: toolbox.py:282
msgid "Tool Color"
msgstr ""
-#: toolbox.py:313
+#: toolbox.py:300
msgid "Pencil"
msgstr "鉛筆"
-#: toolbox.py:322
+#: toolbox.py:309
msgid "Brush"
msgstr "刷子"
-#: toolbox.py:331
+#: toolbox.py:318
msgid "Eraser"
msgstr "橡皮艇"
-#: toolbox.py:340 toolbox.py:857
+#: toolbox.py:327 toolbox.py:797
msgid "Polygon"
msgstr "多邊形"
-#: toolbox.py:349
+#: toolbox.py:336
msgid "Bucket"
msgstr "色彩桶"
-#: toolbox.py:378
+#: toolbox.py:365
msgid "Rectangular Marquee"
msgstr "矩形選擇"
-#: toolbox.py:429 toolbox.py:1102 toolbox.py:1420
+#: toolbox.py:417 toolbox.py:1049 toolbox.py:1412
msgid "Size: "
msgstr ""
-#: toolbox.py:442 toolbox.py:1430
+#: toolbox.py:437 toolbox.py:1421
msgid "Circle"
msgstr "圓形"
-#: toolbox.py:451 toolbox.py:1439
+#: toolbox.py:446 toolbox.py:1430
msgid "Square"
msgstr "方形"
-#: toolbox.py:462 toolbox.py:1450
+#: toolbox.py:457 toolbox.py:1441
#, fuzzy
msgid "Shape"
msgstr "形狀"
-#: toolbox.py:481 toolbox.py:1080
+#: toolbox.py:477 toolbox.py:1030
msgid "Fill"
msgstr ""
-#: toolbox.py:491 toolbox.py:795
-msgid "Fill Color"
+#: toolbox.py:490
+msgid "Fill Color: "
msgstr ""
-#: toolbox.py:598
-msgid "1"
-msgstr "1"
-
-#: toolbox.py:599
-msgid "2"
-msgstr "2"
-
-#: toolbox.py:600
-msgid "3"
-msgstr "3"
-
-#: toolbox.py:601
-msgid "5"
-msgstr "5"
-
-#: toolbox.py:602 toolbox.py:1503
-msgid "10"
-msgstr "10"
-
-#: toolbox.py:603
-msgid "20"
-msgstr "20"
-
-#: toolbox.py:604 toolbox.py:1501
-msgid "50"
-msgstr "50"
-
-#: toolbox.py:605 toolbox.py:1500
-msgid "100"
-msgstr "100"
+#: toolbox.py:740
+msgid "Fill Color"
+msgstr ""
-#: toolbox.py:807
+#: toolbox.py:752
msgid "Stroke Color"
msgstr ""
-#: toolbox.py:830
+#: toolbox.py:770
msgid "Ellipse"
msgstr "橢圓形"
-#: toolbox.py:839
+#: toolbox.py:779
msgid "Rectangle"
msgstr "矩形"
-#: toolbox.py:848
+#: toolbox.py:788
msgid "Line"
msgstr "線條"
-#: toolbox.py:875
+#: toolbox.py:815
msgid "Heart"
msgstr "中心"
-#: toolbox.py:885
+#: toolbox.py:825
msgid "Parallelogram"
msgstr "平行四邊形"
-#: toolbox.py:894
+#: toolbox.py:834
msgid "Arrow"
msgstr "箭頭"
-#: toolbox.py:903
+#: toolbox.py:843
msgid "Star"
msgstr "星狀"
-#: toolbox.py:912
+#: toolbox.py:852
msgid "Trapezoid"
msgstr "梯形"
-#: toolbox.py:921
+#: toolbox.py:861
msgid "Triangle"
msgstr "三角形"
-#: toolbox.py:1011
+#: toolbox.py:948
msgid "Sides: "
msgstr ""
-#: toolbox.py:1053
+#: toolbox.py:995
msgid "Points: "
msgstr ""
-#: toolbox.py:1145
+#: toolbox.py:1095
msgid "Type"
msgstr "類型"
-#: toolbox.py:1215
+#: toolbox.py:1166
msgid "Insert Image"
msgstr "插入物件"
-#: toolbox.py:1237
+#: toolbox.py:1179
+msgid "Rotate Left"
+msgstr ""
+
+#: toolbox.py:1185
+msgid "Rotate Right"
+msgstr ""
+
+#: toolbox.py:1191
msgid "Height"
msgstr "高度"
-#: toolbox.py:1242
+#: toolbox.py:1203
msgid "Width"
msgstr "寬度"
-#: toolbox.py:1293
-msgid "Resize (%): "
+#: toolbox.py:1298
+msgid "Choose image"
msgstr ""
-#: toolbox.py:1302
-msgid "Open File..."
-msgstr "開啟舊檔..."
-
-#: toolbox.py:1350
+#: toolbox.py:1345
msgid "Grayscale"
msgstr "灰階"
-#: toolbox.py:1355
+#: toolbox.py:1350
msgid "Rainbow"
msgstr ""
-#: toolbox.py:1496
+#: toolbox.py:1487
msgid "1000"
msgstr "1000"
-#: toolbox.py:1497
+#: toolbox.py:1488
msgid "500"
msgstr "500"
-#: toolbox.py:1498
+#: toolbox.py:1489
msgid "200"
msgstr "200"
-#: toolbox.py:1499
+#: toolbox.py:1490
msgid "150"
msgstr "150"
-#: toolbox.py:1502
+#: toolbox.py:1491
+msgid "100"
+msgstr "100"
+
+#: toolbox.py:1492
+msgid "50"
+msgstr "50"
+
+#: toolbox.py:1493
msgid "25"
msgstr "25"
-#: toolbox.py:1516
+#: toolbox.py:1494
+msgid "10"
+msgstr "10"
+
+#: toolbox.py:1507
msgid "ZOOM +"
msgstr "ZOOM +"
-#: toolbox.py:1521
+#: toolbox.py:1512
msgid "ZOOM -"
msgstr "ZOOM -"
+
+#~ msgid "1"
+#~ msgstr "1"
+
+#~ msgid "2"
+#~ msgstr "2"
+
+#~ msgid "3"
+#~ msgstr "3"
+
+#~ msgid "5"
+#~ msgstr "5"
+
+#~ msgid "20"
+#~ msgstr "20"
+
+#~ msgid "Open File..."
+#~ msgstr "開啟舊檔..."