Skip to content

Commit

Permalink
Merge pull request #857 from Gliese852/fix-some-translations
Browse files Browse the repository at this point in the history
Fix things regarding translations
  • Loading branch information
boltgolt authored Feb 1, 2025
2 parents e87a99b + a7bd731 commit a2eabc9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions howdy-gtk/src/main.glade
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
</child>
<child>
<object class="GtkButton" id="addbutton">
<property name="label">Add</property>
<property name="label" translatable="yes">Add</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
Expand All @@ -155,7 +155,7 @@
</child>
<child>
<object class="GtkButton" id="deletebutton">
<property name="label">Delete</property>
<property name="label" translatable="yes">Delete</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
Expand Down
4 changes: 2 additions & 2 deletions howdy/src/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@

# Add an argument for the command
parser.add_argument(
_("command"),
"command",
help=_("The command option to execute, can be one of the following: add, clear, config, disable, list, remove, snapshot, set, test or version."),
metavar="command",
choices=["add", "clear", "config", "disable", "list", "remove", "set", "snapshot", "test", "version"])

# Add an argument for the extra arguments of disable and remove
parser.add_argument(
_("arguments"),
"arguments",
help=_("Optional arguments for the add, disable, remove and set commands."),
nargs="*")

Expand Down

0 comments on commit a2eabc9

Please sign in to comment.