Skip to content

Commit fbb8d56

Browse files
authored
MainWindow: Fix missing gettext (#1611)
1 parent aa855bc commit fbb8d56

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MainWindow.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1072,8 +1072,8 @@ namespace Scratch {
10721072
open_folder (workdir);
10731073
clone_dialog.destroy ();
10741074
var message_dialog = new Granite.MessageDialog.with_image_from_icon_name (
1075-
"Repository %s successfully cloned".printf (uri),
1076-
"Local repository working directory is %s".printf (workdir.get_uri ()),
1075+
_("Repository %s successfully cloned").printf (uri),
1076+
_("Local repository working directory is %s").printf (workdir.get_uri ()),
10771077
"dialog-information",
10781078
Gtk.ButtonsType.CLOSE
10791079
) {
@@ -1084,7 +1084,7 @@ namespace Scratch {
10841084
} else {
10851085
clone_dialog.hide ();
10861086
var message_dialog = new Granite.MessageDialog.with_image_from_icon_name (
1087-
"Unable to clone %s".printf (uri),
1087+
_("Unable to clone %s").printf (uri),
10881088
error,
10891089
"dialog-error",
10901090
Gtk.ButtonsType.CLOSE

0 commit comments

Comments
 (0)