Bug 768044 - Fix many typos

This fixes many typos in comments and one in a user-visible string (msgid
"center abscisse" changed to "center abscissa" in affected po files. too).
This commit is contained in:
Richard Kreckel
2016-06-25 22:54:10 +02:00
committed by Michael Natterer
parent 6f3c251eca
commit dd9b0fc55b
92 changed files with 133 additions and 133 deletions

View File

@ -525,7 +525,7 @@ gimp_color_profile_combo_box_set_active_file (GimpColorProfileComboBox *combo,
* This is a newly allocated string and should be released
* using g_free() when it is not any longer needed.
*
* Deprecated: use gimp_color_profile_combo_box_get_active_file() inatead.
* Deprecated: use gimp_color_profile_combo_box_get_active_file() instead.
*
* Since: 2.4
**/

View File

@ -188,7 +188,7 @@ static void gimp_color_select_z_size_allocate (GtkWidget *widget,
static gboolean gimp_color_select_z_expose (GtkWidget *widget,
GdkEventExpose *eevent,
GimpColorSelect *select);
static gboolean gimp_color_select_z_events (GtkWidget *widet,
static gboolean gimp_color_select_z_events (GtkWidget *widget,
GdkEvent *event,
GimpColorSelect *select);

View File

@ -26,13 +26,13 @@
* expression as it goes along, and does not create a parse tree or
* anything, and will not optimize anything. It uses doubles for
* precision, with the given use case, that's enough to combat any
* rounding errors (as opposed to optimizing the evalutation).
* rounding errors (as opposed to optimizing the evaluation).
*
* It relies on external unit resolving through a callback and does
* elementary dimensionality constraint check (e.g. "2 mm + 3 px * 4
* in" is an error, as L + L^2 is a missmatch). It uses setjmp/longjmp
* for try/catch like pattern on error, it uses g_strtod() for numeric
* conversions and it's non-destructive in terms of the paramters, and
* conversions and it's non-destructive in terms of the parameters, and
* it's reentrant.
*
* EBNF:
@ -156,7 +156,7 @@ static void gimp_eevl_error (GimpEevl
* @unit_resolver_proc: Unit resolver callback.
* @result: Result of evaluation.
* @data: Data passed to unit resolver.
* @error_pos: Will point to the poisiton within the string,
* @error_pos: Will point to the positon within the string,
* before which the parse / evaluation error
* occurred. Will be set to null of no error occurred.
* @error_message: Will point to a static string with a semi-descriptive
@ -171,7 +171,7 @@ static void gimp_eevl_error (GimpEevl
*
* Returns: A #GimpEevlQuantity with a value given in the base unit along with
* the order of the dimension (i.e. if the base unit is inches, a dimension
* order of two menas in^2).
* order of two means in^2).
**/
gboolean
gimp_eevl_evaluate (const gchar *string,
@ -277,7 +277,7 @@ gimp_eevl_expression (GimpEevl *eva)
{
GimpEevlQuantity new_term = gimp_eevl_term (eva);
/* If dimensions missmatch, attempt default unit assignent */
/* If dimensions missmatch, attempt default unit assignment */
if (new_term.dimension != evaluated_terms.dimension)
{
GimpEevlQuantity default_unit_factor;
@ -447,7 +447,7 @@ gimp_eevl_lex (GimpEevl *eva)
}
else if (s[0] == '+' || s[0] == '-')
{
/* Snatch these before the g_strtod() does, othewise they might
/* Snatch these before the g_strtod() does, otherwise they might
* be used in a numeric conversion.
*/
gimp_eevl_lex_accept_count (eva, 1, s[0]);

View File

@ -243,7 +243,7 @@ gimp_enum_store_new_with_range (GType enum_type,
* @...: a list of enum values (exactly @n_values)
*
* Creates a new #GimpEnumStore like gimp_enum_store_new() but allows
* to expliticely list the enum values that should be added to the
* to explicitely list the enum values that should be added to the
* store.
*
* Return value: a new #GimpEnumStore.

View File

@ -517,7 +517,7 @@ gimp_icons_set_icon_theme (GFile *path)
* You don't need to call this function as gimp_ui_init() already does
* this for you.
*
* Deprecated: 2.10: USe gimp_icons_init() instead.
* Deprecated: 2.10: Use gimp_icons_init() instead.
*/
void
gimp_stock_init (void)

View File

@ -125,7 +125,7 @@ typedef struct
static void gimp_number_pair_entry_finalize (GObject *entry);
static gboolean gimp_number_pair_entry_valid_separator (GimpNumberPairEntry *entry,
gunichar canditate);
gunichar candidate);
static void gimp_number_pair_entry_ratio_to_fraction (gdouble ratio,
gdouble *numerator,
gdouble *denominator);
@ -139,7 +139,7 @@ static void gimp_number_pair_entry_get_property (GObject
GValue *value,
GParamSpec *pspec);
static void gimp_number_pair_entry_changed (GimpNumberPairEntry *entry);
static gboolean gimp_number_pair_entry_events (GtkWidget *widgett,
static gboolean gimp_number_pair_entry_events (GtkWidget *widget,
GdkEvent *event);
static void gimp_number_pair_entry_update_text (GimpNumberPairEntry *entry);
@ -636,7 +636,7 @@ gimp_number_pair_entry_set_default_text (GimpNumberPairEntry *entry,
* gimp_number_pair_entry_get_default_text:
* @entry: A #GimpNumberPairEntry widget.
*
* Returns: the string manully set to be shown, or %NULL if values are
* Returns: the string manually set to be shown, or %NULL if values are
* shown in a normal fashion.
*
* Since: 2.4
@ -898,7 +898,7 @@ gimp_number_pair_entry_events (GtkWidget *widget,
break;
}
/* Mak sure the entry text is up to date */
/* Make sure the entry text is up to date */
gimp_number_pair_entry_update_text (entry);

View File

@ -891,7 +891,7 @@ gimp_page_selector_get_selected_pages (GimpPageSelector *selector,
* @selector: Pointer to a #GimpPageSelector.
* @range: A string representing the set of selected pages.
*
* Selectes the pages described by @range. The range string is a
* Selects the pages described by @range. The range string is a
* user-editable list of pages and ranges, e.g. "1,3,5-7,9-12,14".
* Note that the page numbering in the range string starts with 1,
* not 0.

View File

@ -167,7 +167,7 @@ void _gimp_pick_button_quartz_pick (GimpPickButton *button);
* CGWindowListCreateImage expects a rectangle in screen coordinates
* with the origin in the upper left (contrary to Cocoa). The origin is
* on the screen showing the menu bar (this is the screen at index 0 in the
* screens array). So, after convering the rectangle to Cocoa screen
* screens array). So, after converting the rectangle to Cocoa screen
* coordinates, we use the height of this particular screen to translate
* to the coordinate space expected by CGWindowListCreateImage.
*/

View File

@ -3895,7 +3895,7 @@ gimp_prop_stock_image_new (GObject *config,
}
/**
* gimp_prop_icom_image_new:
* gimp_prop_icon_image_new:
* @config: Object to which property is attached.
* @property_name: Name of string property.
* @icon_size: Size of desired icon image.

View File

@ -418,7 +418,7 @@ gimp_int_radio_group_set_active (GtkRadioButton *radio_button,
* @adjustment: Returns the spinbutton's #GtkAdjustment.
* @value: The initial value of the spinbutton.
* @lower: The lower boundary.
* @upper: The uppper boundary.
* @upper: The upper boundary.
* @step_increment: The spinbutton's step increment.
* @page_increment: The spinbutton's page increment (mouse button 2).
* @page_size: Ignored, spin buttons must always have a zero page size.
@ -968,7 +968,7 @@ gimp_uint_adjustment_update (GtkAdjustment *adjustment,
/**
* gimp_float_adjustment_update:
* @adjustment: A #GtkAdjustment.
* @data: A pointer to a #gfloat varaiable which will store the
* @data: A pointer to a #gfloat variable which will store the
* @adjustment's value.
**/
void

View File

@ -112,7 +112,7 @@ find_mnemonic_widget (GtkWidget *widget,
* @label_text: The text for the #GtkLabel which will be attached left of
* the widget.
* @xalign: The horizontal alignment of the #GtkLabel.
* @yalign: The vertival alignment of the #GtkLabel.
* @yalign: The vertical alignment of the #GtkLabel.
* @widget: The #GtkWidget to attach right of the label.
* @colspan: The number of columns the widget will use.
* @left_align: %TRUE if the widget should be left-aligned.
@ -184,7 +184,7 @@ gimp_table_attach_aligned (GtkTable *table,
*
* This function is useful if you want to change the font attributes
* of a #GtkLabel. This is an alternative to using PangoMarkup which
* is slow to parse and akward to handle in an i18n-friendly way.
* is slow to parse and awkward to handle in an i18n-friendly way.
*
* The attributes are set on the complete label, from start to end. If
* you need to set attributes on part of the label, you will have to