[gthumb] Fix interpunction in translatable strings
- From: Piotr Drąg <piotrdrag src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gthumb] Fix interpunction in translatable strings
- Date: Sun, 22 Mar 2015 15:42:17 +0000 (UTC)
commit 0c09ea7c867efa39392ccd4346288b049ed1a974
Author: Piotr Drąg <piotrdrag gmail com>
Date: Sun Mar 22 16:39:58 2015 +0100
Fix interpunction in translatable strings
extensions/file_manager/callbacks.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/extensions/file_manager/callbacks.c b/extensions/file_manager/callbacks.c
index 5f200d0..892ac8b 100644
--- a/extensions/file_manager/callbacks.c
+++ b/extensions/file_manager/callbacks.c
@@ -776,16 +776,16 @@ fm__gth_browser_folder_tree_drag_data_received_cb (GthBrowser *browser,
if (n_files == 1) {
char *filename = _g_file_get_display_name ((GFile *) file_list->data);
if (action == GDK_ACTION_MOVE)
- message = g_strdup_printf (_("Do you want to move \"%s\" to \"%s\" ?"),
filename, g_file_info_get_display_name (destination->info));
+ message = g_strdup_printf (_("Do you want to move \"%s\" to \"%s\"?"),
filename, g_file_info_get_display_name (destination->info));
else
- message = g_strdup_printf (_("Do you want to copy \"%s\" to \"%s\" ?"),
filename, g_file_info_get_display_name (destination->info));
+ message = g_strdup_printf (_("Do you want to copy \"%s\" to \"%s\"?"),
filename, g_file_info_get_display_name (destination->info));
g_free (filename);
}
else {
if (action == GDK_ACTION_MOVE)
- message = g_strdup_printf (_("Do you want to move the dragged files to \"%s\"
?"), g_file_info_get_display_name (destination->info));
+ message = g_strdup_printf (_("Do you want to move the dragged files to
\"%s\"?"), g_file_info_get_display_name (destination->info));
else
- message = g_strdup_printf (_("Do you want to copy the dragged files to \"%s\"
?"), g_file_info_get_display_name (destination->info));
+ message = g_strdup_printf (_("Do you want to copy the dragged files to
\"%s\"?"), g_file_info_get_display_name (destination->info));
}
dialog = _gtk_message_dialog_new (GTK_WINDOW (browser),
GTK_DIALOG_MODAL,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]