Skip to content

Commit

Permalink
General translation fixes
Browse files Browse the repository at this point in the history
While checking Polish(PL) translation I've identified a few strings that are not properly translated.

Proposed fixes shall improve quality of all translations.
  • Loading branch information
Porwolik authored and kk7ds committed Jul 10, 2023
1 parent 5aaf773 commit 9e6cc00
Show file tree
Hide file tree
Showing 18 changed files with 2,155 additions and 1,893 deletions.
288 changes: 153 additions & 135 deletions chirp/locale/de.po

Large diffs are not rendered by default.

286 changes: 154 additions & 132 deletions chirp/locale/el.po

Large diffs are not rendered by default.

287 changes: 152 additions & 135 deletions chirp/locale/en_US.po

Large diffs are not rendered by default.

289 changes: 154 additions & 135 deletions chirp/locale/es.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/fr.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/hu.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/it.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/nl.po

Large diffs are not rendered by default.

289 changes: 154 additions & 135 deletions chirp/locale/pl.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/pt_BR.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/ru.po

Large diffs are not rendered by default.

289 changes: 154 additions & 135 deletions chirp/locale/tr_TR.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/uk_UA.po

Large diffs are not rendered by default.

288 changes: 153 additions & 135 deletions chirp/locale/zh_CN.po

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion chirp/wxui/clone.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ def _persist_choices(self):

def _selected_port(self, event):
if self._port.GetStringSelection() == CUSTOM:
port = wx.GetTextFromUser(_('Enter custom port:'), 'Custom Port',
port = wx.GetTextFromUser(_('Enter custom port:'),
_('Custom Port'),
parent=self)
if port:
CUSTOM_PORTS.append(port)
Expand Down
3 changes: 2 additions & 1 deletion chirp/wxui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,6 +757,7 @@ def make_menubar(self):

self._last_search_text = ''
find_item = edit_menu.Append(wx.ID_FIND)
edit_menu.SetLabel(wx.ID_FIND, _('Find'))
self.Bind(wx.EVT_MENU, self._menu_find, find_item)

self._find_next_item = wx.NewId()
Expand Down Expand Up @@ -942,7 +943,7 @@ def make_menubar(self):
menu_bar.Append(edit_menu, wx.GetStockLabel(wx.ID_EDIT))
menu_bar.Append(view_menu, '&' + _('View'))
menu_bar.Append(radio_menu, '&' + _('Radio'))
menu_bar.Append(help_menu, wx.GetStockLabel(wx.ID_HELP))
menu_bar.Append(help_menu, _('Help'))

return menu_bar

Expand Down
7 changes: 4 additions & 3 deletions chirp/wxui/memedit.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,8 @@ def filter_unknowns(items):
ChirpChoiceColumn('mode', self._radio,
valid_modes),
ChirpChoiceColumn('tuning_step', self._radio,
valid_tuning_steps),
valid_tuning_steps,
label=_('Tuning Step')),
ChirpChoiceColumn('skip', self._radio,
valid_skips),
power_col_cls('power', self._radio,
Expand Down Expand Up @@ -1380,7 +1381,7 @@ def _memory_edited(self, event):
if errors:
LOG.warning('Memory failed validation: %s' % mem)
wx.MessageBox(_('Invalid edit: %s') % '; '.join(errors),
'Invalid Entry')
_('Invalid Entry'))
event.Skip()
return
if warnings:
Expand Down Expand Up @@ -2104,7 +2105,7 @@ def __init__(self, memedit, memories, *a, **k):
self._pg = wx.propgrid.PropertyGrid(self._tabs,
style=wx.propgrid.PG_BOLD_MODIFIED)
self._pg.Bind(wx.propgrid.EVT_PG_CHANGED, self._mem_prop_changed)
self._tabs.InsertPage(0, self._pg, 'Values')
self._tabs.InsertPage(0, self._pg, _('Values'))
page_index = 0
self._extra_page = None
self._dv_page = None
Expand Down
3 changes: 2 additions & 1 deletion chirp/wxui/query_sources.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,8 @@ def build(self):
else:
self._limit_onlyworking = True
self._onlyworkingfilter = wx.CheckBox(panel,
label=('Only working repeaters'))
label=_('Only working repeaters')
)
self._onlyworkingfilter.SetValue(self._limit_onlyworking)
CONF.set_bool('workingstatus', self._limit_onlyworking, self._section)
self.Bind(wx.EVT_CHECKBOX, self._select_workingstatus,
Expand Down

0 comments on commit 9e6cc00

Please sign in to comment.