app/actions/actions.c app/actions/cursor-info-actions.c
2006-01-12 Sven Neumann <sven@gimp.org> * app/actions/actions.c * app/actions/cursor-info-actions.c * app/actions/dialogs-actions.c * app/config/gimprc-blurbs.h * app/dialogs/dialogs.c * app/dialogs/preferences-dialog.c * app/widgets/gimphelp-ids.h: use the term Pointer instead of Cursor when refering to the mouse pointer (bug #326700).
This commit is contained in:

committed by
Sven Neumann

parent
b8752cd251
commit
004a78e276
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
||||
2006-01-12 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/actions/actions.c
|
||||
* app/actions/cursor-info-actions.c
|
||||
* app/actions/dialogs-actions.c
|
||||
* app/config/gimprc-blurbs.h
|
||||
* app/dialogs/dialogs.c
|
||||
* app/dialogs/preferences-dialog.c
|
||||
* app/widgets/gimphelp-ids.h: use the term Pointer instead of
|
||||
Cursor when refering to the mouse pointer (bug #326700).
|
||||
|
||||
2006-01-11 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/plug-in/plug-in.[ch]
|
||||
|
@ -113,7 +113,7 @@ static GimpActionFactoryEntry action_groups[] =
|
||||
{ "context", N_("Context"), NULL,
|
||||
context_actions_setup,
|
||||
context_actions_update },
|
||||
{ "cursor-info", N_("Cursor Info"), NULL,
|
||||
{ "cursor-info", N_("Pointer Information"), NULL,
|
||||
cursor_info_actions_setup,
|
||||
cursor_info_actions_update },
|
||||
{ "debug", N_("Debug"), NULL,
|
||||
|
@ -37,8 +37,8 @@
|
||||
static GimpActionEntry cursor_info_actions[] =
|
||||
{
|
||||
{ "cursor-info-popup", GIMP_STOCK_CURSOR,
|
||||
N_("Cursor Info Menu"), NULL, NULL, NULL,
|
||||
GIMP_HELP_CURSOR_INFO_DIALOG }
|
||||
N_("Pointer Information Menu"), NULL, NULL, NULL,
|
||||
GIMP_HELP_POINTER_INFO_DIALOG }
|
||||
};
|
||||
|
||||
static GimpToggleActionEntry cursor_info_toggle_actions[] =
|
||||
@ -48,7 +48,7 @@ static GimpToggleActionEntry cursor_info_toggle_actions[] =
|
||||
N_("Sample Merged"),
|
||||
G_CALLBACK (cursor_info_sample_merged_cmd_callback),
|
||||
TRUE,
|
||||
GIMP_HELP_CURSOR_INFO_SAMPLE_MERGED }
|
||||
GIMP_HELP_POINTER_INFO_SAMPLE_MERGED }
|
||||
};
|
||||
|
||||
|
||||
|
@ -112,9 +112,9 @@ GimpStringActionEntry dialogs_dockable_actions[] =
|
||||
GIMP_HELP_UNDO_DIALOG },
|
||||
|
||||
{ "dialogs-cursor", GIMP_STOCK_CURSOR,
|
||||
N_("_Cursor"), NULL, N_("Cursor Info"),
|
||||
N_("Pointer"), NULL, N_("Pointer Info"),
|
||||
"gimp-cursor-view",
|
||||
GIMP_HELP_CURSOR_INFO_DIALOG },
|
||||
GIMP_HELP_POINTER_INFO_DIALOG },
|
||||
|
||||
{ "dialogs-sample-points", GIMP_STOCK_SAMPLE_POINT,
|
||||
N_("_Sample Points"), NULL, N_("Sample Points"),
|
||||
|
@ -33,14 +33,14 @@ N_("Sets the canvas padding color used if the padding mode is set to " \
|
||||
N_("Ask for confirmation before closing an image without saving.")
|
||||
|
||||
#define CURSOR_FORMAT_BLURB \
|
||||
N_("Sets the pixel format of cursors the GIMP will use.")
|
||||
N_("Sets the pixel format to use for mouse pointers.")
|
||||
|
||||
#define CURSOR_MODE_BLURB \
|
||||
N_("Sets the mode of cursor the GIMP will use.")
|
||||
N_("Sets the type of mouse pointers to use.")
|
||||
|
||||
#define CURSOR_UPDATING_BLURB \
|
||||
N_("Context-dependent cursors are cool. They are enabled by default. " \
|
||||
"However, they require overhead that you may want to do without.")
|
||||
N_("Context-dependent mouse pointers are helpful. They are enabled by " \
|
||||
"default. However, they require overhead that you may want to do without.")
|
||||
|
||||
#define DEFAULT_BRUSH_BLURB \
|
||||
"Specify a default brush. The brush is searched for in the " \
|
||||
@ -288,7 +288,7 @@ N_("When enabled, dialogs will show a help button that gives access to " \
|
||||
"be reached by pressing F1.")
|
||||
|
||||
#define SHOW_PAINT_TOOL_CURSOR_BLURB \
|
||||
N_("When enabled, the cursor will be shown over the image while " \
|
||||
N_("When enabled, the mouse pointer will be shown over the image while " \
|
||||
"using a paint tool.")
|
||||
|
||||
#define SHOW_MENUBAR_BLURB \
|
||||
|
@ -138,8 +138,8 @@ static const GimpDialogFactoryEntry dock_entries[] =
|
||||
GIMP_HELP_ERRORS_DIALOG,
|
||||
dialogs_error_console_new, 0, TRUE),
|
||||
DOCKABLE ("gimp-cursor-view",
|
||||
N_("Cursor"), N_("Cursor Info"), GIMP_STOCK_CURSOR,
|
||||
GIMP_HELP_CURSOR_INFO_DIALOG,
|
||||
N_("Pointer"), N_("Pointer Information"), GIMP_STOCK_CURSOR,
|
||||
GIMP_HELP_POINTER_INFO_DIALOG,
|
||||
dialogs_cursor_view_new, 0, TRUE),
|
||||
|
||||
/* list & grid views */
|
||||
|
@ -1838,24 +1838,24 @@ prefs_dialog_new (Gimp *gimp,
|
||||
_("Initial zoom _ratio:"),
|
||||
GTK_TABLE (table), 0, size_group);
|
||||
|
||||
/* Mouse Cursors */
|
||||
vbox2 = prefs_frame_new (_("Mouse Cursors"),
|
||||
/* Mouse Pointers */
|
||||
vbox2 = prefs_frame_new (_("Mouse Pointers"),
|
||||
GTK_CONTAINER (vbox), FALSE);
|
||||
|
||||
prefs_check_button_add (object, "show-brush-outline",
|
||||
_("Show _brush outline"),
|
||||
GTK_BOX (vbox2));
|
||||
prefs_check_button_add (object, "show-paint-tool-cursor",
|
||||
_("Show paint _tool cursor"),
|
||||
_("Show pointer for paint _tools"),
|
||||
GTK_BOX (vbox2));
|
||||
|
||||
table = prefs_table_new (2, GTK_CONTAINER (vbox2));
|
||||
|
||||
prefs_enum_combo_box_add (object, "cursor-mode", 0, 0,
|
||||
_("Cursor _mode:"),
|
||||
_("Pointer _mode:"),
|
||||
GTK_TABLE (table), 0, size_group);
|
||||
prefs_enum_combo_box_add (object, "cursor-format", 0, 0,
|
||||
_("Cursor re_ndering:"),
|
||||
_("Pointer re_ndering:"),
|
||||
GTK_TABLE (table), 1, size_group);
|
||||
|
||||
g_object_unref (size_group);
|
||||
|
@ -423,8 +423,8 @@
|
||||
#define GIMP_HELP_INDEXED_PALETTE_EDIT "gimp-indexed-palette-edit"
|
||||
#define GIMP_HELP_INDEXED_PALETTE_ADD "gimp-indexed-palette-add"
|
||||
|
||||
#define GIMP_HELP_CURSOR_INFO_DIALOG "gimp-cursor-info-dialog"
|
||||
#define GIMP_HELP_CURSOR_INFO_SAMPLE_MERGED "gimp-cursor-info-sample-merged"
|
||||
#define GIMP_HELP_POINTER_INFO_DIALOG "gimp-pointer-info-dialog"
|
||||
#define GIMP_HELP_POINTER_INFO_SAMPLE_MERGED "gimp-pointer-info-sample-merged"
|
||||
|
||||
#define GIMP_HELP_SAMPLE_POINT_DIALOG "gimp-sample-point-dialog"
|
||||
#define GIMP_HELP_SAMPLE_POINT_SAMPLE_MERGED "gimp-sample-point-sample-merged"
|
||||
|
@ -232,10 +232,11 @@ Basic GIMP enumeration data types.
|
||||
@GIMP_PDB_DRAWABLE:
|
||||
@GIMP_PDB_SELECTION:
|
||||
@GIMP_PDB_BOUNDARY:
|
||||
@GIMP_PDB_PATH:
|
||||
@GIMP_PDB_VECTORS:
|
||||
@GIMP_PDB_PARASITE:
|
||||
@GIMP_PDB_STATUS:
|
||||
@GIMP_PDB_END:
|
||||
@GIMP_PDB_PATH:
|
||||
|
||||
<!-- ##### ENUM GimpPDBProcType ##### -->
|
||||
<para>
|
||||
|
Reference in New Issue
Block a user