diff --git a/ChangeLog b/ChangeLog index 4fd35a3116..18a118b51b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2004-06-23 Bill Skaggs + + * app/gui/*.c: + * app/widgets/*.c: + * etc/templaterc: HIGify capitalization. Should finish bug #123699 + except for everything I missed or got wrong. + 2004-06-24 Sven Neumann * etc/controllerrc: commented out the linux_input controller diff --git a/app/dialogs/convert-dialog.c b/app/dialogs/convert-dialog.c index 1f6d3a977a..8d6f88eaf1 100644 --- a/app/dialogs/convert-dialog.c +++ b/app/dialogs/convert-dialog.c @@ -151,7 +151,7 @@ convert_dialog_new (GimpImage *gimage, gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); toggle = gtk_radio_button_new_with_label (NULL, - _("Generate Optimum Palette:")); + _("Generate optimum palette:")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle)); gtk_box_pack_start (GTK_BOX (hbox), toggle, FALSE, FALSE, 0); gtk_widget_show (toggle); @@ -176,7 +176,7 @@ convert_dialog_new (GimpImage *gimage, G_CALLBACK (gimp_int_adjustment_update), &dialog->num_colors); - label = gtk_label_new (_("Max. Number of Colors:")); + label = gtk_label_new (_("Max. number of colors:")); gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); @@ -209,7 +209,7 @@ convert_dialog_new (GimpImage *gimage, /* 'mono palette' */ toggle = gtk_radio_button_new_with_label (group, - _("Use Black and White (1-Bit) Palette")); + _("Use black and white (1-bit) palette")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle)); gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); gtk_widget_show (toggle); @@ -225,7 +225,7 @@ convert_dialog_new (GimpImage *gimage, { GtkWidget *remove_toggle; - remove_toggle = gtk_check_button_new_with_label (_("Remove Unused Colors from Final Palette")); + remove_toggle = gtk_check_button_new_with_label (_("Remove unused colors from final palette")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (remove_toggle), dialog->remove_dups); g_signal_connect (remove_toggle, "toggled", @@ -238,7 +238,7 @@ convert_dialog_new (GimpImage *gimage, gtk_widget_show (hbox); toggle = gtk_radio_button_new_with_label (group, - _("Use Custom Palette:")); + _("Use custom palette:")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle)); gtk_box_pack_start (GTK_BOX (hbox), toggle, FALSE, FALSE, 0); gtk_widget_show (toggle); @@ -294,7 +294,7 @@ convert_dialog_new (GimpImage *gimage, /* the alpha-dither toggle */ toggle = - gtk_check_button_new_with_label (_("Enable Dithering of Transparency")); + gtk_check_button_new_with_label (_("Enable dithering of transparency")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), dialog->alpha_dither); gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); diff --git a/app/dialogs/file-save-dialog.c b/app/dialogs/file-save-dialog.c index 608f52a556..9ecf1f46a7 100644 --- a/app/dialogs/file-save-dialog.c +++ b/app/dialogs/file-save-dialog.c @@ -240,7 +240,7 @@ file_save_overwrite (GtkWidget *save_dialog, "Overwrite it?"), filename); g_free (filename); - query_box = gimp_query_boolean_box (_("File Exists!"), + query_box = gimp_query_boolean_box (_("File exists!"), save_dialog, gimp_standard_help_func, GIMP_HELP_FILE_SAVE_OVERWRITE, diff --git a/app/dialogs/info-window.c b/app/dialogs/info-window.c index 262d387620..0e8ac66bb0 100644 --- a/app/dialogs/info-window.c +++ b/app/dialogs/info-window.c @@ -241,23 +241,23 @@ info_window_create (GimpDisplay *gdisp) info_win->user_data = iwd; /* add the information fields */ - info_dialog_add_label (info_win, _("Pixel Dimensions:"), + info_dialog_add_label (info_win, _("Pixel dimensions:"), iwd->dimensions_str); - info_dialog_add_label (info_win, _("Print Size:"), + info_dialog_add_label (info_win, _("Print size:"), iwd->real_dimensions_str); info_dialog_add_label (info_win, _("Resolution:"), iwd->resolution_str); - info_dialog_add_label (info_win, _("Scale Ratio:"), + info_dialog_add_label (info_win, _("Scale ratio:"), iwd->scale_str); - info_dialog_add_label (info_win, _("Number of Layers:"), + info_dialog_add_label (info_win, _("Number of layers:"), iwd->num_layers_str); - info_dialog_add_label (info_win, _("Size in Memory:"), + info_dialog_add_label (info_win, _("Size in memory:"), iwd->memsize_str); - info_dialog_add_label (info_win, _("Display Type:"), + info_dialog_add_label (info_win, _("Display type:"), iwd->color_type_str); - info_dialog_add_label (info_win, _("Visual Class:"), + info_dialog_add_label (info_win, _("Visual class:"), iwd->visual_class_str); - info_dialog_add_label (info_win, _("Visual Depth:"), + info_dialog_add_label (info_win, _("Visual depth:"), iwd->visual_depth_str); /* Add extra tabs */ diff --git a/app/dialogs/module-dialog.c b/app/dialogs/module-dialog.c index d240c44132..6c09179b8e 100644 --- a/app/dialogs/module-dialog.c +++ b/app/dialogs/module-dialog.c @@ -172,7 +172,7 @@ module_browser_new (Gimp *gimp) gtk_tree_view_append_column (GTK_TREE_VIEW (tv), col); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tv), 1, - _("Module Path"), + _("Module path"), gtk_cell_renderer_text_new (), "text", PATH_COLUMN, NULL); diff --git a/app/dialogs/offset-dialog.c b/app/dialogs/offset-dialog.c index a88ad9d303..c4d0b871f9 100644 --- a/app/dialogs/offset-dialog.c +++ b/app/dialogs/offset-dialog.c @@ -204,13 +204,13 @@ offset_dialog_new (GimpDrawable *drawable, G_CALLBACK (gimp_radio_button_update), &off_d->fill_type, off_d->fill_type, - _("_Wrap Around"), + _("_Wrap around"), WRAP_AROUND, NULL, - _("Fill with _Background Color"), + _("Fill with _background color"), GIMP_OFFSET_BACKGROUND, NULL, - _("Make _Transparent"), + _("Make _transparent"), GIMP_OFFSET_TRANSPARENT, &radio_button, NULL); diff --git a/app/dialogs/palette-import-dialog.c b/app/dialogs/palette-import-dialog.c index 1112265ef3..e50a7830a6 100644 --- a/app/dialogs/palette-import-dialog.c +++ b/app/dialogs/palette-import-dialog.c @@ -243,7 +243,7 @@ palette_import_dialog_new (Gimp *gimp) group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (import_dialog->image_radio)); import_dialog->palettefile_radio = - gtk_radio_button_new_with_mnemonic (group, _("Palette _File")); + gtk_radio_button_new_with_mnemonic (group, _("Palette _file")); gtk_table_attach_defaults (GTK_TABLE (table), import_dialog->palettefile_radio, 0, 1, 2, 3); @@ -314,7 +314,7 @@ palette_import_dialog_new (Gimp *gimp) /* The source's name */ import_dialog->entry = gtk_entry_new (); gtk_entry_set_text (GTK_ENTRY (import_dialog->entry), - gradient ? GIMP_OBJECT (gradient)->name : _("New Import")); + gradient ? GIMP_OBJECT (gradient)->name : _("New import")); gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, _("Palette _Name:"), 0.0, 0.5, import_dialog->entry, 2, FALSE); @@ -322,7 +322,7 @@ palette_import_dialog_new (Gimp *gimp) /* The # of colors */ import_dialog->num_colors = GTK_ADJUSTMENT (gimp_scale_entry_new (GTK_TABLE (table), 0, 1, - _("N_umber of Colors:"), -1, 5, + _("N_umber of colors:"), -1, 5, 256, 2, 10000, 1, 10, 0, TRUE, 0.0, 0.0, NULL, NULL)); diff --git a/app/dialogs/preferences-dialog.c b/app/dialogs/preferences-dialog.c index 34e45b3941..b341ac0822 100644 --- a/app/dialogs/preferences-dialog.c +++ b/app/dialogs/preferences-dialog.c @@ -861,16 +861,16 @@ prefs_display_options_frame_add (Gimp *gimp, gtk_widget_show (checks_vbox); prefs_check_button_add (object, "show-menubar", - _("Show _Menubar"), + _("Show _menubar"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-rulers", - _("Show _Rulers"), + _("Show _rulers"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-scrollbars", - _("Show Scroll_bars"), + _("Show scroll_bars"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-statusbar", - _("Show S_tatusbar"), + _("Show s_tatusbar"), GTK_BOX (checks_vbox)); checks_vbox = gtk_vbox_new (FALSE, 2); @@ -878,16 +878,16 @@ prefs_display_options_frame_add (Gimp *gimp, gtk_widget_show (checks_vbox); prefs_check_button_add (object, "show-selection", - _("Show S_election"), + _("Show s_election"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-layer-boundary", - _("Show _Layer Boundary"), + _("Show _layer boundary"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-guides", - _("Show _Guides"), + _("Show _guides"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-grid", - _("Show Gri_d"), + _("Show gri_d"), GTK_BOX (checks_vbox)); table = prefs_table_new (2, GTK_CONTAINER (vbox)); @@ -897,8 +897,8 @@ prefs_display_options_frame_add (Gimp *gimp, NULL); button = prefs_color_button_add (object, "padding-color", - _("Custom Padding Color:"), - _("Select Custom Canvas Padding Color"), + _("Custom padding color:"), + _("Select custom canvas padding color"), GTK_TABLE (table), 1, NULL); gimp_color_panel_set_context (GIMP_COLOR_PANEL (button), gimp_get_user_context (gimp)); @@ -1150,16 +1150,16 @@ prefs_dialog_new (Gimp *gimp, vbox2 = prefs_frame_new (_("Previews"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "layer-previews", - _("_Enable Layer & Channel Previews"), + _("_Enable layer & channel previews"), GTK_BOX (vbox2)); table = prefs_table_new (3, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "layer-preview-size", 0, 0, - _("Default _Layer & Channel Preview Size:"), + _("Default _layer & channel preview size:"), GTK_TABLE (table), 0, size_group); prefs_enum_combo_box_add (object, "navigation-preview-size", 0, 0, - _("_Navigation Preview Size:"), + _("_Navigation preview size:"), GTK_TABLE (table), 1, size_group); /* Keyboard Shortcuts */ @@ -1167,21 +1167,21 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "can-change-accels", - _("Use Dynamic _Keyboard Shortcuts"), + _("Use Dynamic _keyboard shortcuts"), GTK_BOX (vbox2)); prefs_check_button_add (object, "save-accels", - _("Save Keyboard Shortcuts on Exit"), + _("Save keyboard shortcuts on exit"), GTK_BOX (vbox2)); button = prefs_button_add (GTK_STOCK_SAVE, - _("Save Keyboard Shortcuts Now"), + _("Save keyboard shortcuts now"), GTK_BOX (vbox2)); g_signal_connect_swapped (button, "clicked", G_CALLBACK (menus_save), gimp); button = prefs_button_add (GTK_STOCK_CLEAR, - _("Clear Saved Keyboard Shortcuts Now"), + _("Clear saved keyboard shortcuts now"), GTK_BOX (vbox2)); g_signal_connect_swapped (button, "clicked", G_CALLBACK (menus_clear), @@ -1323,10 +1323,10 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (1, GTK_CONTAINER (vbox2)); fileselection = gimp_prop_file_entry_new (object, "web-browser", - _("Select Web Browser"), + _("Select web browser"), FALSE, FALSE); - prefs_widget_add_aligned (fileselection, _("Web Browser to Use:"), + prefs_widget_add_aligned (fileselection, _("Web browser to use:"), GTK_TABLE (table), 0, FALSE, size_group); #endif @@ -1356,7 +1356,7 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_spin_button_add (object, "snap-distance", 1.0, 5.0, 0, - _("_Snap Distance:"), + _("_Snap distance:"), GTK_TABLE (table), 0, size_group); /* Contiguous Regions */ @@ -1365,7 +1365,7 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_spin_button_add (object, "default-threshold", 1.0, 5.0, 0, - _("Default _Threshold:"), + _("Default _threshold:"), GTK_TABLE (table), 0, size_group); /* Scaling */ @@ -1413,15 +1413,15 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add_with_icon (object, "toolbox-color-area", - _("Show Foreground & Background _Color"), + _("Show foreground & background _color"), GIMP_STOCK_DEFAULT_COLORS, GTK_BOX (vbox2)); prefs_check_button_add_with_icon (object, "toolbox-foo-area", - _("Show Active _Brush, Pattern & Gradient"), + _("Show active _brush, pattern & gradient"), GIMP_STOCK_BRUSH, GTK_BOX (vbox2)); prefs_check_button_add_with_icon (object, "toolbox-image-area", - _("Show Active _Image"), + _("Show active _image"), GIMP_STOCK_IMAGE, GTK_BOX (vbox2)); @@ -1446,13 +1446,13 @@ prefs_dialog_new (Gimp *gimp, vbox2 = prefs_frame_new (_("General"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "default-dot-for-dot", - _("Use \"_Dot for Dot\" by default"), + _("Use \"_Dot for dot\" by default"), GTK_BOX (vbox2)); table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_spin_button_add (object, "marching-ants-speed", 10.0, 100.0, 0, - _("Marching _Ants Speed:"), + _("Marching _ants speed:"), GTK_TABLE (table), 0, size_group); /* Zoom & Resize Behavior */ @@ -1460,18 +1460,18 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "resize-windows-on-zoom", - _("Resize Window on _Zoom"), + _("Resize window on _zoom"), GTK_BOX (vbox2)); prefs_check_button_add (object, "resize-windows-on-resize", - _("Resize Window on Image _Size Change"), + _("Resize window on image _size change"), GTK_BOX (vbox2)); table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_boolean_combo_box_add (object, "initial-zoom-to-fit", - _("Fit to Window"), + _("Fit to window"), "1:1", - _("Initial Zoom Ratio:"), + _("Initial zoom ratio:"), GTK_TABLE (table), 0, size_group); /* Pointer Movement Feedback */ @@ -1479,10 +1479,10 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "show-brush-outline", - _("Show _Brush Outline"), + _("Show _brush outline"), GTK_BOX (vbox2)); prefs_check_button_add (object, "show-paint-tool-cursor", - _("Show Paint _Tool Cursor"), + _("Show paint _tool cursor"), GTK_BOX (vbox2)); table = prefs_table_new (2, GTK_CONTAINER (vbox2)); @@ -1668,10 +1668,10 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (2, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "transparency-type", 0, 0, - _("Transparency _Type:"), + _("Transparency _type:"), GTK_TABLE (table), 0, size_group); prefs_enum_combo_box_add (object, "transparency-size", 0, 0, - _("Check _Size:"), + _("Check _size:"), GTK_TABLE (table), 1, size_group); vbox2 = prefs_frame_new (_("Get Monitor Resolution"), @@ -1716,7 +1716,7 @@ prefs_dialog_new (Gimp *gimp, gimp_get_screen_resolution (NULL, &xres, &yres); - str = g_strdup_printf (_("From _Windowing System (currently %d x %d dpi)"), + str = g_strdup_printf (_("From _windowing system (currently %d x %d dpi)"), ROUND (xres), ROUND (yres)); button = gtk_radio_button_new_with_mnemonic (group, str); @@ -1952,25 +1952,25 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (2, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "toolbox-window-hint", 0, 0, - _("Hint for the _Toolbox:"), + _("Hint for the _toolbox:"), GTK_TABLE (table), 0, size_group); prefs_enum_combo_box_add (object, "dock-window-hint", 0, 0, - _("Hint for the _Docks:"), + _("Hint for the _docks:"), GTK_TABLE (table), 1, size_group); vbox2 = prefs_frame_new (_("Focus"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "activate-on-focus", - _("Activate the _Focused Image"), + _("Activate the _focused image"), GTK_BOX (vbox2)); /* Window Positions */ vbox2 = prefs_frame_new (_("Window Positions"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "save-session-info", - _("_Save Window Positions on Exit"), + _("_Save window positions on exit"), GTK_BOX (vbox2)); button = prefs_button_add (GTK_STOCK_SAVE, @@ -2014,21 +2014,21 @@ prefs_dialog_new (Gimp *gimp, #endif /* ENABLE_MP */ prefs_spin_button_add (object, "undo-levels", 1.0, 5.0, 0, - _("Minimal Number of Undo Levels:"), + _("Minimal number of undo levels:"), GTK_TABLE (table), 0, size_group); prefs_memsize_entry_add (object, "undo-size", - _("Maximum Undo Memory:"), + _("Maximum undo memory:"), GTK_TABLE (table), 1, size_group); prefs_memsize_entry_add (object, "tile-cache-size", - _("Tile Cache Size:"), + _("Tile cache size:"), GTK_TABLE (table), 2, size_group); prefs_memsize_entry_add (object, "max-new-image-size", - _("Maximum New Image Size:"), + _("Maximum new image size:"), GTK_TABLE (table), 3, size_group); #ifdef ENABLE_MP prefs_spin_button_add (object, "num-processors", 1.0, 4.0, 0, - _("Number of Processors to Use:"), + _("Number of processors to use:"), GTK_TABLE (table), 4, size_group); #endif /* ENABLE_MP */ @@ -2036,13 +2036,13 @@ prefs_dialog_new (Gimp *gimp, vbox2 = prefs_frame_new (_("File Saving"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "confirm-on-close", - _("Confirm Closing of Unsaved Images"), + _("Confirm closing of unsaved images"), GTK_BOX (vbox2)); table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "thumbnail-size", 0, 0, - _("Size of Thumbnail Files:"), + _("Size of thumbnail files:"), GTK_TABLE (table), 0, size_group); g_object_unref (size_group); @@ -2072,8 +2072,8 @@ prefs_dialog_new (Gimp *gimp, } dirs[] = { - { N_("Temp Dir:"), N_("Select Temp Dir"), "temp-path" }, - { N_("Swap Dir:"), N_("Select Swap Dir"), "swap-path" }, + { N_("Temp dir:"), N_("Select Temp Dir"), "temp-path" }, + { N_("Swap dir:"), N_("Select Swap Dir"), "swap-path" }, }; table = prefs_table_new (G_N_ELEMENTS (dirs) + 1, GTK_CONTAINER (vbox)); diff --git a/app/dialogs/resize-dialog.c b/app/dialogs/resize-dialog.c index 3df4dd451c..e9a1891fc2 100644 --- a/app/dialogs/resize-dialog.c +++ b/app/dialogs/resize-dialog.c @@ -288,13 +288,13 @@ resize_dialog_new (GimpViewable *viewable, gtk_widget_show (table); /* the original width & height labels */ - label = gtk_label_new (_("Current Width:")); + label = gtk_label_new (_("Current width:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Current Height:")); + label = gtk_label_new (_("Current height:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -313,13 +313,13 @@ resize_dialog_new (GimpViewable *viewable, gtk_widget_show (private->orig_height_label); /* the new size labels */ - label = gtk_label_new (_("New Width:")); + label = gtk_label_new (_("New width:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("New Height:")); + label = gtk_label_new (_("New height:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -376,13 +376,13 @@ resize_dialog_new (GimpViewable *viewable, orig_labels_update (private->size_se, dialog); /* the scale ratio labels */ - label = gtk_label_new (_("X Ratio:")); + label = gtk_label_new (_("X ratio:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 4, 5, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Y Ratio:")); + label = gtk_label_new (_("Y ratio:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 5, 6, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -560,13 +560,13 @@ resize_dialog_new (GimpViewable *viewable, gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* the print size labels */ - label = gtk_label_new (_("New Width:")); + label = gtk_label_new (_("New width:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("New Height:")); + label = gtk_label_new (_("New height:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -627,13 +627,13 @@ resize_dialog_new (GimpViewable *viewable, dialog); /* the resolution labels */ - label = gtk_label_new (_("X Resolution:")); + label = gtk_label_new (_("X resolution:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Y Resolution:")); + label = gtk_label_new (_("Y resolution:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/dialogs/stroke-dialog.c b/app/dialogs/stroke-dialog.c index d20d0b8ec4..cbebad6320 100644 --- a/app/dialogs/stroke-dialog.c +++ b/app/dialogs/stroke-dialog.c @@ -159,7 +159,7 @@ stroke_dialog_new (GimpItem *item, gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0); gtk_widget_show (frame); - button = gtk_radio_button_new_with_label (NULL, _("Stroke Line")); + button = gtk_radio_button_new_with_label (NULL, _("Stroke line")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button)); gtk_frame_set_label_widget (GTK_FRAME (frame), button); gtk_widget_show (button); @@ -189,7 +189,7 @@ stroke_dialog_new (GimpItem *item, gtk_widget_show (frame); button = gtk_radio_button_new_with_label (group, - _("Stroke With a Paint Tool")); + _("Stroke with a paint tool")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button)); gtk_frame_set_label_widget (GTK_FRAME (frame), button); gtk_widget_show (button); diff --git a/app/dialogs/tips-dialog.c b/app/dialogs/tips-dialog.c index ce8fa9fc31..ff8140def2 100644 --- a/app/dialogs/tips-dialog.c +++ b/app/dialogs/tips-dialog.c @@ -214,7 +214,7 @@ tips_dialog_create (Gimp *gimp) gtk_box_pack_end (GTK_BOX (hbox), bbox, FALSE, FALSE, 0); gtk_widget_show (bbox); - button = gtk_button_new_with_mnemonic (_("_Previous Tip")); + button = gtk_button_new_with_mnemonic (_("_Previous tip")); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); gtk_widget_set_sensitive (button, (tips_count > 1)); gtk_container_add (GTK_CONTAINER (bbox), button); @@ -224,7 +224,7 @@ tips_dialog_create (Gimp *gimp) G_CALLBACK (tips_show_previous), NULL); - button = gtk_button_new_with_mnemonic (_("_Next Tip")); + button = gtk_button_new_with_mnemonic (_("_Next tip")); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); gtk_widget_set_sensitive (button, (tips_count > 1)); gtk_container_add (GTK_CONTAINER (bbox), button); diff --git a/app/dialogs/user-install-dialog.c b/app/dialogs/user-install-dialog.c index 6d7873b6f6..2938ffeb8e 100644 --- a/app/dialogs/user-install-dialog.c +++ b/app/dialogs/user-install-dialog.c @@ -1124,7 +1124,7 @@ user_install_tuning (GimpRc *gimprc) gtk_box_pack_end (GTK_BOX (hbox), entry, FALSE, FALSE, 0); gtk_widget_show (entry); - label = gtk_label_new (_("Tile Cache Size:")); + label = gtk_label_new (_("Tile cache size:")); PAGE_STYLE (label); gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); @@ -1147,12 +1147,12 @@ user_install_tuning (GimpRc *gimprc) gtk_widget_show (hbox); entry = gimp_prop_file_entry_new (G_OBJECT (gimprc), "swap-path", - _("Select Swap Dir"), + _("Select swap dir"), TRUE, TRUE); gtk_box_pack_end (GTK_BOX (hbox), entry, FALSE, FALSE, 0); gtk_widget_show (entry); - label = gtk_label_new (_("Swap Folder:")); + label = gtk_label_new (_("Swap folder:")); PAGE_STYLE (label); gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); diff --git a/app/gui/convert-dialog.c b/app/gui/convert-dialog.c index 1f6d3a977a..8d6f88eaf1 100644 --- a/app/gui/convert-dialog.c +++ b/app/gui/convert-dialog.c @@ -151,7 +151,7 @@ convert_dialog_new (GimpImage *gimage, gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0); toggle = gtk_radio_button_new_with_label (NULL, - _("Generate Optimum Palette:")); + _("Generate optimum palette:")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle)); gtk_box_pack_start (GTK_BOX (hbox), toggle, FALSE, FALSE, 0); gtk_widget_show (toggle); @@ -176,7 +176,7 @@ convert_dialog_new (GimpImage *gimage, G_CALLBACK (gimp_int_adjustment_update), &dialog->num_colors); - label = gtk_label_new (_("Max. Number of Colors:")); + label = gtk_label_new (_("Max. number of colors:")); gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); @@ -209,7 +209,7 @@ convert_dialog_new (GimpImage *gimage, /* 'mono palette' */ toggle = gtk_radio_button_new_with_label (group, - _("Use Black and White (1-Bit) Palette")); + _("Use black and white (1-bit) palette")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle)); gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); gtk_widget_show (toggle); @@ -225,7 +225,7 @@ convert_dialog_new (GimpImage *gimage, { GtkWidget *remove_toggle; - remove_toggle = gtk_check_button_new_with_label (_("Remove Unused Colors from Final Palette")); + remove_toggle = gtk_check_button_new_with_label (_("Remove unused colors from final palette")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (remove_toggle), dialog->remove_dups); g_signal_connect (remove_toggle, "toggled", @@ -238,7 +238,7 @@ convert_dialog_new (GimpImage *gimage, gtk_widget_show (hbox); toggle = gtk_radio_button_new_with_label (group, - _("Use Custom Palette:")); + _("Use custom palette:")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (toggle)); gtk_box_pack_start (GTK_BOX (hbox), toggle, FALSE, FALSE, 0); gtk_widget_show (toggle); @@ -294,7 +294,7 @@ convert_dialog_new (GimpImage *gimage, /* the alpha-dither toggle */ toggle = - gtk_check_button_new_with_label (_("Enable Dithering of Transparency")); + gtk_check_button_new_with_label (_("Enable dithering of transparency")); gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (toggle), dialog->alpha_dither); gtk_box_pack_start (GTK_BOX (vbox), toggle, FALSE, FALSE, 0); diff --git a/app/gui/file-save-dialog.c b/app/gui/file-save-dialog.c index 608f52a556..9ecf1f46a7 100644 --- a/app/gui/file-save-dialog.c +++ b/app/gui/file-save-dialog.c @@ -240,7 +240,7 @@ file_save_overwrite (GtkWidget *save_dialog, "Overwrite it?"), filename); g_free (filename); - query_box = gimp_query_boolean_box (_("File Exists!"), + query_box = gimp_query_boolean_box (_("File exists!"), save_dialog, gimp_standard_help_func, GIMP_HELP_FILE_SAVE_OVERWRITE, diff --git a/app/gui/info-window.c b/app/gui/info-window.c index 262d387620..0e8ac66bb0 100644 --- a/app/gui/info-window.c +++ b/app/gui/info-window.c @@ -241,23 +241,23 @@ info_window_create (GimpDisplay *gdisp) info_win->user_data = iwd; /* add the information fields */ - info_dialog_add_label (info_win, _("Pixel Dimensions:"), + info_dialog_add_label (info_win, _("Pixel dimensions:"), iwd->dimensions_str); - info_dialog_add_label (info_win, _("Print Size:"), + info_dialog_add_label (info_win, _("Print size:"), iwd->real_dimensions_str); info_dialog_add_label (info_win, _("Resolution:"), iwd->resolution_str); - info_dialog_add_label (info_win, _("Scale Ratio:"), + info_dialog_add_label (info_win, _("Scale ratio:"), iwd->scale_str); - info_dialog_add_label (info_win, _("Number of Layers:"), + info_dialog_add_label (info_win, _("Number of layers:"), iwd->num_layers_str); - info_dialog_add_label (info_win, _("Size in Memory:"), + info_dialog_add_label (info_win, _("Size in memory:"), iwd->memsize_str); - info_dialog_add_label (info_win, _("Display Type:"), + info_dialog_add_label (info_win, _("Display type:"), iwd->color_type_str); - info_dialog_add_label (info_win, _("Visual Class:"), + info_dialog_add_label (info_win, _("Visual class:"), iwd->visual_class_str); - info_dialog_add_label (info_win, _("Visual Depth:"), + info_dialog_add_label (info_win, _("Visual depth:"), iwd->visual_depth_str); /* Add extra tabs */ diff --git a/app/gui/module-browser.c b/app/gui/module-browser.c index d240c44132..6c09179b8e 100644 --- a/app/gui/module-browser.c +++ b/app/gui/module-browser.c @@ -172,7 +172,7 @@ module_browser_new (Gimp *gimp) gtk_tree_view_append_column (GTK_TREE_VIEW (tv), col); gtk_tree_view_insert_column_with_attributes (GTK_TREE_VIEW (tv), 1, - _("Module Path"), + _("Module path"), gtk_cell_renderer_text_new (), "text", PATH_COLUMN, NULL); diff --git a/app/gui/offset-dialog.c b/app/gui/offset-dialog.c index a88ad9d303..c4d0b871f9 100644 --- a/app/gui/offset-dialog.c +++ b/app/gui/offset-dialog.c @@ -204,13 +204,13 @@ offset_dialog_new (GimpDrawable *drawable, G_CALLBACK (gimp_radio_button_update), &off_d->fill_type, off_d->fill_type, - _("_Wrap Around"), + _("_Wrap around"), WRAP_AROUND, NULL, - _("Fill with _Background Color"), + _("Fill with _background color"), GIMP_OFFSET_BACKGROUND, NULL, - _("Make _Transparent"), + _("Make _transparent"), GIMP_OFFSET_TRANSPARENT, &radio_button, NULL); diff --git a/app/gui/palette-import-dialog.c b/app/gui/palette-import-dialog.c index 1112265ef3..e50a7830a6 100644 --- a/app/gui/palette-import-dialog.c +++ b/app/gui/palette-import-dialog.c @@ -243,7 +243,7 @@ palette_import_dialog_new (Gimp *gimp) group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (import_dialog->image_radio)); import_dialog->palettefile_radio = - gtk_radio_button_new_with_mnemonic (group, _("Palette _File")); + gtk_radio_button_new_with_mnemonic (group, _("Palette _file")); gtk_table_attach_defaults (GTK_TABLE (table), import_dialog->palettefile_radio, 0, 1, 2, 3); @@ -314,7 +314,7 @@ palette_import_dialog_new (Gimp *gimp) /* The source's name */ import_dialog->entry = gtk_entry_new (); gtk_entry_set_text (GTK_ENTRY (import_dialog->entry), - gradient ? GIMP_OBJECT (gradient)->name : _("New Import")); + gradient ? GIMP_OBJECT (gradient)->name : _("New import")); gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, _("Palette _Name:"), 0.0, 0.5, import_dialog->entry, 2, FALSE); @@ -322,7 +322,7 @@ palette_import_dialog_new (Gimp *gimp) /* The # of colors */ import_dialog->num_colors = GTK_ADJUSTMENT (gimp_scale_entry_new (GTK_TABLE (table), 0, 1, - _("N_umber of Colors:"), -1, 5, + _("N_umber of colors:"), -1, 5, 256, 2, 10000, 1, 10, 0, TRUE, 0.0, 0.0, NULL, NULL)); diff --git a/app/gui/preferences-dialog.c b/app/gui/preferences-dialog.c index 34e45b3941..b341ac0822 100644 --- a/app/gui/preferences-dialog.c +++ b/app/gui/preferences-dialog.c @@ -861,16 +861,16 @@ prefs_display_options_frame_add (Gimp *gimp, gtk_widget_show (checks_vbox); prefs_check_button_add (object, "show-menubar", - _("Show _Menubar"), + _("Show _menubar"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-rulers", - _("Show _Rulers"), + _("Show _rulers"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-scrollbars", - _("Show Scroll_bars"), + _("Show scroll_bars"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-statusbar", - _("Show S_tatusbar"), + _("Show s_tatusbar"), GTK_BOX (checks_vbox)); checks_vbox = gtk_vbox_new (FALSE, 2); @@ -878,16 +878,16 @@ prefs_display_options_frame_add (Gimp *gimp, gtk_widget_show (checks_vbox); prefs_check_button_add (object, "show-selection", - _("Show S_election"), + _("Show s_election"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-layer-boundary", - _("Show _Layer Boundary"), + _("Show _layer boundary"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-guides", - _("Show _Guides"), + _("Show _guides"), GTK_BOX (checks_vbox)); prefs_check_button_add (object, "show-grid", - _("Show Gri_d"), + _("Show gri_d"), GTK_BOX (checks_vbox)); table = prefs_table_new (2, GTK_CONTAINER (vbox)); @@ -897,8 +897,8 @@ prefs_display_options_frame_add (Gimp *gimp, NULL); button = prefs_color_button_add (object, "padding-color", - _("Custom Padding Color:"), - _("Select Custom Canvas Padding Color"), + _("Custom padding color:"), + _("Select custom canvas padding color"), GTK_TABLE (table), 1, NULL); gimp_color_panel_set_context (GIMP_COLOR_PANEL (button), gimp_get_user_context (gimp)); @@ -1150,16 +1150,16 @@ prefs_dialog_new (Gimp *gimp, vbox2 = prefs_frame_new (_("Previews"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "layer-previews", - _("_Enable Layer & Channel Previews"), + _("_Enable layer & channel previews"), GTK_BOX (vbox2)); table = prefs_table_new (3, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "layer-preview-size", 0, 0, - _("Default _Layer & Channel Preview Size:"), + _("Default _layer & channel preview size:"), GTK_TABLE (table), 0, size_group); prefs_enum_combo_box_add (object, "navigation-preview-size", 0, 0, - _("_Navigation Preview Size:"), + _("_Navigation preview size:"), GTK_TABLE (table), 1, size_group); /* Keyboard Shortcuts */ @@ -1167,21 +1167,21 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "can-change-accels", - _("Use Dynamic _Keyboard Shortcuts"), + _("Use Dynamic _keyboard shortcuts"), GTK_BOX (vbox2)); prefs_check_button_add (object, "save-accels", - _("Save Keyboard Shortcuts on Exit"), + _("Save keyboard shortcuts on exit"), GTK_BOX (vbox2)); button = prefs_button_add (GTK_STOCK_SAVE, - _("Save Keyboard Shortcuts Now"), + _("Save keyboard shortcuts now"), GTK_BOX (vbox2)); g_signal_connect_swapped (button, "clicked", G_CALLBACK (menus_save), gimp); button = prefs_button_add (GTK_STOCK_CLEAR, - _("Clear Saved Keyboard Shortcuts Now"), + _("Clear saved keyboard shortcuts now"), GTK_BOX (vbox2)); g_signal_connect_swapped (button, "clicked", G_CALLBACK (menus_clear), @@ -1323,10 +1323,10 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (1, GTK_CONTAINER (vbox2)); fileselection = gimp_prop_file_entry_new (object, "web-browser", - _("Select Web Browser"), + _("Select web browser"), FALSE, FALSE); - prefs_widget_add_aligned (fileselection, _("Web Browser to Use:"), + prefs_widget_add_aligned (fileselection, _("Web browser to use:"), GTK_TABLE (table), 0, FALSE, size_group); #endif @@ -1356,7 +1356,7 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_spin_button_add (object, "snap-distance", 1.0, 5.0, 0, - _("_Snap Distance:"), + _("_Snap distance:"), GTK_TABLE (table), 0, size_group); /* Contiguous Regions */ @@ -1365,7 +1365,7 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_spin_button_add (object, "default-threshold", 1.0, 5.0, 0, - _("Default _Threshold:"), + _("Default _threshold:"), GTK_TABLE (table), 0, size_group); /* Scaling */ @@ -1413,15 +1413,15 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add_with_icon (object, "toolbox-color-area", - _("Show Foreground & Background _Color"), + _("Show foreground & background _color"), GIMP_STOCK_DEFAULT_COLORS, GTK_BOX (vbox2)); prefs_check_button_add_with_icon (object, "toolbox-foo-area", - _("Show Active _Brush, Pattern & Gradient"), + _("Show active _brush, pattern & gradient"), GIMP_STOCK_BRUSH, GTK_BOX (vbox2)); prefs_check_button_add_with_icon (object, "toolbox-image-area", - _("Show Active _Image"), + _("Show active _image"), GIMP_STOCK_IMAGE, GTK_BOX (vbox2)); @@ -1446,13 +1446,13 @@ prefs_dialog_new (Gimp *gimp, vbox2 = prefs_frame_new (_("General"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "default-dot-for-dot", - _("Use \"_Dot for Dot\" by default"), + _("Use \"_Dot for dot\" by default"), GTK_BOX (vbox2)); table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_spin_button_add (object, "marching-ants-speed", 10.0, 100.0, 0, - _("Marching _Ants Speed:"), + _("Marching _ants speed:"), GTK_TABLE (table), 0, size_group); /* Zoom & Resize Behavior */ @@ -1460,18 +1460,18 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "resize-windows-on-zoom", - _("Resize Window on _Zoom"), + _("Resize window on _zoom"), GTK_BOX (vbox2)); prefs_check_button_add (object, "resize-windows-on-resize", - _("Resize Window on Image _Size Change"), + _("Resize window on image _size change"), GTK_BOX (vbox2)); table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_boolean_combo_box_add (object, "initial-zoom-to-fit", - _("Fit to Window"), + _("Fit to window"), "1:1", - _("Initial Zoom Ratio:"), + _("Initial zoom ratio:"), GTK_TABLE (table), 0, size_group); /* Pointer Movement Feedback */ @@ -1479,10 +1479,10 @@ prefs_dialog_new (Gimp *gimp, GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "show-brush-outline", - _("Show _Brush Outline"), + _("Show _brush outline"), GTK_BOX (vbox2)); prefs_check_button_add (object, "show-paint-tool-cursor", - _("Show Paint _Tool Cursor"), + _("Show paint _tool cursor"), GTK_BOX (vbox2)); table = prefs_table_new (2, GTK_CONTAINER (vbox2)); @@ -1668,10 +1668,10 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (2, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "transparency-type", 0, 0, - _("Transparency _Type:"), + _("Transparency _type:"), GTK_TABLE (table), 0, size_group); prefs_enum_combo_box_add (object, "transparency-size", 0, 0, - _("Check _Size:"), + _("Check _size:"), GTK_TABLE (table), 1, size_group); vbox2 = prefs_frame_new (_("Get Monitor Resolution"), @@ -1716,7 +1716,7 @@ prefs_dialog_new (Gimp *gimp, gimp_get_screen_resolution (NULL, &xres, &yres); - str = g_strdup_printf (_("From _Windowing System (currently %d x %d dpi)"), + str = g_strdup_printf (_("From _windowing system (currently %d x %d dpi)"), ROUND (xres), ROUND (yres)); button = gtk_radio_button_new_with_mnemonic (group, str); @@ -1952,25 +1952,25 @@ prefs_dialog_new (Gimp *gimp, table = prefs_table_new (2, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "toolbox-window-hint", 0, 0, - _("Hint for the _Toolbox:"), + _("Hint for the _toolbox:"), GTK_TABLE (table), 0, size_group); prefs_enum_combo_box_add (object, "dock-window-hint", 0, 0, - _("Hint for the _Docks:"), + _("Hint for the _docks:"), GTK_TABLE (table), 1, size_group); vbox2 = prefs_frame_new (_("Focus"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "activate-on-focus", - _("Activate the _Focused Image"), + _("Activate the _focused image"), GTK_BOX (vbox2)); /* Window Positions */ vbox2 = prefs_frame_new (_("Window Positions"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "save-session-info", - _("_Save Window Positions on Exit"), + _("_Save window positions on exit"), GTK_BOX (vbox2)); button = prefs_button_add (GTK_STOCK_SAVE, @@ -2014,21 +2014,21 @@ prefs_dialog_new (Gimp *gimp, #endif /* ENABLE_MP */ prefs_spin_button_add (object, "undo-levels", 1.0, 5.0, 0, - _("Minimal Number of Undo Levels:"), + _("Minimal number of undo levels:"), GTK_TABLE (table), 0, size_group); prefs_memsize_entry_add (object, "undo-size", - _("Maximum Undo Memory:"), + _("Maximum undo memory:"), GTK_TABLE (table), 1, size_group); prefs_memsize_entry_add (object, "tile-cache-size", - _("Tile Cache Size:"), + _("Tile cache size:"), GTK_TABLE (table), 2, size_group); prefs_memsize_entry_add (object, "max-new-image-size", - _("Maximum New Image Size:"), + _("Maximum new image size:"), GTK_TABLE (table), 3, size_group); #ifdef ENABLE_MP prefs_spin_button_add (object, "num-processors", 1.0, 4.0, 0, - _("Number of Processors to Use:"), + _("Number of processors to use:"), GTK_TABLE (table), 4, size_group); #endif /* ENABLE_MP */ @@ -2036,13 +2036,13 @@ prefs_dialog_new (Gimp *gimp, vbox2 = prefs_frame_new (_("File Saving"), GTK_CONTAINER (vbox), FALSE); prefs_check_button_add (object, "confirm-on-close", - _("Confirm Closing of Unsaved Images"), + _("Confirm closing of unsaved images"), GTK_BOX (vbox2)); table = prefs_table_new (1, GTK_CONTAINER (vbox2)); prefs_enum_combo_box_add (object, "thumbnail-size", 0, 0, - _("Size of Thumbnail Files:"), + _("Size of thumbnail files:"), GTK_TABLE (table), 0, size_group); g_object_unref (size_group); @@ -2072,8 +2072,8 @@ prefs_dialog_new (Gimp *gimp, } dirs[] = { - { N_("Temp Dir:"), N_("Select Temp Dir"), "temp-path" }, - { N_("Swap Dir:"), N_("Select Swap Dir"), "swap-path" }, + { N_("Temp dir:"), N_("Select Temp Dir"), "temp-path" }, + { N_("Swap dir:"), N_("Select Swap Dir"), "swap-path" }, }; table = prefs_table_new (G_N_ELEMENTS (dirs) + 1, GTK_CONTAINER (vbox)); diff --git a/app/gui/resize-dialog.c b/app/gui/resize-dialog.c index 3df4dd451c..e9a1891fc2 100644 --- a/app/gui/resize-dialog.c +++ b/app/gui/resize-dialog.c @@ -288,13 +288,13 @@ resize_dialog_new (GimpViewable *viewable, gtk_widget_show (table); /* the original width & height labels */ - label = gtk_label_new (_("Current Width:")); + label = gtk_label_new (_("Current width:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Current Height:")); + label = gtk_label_new (_("Current height:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -313,13 +313,13 @@ resize_dialog_new (GimpViewable *viewable, gtk_widget_show (private->orig_height_label); /* the new size labels */ - label = gtk_label_new (_("New Width:")); + label = gtk_label_new (_("New width:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("New Height:")); + label = gtk_label_new (_("New height:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -376,13 +376,13 @@ resize_dialog_new (GimpViewable *viewable, orig_labels_update (private->size_se, dialog); /* the scale ratio labels */ - label = gtk_label_new (_("X Ratio:")); + label = gtk_label_new (_("X ratio:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 4, 5, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Y Ratio:")); + label = gtk_label_new (_("Y ratio:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 5, 6, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -560,13 +560,13 @@ resize_dialog_new (GimpViewable *viewable, gtk_box_pack_start (GTK_BOX (vbox), table, FALSE, FALSE, 0); /* the print size labels */ - label = gtk_label_new (_("New Width:")); + label = gtk_label_new (_("New width:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("New Height:")); + label = gtk_label_new (_("New height:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); @@ -627,13 +627,13 @@ resize_dialog_new (GimpViewable *viewable, dialog); /* the resolution labels */ - label = gtk_label_new (_("X Resolution:")); + label = gtk_label_new (_("X resolution:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 2, 3, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Y Resolution:")); + label = gtk_label_new (_("Y resolution:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 3, 4, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/gui/stroke-dialog.c b/app/gui/stroke-dialog.c index d20d0b8ec4..cbebad6320 100644 --- a/app/gui/stroke-dialog.c +++ b/app/gui/stroke-dialog.c @@ -159,7 +159,7 @@ stroke_dialog_new (GimpItem *item, gtk_box_pack_start (GTK_BOX (main_vbox), frame, FALSE, FALSE, 0); gtk_widget_show (frame); - button = gtk_radio_button_new_with_label (NULL, _("Stroke Line")); + button = gtk_radio_button_new_with_label (NULL, _("Stroke line")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button)); gtk_frame_set_label_widget (GTK_FRAME (frame), button); gtk_widget_show (button); @@ -189,7 +189,7 @@ stroke_dialog_new (GimpItem *item, gtk_widget_show (frame); button = gtk_radio_button_new_with_label (group, - _("Stroke With a Paint Tool")); + _("Stroke with a paint tool")); group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (button)); gtk_frame_set_label_widget (GTK_FRAME (frame), button); gtk_widget_show (button); diff --git a/app/gui/tips-dialog.c b/app/gui/tips-dialog.c index ce8fa9fc31..ff8140def2 100644 --- a/app/gui/tips-dialog.c +++ b/app/gui/tips-dialog.c @@ -214,7 +214,7 @@ tips_dialog_create (Gimp *gimp) gtk_box_pack_end (GTK_BOX (hbox), bbox, FALSE, FALSE, 0); gtk_widget_show (bbox); - button = gtk_button_new_with_mnemonic (_("_Previous Tip")); + button = gtk_button_new_with_mnemonic (_("_Previous tip")); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); gtk_widget_set_sensitive (button, (tips_count > 1)); gtk_container_add (GTK_CONTAINER (bbox), button); @@ -224,7 +224,7 @@ tips_dialog_create (Gimp *gimp) G_CALLBACK (tips_show_previous), NULL); - button = gtk_button_new_with_mnemonic (_("_Next Tip")); + button = gtk_button_new_with_mnemonic (_("_Next tip")); GTK_WIDGET_UNSET_FLAGS (button, GTK_RECEIVES_DEFAULT); gtk_widget_set_sensitive (button, (tips_count > 1)); gtk_container_add (GTK_CONTAINER (bbox), button); diff --git a/app/gui/user-install-dialog.c b/app/gui/user-install-dialog.c index 6d7873b6f6..2938ffeb8e 100644 --- a/app/gui/user-install-dialog.c +++ b/app/gui/user-install-dialog.c @@ -1124,7 +1124,7 @@ user_install_tuning (GimpRc *gimprc) gtk_box_pack_end (GTK_BOX (hbox), entry, FALSE, FALSE, 0); gtk_widget_show (entry); - label = gtk_label_new (_("Tile Cache Size:")); + label = gtk_label_new (_("Tile cache size:")); PAGE_STYLE (label); gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); @@ -1147,12 +1147,12 @@ user_install_tuning (GimpRc *gimprc) gtk_widget_show (hbox); entry = gimp_prop_file_entry_new (G_OBJECT (gimprc), "swap-path", - _("Select Swap Dir"), + _("Select swap dir"), TRUE, TRUE); gtk_box_pack_end (GTK_BOX (hbox), entry, FALSE, FALSE, 0); gtk_widget_show (entry); - label = gtk_label_new (_("Swap Folder:")); + label = gtk_label_new (_("Swap folder:")); PAGE_STYLE (label); gtk_box_pack_end (GTK_BOX (hbox), label, FALSE, FALSE, 0); gtk_widget_show (label); diff --git a/app/widgets/gimpbrusheditor.c b/app/widgets/gimpbrusheditor.c index 1699009dbb..4872295325 100644 --- a/app/widgets/gimpbrusheditor.c +++ b/app/widgets/gimpbrusheditor.c @@ -153,7 +153,7 @@ gimp_brush_editor_init (GimpBrushEditor *editor) editor->aspect_ratio_data = GTK_ADJUSTMENT (gimp_scale_entry_new (GTK_TABLE (editor->options_table), 0, 2, - _("Aspect Ratio:"), -1, 5, + _("Aspect ratio:"), -1, 5, 0.0, 1.0, 20.0, 0.1, 1.0, 1, TRUE, 0.0, 0.0, NULL, NULL)); diff --git a/app/widgets/gimpchanneltreeview.c b/app/widgets/gimpchanneltreeview.c index 2873432abe..a84ede9a60 100644 --- a/app/widgets/gimpchanneltreeview.c +++ b/app/widgets/gimpchanneltreeview.c @@ -163,7 +163,7 @@ gimp_channel_tree_view_constructor (GType type, editor = GIMP_EDITOR (object); view = GIMP_CHANNEL_TREE_VIEW (object); - str = g_strdup_printf (_("Channel to Selection\n" + str = g_strdup_printf (_("Channel to selection\n" "%s Add\n" "%s Subtract\n" "%s%s%s Intersect"), diff --git a/app/widgets/gimpcolordisplayeditor.c b/app/widgets/gimpcolordisplayeditor.c index 2eb49c267e..5eb2f321a5 100644 --- a/app/widgets/gimpcolordisplayeditor.c +++ b/app/widgets/gimpcolordisplayeditor.c @@ -542,18 +542,18 @@ gimp_color_display_editor_dest_changed (GtkTreeSelection *sel, editor->config_widget = gimp_color_display_configure (display); - str = g_strdup_printf (_("Configure Selected Filter: %s"), + str = g_strdup_printf (_("Configure selected filter: %s"), GIMP_COLOR_DISPLAY_GET_CLASS (display)->name); gtk_frame_set_label (GTK_FRAME (editor->config_frame), str); g_free (str); } else { - editor->config_widget = gtk_label_new (_("No Filter Selected")); + editor->config_widget = gtk_label_new (_("No filter selected")); gtk_widget_set_sensitive (editor->config_widget, FALSE); gtk_frame_set_label (GTK_FRAME (editor->config_frame), - _("Configure Selected Filter")); + _("Configure selected filter")); } if (editor->config_widget) diff --git a/app/widgets/gimpcolormapeditor.c b/app/widgets/gimpcolormapeditor.c index 0d45cc01e9..b485a102e0 100644 --- a/app/widgets/gimpcolormapeditor.c +++ b/app/widgets/gimpcolormapeditor.c @@ -232,13 +232,13 @@ gimp_colormap_editor_constructor (GType type, editor->edit_button = gimp_editor_add_button (GIMP_EDITOR (editor), - GIMP_STOCK_EDIT, _("Edit Color"), + GIMP_STOCK_EDIT, _("Edit color"), GIMP_HELP_INDEXED_PALETTE_EDIT, G_CALLBACK (gimp_colormap_edit_clicked), NULL, editor); - str = g_strdup_printf (_("Add Color from FG\n%s from BG"), + str = g_strdup_printf (_("Add color from FG\n%s from BG"), gimp_get_mod_name_control ()); editor->add_button = gimp_editor_add_action_button (GIMP_EDITOR (editor), "colormap-editor", @@ -392,7 +392,7 @@ gimp_colormap_editor_new (GimpImage *gimage, gimp_spin_button_new ((GtkObject **) &editor->index_adjustment, 0, 0, 0, 1, 10, 10, 1.0, 0); gimp_table_attach_aligned (GTK_TABLE (table), 0, 0, - _("Color Index:"), 0.0, 0.5, + _("Color index:"), 0.0, 0.5, editor->index_spinbutton, 1, TRUE); g_signal_connect (editor->index_adjustment, "value_changed", @@ -403,7 +403,7 @@ gimp_colormap_editor_new (GimpImage *gimage, gtk_entry_set_width_chars (GTK_ENTRY (editor->color_entry), 8); gtk_entry_set_max_length (GTK_ENTRY (editor->color_entry), 6); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, - _("He_x Triplet:"), 0.0, 0.5, + _("He_x triplet:"), 0.0, 0.5, editor->color_entry, 1, TRUE); g_signal_connect (editor->color_entry, "activate", @@ -915,7 +915,7 @@ gimp_colormap_edit_clicked (GtkWidget *widget, color_notebook_new (GIMP_VIEWABLE (gimage), _("Edit Indexed Color"), GIMP_STOCK_CONVERT_INDEXED, - _("Edit Indexed Image Palette Color"), + _("Edit indexed image palette color"), GTK_WIDGET (editor), toplevel_factory, "gimp-colormap-editor-color-dialog", diff --git a/app/widgets/gimpcolorpanel.c b/app/widgets/gimpcolorpanel.c index ce1606c8ac..18db7ab208 100644 --- a/app/widgets/gimpcolorpanel.c +++ b/app/widgets/gimpcolorpanel.c @@ -155,10 +155,10 @@ gimp_color_panel_button_press (GtkWidget *widget, item_factory = GTK_ITEM_FACTORY (color_button->popup_menu); gimp_item_factory_set_visible (item_factory, - "/Foreground Color", + "/Foreground color", color_panel->context != NULL); gimp_item_factory_set_visible (item_factory, - "/Background Color", + "/Background color", color_panel->context != NULL); gimp_item_factory_set_visible (item_factory, "/fg-bg-separator", @@ -172,9 +172,9 @@ gimp_color_panel_button_press (GtkWidget *widget, gimp_context_get_background (color_panel->context, &bg); gimp_item_factory_set_color (item_factory, - "/Foreground Color", &fg, FALSE); + "/Foreground color", &fg, FALSE); gimp_item_factory_set_color (item_factory, - "/Background Color", &bg, FALSE); + "/Background color", &bg, FALSE); } gimp_rgba_set (&black, 0.0, 0.0, 0.0, GIMP_OPACITY_OPAQUE); diff --git a/app/widgets/gimperrorconsole.c b/app/widgets/gimperrorconsole.c index e45ac07889..67166b2b7d 100644 --- a/app/widgets/gimperrorconsole.c +++ b/app/widgets/gimperrorconsole.c @@ -172,14 +172,14 @@ gimp_error_console_init (GimpErrorConsole *console) console->clear_button = gimp_editor_add_button (GIMP_EDITOR (console), - GTK_STOCK_CLEAR, _("Clear Errors"), + GTK_STOCK_CLEAR, _("Clear errors"), GIMP_HELP_ERRORS_CLEAR, G_CALLBACK (gimp_error_console_clear_clicked), NULL, console); - str = g_strdup_printf (_("Save all Errors\n" - "%s Save Selection"), + str = g_strdup_printf (_("Save all errors\n" + "%s Save selection"), gimp_get_mod_name_shift ()); console->save_button = diff --git a/app/widgets/gimpgrideditor.c b/app/widgets/gimpgrideditor.c index ff6673f504..9a69034bbe 100644 --- a/app/widgets/gimpgrideditor.c +++ b/app/widgets/gimpgrideditor.c @@ -220,16 +220,16 @@ gimp_grid_editor_constructor (GType type, style, 1, FALSE); color_button = gimp_prop_color_button_new (G_OBJECT (editor->grid), "fgcolor", - _("Change Grid Foreground Color"), + _("Change grid foreground color"), GRID_EDITOR_COLOR_BUTTON_WIDTH, GRID_EDITOR_COLOR_BUTTON_HEIGHT, GIMP_COLOR_AREA_FLAT); gimp_table_attach_aligned (GTK_TABLE (table), 0, 1, - _("_Foreground Color:"), 0.0, 0.5, + _("_Foreground color:"), 0.0, 0.5, color_button, 1, TRUE); color_button = gimp_prop_color_button_new (G_OBJECT (editor->grid), "bgcolor", - _("Change Grid Background Color"), + _("Change grid background color"), GRID_EDITOR_COLOR_BUTTON_WIDTH, GRID_EDITOR_COLOR_BUTTON_HEIGHT, GIMP_COLOR_AREA_FLAT); diff --git a/app/widgets/gimplayertreeview.c b/app/widgets/gimplayertreeview.c index ca136b165b..1a7ff5a6f7 100644 --- a/app/widgets/gimplayertreeview.c +++ b/app/widgets/gimplayertreeview.c @@ -284,7 +284,7 @@ gimp_layer_tree_view_init (GimpLayerTreeView *view) G_CALLBACK (gimp_layer_tree_view_preserve_button_toggled), view); - gimp_help_set_help_data (toggle, _("Keep Transparency"), + gimp_help_set_help_data (toggle, _("Keep transparency"), GIMP_HELP_LAYER_DIALOG_KEEP_TRANS_BUTTON); gtk_widget_style_get (GTK_WIDGET (view), diff --git a/app/widgets/gimppaletteeditor.c b/app/widgets/gimppaletteeditor.c index c64f091348..b240fa47b2 100644 --- a/app/widgets/gimppaletteeditor.c +++ b/app/widgets/gimppaletteeditor.c @@ -301,13 +301,13 @@ gimp_palette_editor_init (GimpPaletteEditor *editor) editor->edit_button = gimp_editor_add_button (GIMP_EDITOR (editor), - GIMP_STOCK_EDIT, _("Edit Color"), + GIMP_STOCK_EDIT, _("Edit color"), GIMP_HELP_PALETTE_EDITOR_EDIT, G_CALLBACK (palette_editor_edit_clicked), NULL, editor); - str = g_strdup_printf (_("New Color from FG\n%s from BG"), + str = g_strdup_printf (_("New color from FG\n%s from BG"), gimp_get_mod_name_control ()); editor->new_button = gimp_editor_add_button (GIMP_EDITOR (editor), @@ -320,7 +320,7 @@ gimp_palette_editor_init (GimpPaletteEditor *editor) editor->delete_button = gimp_editor_add_button (GIMP_EDITOR (editor), - GTK_STOCK_DELETE, _("Delete Color"), + GTK_STOCK_DELETE, _("Delete color"), GIMP_HELP_PALETTE_EDITOR_DELETE, G_CALLBACK (palette_editor_delete_clicked), NULL, @@ -328,7 +328,7 @@ gimp_palette_editor_init (GimpPaletteEditor *editor) editor->zoom_out_button = gimp_editor_add_button (GIMP_EDITOR (editor), - GTK_STOCK_ZOOM_OUT, _("Zoom Out"), + GTK_STOCK_ZOOM_OUT, _("Zoom out"), GIMP_HELP_PALETTE_EDITOR_ZOOM_OUT, G_CALLBACK (palette_editor_zoom_out_clicked), NULL, @@ -336,7 +336,7 @@ gimp_palette_editor_init (GimpPaletteEditor *editor) editor->zoom_in_button = gimp_editor_add_button (GIMP_EDITOR (editor), - GTK_STOCK_ZOOM_IN, _("Zoom In"), + GTK_STOCK_ZOOM_IN, _("Zoom in"), GIMP_HELP_PALETTE_EDITOR_ZOOM_IN, G_CALLBACK (palette_editor_zoom_in_clicked), NULL, @@ -344,7 +344,7 @@ gimp_palette_editor_init (GimpPaletteEditor *editor) editor->zoom_all_button = gimp_editor_add_button (GIMP_EDITOR (editor), - GTK_STOCK_ZOOM_FIT, _("Zoom All"), + GTK_STOCK_ZOOM_FIT, _("Zoom all"), GIMP_HELP_PALETTE_EDITOR_ZOOM_ALL, G_CALLBACK (palette_editor_zoom_all_clicked), NULL, diff --git a/app/widgets/gimpstrokeeditor.c b/app/widgets/gimpstrokeeditor.c index 6cd0e14839..917f49e9ff 100644 --- a/app/widgets/gimpstrokeeditor.c +++ b/app/widgets/gimpstrokeeditor.c @@ -225,18 +225,18 @@ gimp_stroke_editor_constructor (GType type, box = gimp_prop_enum_stock_box_new (G_OBJECT (editor->options), "cap-style", "gimp-cap", 0, 0); gimp_table_attach_aligned (GTK_TABLE (table), 0, row++, - _("_Cap Style:"), 0.0, 0.5, + _("_Cap style:"), 0.0, 0.5, box, 2, TRUE); box = gimp_prop_enum_stock_box_new (G_OBJECT (editor->options), "join-style", "gimp-join", 0, 0); gimp_table_attach_aligned (GTK_TABLE (table), 0, row++, - _("_Join Style:"), 0.0, 0.5, + _("_Join style:"), 0.0, 0.5, box, 2, TRUE); gimp_prop_scale_entry_new (G_OBJECT (editor->options), "miter", GTK_TABLE (table), 0, row++, - _("_Miter Limit:"), + _("_Miter limit:"), 1.0, 1.0, 1, FALSE, 0.0, 0.0); @@ -278,7 +278,7 @@ gimp_stroke_editor_constructor (GType type, gtk_container_add (GTK_CONTAINER (frame), box); gimp_table_attach_aligned (GTK_TABLE (table), 0, row++, - _("Dash Pattern:"), 0.0, 0.5, frame, 2, FALSE); + _("Dash pattern:"), 0.0, 0.5, frame, 2, FALSE); box = gimp_enum_combo_box_new (GIMP_TYPE_DASH_PRESET); gimp_int_combo_box_set_active (GIMP_INT_COMBO_BOX (box), GIMP_DASH_CUSTOM); @@ -290,7 +290,7 @@ gimp_stroke_editor_constructor (GType type, box, G_CONNECT_SWAPPED); gimp_table_attach_aligned (GTK_TABLE (table), 0, row++, - _("Dash Preset:"), 0.0, 0.5, box, 2, TRUE); + _("Dash preset:"), 0.0, 0.5, box, 2, TRUE); gtk_widget_show (box); diff --git a/app/widgets/gimptemplateeditor.c b/app/widgets/gimptemplateeditor.c index 1f9aecc72d..49565e7fc9 100644 --- a/app/widgets/gimptemplateeditor.c +++ b/app/widgets/gimptemplateeditor.c @@ -319,13 +319,13 @@ gimp_template_editor_constructor (GType type, gtk_widget_show (table); /* the resolution labels */ - label = gtk_label_new (_("X Resolution:")); + label = gtk_label_new (_("X resolution:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 0, 1, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); gtk_widget_show (label); - label = gtk_label_new (_("Y Resolution:")); + label = gtk_label_new (_("Y resolution:")); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); gtk_table_attach (GTK_TABLE (table), label, 0, 1, 1, 2, GTK_SHRINK | GTK_FILL, GTK_SHRINK | GTK_FILL, 0, 0); diff --git a/app/widgets/gimptexteditor.c b/app/widgets/gimptexteditor.c index 104012000c..98a04b53c8 100644 --- a/app/widgets/gimptexteditor.c +++ b/app/widgets/gimptexteditor.c @@ -181,11 +181,11 @@ gimp_text_editor_new (const gchar *title) gtk_widget_show (GTK_WIDGET (toolbar)); gtk_toolbar_insert_stock (toolbar, GTK_STOCK_OPEN, - _("Load Text from File"), NULL, + _("Load text from file"), NULL, G_CALLBACK (gimp_text_editor_load), editor, 0); gtk_toolbar_insert_stock (toolbar, GTK_STOCK_CLEAR, - _("Clear all Text"), NULL, + _("Clear all text"), NULL, G_CALLBACK (gimp_text_editor_clear), editor, 1); diff --git a/app/widgets/gimpthumbbox.c b/app/widgets/gimpthumbbox.c index 2fcb700da2..0d15598ce3 100644 --- a/app/widgets/gimpthumbbox.c +++ b/app/widgets/gimpthumbbox.c @@ -247,7 +247,7 @@ gimp_thumb_box_new (Gimp *gimp) G_CALLBACK (gimp_thumb_box_thumbnail_clicked), box); - box->filename = gtk_label_new (_("No Selection")); + box->filename = gtk_label_new (_("No selection")); gtk_label_set_line_wrap (GTK_LABEL (box->filename), TRUE); gtk_label_set_justify (GTK_LABEL (box->filename), GTK_JUSTIFY_CENTER); gtk_box_pack_start (GTK_BOX (vbox2), box->filename, FALSE, FALSE, 0); @@ -296,7 +296,7 @@ gimp_thumb_box_set_uri (GimpThumbBox *box, } else { - gtk_label_set_text (GTK_LABEL (box->filename), _("No Selection")); + gtk_label_set_text (GTK_LABEL (box->filename), _("No selection")); } gtk_widget_set_sensitive (GTK_WIDGET (box), uri != NULL); diff --git a/app/widgets/gimpvectorstreeview.c b/app/widgets/gimpvectorstreeview.c index e5524fe98e..70f0d3ab84 100644 --- a/app/widgets/gimpvectorstreeview.c +++ b/app/widgets/gimpvectorstreeview.c @@ -99,23 +99,23 @@ gimp_vectors_tree_view_class_init (GimpVectorsTreeViewClass *klass) item_view_class->add_item = (GimpAddItemFunc) gimp_image_add_vectors; item_view_class->remove_item = (GimpRemoveItemFunc) gimp_image_remove_vectors; - item_view_class->edit_desc = _("Edit Path Attributes"); + item_view_class->edit_desc = _("Edit path attributes"); item_view_class->edit_help_id = GIMP_HELP_PATH_EDIT; - item_view_class->new_desc = _("New Path\n%s New Path Dialog"); + item_view_class->new_desc = _("New path\n%s new path dialog"); item_view_class->new_help_id = GIMP_HELP_PATH_NEW; - item_view_class->duplicate_desc = _("Duplicate Path"); + item_view_class->duplicate_desc = _("Duplicate path"); item_view_class->duplicate_help_id = GIMP_HELP_PATH_DUPLICATE; - item_view_class->delete_desc = _("Delete Path"); + item_view_class->delete_desc = _("Delete path"); item_view_class->delete_help_id = GIMP_HELP_PATH_DELETE; - item_view_class->raise_desc = _("Raise Path"); + item_view_class->raise_desc = _("Raise path"); item_view_class->raise_help_id = GIMP_HELP_PATH_RAISE; - item_view_class->raise_to_top_desc = _("Raise Path to Top"); + item_view_class->raise_to_top_desc = _("Raise path to top"); item_view_class->raise_to_top_help_id = GIMP_HELP_PATH_RAISE_TO_TOP; - item_view_class->lower_desc = _("Lower Path"); + item_view_class->lower_desc = _("Lower path"); item_view_class->lower_help_id = GIMP_HELP_PATH_LOWER; - item_view_class->lower_to_bottom_desc = _("Lower Path to Bottom"); + item_view_class->lower_to_bottom_desc = _("Lower path to bottom"); item_view_class->lower_to_bottom_help_id = GIMP_HELP_PATH_LOWER_TO_BOTTOM; - item_view_class->reorder_desc = _("Reorder Path"); + item_view_class->reorder_desc = _("Reorder path"); } static void diff --git a/app/widgets/gimpwidgets-constructors.c b/app/widgets/gimpwidgets-constructors.c index 85406682a4..a987946c58 100644 --- a/app/widgets/gimpwidgets-constructors.c +++ b/app/widgets/gimpwidgets-constructors.c @@ -50,7 +50,7 @@ gimp_paint_mode_menu_new (GCallback callback, _("Normal"), GIMP_NORMAL_MODE, NULL, _("Dissolve"), GIMP_DISSOLVE_MODE, NULL, _("Behind"), GIMP_BEHIND_MODE, NULL, - _("Color Erase"), GIMP_COLOR_ERASE_MODE, NULL, + _("Color erase"), GIMP_COLOR_ERASE_MODE, NULL, "---", 0, NULL, _("Multiply"), GIMP_MULTIPLY_MODE, NULL, _("Divide"), GIMP_DIVIDE_MODE, NULL, @@ -59,16 +59,16 @@ gimp_paint_mode_menu_new (GCallback callback, "---", 0, NULL, _("Dodge"), GIMP_DODGE_MODE, NULL, _("Burn"), GIMP_BURN_MODE, NULL, - _("Hard Light"), GIMP_HARDLIGHT_MODE, NULL, - _("Soft Light"), GIMP_SOFTLIGHT_MODE, NULL, - _("Grain Extract"), GIMP_GRAIN_EXTRACT_MODE, NULL, - _("Grain Merge"), GIMP_GRAIN_MERGE_MODE, NULL, + _("Hard light"), GIMP_HARDLIGHT_MODE, NULL, + _("Soft light"), GIMP_SOFTLIGHT_MODE, NULL, + _("Grain extract"), GIMP_GRAIN_EXTRACT_MODE, NULL, + _("Grain merge"), GIMP_GRAIN_MERGE_MODE, NULL, "---", 0, NULL, _("Difference"), GIMP_DIFFERENCE_MODE, NULL, _("Addition"), GIMP_ADDITION_MODE, NULL, _("Subtract"), GIMP_SUBTRACT_MODE, NULL, - _("Darken Only"), GIMP_DARKEN_ONLY_MODE, NULL, - _("Lighten Only"), GIMP_LIGHTEN_ONLY_MODE, NULL, + _("Darken only"), GIMP_DARKEN_ONLY_MODE, NULL, + _("Lighten only"), GIMP_LIGHTEN_ONLY_MODE, NULL, "---", 0, NULL, _("Hue"), GIMP_HUE_MODE, NULL, _("Saturation"), GIMP_SATURATION_MODE, NULL, @@ -92,16 +92,16 @@ gimp_paint_mode_menu_new (GCallback callback, "---", 0, NULL, _("Dodge"), GIMP_DODGE_MODE, NULL, _("Burn"), GIMP_BURN_MODE, NULL, - _("Hard Light"), GIMP_HARDLIGHT_MODE, NULL, - _("Soft Light"), GIMP_SOFTLIGHT_MODE, NULL, - _("Grain Extract"), GIMP_GRAIN_EXTRACT_MODE, NULL, - _("Grain Merge"), GIMP_GRAIN_MERGE_MODE, NULL, + _("Hard light"), GIMP_HARDLIGHT_MODE, NULL, + _("Soft light"), GIMP_SOFTLIGHT_MODE, NULL, + _("Grain extract"), GIMP_GRAIN_EXTRACT_MODE, NULL, + _("Grain merge"), GIMP_GRAIN_MERGE_MODE, NULL, "---", 0, NULL, _("Difference"), GIMP_DIFFERENCE_MODE, NULL, _("Addition"), GIMP_ADDITION_MODE, NULL, _("Subtract"), GIMP_SUBTRACT_MODE, NULL, - _("Darken Only"), GIMP_DARKEN_ONLY_MODE, NULL, - _("Lighten Only"), GIMP_LIGHTEN_ONLY_MODE, NULL, + _("Darken only"), GIMP_DARKEN_ONLY_MODE, NULL, + _("Lighten only"), GIMP_LIGHTEN_ONLY_MODE, NULL, "---", 0, NULL, _("Hue"), GIMP_HUE_MODE, NULL, _("Saturation"), GIMP_SATURATION_MODE, NULL, diff --git a/app/widgets/widgets-enums.c b/app/widgets/widgets-enums.c index 3cdb0b0ed8..c327ae1bdd 100644 --- a/app/widgets/widgets-enums.c +++ b/app/widgets/widgets-enums.c @@ -49,7 +49,7 @@ gimp_aspect_type_get_type (void) static const GEnumValue gimp_color_frame_mode_enum_values[] = { - { GIMP_COLOR_FRAME_MODE_PIXEL, N_("Pixel Values"), "pixel" }, + { GIMP_COLOR_FRAME_MODE_PIXEL, N_("Pixel values"), "pixel" }, { GIMP_COLOR_FRAME_MODE_RGB, N_("RGB"), "rgb" }, { GIMP_COLOR_FRAME_MODE_HSV, N_("HSV"), "hsv" }, { GIMP_COLOR_FRAME_MODE_CMYK, N_("CMYK"), "cmyk" }, @@ -70,7 +70,7 @@ gimp_color_frame_mode_get_type (void) static const GEnumValue gimp_cursor_format_enum_values[] = { - { GIMP_CURSOR_FORMAT_BITMAP, N_("Black & White"), "bitmap" }, + { GIMP_CURSOR_FORMAT_BITMAP, N_("Black & white"), "bitmap" }, { GIMP_CURSOR_FORMAT_PIXBUF, N_("Fancy"), "pixbuf" }, { 0, NULL, NULL } }; @@ -90,7 +90,7 @@ gimp_cursor_format_get_type (void) static const GEnumValue gimp_help_browser_type_enum_values[] = { { GIMP_HELP_BROWSER_GIMP, N_("Internal"), "gimp" }, - { GIMP_HELP_BROWSER_WEB_BROWSER, N_("Web Browser"), "web-browser" }, + { GIMP_HELP_BROWSER_WEB_BROWSER, N_("Web browser"), "web-browser" }, { 0, NULL, NULL } }; @@ -128,13 +128,13 @@ gimp_histogram_scale_get_type (void) static const GEnumValue gimp_tab_style_enum_values[] = { { GIMP_TAB_STYLE_ICON, N_("Icon"), "icon" }, - { GIMP_TAB_STYLE_PREVIEW, N_("Current Status"), "preview" }, + { GIMP_TAB_STYLE_PREVIEW, N_("Current status"), "preview" }, { GIMP_TAB_STYLE_NAME, N_("Text"), "name" }, { GIMP_TAB_STYLE_BLURB, N_("Description"), "blurb" }, - { GIMP_TAB_STYLE_ICON_NAME, N_("Icon & Text"), "icon-name" }, - { GIMP_TAB_STYLE_ICON_BLURB, N_("Icon & Desc"), "icon-blurb" }, - { GIMP_TAB_STYLE_PREVIEW_NAME, N_("Status & Text"), "preview-name" }, - { GIMP_TAB_STYLE_PREVIEW_BLURB, N_("Status & Desc"), "preview-blurb" }, + { GIMP_TAB_STYLE_ICON_NAME, N_("Icon & text"), "icon-name" }, + { GIMP_TAB_STYLE_ICON_BLURB, N_("Icon & desc"), "icon-blurb" }, + { GIMP_TAB_STYLE_PREVIEW_NAME, N_("Status & text"), "preview-name" }, + { GIMP_TAB_STYLE_PREVIEW_BLURB, N_("Status & desc"), "preview-blurb" }, { 0, NULL, NULL } }; @@ -152,8 +152,8 @@ gimp_tab_style_get_type (void) static const GEnumValue gimp_view_type_enum_values[] = { - { GIMP_VIEW_TYPE_LIST, N_("View as List"), "list" }, - { GIMP_VIEW_TYPE_GRID, N_("View as Grid"), "grid" }, + { GIMP_VIEW_TYPE_LIST, N_("View as list"), "list" }, + { GIMP_VIEW_TYPE_GRID, N_("View as grid"), "grid" }, { 0, NULL, NULL } }; @@ -171,9 +171,9 @@ gimp_view_type_get_type (void) static const GEnumValue gimp_window_hint_enum_values[] = { - { GIMP_WINDOW_HINT_NORMAL, N_("Normal Window"), "normal" }, - { GIMP_WINDOW_HINT_UTILITY, N_("Utility Window"), "utility" }, - { GIMP_WINDOW_HINT_KEEP_ABOVE, N_("Keep Above"), "keep-above" }, + { GIMP_WINDOW_HINT_NORMAL, N_("Normal window"), "normal" }, + { GIMP_WINDOW_HINT_UTILITY, N_("Utility window"), "utility" }, + { GIMP_WINDOW_HINT_KEEP_ABOVE, N_("Keep above"), "keep-above" }, { 0, NULL, NULL } }; diff --git a/etc/templaterc b/etc/templaterc index 122a913d39..f6f9ba8e7d 100644 --- a/etc/templaterc +++ b/etc/templaterc @@ -119,7 +119,7 @@ (resolution-unit inches) (image-type rgb) (fill-type background-fill)) -(GimpTemplate "Toilet Paper (US, 300dpi)" +(GimpTemplate "Toilet paper (US, 300dpi)" (stock-id "gimp-toilet-paper") (width 1350) (height 1350) @@ -129,7 +129,7 @@ (resolution-unit inches) (image-type rgb) (fill-type background-fill)) -(GimpTemplate "CD Cover (300dpi)" +(GimpTemplate "CD cover (300dpi)" (stock-id "gtk-cdrom") (width 1429) (height 1417) @@ -139,7 +139,7 @@ (resolution-unit inches) (image-type rgb) (fill-type background-fill)) -(GimpTemplate "Floppy Label (300dpi)" +(GimpTemplate "Floppy label (300dpi)" (stock-id "gtk-floppy") (width 825) (height 825) @@ -149,7 +149,7 @@ (resolution-unit inches) (image-type rgb) (fill-type background-fill)) -(GimpTemplate "Web Banner Common 468x60" +(GimpTemplate "Web banner common 468x60" (stock-id "gimp-web") (width 468) (height 60) @@ -159,7 +159,7 @@ (resolution-unit inches) (image-type rgb) (fill-type background-fill)) -(GimpTemplate "Web Banner Huge 728x90" +(GimpTemplate "Web banner huge 728x90" (stock-id "gimp-web") (width 728) (height 90)