Skip to content

Commit

Permalink
UI: Mark some strings translatable
Browse files Browse the repository at this point in the history
- Listen to your mic
- Icon by
- Changelog
  • Loading branch information
yakushabb committed May 22, 2023
1 parent dbfada9 commit d741d38
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/gtk/main-menu.ui
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<attribute name="action">app.opendebuglog</attribute>
</item>
<item>
<attribute name="label" translatable="no">Changelog</attribute>
<attribute name="label" translatable="yes">Changelog</attribute>
<attribute name="action">app.open_changelog</attribute>
</item>
<item>
Expand Down
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def on_about_action(self, widget, k):
application_name='Whisper',
website='https://github.com/mijorus/whisper',
issue_url='https://github.com/mijorus/whisper/issues',
comments='Listen to your mic',
comments=_('Listen to your mic'),
application_icon='it.mijorus.whisper',
developer_name='Lorenzo Paderi',
version=self.version,
Expand All @@ -108,7 +108,7 @@ def on_about_action(self, widget, k):
)

about.set_translator_credits(_("translator_credits"))
about.add_credit_section('Icon by', ['Jakub Steiner (jimmac)'])
about.add_credit_section(_('Icon by'), ['Jakub Steiner (jimmac)'])

about.present()

Expand Down

0 comments on commit d741d38

Please sign in to comment.