[gimp] Even shorter translatable messags in file-pdf-save.c
- From: Alexandre Prokoudine <aprokoudine src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] Even shorter translatable messags in file-pdf-save.c
- Date: Sun, 27 Nov 2011 14:09:16 +0000 (UTC)
commit 0b1f62f5cee6cad93e46640a1b2366bcd19a8cd7
Author: Alexandre Prokoudine <alexandre prokoudine gmail com>
Date: Sun Nov 27 18:08:45 2011 +0400
Even shorter translatable messags in file-pdf-save.c
plug-ins/common/file-pdf-save.c | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/plug-ins/common/file-pdf-save.c b/plug-ins/common/file-pdf-save.c
index 1163d83..1fd2fbf 100644
--- a/plug-ins/common/file-pdf-save.c
+++ b/plug-ins/common/file-pdf-save.c
@@ -247,7 +247,7 @@ query (void)
{GIMP_PDB_DRAWABLE, "drawable", "Input drawable"},
{GIMP_PDB_INT32, "convert", "Convert bitmaps to vector graphics where possible. TRUE or FALSE"},
{GIMP_PDB_INT32, "ignore", "Omit hidden layers and layers with zero opacity. TRUE or FALSE"},
- {GIMP_PDB_INT32, "apply-masks", "Apply layer masks before saving. TRUE or FALSE (Keeping the masks will not change the final result)"},
+ {GIMP_PDB_INT32, "apply-masks", "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)"},
{GIMP_PDB_STRING, "filename", "The name of the file to save the image in"},
{GIMP_PDB_STRING, "raw-filename", "The name of the file to save the image in"}
};
@@ -259,7 +259,7 @@ query (void)
{GIMP_PDB_INT32, "count", "The amount of images entered (This will be the amount of pages). 1 <= count <= MAX_PAGE_COUNT"},
{GIMP_PDB_INT32, "convert", "Convert bitmaps to vector graphics where possible. TRUE or FALSE"},
{GIMP_PDB_INT32, "ignore", "Omit hidden layers and layers with zero opacity. TRUE or FALSE"},
- {GIMP_PDB_INT32, "apply-masks", "Apply layer masks before saving. TRUE or FALSE (Keeping the masks will not change the final result)"},
+ {GIMP_PDB_INT32, "apply-masks", "Apply layer masks before saving. TRUE or FALSE (Keeping them will not change the output)"},
{GIMP_PDB_STRING, "filename", "The name of the file to save the image in"},
{GIMP_PDB_STRING, "raw-filename", "The name of the file to save the image in"}
};
@@ -715,7 +715,7 @@ gui_single (void)
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (convert_c), optimize.convert);
gtk_box_pack_end (GTK_BOX (vbox), convert_c, TRUE, TRUE, 0);
- apply_c = gtk_check_button_new_with_label ("Apply layer masks before saving (keeping the masks will not change the final result)");
+ apply_c = gtk_check_button_new_with_label ("Apply layer masks before saving (keeping the masks will not change the output)");
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (apply_c), optimize.apply_masks);
gtk_box_pack_end (GTK_BOX (vbox), apply_c, TRUE, TRUE, 0);
@@ -770,7 +770,7 @@ gui_multi (void)
gtk_container_set_border_width (GTK_CONTAINER (window), 12);
file_hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 5);
- file_label = gtk_label_new ("Choose the place to save the file in:");
+ file_label = gtk_label_new ("Save to:");
file_entry = gtk_entry_new ();
if (file_name != NULL)
gtk_entry_set_text (GTK_ENTRY (file_entry), file_name);
@@ -831,7 +831,7 @@ gui_multi (void)
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (convert_c), optimize.convert);
gtk_box_pack_end (GTK_BOX (vbox), convert_c, FALSE, FALSE, 0);
- apply_c = gtk_check_button_new_with_label ("Apply layer masks before saving (keeping the masks will not change the final result)");
+ apply_c = gtk_check_button_new_with_label ("Apply layer masks before saving (keeping them will not change the output)");
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (apply_c), optimize.apply_masks);
gtk_box_pack_end (GTK_BOX (vbox), apply_c, FALSE, FALSE, 0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]