mirror of https://github.com/GNOME/gimp.git
Bill Skaggs <weskaggs@primate.ucdavis.edu>
* plug-ins: finish implementing HIG capitalization in dialogs. Scripts remain to be done. More progress on bug #123699.
This commit is contained in:
parent
5e2c4257bb
commit
1ca000333c
|
@ -1,3 +1,8 @@
|
|||
2004-06-21 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* plug-ins: finish implementing HIG capitalization in dialogs.
|
||||
Scripts remain to be done. More progress on bug #123699.
|
||||
|
||||
2004-06-21 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/widgets/widgets-enums.[ch] (enum GimpCursorFormat): removed
|
||||
|
@ -34,7 +39,7 @@
|
|||
2004-06-20 Bill Skaggs <weskaggs@primate.ucdavis.edu>
|
||||
|
||||
* plug-ins/common/url.c: if url does not end in a recognized
|
||||
extension, open it as an unnamed image. Fixes bug # 118811.
|
||||
extension, open it as an unnamed image. Fixes bug #118811.
|
||||
|
||||
2004-06-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
|
|
|
@ -164,11 +164,11 @@ static const gchar *ctext[][2] =
|
|||
|
||||
static const gchar *etext[][2] =
|
||||
{
|
||||
{ N_("Red _Frequency:"), N_("Hue _Frequency:") },
|
||||
{ N_("Red _frequency:"), N_("Hue _frequency:") },
|
||||
{ N_("Green fr_equency:"), N_("Saturation fr_equency:") },
|
||||
{ N_("Blue freq_uency:"), N_("Luminosity freq_uency:") },
|
||||
|
||||
{ N_("Red _Phaseshift:"), N_("Hue _Phaseshift:") },
|
||||
{ N_("Red _phaseshift:"), N_("Hue _phaseshift:") },
|
||||
{ N_("Green ph_aseshift:"), N_("Saturation ph_aseshift:") },
|
||||
{ N_("Blue pha_seshift:"), N_("Luminosity pha_seshift:") },
|
||||
};
|
||||
|
|
|
@ -686,7 +686,7 @@ run_save_dialog (Config *config)
|
|||
|
||||
/* GLib types
|
||||
*/
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_Use GLib Types (guint8*)"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_Use GLib types (guint8*)"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle),
|
||||
config->glib_types);
|
||||
|
|
|
@ -1309,7 +1309,7 @@ bender_new_dialog (GimpDrawable *drawable)
|
|||
gtk_widget_show (hbox);
|
||||
|
||||
/* The preview button */
|
||||
button = gtk_button_new_with_mnemonic (_("_Preview Once"));
|
||||
button = gtk_button_new_with_mnemonic (_("_Preview once"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (button);
|
||||
|
||||
|
|
|
@ -1223,7 +1223,7 @@ mng_save_dialog (gint32 image_id)
|
|||
|
||||
gtk_widget_show (toggle);
|
||||
|
||||
toggle = gtk_check_button_new_with_label (_("Save Background Color"));
|
||||
toggle = gtk_check_button_new_with_label (_("Save background color"));
|
||||
gtk_widget_set_sensitive (toggle, FALSE);
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
g_signal_connect (toggle, "toggled",
|
||||
|
@ -1234,7 +1234,7 @@ mng_save_dialog (gint32 image_id)
|
|||
|
||||
gtk_widget_show (toggle);
|
||||
|
||||
toggle = gtk_check_button_new_with_label (_("Save Gamma"));
|
||||
toggle = gtk_check_button_new_with_label (_("Save gamma"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
g_signal_connect (toggle, "toggled",
|
||||
G_CALLBACK (gimp_toggle_button_update),
|
||||
|
@ -1244,7 +1244,7 @@ mng_save_dialog (gint32 image_id)
|
|||
|
||||
gtk_widget_show (toggle);
|
||||
|
||||
toggle = gtk_check_button_new_with_label (_("Save Resolution"));
|
||||
toggle = gtk_check_button_new_with_label (_("Save resolution"));
|
||||
gtk_widget_set_sensitive (toggle, FALSE);
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
g_signal_connect (toggle, "toggled",
|
||||
|
@ -1255,7 +1255,7 @@ mng_save_dialog (gint32 image_id)
|
|||
|
||||
gtk_widget_show (toggle);
|
||||
|
||||
toggle = gtk_check_button_new_with_label (_("Save Creation Time"));
|
||||
toggle = gtk_check_button_new_with_label (_("Save creation time"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
g_signal_connect (toggle, "toggled",
|
||||
G_CALLBACK (gimp_toggle_button_update),
|
||||
|
@ -1278,8 +1278,8 @@ mng_save_dialog (gint32 image_id)
|
|||
_("JNG"), CHUNKS_JNG_D,
|
||||
NULL);
|
||||
else
|
||||
combo = gimp_int_combo_box_new (_("PNG + Delta PNG"), CHUNKS_PNG_D,
|
||||
_("JNG + Delta PNG"), CHUNKS_JNG_D,
|
||||
combo = gimp_int_combo_box_new (_("PNG + delta PNG"), CHUNKS_PNG_D,
|
||||
_("JNG + delta PNG"), CHUNKS_JNG_D,
|
||||
_("All PNG"), CHUNKS_PNG,
|
||||
_("All JNG"), CHUNKS_JNG,
|
||||
NULL);
|
||||
|
@ -1293,7 +1293,7 @@ mng_save_dialog (gint32 image_id)
|
|||
|
||||
gtk_widget_set_sensitive (combo, FALSE);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||
_("Default Chunks Type:"), 0.0, 0.5,
|
||||
_("Default chunks type:"), 0.0, 0.5,
|
||||
combo, 1, FALSE);
|
||||
|
||||
combo = gimp_int_combo_box_new (_("Combine"), DISPOSE_COMBINE,
|
||||
|
@ -1308,7 +1308,7 @@ mng_save_dialog (gint32 image_id)
|
|||
&mng_data.default_dispose);
|
||||
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||
_("Default Frame Disposal:"), 0.0, 0.5,
|
||||
_("Default frame disposal:"), 0.0, 0.5,
|
||||
combo, 1, FALSE);
|
||||
|
||||
scale_adj = gtk_adjustment_new (mng_data.compression_level,
|
||||
|
@ -1320,7 +1320,7 @@ mng_save_dialog (gint32 image_id)
|
|||
gtk_scale_set_digits (GTK_SCALE (scale), 0);
|
||||
gtk_range_set_update_policy (GTK_RANGE (scale), GTK_UPDATE_DELAYED);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
||||
_("PNG Compression Level:"), 0.0, 0.9,
|
||||
_("PNG compression level:"), 0.0, 0.9,
|
||||
scale, 1, FALSE);
|
||||
|
||||
g_signal_connect (scale_adj, "value_changed",
|
||||
|
@ -1342,7 +1342,7 @@ mng_save_dialog (gint32 image_id)
|
|||
gtk_range_set_update_policy (GTK_RANGE (scale), GTK_UPDATE_DELAYED);
|
||||
gtk_widget_set_sensitive (scale, FALSE);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
||||
_("JPEG Compression Quality:"), 0.0, 0.9,
|
||||
_("JPEG compression quality:"), 0.0, 0.9,
|
||||
scale, 1, FALSE);
|
||||
|
||||
g_signal_connect (scale_adj, "value_changed",
|
||||
|
@ -1359,7 +1359,7 @@ mng_save_dialog (gint32 image_id)
|
|||
gtk_range_set_update_policy (GTK_RANGE (scale), GTK_UPDATE_DELAYED);
|
||||
gtk_widget_set_sensitive (scale, FALSE);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 4,
|
||||
_("JPEG Smoothing Factor:"), 0.0, 0.9,
|
||||
_("JPEG smoothing factor:"), 0.0, 0.9,
|
||||
scale, 1, FALSE);
|
||||
|
||||
g_signal_connect (scale_adj, "value_changed",
|
||||
|
@ -1369,7 +1369,7 @@ mng_save_dialog (gint32 image_id)
|
|||
gtk_widget_show (vbox);
|
||||
gtk_widget_show (frame);
|
||||
|
||||
frame = gimp_frame_new (_("Animated MNG Options"));
|
||||
frame = gimp_frame_new (_("Animated MNG options"));
|
||||
gtk_box_pack_start (GTK_BOX (main_vbox), frame, TRUE, TRUE, 0);
|
||||
|
||||
vbox = gtk_vbox_new (FALSE, 6);
|
||||
|
@ -1389,7 +1389,7 @@ mng_save_dialog (gint32 image_id)
|
|||
hbox = gtk_hbox_new (FALSE, 4);
|
||||
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
||||
|
||||
label = gtk_label_new (_("Default Frame Delay:"));
|
||||
label = gtk_label_new (_("Default frame delay:"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
|
|
@ -1021,7 +1021,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins Date"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins date"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_DATE_COLUMN,
|
||||
|
@ -1029,7 +1029,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu Path"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu path"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_PATH_COLUMN,
|
||||
|
@ -1037,7 +1037,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image Types"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image types"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_IMAGE_TYPES_COLUMN,
|
||||
|
@ -1079,7 +1079,7 @@ gimp_plugin_desc (void)
|
|||
plugindesc->tree_view = GTK_TREE_VIEW (tree_view);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu Path/Name"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu path/name"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_PATH_NAME_COLUMN,
|
||||
|
@ -1087,7 +1087,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins Date"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins date"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_DATE_COLUMN,
|
||||
|
@ -1095,7 +1095,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image Types"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image types"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_IMAGE_TYPES_COLUMN,
|
||||
|
@ -1116,7 +1116,7 @@ gimp_plugin_desc (void)
|
|||
G_CALLBACK (tree_store_select_callback),
|
||||
plugindesc);
|
||||
|
||||
label = gtk_label_new (_("Tree View"));
|
||||
label = gtk_label_new (_("Tree view"));
|
||||
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), swindow, label);
|
||||
gtk_container_add (GTK_CONTAINER (swindow), tree_view);
|
||||
|
||||
|
|
|
@ -1021,7 +1021,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins Date"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins date"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_DATE_COLUMN,
|
||||
|
@ -1029,7 +1029,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu Path"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu path"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_PATH_COLUMN,
|
||||
|
@ -1037,7 +1037,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image Types"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image types"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_IMAGE_TYPES_COLUMN,
|
||||
|
@ -1079,7 +1079,7 @@ gimp_plugin_desc (void)
|
|||
plugindesc->tree_view = GTK_TREE_VIEW (tree_view);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu Path/Name"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu path/name"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_PATH_NAME_COLUMN,
|
||||
|
@ -1087,7 +1087,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins Date"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins date"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_DATE_COLUMN,
|
||||
|
@ -1095,7 +1095,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image Types"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image types"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_IMAGE_TYPES_COLUMN,
|
||||
|
@ -1116,7 +1116,7 @@ gimp_plugin_desc (void)
|
|||
G_CALLBACK (tree_store_select_callback),
|
||||
plugindesc);
|
||||
|
||||
label = gtk_label_new (_("Tree View"));
|
||||
label = gtk_label_new (_("Tree view"));
|
||||
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), swindow, label);
|
||||
gtk_container_add (GTK_CONTAINER (swindow), tree_view);
|
||||
|
||||
|
|
|
@ -1572,8 +1572,8 @@ save_dialog (gint32 image_ID,
|
|||
NULL, 0,
|
||||
gimp_standard_help_func, "file-png-save-defaults",
|
||||
|
||||
_("_Load Defaults"), RESPONSE_LOAD_DEFAULTS,
|
||||
_("_Save Defaults"), RESPONSE_SAVE_DEFAULTS,
|
||||
_("_Load defaults"), RESPONSE_LOAD_DEFAULTS,
|
||||
_("_Save defaults"), RESPONSE_SAVE_DEFAULTS,
|
||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
||||
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
||||
|
||||
|
@ -1605,7 +1605,7 @@ save_dialog (gint32 image_ID,
|
|||
&pngvals.interlaced);
|
||||
|
||||
pg.bkgd = toggle =
|
||||
gtk_check_button_new_with_mnemonic (_("Save _Background Color"));
|
||||
gtk_check_button_new_with_mnemonic (_("Save _background color"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 1, 2, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), pngvals.bkgd);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1613,7 +1613,7 @@ save_dialog (gint32 image_ID,
|
|||
g_signal_connect (toggle, "toggled",
|
||||
G_CALLBACK (gimp_toggle_button_update), &pngvals.bkgd);
|
||||
|
||||
pg.gama = toggle = gtk_check_button_new_with_mnemonic (_("Save _Gamma"));
|
||||
pg.gama = toggle = gtk_check_button_new_with_mnemonic (_("Save _gamma"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 2, 3, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), pngvals.gama);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1622,7 +1622,7 @@ save_dialog (gint32 image_ID,
|
|||
G_CALLBACK (gimp_toggle_button_update), &pngvals.gama);
|
||||
|
||||
pg.offs = toggle =
|
||||
gtk_check_button_new_with_mnemonic (_("Save Layer O_ffset"));
|
||||
gtk_check_button_new_with_mnemonic (_("Save layer o_ffset"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 3, 4, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), pngvals.offs);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1631,7 +1631,7 @@ save_dialog (gint32 image_ID,
|
|||
G_CALLBACK (gimp_toggle_button_update),
|
||||
&pngvals.offs);
|
||||
|
||||
pg.phys = toggle = gtk_check_button_new_with_mnemonic (_("Save _Resolution"));
|
||||
pg.phys = toggle = gtk_check_button_new_with_mnemonic (_("Save _resolution"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 4, 5, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), pngvals.phys);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1640,7 +1640,7 @@ save_dialog (gint32 image_ID,
|
|||
G_CALLBACK (gimp_toggle_button_update), &pngvals.phys);
|
||||
|
||||
pg.time = toggle =
|
||||
gtk_check_button_new_with_mnemonic (_("Save Creation _Time"));
|
||||
gtk_check_button_new_with_mnemonic (_("Save creation _time"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 5, 6, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), pngvals.time);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1648,7 +1648,7 @@ save_dialog (gint32 image_ID,
|
|||
g_signal_connect (toggle, "toggled",
|
||||
G_CALLBACK (gimp_toggle_button_update), &pngvals.time);
|
||||
|
||||
pg.comment = toggle = gtk_check_button_new_with_mnemonic (_("Save Comme_nt"));
|
||||
pg.comment = toggle = gtk_check_button_new_with_mnemonic (_("Save comme_nt"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 6, 7, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), pngvals.comment);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1663,7 +1663,7 @@ save_dialog (gint32 image_ID,
|
|||
G_CALLBACK (gimp_toggle_button_update), &pngvals.comment);
|
||||
|
||||
pg.save_transp_pixels = toggle =
|
||||
gtk_check_button_new_with_mnemonic (_("Save Color _Values From Transparent Pixels"));
|
||||
gtk_check_button_new_with_mnemonic (_("Save color _values from transparent pixels"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 7, 8, GTK_FILL, 0, 0, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle),
|
||||
alpha && pngvals.save_transp_pixels);
|
||||
|
@ -1676,7 +1676,7 @@ save_dialog (gint32 image_ID,
|
|||
|
||||
pg.compression_level = scale =
|
||||
gimp_scale_entry_new (GTK_TABLE (table), 0, 8,
|
||||
_("Co_mpression Level:"),
|
||||
_("Co_mpression level:"),
|
||||
SCALE_WIDTH, 0,
|
||||
pngvals.compression_level,
|
||||
0.0, 9.0, 1.0, 1.0, 0, TRUE, 0.0, 0.0,
|
||||
|
|
|
@ -923,7 +923,7 @@ save_dialog (void)
|
|||
NULL);
|
||||
|
||||
/* file save type */
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Data Formatting"),
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Data formatting"),
|
||||
G_CALLBACK (gimp_radio_button_update),
|
||||
&psvals.raw, psvals.raw,
|
||||
|
||||
|
|
|
@ -2893,7 +2893,7 @@ load_dialog (void)
|
|||
gtk_box_pack_start (GTK_BOX (main_vbox), hbox, FALSE, FALSE, 0);
|
||||
gtk_widget_show (hbox);
|
||||
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Text Antialiasing"),
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Text antialiasing"),
|
||||
G_CALLBACK (gimp_radio_button_update),
|
||||
&plvals.textalpha, plvals.textalpha,
|
||||
|
||||
|
@ -2905,7 +2905,7 @@ load_dialog (void)
|
|||
gtk_box_pack_start (GTK_BOX (hbox), frame, FALSE, TRUE, 0);
|
||||
gtk_widget_show (frame);
|
||||
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Graphic Antialiasing"),
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Graphic antialiasing"),
|
||||
G_CALLBACK (gimp_radio_button_update),
|
||||
&plvals.graphicsalpha, plvals.graphicsalpha,
|
||||
|
||||
|
@ -3015,7 +3015,7 @@ save_dialog (void)
|
|||
spinbutton = gimp_spin_button_new (&vals->adjustment[2], psvals.x_offset,
|
||||
0.0, GIMP_MAX_IMAGE_SIZE, 1, 10, 0, 1, 2);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
||||
_("_X Offset:"), 0.0, 0.5,
|
||||
_("_X offset:"), 0.0, 0.5,
|
||||
spinbutton, 1, FALSE);
|
||||
g_signal_connect (vals->adjustment[2], "value_changed",
|
||||
G_CALLBACK (gimp_double_adjustment_update),
|
||||
|
@ -3024,13 +3024,13 @@ save_dialog (void)
|
|||
spinbutton = gimp_spin_button_new (&vals->adjustment[3], psvals.y_offset,
|
||||
0.0, GIMP_MAX_IMAGE_SIZE, 1, 10, 0, 1, 2);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
||||
_("_Y Offset:"), 0.0, 0.5,
|
||||
_("_Y offset:"), 0.0, 0.5,
|
||||
spinbutton, 1, FALSE);
|
||||
g_signal_connect (vals->adjustment[3], "value_changed",
|
||||
G_CALLBACK (gimp_double_adjustment_update),
|
||||
&psvals.y_offset);
|
||||
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_Keep Aspect Ratio"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_Keep aspect ratio"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), psvals.keep_ratio);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -3082,7 +3082,7 @@ save_dialog (void)
|
|||
vbox = gtk_vbox_new (FALSE, 6);
|
||||
gtk_container_add (GTK_CONTAINER (frame), vbox);
|
||||
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_PostScript Level 2"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_PostScript level 2"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), vals->level);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -3121,7 +3121,7 @@ save_dialog (void)
|
|||
spinbutton = gimp_spin_button_new (&adj, psvals.preview_size,
|
||||
0, 1024, 1, 10, 0, 1, 0);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||
_("Preview _Size:"), 1.0, 0.5,
|
||||
_("Preview _size:"), 1.0, 0.5,
|
||||
spinbutton, 1, FALSE);
|
||||
gtk_widget_show (spinbutton);
|
||||
|
||||
|
|
|
@ -1373,7 +1373,7 @@ p_smp_dialog (void)
|
|||
gimp_standard_help_func, HELP_ID,
|
||||
|
||||
GIMP_STOCK_RESET, RESPONSE_RESET,
|
||||
_("Get Sample Colors"), RESPONSE_GET_COLORS,
|
||||
_("Get sample colors"), RESPONSE_GET_COLORS,
|
||||
GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE,
|
||||
_("Apply"), GTK_RESPONSE_APPLY,
|
||||
|
||||
|
@ -1419,12 +1419,12 @@ p_smp_dialog (void)
|
|||
|
||||
gimp_int_combo_box_prepend (GIMP_INT_COMBO_BOX (combo),
|
||||
GIMP_INT_STORE_VALUE, SMP_INV_GRADIENT,
|
||||
GIMP_INT_STORE_LABEL, _("From Reverse Gradient"),
|
||||
GIMP_INT_STORE_LABEL, _("From reverse gradient"),
|
||||
GIMP_INT_STORE_STOCK_ID, GIMP_STOCK_GRADIENT,
|
||||
-1);
|
||||
gimp_int_combo_box_prepend (GIMP_INT_COMBO_BOX (combo),
|
||||
GIMP_INT_STORE_VALUE, SMP_GRADIENT,
|
||||
GIMP_INT_STORE_LABEL, _("From Gradient"),
|
||||
GIMP_INT_STORE_LABEL, _("From gradient"),
|
||||
GIMP_INT_STORE_STOCK_ID, GIMP_STOCK_GRADIENT,
|
||||
-1);
|
||||
|
||||
|
@ -1445,7 +1445,7 @@ p_smp_dialog (void)
|
|||
gtk_widget_show (hbox);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Show Selection"));
|
||||
check_button = gtk_check_button_new_with_label (_("Show selection"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
@ -1456,7 +1456,7 @@ p_smp_dialog (void)
|
|||
g_di.dst_show_selection);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Show Color"));
|
||||
check_button = gtk_check_button_new_with_label (_("Show color"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
@ -1472,7 +1472,7 @@ p_smp_dialog (void)
|
|||
gtk_widget_show (hbox);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Show Selection"));
|
||||
check_button = gtk_check_button_new_with_label (_("Show selection"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
@ -1483,7 +1483,7 @@ p_smp_dialog (void)
|
|||
g_di.sample_show_selection);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Show Color"));
|
||||
check_button = gtk_check_button_new_with_label (_("Show color"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
@ -1596,7 +1596,7 @@ p_smp_dialog (void)
|
|||
gtk_table_attach (GTK_TABLE (table), hbox, 0, 2, l_ty, l_ty+1,
|
||||
GTK_FILL, 0, 0, 0);
|
||||
|
||||
label = gtk_label_new (_("Input Levels:"));
|
||||
label = gtk_label_new (_("Input levels:"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
@ -1686,7 +1686,7 @@ p_smp_dialog (void)
|
|||
gtk_widget_show (hbox);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Hold Intensity"));
|
||||
check_button = gtk_check_button_new_with_label (_("Hold intensity"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
@ -1697,7 +1697,7 @@ p_smp_dialog (void)
|
|||
g_values.hold_inten);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Original Intensity"));
|
||||
check_button = gtk_check_button_new_with_label (_("Original intensity"));
|
||||
g_di.orig_inten_button = check_button;
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_set_sensitive (g_di.orig_inten_button, g_values.hold_inten);
|
||||
|
@ -1715,7 +1715,7 @@ p_smp_dialog (void)
|
|||
gtk_widget_show (hbox);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Use Subcolors"));
|
||||
check_button = gtk_check_button_new_with_label (_("Use subcolors"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
@ -1726,7 +1726,7 @@ p_smp_dialog (void)
|
|||
g_values.rnd_subcolors);
|
||||
|
||||
/* check button */
|
||||
check_button = gtk_check_button_new_with_label (_("Smooth Samples"));
|
||||
check_button = gtk_check_button_new_with_label (_("Smooth samples"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), check_button, FALSE, FALSE, 0);
|
||||
gtk_widget_show (check_button);
|
||||
|
||||
|
|
|
@ -772,7 +772,7 @@ load_dialog (const gchar *filename)
|
|||
G_CALLBACK (load_dialog_ratio_callback),
|
||||
NULL);
|
||||
|
||||
label = gtk_label_new_with_mnemonic (_("_X Ratio:"));
|
||||
label = gtk_label_new_with_mnemonic (_("_X ratio:"));
|
||||
gtk_label_set_mnemonic_widget (GTK_LABEL (label), spinbutton);
|
||||
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3,
|
||||
|
@ -794,7 +794,7 @@ load_dialog (const gchar *filename)
|
|||
G_CALLBACK (load_dialog_ratio_callback),
|
||||
NULL);
|
||||
|
||||
label = gtk_label_new_with_mnemonic (_("_Y Ratio:"));
|
||||
label = gtk_label_new_with_mnemonic (_("_Y ratio:"));
|
||||
gtk_label_set_mnemonic_widget (GTK_LABEL (label), spinbutton);
|
||||
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
|
||||
gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4,
|
||||
|
@ -839,7 +839,7 @@ load_dialog (const gchar *filename)
|
|||
(gpointer) filename);
|
||||
|
||||
/* Path Import */
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("Import _Paths"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("Import _paths"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 2, 5, 6,
|
||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -858,7 +858,7 @@ load_dialog (const gchar *filename)
|
|||
G_CALLBACK (gimp_toggle_button_sensitive_update),
|
||||
NULL);
|
||||
|
||||
toggle2 = gtk_check_button_new_with_mnemonic (_("Merge Imported Paths"));
|
||||
toggle2 = gtk_check_button_new_with_mnemonic (_("Merge imported paths"));
|
||||
gtk_table_attach (GTK_TABLE (table), toggle2, 0, 2, 6, 7,
|
||||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||
gtk_widget_set_sensitive (toggle2, load_vals.import);
|
||||
|
|
|
@ -1023,7 +1023,6 @@ vpropagate_dialog (GimpImageBaseType image_type)
|
|||
GtkWidget *table;
|
||||
GtkWidget *toggle_vbox;
|
||||
GtkWidget *button;
|
||||
GtkWidget *sep;
|
||||
GtkObject *adj;
|
||||
GSList *group = NULL;
|
||||
gint index = 0;
|
||||
|
|
|
@ -1168,7 +1168,7 @@ save_dialog (gint32 drawable_ID)
|
|||
gtk_container_add (GTK_CONTAINER (frame), vbox);
|
||||
|
||||
/* X10 format */
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_X10 Format Bitmap"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_X10 format bitmap"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), xsvals.x10_format);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1188,7 +1188,7 @@ save_dialog (gint32 drawable_ID)
|
|||
gtk_entry_set_max_length (GTK_ENTRY (entry), MAX_PREFIX);
|
||||
gtk_entry_set_text (GTK_ENTRY (entry), xsvals.prefix);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||
_("_Identifier Prefix:"), 0.0, 0.5,
|
||||
_("_Identifier prefix:"), 0.0, 0.5,
|
||||
entry, 1, TRUE);
|
||||
g_signal_connect (entry, "changed",
|
||||
G_CALLBACK (prefix_entry_callback),
|
||||
|
@ -1210,7 +1210,7 @@ save_dialog (gint32 drawable_ID)
|
|||
#endif
|
||||
|
||||
/* hotspot toggle */
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_Write Hot Spot Values"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("_Write hot spot values"));
|
||||
gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), xsvals.use_hot);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1232,7 +1232,7 @@ save_dialog (gint32 drawable_ID)
|
|||
gimp_drawable_width (drawable_ID) - 1,
|
||||
1, 1, 1, 0, 0);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||
_("Hot Spot _X:"), 0.0, 0.5,
|
||||
_("Hot spot _X:"), 0.0, 0.5,
|
||||
spinbutton, 1, TRUE);
|
||||
g_signal_connect (adj, "value_changed",
|
||||
G_CALLBACK (gimp_int_adjustment_update),
|
||||
|
@ -1242,7 +1242,7 @@ save_dialog (gint32 drawable_ID)
|
|||
gimp_drawable_height (drawable_ID) - 1,
|
||||
1, 1, 1, 0, 0);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||
_("Hot Spot _Y:"), 0.0, 0.5,
|
||||
_("Hot spot _Y:"), 0.0, 0.5,
|
||||
spinbutton, 1, TRUE);
|
||||
g_signal_connect (adj, "value_changed",
|
||||
G_CALLBACK (gimp_int_adjustment_update),
|
||||
|
@ -1259,7 +1259,7 @@ save_dialog (gint32 drawable_ID)
|
|||
gtk_container_add (GTK_CONTAINER (frame), table);
|
||||
gtk_widget_show (table);
|
||||
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("W_rite Extra Mask File"));
|
||||
toggle = gtk_check_button_new_with_mnemonic (_("W_rite extra mask file"));
|
||||
gtk_table_attach_defaults (GTK_TABLE (table), toggle, 0, 2, 0, 1);
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), xsvals.write_mask);
|
||||
gtk_widget_show (toggle);
|
||||
|
@ -1272,7 +1272,7 @@ save_dialog (gint32 drawable_ID)
|
|||
gtk_entry_set_max_length (GTK_ENTRY (entry), MAX_MASK_EXT);
|
||||
gtk_entry_set_text (GTK_ENTRY (entry), xsvals.mask_ext);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||
_("_Mask File Extension:"), 0.0, 0.5,
|
||||
_("_Mask file extension:"), 0.0, 0.5,
|
||||
entry, 1, TRUE);
|
||||
g_signal_connect (entry, "changed",
|
||||
G_CALLBACK (mask_ext_entry_callback),
|
||||
|
|
|
@ -790,7 +790,7 @@ save_dialog (void)
|
|||
gtk_widget_show (table);
|
||||
|
||||
scale_data = gimp_scale_entry_new (GTK_TABLE (table), 0, 0,
|
||||
_("_Alpha Threshold:"), SCALE_WIDTH, 0,
|
||||
_("_Alpha threshold:"), SCALE_WIDTH, 0,
|
||||
xpmvals.threshold, 0, 255, 1, 8, 0,
|
||||
TRUE, 0, 0,
|
||||
NULL, NULL);
|
||||
|
|
|
@ -1021,7 +1021,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins Date"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins date"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_DATE_COLUMN,
|
||||
|
@ -1029,7 +1029,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu Path"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu path"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_PATH_COLUMN,
|
||||
|
@ -1037,7 +1037,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (list_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image Types"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image types"),
|
||||
renderer,
|
||||
"text",
|
||||
LIST_IMAGE_TYPES_COLUMN,
|
||||
|
@ -1079,7 +1079,7 @@ gimp_plugin_desc (void)
|
|||
plugindesc->tree_view = GTK_TREE_VIEW (tree_view);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu Path/Name"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Menu path/name"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_PATH_NAME_COLUMN,
|
||||
|
@ -1087,7 +1087,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins Date"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Ins date"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_DATE_COLUMN,
|
||||
|
@ -1095,7 +1095,7 @@ gimp_plugin_desc (void)
|
|||
gtk_tree_view_append_column (GTK_TREE_VIEW (tree_view), column);
|
||||
|
||||
renderer = gtk_cell_renderer_text_new ();
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image Types"),
|
||||
column = gtk_tree_view_column_new_with_attributes (_("Image types"),
|
||||
renderer,
|
||||
"text",
|
||||
TREE_IMAGE_TYPES_COLUMN,
|
||||
|
@ -1116,7 +1116,7 @@ gimp_plugin_desc (void)
|
|||
G_CALLBACK (tree_store_select_callback),
|
||||
plugindesc);
|
||||
|
||||
label = gtk_label_new (_("Tree View"));
|
||||
label = gtk_label_new (_("Tree view"));
|
||||
gtk_notebook_append_page (GTK_NOTEBOOK (notebook), swindow, label);
|
||||
gtk_container_add (GTK_CONTAINER (swindow), tree_view);
|
||||
|
||||
|
|
|
@ -998,7 +998,7 @@ load_dialog (void)
|
|||
gtk_widget_show (frame);
|
||||
|
||||
frame =
|
||||
gimp_int_radio_group_new (TRUE, _("Pixel Value Scaling"),
|
||||
gimp_int_radio_group_new (TRUE, _("Pixel value scaling"),
|
||||
G_CALLBACK (gimp_radio_button_update),
|
||||
&plvals.use_datamin, plvals.use_datamin,
|
||||
|
||||
|
|
|
@ -183,7 +183,7 @@ make_file_menu(GtkWidget *menu_bar)
|
|||
_menu.file_menu = file_menu;
|
||||
make_item_with_image(file_menu, GTK_STOCK_OPEN, menu_command,
|
||||
&_menu.cmd_open);
|
||||
_menu.open_recent = make_sub_menu(file_menu, _("Open Recent"));
|
||||
_menu.open_recent = make_sub_menu(file_menu, _("Open recent"));
|
||||
make_item_with_image(file_menu, GTK_STOCK_SAVE, menu_command,
|
||||
&_menu.cmd_save);
|
||||
item = make_item_with_image(file_menu, GTK_STOCK_SAVE_AS, menu_command,
|
||||
|
@ -267,15 +267,15 @@ make_edit_menu(GtkWidget *menu_bar)
|
|||
&_menu.cmd_clear);
|
||||
add_accelerator(_menu.clear, 'K', GDK_CONTROL_MASK);
|
||||
make_separator(edit_menu);
|
||||
item = make_item_with_label(edit_menu, _("Select _All"), menu_command,
|
||||
item = make_item_with_label(edit_menu, _("Select _all"), menu_command,
|
||||
&_menu.cmd_select_all);
|
||||
add_accelerator(item, 'A', GDK_CONTROL_MASK);
|
||||
_menu.deselect_all = make_item_with_label(edit_menu, _("Deselect _All"),
|
||||
_menu.deselect_all = make_item_with_label(edit_menu, _("Deselect _all"),
|
||||
menu_command,
|
||||
&_menu.cmd_deselect_all);
|
||||
add_accelerator(_menu.deselect_all, 'A', GDK_SHIFT_MASK|GDK_CONTROL_MASK);
|
||||
make_separator(edit_menu);
|
||||
_menu.edit = make_item_with_label(edit_menu, _("Edit Area Info..."),
|
||||
_menu.edit = make_item_with_label(edit_menu, _("Edit area info..."),
|
||||
menu_command, &_menu.cmd_edit_area_info);
|
||||
make_separator(edit_menu);
|
||||
make_item_with_image(edit_menu, GTK_STOCK_PREFERENCES, menu_command,
|
||||
|
@ -294,7 +294,7 @@ make_view_menu(GtkWidget *menu_bar)
|
|||
GtkWidget *zoom_menu, *item;
|
||||
GSList *group = NULL;
|
||||
|
||||
item = make_check_item(view_menu, _("Area List"), menu_command,
|
||||
item = make_check_item(view_menu, _("Area list"), menu_command,
|
||||
&_menu.cmd_area_list);
|
||||
GTK_CHECK_MENU_ITEM(item)->active = TRUE;
|
||||
|
||||
|
@ -324,7 +324,7 @@ make_view_menu(GtkWidget *menu_bar)
|
|||
menu_command, &_menu.cmd_zoom_out);
|
||||
gtk_widget_set_sensitive(_menu.zoom_out, FALSE);
|
||||
|
||||
zoom_menu = make_sub_menu(view_menu, _("Zoom To"));
|
||||
zoom_menu = make_sub_menu(view_menu, _("Zoom to"));
|
||||
|
||||
_menu.zoom[0] = make_radio_item(zoom_menu, NULL, "1:1", menu_zoom_to,
|
||||
(gpointer) 1);
|
||||
|
@ -360,7 +360,7 @@ make_mapping_menu(GtkWidget *menu_bar)
|
|||
_menu.arrow = make_radio_item(menu, NULL, _("Arrow"), menu_arrow, NULL);
|
||||
group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(_menu.arrow));
|
||||
_menu.fuzzy_select = make_radio_item(menu, group,
|
||||
_("Select Contiguous Region"),
|
||||
_("Select contiguous region"),
|
||||
menu_fuzzy_select, NULL);
|
||||
group = gtk_radio_menu_item_get_group(GTK_RADIO_MENU_ITEM(_menu.fuzzy_select));
|
||||
_menu.rectangle = make_radio_item(menu, group, _("Rectangle"),
|
||||
|
@ -380,12 +380,12 @@ make_tools_menu(GtkWidget *menu_bar)
|
|||
{
|
||||
GtkWidget *tools_menu = make_menu_bar_item(menu_bar, _("_Tools"));
|
||||
_menu.grid = make_check_item(tools_menu, _("Grid"), menu_grid, NULL);
|
||||
make_item_with_label(tools_menu, _("Grid Settings..."), menu_command,
|
||||
make_item_with_label(tools_menu, _("Grid settings..."), menu_command,
|
||||
&_menu.cmd_grid_settings);
|
||||
make_separator(tools_menu);
|
||||
make_item_with_label(tools_menu, _("Use GIMP Guides..."), menu_command,
|
||||
make_item_with_label(tools_menu, _("Use GIMP guides..."), menu_command,
|
||||
&_menu.cmd_use_gimp_guides);
|
||||
make_item_with_label(tools_menu, _("Create Guides..."), menu_command,
|
||||
make_item_with_label(tools_menu, _("Create guides..."), menu_command,
|
||||
&_menu.cmd_create_guides);
|
||||
}
|
||||
|
||||
|
|
|
@ -145,7 +145,7 @@ make_toolbar(GtkWidget *main_vbox, GtkWidget *window)
|
|||
gtk_widget_set_sensitive(data->zoom_out, FALSE);
|
||||
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
|
||||
make_toolbar_stock_icon(toolbar, IMAP_STOCK_MAP_INFO, "EditMapInfo",
|
||||
_("Edit Map Info"), toolbar_command,
|
||||
_("Edit map info"), toolbar_command,
|
||||
&data->cmd_edit_map_info);
|
||||
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
|
||||
data->to_front = make_toolbar_stock_icon(toolbar, IMAP_STOCK_TO_FRONT,
|
||||
|
|
|
@ -822,7 +822,7 @@ create_new_printer_dialog (void)
|
|||
|
||||
new_printer_entry = gtk_entry_new ();
|
||||
gtk_entry_set_max_length (GTK_ENTRY (new_printer_entry), 127);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, _("Printer Name:"),
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, _("Printer name:"),
|
||||
0.0, 0.5, new_printer_entry, 1, FALSE);
|
||||
|
||||
gimp_help_set_help_data (new_printer_entry,
|
||||
|
@ -917,13 +917,13 @@ create_printer_settings_frame (void)
|
|||
"or model, of printer) that you wish to print to"),
|
||||
NULL);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||
_("Printer Name:"), 0.0, 0.5,
|
||||
_("Printer name:"), 0.0, 0.5,
|
||||
event_box, 1, FALSE);
|
||||
|
||||
printer_model_label = gtk_label_new ("");
|
||||
gtk_misc_set_alignment (GTK_MISC (printer_model_label), 0.0, 0.5);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||
_("Printer Model:"), 0.0, 0.5,
|
||||
_("Printer model:"), 0.0, 0.5,
|
||||
printer_model_label, 2, FALSE);
|
||||
|
||||
printer_hbox = gtk_hbox_new (TRUE, 6);
|
||||
|
@ -934,7 +934,7 @@ create_printer_settings_frame (void)
|
|||
* Setup printer button
|
||||
*/
|
||||
|
||||
button = gtk_button_new_with_label (_("Setup Printer..."));
|
||||
button = gtk_button_new_with_label (_("Setup printer..."));
|
||||
gimp_help_set_help_data (button,
|
||||
_("Choose the printer model, PPD file, and command "
|
||||
"that is used to print to this printer"),
|
||||
|
@ -951,7 +951,7 @@ create_printer_settings_frame (void)
|
|||
* New printer button
|
||||
*/
|
||||
|
||||
button = gtk_button_new_with_label (_("New Printer..."));
|
||||
button = gtk_button_new_with_label (_("New printer..."));
|
||||
gimp_help_set_help_data (button,
|
||||
_("Define a new logical printer. This can be used to "
|
||||
"name a collection of settings that you wish to "
|
||||
|
@ -977,7 +977,7 @@ create_printer_settings_frame (void)
|
|||
_("Size of paper that you wish to print to"),
|
||||
NULL);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
||||
_("Media Size:"), 0.0, 0.5,
|
||||
_("Media size:"), 0.0, 0.5,
|
||||
event_box, 1, FALSE);
|
||||
|
||||
/*
|
||||
|
@ -1036,7 +1036,7 @@ create_printer_settings_frame (void)
|
|||
_("Type of media you're printing to"),
|
||||
NULL);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 5,
|
||||
_("Media Type:"), 0.0, 0.5,
|
||||
_("Media type:"), 0.0, 0.5,
|
||||
event_box, 1, FALSE);
|
||||
|
||||
/*
|
||||
|
@ -1052,7 +1052,7 @@ create_printer_settings_frame (void)
|
|||
_("Source (input slot) of media you're printing to"),
|
||||
NULL);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 6,
|
||||
_("Media Source:"), 0.0, 0.5,
|
||||
_("Media source:"), 0.0, 0.5,
|
||||
event_box, 1, FALSE);
|
||||
|
||||
/*
|
||||
|
@ -1068,7 +1068,7 @@ create_printer_settings_frame (void)
|
|||
_("Type of ink in the printer"),
|
||||
NULL);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 7,
|
||||
_("Ink Type:"), 0.0, 0.5,
|
||||
_("Ink type:"), 0.0, 0.5,
|
||||
event_box, 1, FALSE);
|
||||
|
||||
/*
|
||||
|
@ -1314,7 +1314,7 @@ create_image_settings_frame (void)
|
|||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||
gtk_widget_show (event_box);
|
||||
|
||||
label = gtk_label_new (_("Image Type:"));
|
||||
label = gtk_label_new (_("Image type:"));
|
||||
gtk_container_add (GTK_CONTAINER (event_box), label);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
@ -1326,7 +1326,7 @@ create_image_settings_frame (void)
|
|||
"being printed"),
|
||||
NULL);
|
||||
|
||||
image_line_art = gtk_radio_button_new_with_label (NULL, _("Line Art"));
|
||||
image_line_art = gtk_radio_button_new_with_label (NULL, _("Line art"));
|
||||
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (image_line_art));
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
||||
NULL, 0.5, 0.5,
|
||||
|
@ -1340,7 +1340,7 @@ create_image_settings_frame (void)
|
|||
G_CALLBACK (gimp_image_type_callback),
|
||||
GINT_TO_POINTER (IMAGE_LINE_ART));
|
||||
|
||||
image_solid_tone = gtk_radio_button_new_with_label (group, _("Solid Colors"));
|
||||
image_solid_tone = gtk_radio_button_new_with_label (group, _("Solid colors"));
|
||||
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (image_solid_tone));
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 1,
|
||||
NULL, 0.5, 0.5,
|
||||
|
@ -1386,7 +1386,7 @@ create_image_settings_frame (void)
|
|||
GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0);
|
||||
gtk_widget_show (event_box);
|
||||
|
||||
label = gtk_label_new (_("Output Type:"));
|
||||
label = gtk_label_new (_("Output type:"));
|
||||
gtk_container_add (GTK_CONTAINER (event_box), label);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
@ -1421,7 +1421,7 @@ create_image_settings_frame (void)
|
|||
GINT_TO_POINTER (OUTPUT_GRAY));
|
||||
|
||||
output_monochrome = gtk_radio_button_new_with_label (group,
|
||||
_("Black and White"));
|
||||
_("Black and white"));
|
||||
group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (output_monochrome));
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 2,
|
||||
NULL, 0.5, 0.5,
|
||||
|
@ -1439,7 +1439,7 @@ create_image_settings_frame (void)
|
|||
* Color adjust button
|
||||
*/
|
||||
|
||||
adjust_color_button = gtk_button_new_with_label (_("Adjust Output..."));
|
||||
adjust_color_button = gtk_button_new_with_label (_("Adjust output..."));
|
||||
gtk_misc_set_padding (GTK_MISC (GTK_BIN (adjust_color_button)->child), 4, 0);
|
||||
gimp_table_attach_aligned (GTK_TABLE (table), 0, 3,
|
||||
NULL, 0.5, 0.5,
|
||||
|
|
|
@ -632,15 +632,15 @@ save_dialog (void)
|
|||
|
||||
NULL);
|
||||
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Compression Type"),
|
||||
frame = gimp_int_radio_group_new (TRUE, _("Compression type"),
|
||||
G_CALLBACK (gimp_radio_button_update),
|
||||
&compression, compression,
|
||||
|
||||
_("No Compression"),
|
||||
_("No compression"),
|
||||
SGI_COMP_NONE, NULL,
|
||||
_("RLE Compression"),
|
||||
_("RLE compression"),
|
||||
SGI_COMP_RLE, NULL,
|
||||
_("Aggressive RLE\n(Not Supported by SGI)"),
|
||||
_("Aggressive RLE\n(not supported by SGI)"),
|
||||
SGI_COMP_ARLE, NULL,
|
||||
|
||||
NULL);
|
||||
|
|
|
@ -1016,7 +1016,7 @@ snap_dialog(void)
|
|||
gtk_box_pack_start (GTK_BOX(hbox), winsnapintf.delay_spinner, FALSE, FALSE, 0);
|
||||
gtk_widget_show (winsnapintf.delay_spinner);
|
||||
|
||||
label = gtk_label_new (_("Seconds Delay"));
|
||||
label = gtk_label_new (_("Seconds delay"));
|
||||
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
||||
gtk_widget_show (label);
|
||||
|
||||
|
|
|
@ -871,7 +871,7 @@ save_dialog (void)
|
|||
G_CALLBACK (gimp_toggle_button_update),
|
||||
&jsvals.optimize);
|
||||
|
||||
toggle = gtk_check_button_new_with_label (_("Clear Transparent"));
|
||||
toggle = gtk_check_button_new_with_label (_("Clear transparent"));
|
||||
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle),
|
||||
jsvals.clr_transparent);
|
||||
gtk_table_attach (GTK_TABLE (table), toggle, 0, 3, 1, 2,
|
||||
|
|
Loading…
Reference in New Issue