app/actions/channels-commands.c app/actions/qmask-commands.c
2005-08-23 Sven Neumann <sven@gimp.org> * app/actions/channels-commands.c * app/actions/qmask-commands.c * app/dialogs/channel-options-dialog.c * app/dialogs/layer-options-dialog.c * app/dialogs/module-dialog.c * app/dialogs/palette-import-dialog.c * app/dialogs/preferences-dialog.c * app/dialogs/resize-dialog.c * app/dialogs/stroke-dialog.c * app/dialogs/vectors-options-dialog.c * app/display/gimpdisplayshell-scale.c * app/tools/gimpaligntool.c * app/tools/gimpblendoptions.c * app/widgets/gimphistogrameditor.c * app/widgets/gimpstrokeeditor.c * libgimpwidgets/gimpcolorselection.c * modules/cdisplay_colorblind.c * modules/cdisplay_highcontrast.c * modules/colorsel_cmyk.c * plug-ins/Lighting/lighting_ui.c * plug-ins/common/colorify.c * plug-ins/common/film.c * plug-ins/common/iwarp.c * plug-ins/common/lic.c * plug-ins/common/pixelize.c * plug-ins/common/sample_colorize.c * plug-ins/common/sinus.c * plug-ins/common/sparkle.c * plug-ins/gflare/gflare.c * plug-ins/ifscompose/ifscompose.c * plug-ins/imagemap/imap_cmd_guides.c * plug-ins/imagemap/imap_preferences.c * plug-ins/metadata/interface.c * plug-ins/print/gimp_color_window.c * plug-ins/print/gimp_main_window.c * plug-ins/rcm/rcm_dialog.c * plug-ins/script-fu/script-fu-server.c: applied patch from Stephan Binner that fixes capitalization issues (bug #309657).
This commit is contained in:
committed by
Sven Neumann
parent
5ea47e3126
commit
1a94b2be20
@ -169,7 +169,7 @@ make_guides_dialog (void)
|
||||
g_signal_connect (data->width, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
label = create_label_in_table(table, 0, 2, _("_Left Start at:"));
|
||||
label = create_label_in_table(table, 0, 2, _("_Left start at:"));
|
||||
data->left = create_spin_button_in_table (table, label, 0, 3, 0, 0, 100);
|
||||
g_signal_connect (data->left, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
@ -179,30 +179,30 @@ make_guides_dialog (void)
|
||||
g_signal_connect (data->height, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
label = create_label_in_table (table, 1, 2, _("_Top Start at:"));
|
||||
label = create_label_in_table (table, 1, 2, _("_Top start at:"));
|
||||
data->top = create_spin_button_in_table (table, label, 1, 3, 0, 0, 100);
|
||||
g_signal_connect (data->top, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
label = create_label_in_table (table, 2, 0, _("_Horz. Spacing:"));
|
||||
label = create_label_in_table (table, 2, 0, _("_Horz. spacing:"));
|
||||
data->horz_spacing = create_spin_button_in_table (table, label, 2, 1, 0, 0,
|
||||
100);
|
||||
g_signal_connect (data->horz_spacing, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
label = create_label_in_table(table, 2, 2, _("_No. Across:"));
|
||||
label = create_label_in_table(table, 2, 2, _("_No. across:"));
|
||||
data->no_across = create_spin_button_in_table(table, label, 2, 3, 0, 0,
|
||||
100);
|
||||
g_signal_connect (data->no_across, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
label = create_label_in_table(table, 3, 0, _("_Vert. Spacing:"));
|
||||
label = create_label_in_table(table, 3, 0, _("_Vert. spacing:"));
|
||||
data->vert_spacing = create_spin_button_in_table(table, label, 3, 1, 0, 0,
|
||||
100);
|
||||
g_signal_connect (data->vert_spacing, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
label = create_label_in_table(table, 3, 2, _("No. _Down:"));
|
||||
label = create_label_in_table(table, 3, 2, _("No. _down:"));
|
||||
data->no_down = create_spin_button_in_table (table, label, 3, 3, 0, 0, 100);
|
||||
g_signal_connect (data->no_down, "changed",
|
||||
G_CALLBACK(recalc_bounds), (gpointer) data);
|
||||
|
||||
Reference in New Issue
Block a user