From a636462803342683210bbeb64e49782209c2794f Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 27 Aug 2018 15:54:06 -0400 Subject: [PATCH] i18n --- lib/simulator.py | 17 +++++++---------- messages.po | 23 ++++++++++++++++++++++- 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/lib/simulator.py b/lib/simulator.py index 7789ec910..5b497cd8b 100644 --- a/lib/simulator.py +++ b/lib/simulator.py @@ -44,11 +44,11 @@ class ControlPanel(wx.Panel): self.btnForwardStitch.Bind(wx.EVT_BUTTON, self.animation_one_stitch_forward) self.direction = wx.Button(self, -1, label='>>') self.direction.Bind(wx.EVT_BUTTON, self.on_direction_button) - self.pauseBtn = wx.Button(self, -1, label='Pause') + self.pauseBtn = wx.Button(self, -1, label=_('Pause')) self.pauseBtn.Bind(wx.EVT_BUTTON, self.on_pause_start_button) - self.restartBtn = wx.Button(self, -1, label='Restart') + self.restartBtn = wx.Button(self, -1, label=_('Restart')) self.restartBtn.Bind(wx.EVT_BUTTON, self.animation_restart) - self.quitBtn = wx.Button(self, -1, label='Quit') + self.quitBtn = wx.Button(self, -1, label=_('Quit')) self.quitBtn.Bind(wx.EVT_BUTTON, self.animation_quit) self.slider = wx.Slider(self, -1, value=1, minValue=1, maxValue=self.num_stitches, style=wx.SL_HORIZONTAL | wx.SL_LABELS) @@ -150,7 +150,7 @@ class ControlPanel(wx.Panel): def set_speed(self, speed): self.speed = int(max(speed, 1)) - self.speedST.SetLabel('Speed: %s stitches/sec' % self.speed) + self.speedST.SetLabel(_('Speed: %d stitches/sec') % self.speed) self.hbSizer2.Layout() if self.drawing_panel: @@ -170,9 +170,6 @@ class ControlPanel(wx.Panel): self.stitchBox.SetValue(stitch) self.commandST.SetLabel(COMMAND_NAMES[command]) - def set_stitch_label(self, stitch): - self.st1.SetLabel("Stitch # %d/%d" % (stitch, self.num_stitches)) - def on_stitch_box(self, event): stitch = self.stitchBox.GetValue() self.slider.SetValue(stitch) @@ -195,14 +192,14 @@ class ControlPanel(wx.Panel): self.drawing_panel.go() def on_start(self): - self.pauseBtn.SetLabel('Pause') + self.pauseBtn.SetLabel(_('Pause')) def on_stop(self): - self.pauseBtn.SetLabel('Start') + self.pauseBtn.SetLabel(_('Start')) def on_pause_start_button(self, event): """""" - if self.pauseBtn.GetLabel() == 'Pause': + if self.pauseBtn.GetLabel() == _('Pause'): self.animation_pause() else: self.animation_start() diff --git a/messages.po b/messages.po index 909e2fca2..b21083d55 100644 --- a/messages.po +++ b/messages.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-27 15:42-0400\n" +"POT-Creation-Date: 2018-08-27 15:53-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -695,6 +695,27 @@ msgstr "" msgid "COLOR CHANGE" msgstr "" +#: lib/simulator.py:47 lib/simulator.py:195 lib/simulator.py:202 +msgid "Pause" +msgstr "" + +#: lib/simulator.py:49 +msgid "Restart" +msgstr "" + +#: lib/simulator.py:51 +msgid "Quit" +msgstr "" + +#: lib/simulator.py:153 +#, python-format +msgid "Speed: %d stitches/sec" +msgstr "" + +#: lib/simulator.py:198 +msgid "Start" +msgstr "" + #: lib/stitches/auto_fill.py:167 msgid "" "Unable to autofill. This most often happens because your shape is made "