pull/284/head
Lex Neva 2018-08-27 15:54:06 -04:00
rodzic 7eb36c5fc6
commit a636462803
2 zmienionych plików z 29 dodań i 11 usunięć

Wyświetl plik

@ -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()

Wyświetl plik

@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\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 "