Skip to content

Commit

Permalink
fix(*): use ellipsis (…) instead of three dots (...)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cogitri committed Mar 9, 2019
1 parent 3016e40 commit 76667ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion data/com.github.Cogitri.gxi.appdata.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</release>
<release version="0.4.6" date="2019-01-30">
<description>
<p>Fix hangs during startup, add 'Replace...' button and shortcut. Adds an option to visually draw spaces/tabs</p>
<p>Fix hangs during startup, add 'Replace' button and shortcut. Adds an option to visually draw spaces/tabs</p>
</description>
</release>
<release version="0.4.5" date="2019-01-26">
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ fn main() {
}));

application.connect_shutdown(move |_| {
debug!("{}", gettext("Shutting down..."));
debug!("{}", gettext("Shutting down"));
});

application.run(&args().collect::<Vec<_>>());
Expand Down
6 changes: 3 additions & 3 deletions src/ui/gxi.glade
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="action_name">app.save_as</property>
<property name="text" translatable="yes">Save As...</property>
<property name="text" translatable="yes">Save As</property>
</object>
<packing>
<property name="expand">False</property>
Expand Down Expand Up @@ -58,7 +58,7 @@
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="action_name">app.find</property>
<property name="text" translatable="yes">Find...</property>
<property name="text" translatable="yes">Find</property>
</object>
<packing>
<property name="expand">False</property>
Expand All @@ -72,7 +72,7 @@
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="action_name">app.replace</property>
<property name="text" translatable="yes">Replace...</property>
<property name="text" translatable="yes">Replace</property>
</object>
<packing>
<property name="expand">False</property>
Expand Down

0 comments on commit 76667ff

Please sign in to comment.