summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Drąg <piotrdrag@gmail.com>2015-09-18 09:47:21 +0200
committerPiotr Drąg <piotrdrag@gmail.com>2015-09-18 09:47:21 +0200
commit076aa0592a0a32766b6b743c54026a2f7ef496e8 (patch)
tree0a0af8d62c52590ae6da1087a0a21bb0d207b2c2
parent73591f77cbc752b00f13b8b4e558d8c7bd5d3f64 (diff)
downloadcheese-076aa0592a0a32766b6b743c54026a2f7ef496e8.tar.gz
Mark forgotten strings for translation
Not a string freeze break.
-rw-r--r--src/cheese-window.vala6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/cheese-window.vala b/src/cheese-window.vala
index 24a876f4..2d2b815c 100644
--- a/src/cheese-window.vala
+++ b/src/cheese-window.vala
@@ -288,11 +288,11 @@ public class Cheese.MainWindow : Gtk.ApplicationWindow
var error_dialog = new MessageDialog (this,
Gtk.DialogFlags.MODAL | Gtk.DialogFlags.DESTROY_WITH_PARENT,
Gtk.MessageType.ERROR, Gtk.ButtonsType.NONE,
- "Could not delete %s", file.get_path ());
+ _("Could not delete %s"), file.get_path ());
error_dialog.add_button (_("_Cancel"), Gtk.ResponseType.CANCEL);
- error_dialog.add_button ("Skip", DeleteResponse.SKIP);
- error_dialog.add_button ("Skip all", DeleteResponse.SKIP_ALL);
+ error_dialog.add_button (_("Skip"), DeleteResponse.SKIP);
+ error_dialog.add_button (_("Skip all"), DeleteResponse.SKIP_ALL);
error_response = error_dialog.run ();
if (error_response == DeleteResponse.SKIP_ALL) {