Browse Source

Typo fixes.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
Veres Lajos 11 years ago
parent
commit
dfbb2c9430

+ 1 - 1
doc/NEWS

@@ -674,7 +674,7 @@ Version 4.7.5-pre1
     * Incorrect key event handling in "Listing mode" dialog (#2045)
     * Usability of field history in "Find file" dialog (#2046, #2407)
     * Find "Whole words" search bug (#2396)
-    * Directory ignorance does't work in file find (#2366, #2434)
+    * Directory ignorance doesn't work in file find (#2366, #2434)
     * Incorrect line jump when started as editor (#2344)
     * User menu in standalone mcedit doesn't show filetype-specific items (#1651)
     * Configure script doesn't set samba configdir (#2419)

+ 1 - 1
lib/skin/colors-old.c

@@ -1,6 +1,6 @@
 /*
    Skins engine.
-   Work with colors - backward compability
+   Work with colors - backward compatibility
 
    Copyright (C) 2009, 2010, 2011, 2012
    The Free Software Foundation, Inc.

+ 2 - 2
lib/strutil.h

@@ -493,8 +493,8 @@ int str_casecmp (const char *t1, const char *t2);
 int str_ncasecmp (const char *t1, const char *t2);
 
 /* return, how many bytes are are same from start in text and prefix
- * both strings are decomposed befor comapring and return value is counted
- * in decomposed form, too. caling with prefix, prefix, you get size in bytes
+ * both strings are decomposed before comparing and return value is counted
+ * in decomposed form, too. calling with prefix, prefix, you get size in bytes
  * of prefix in decomposed form,
  * I
  */

+ 1 - 1
lib/widget/dialog.h

@@ -97,7 +97,7 @@ struct WDialog
 
     /* Internal variables */
     GList *widgets;             /* widgets list */
-    GList *current;             /* Curently active widget */
+    GList *current;             /* Currently active widget */
     unsigned long widget_id;    /* maximum id of all widgets */
     void *data;                 /* Data can be passed to dialog */
     char *event_group;          /* Name of event group for this dialog */

+ 1 - 1
lib/widget/input.c

@@ -509,7 +509,7 @@ copy_region (WInput * in, int x_first, int x_last)
     if (last == first)
     {
         /* Copy selected files to clipboard */
-        mc_event_raise (MCEVENT_GROUP_FILEMANAGER, "panel_save_curent_file_to_clip_file", NULL);
+        mc_event_raise (MCEVENT_GROUP_FILEMANAGER, "panel_save_current_file_to_clip_file", NULL);
         /* try use external clipboard utility */
         mc_event_raise (MCEVENT_GROUP_CORE, "clipboard_file_to_ext_clip", NULL);
         return;

+ 3 - 3
misc/syntax/d.syntax

@@ -144,7 +144,7 @@ context default
     keyword whole dstring yellow
     keyword whole wstring yellow
 
-# D array atributes
+# D array attributes
     keyword wholeright .sizeof yellow
     keyword wholeright .length yellow
     keyword wholeright .ptr yellow
@@ -154,7 +154,7 @@ context default
     keyword wholeright .keys yellow
     keyword wholeright .values yellow
     keyword wholeright .rehash yellow
-# D types atributes
+# D types attributes
     keyword wholeright .init yellow
     keyword wholeright .alignof yellow
     keyword wholeright .mangleof yellow
@@ -178,7 +178,7 @@ context default
 # union
     keyword wholeright .offsetof yellow
 
-# D 2.0 atributes
+# D 2.0 attributes
     keyword wholeright .idup yellow
 
 # unary operators

+ 3 - 3
src/editor/editbuffer.c

@@ -659,7 +659,7 @@ edit_buffer_read_file (edit_buffer_t * buf, int fd, off_t size)
 
     }
 
-    /* fullfill other parts of b2 from end to begin */
+    /* fulfill other parts of b2 from end to begin */
     data_size = EDIT_BUF_SIZE;
     for (--i; i >= 0; i--)
     {
@@ -708,7 +708,7 @@ edit_buffer_write_file (edit_buffer_t * buf, int fd)
     off_t data_size, sz;
     void *b;
 
-    /* write all fullfilled parts of b1 from begin to end */
+    /* write all fulfilled parts of b1 from begin to end */
     if (buf->b1->len != 0)
     {
         data_size = EDIT_BUF_SIZE;
@@ -747,7 +747,7 @@ edit_buffer_write_file (edit_buffer_t * buf, int fd)
 
         if (sz == data_size)
         {
-            /* write other fullfilled parts of b2 from end to begin */
+            /* write other fulfilled parts of b2 from end to begin */
             data_size = EDIT_BUF_SIZE;
             while (--i >= 0)
             {

+ 2 - 2
src/editor/editcmd_dialogs.c

@@ -385,7 +385,7 @@ editcmd_dialog_completion_show (const WEdit * edit, int max_len, GString ** comp
     for (i = num_compl - 1; i >= 0; i--)        /* reverse order */
         listbox_add_item (compl_list, LISTBOX_APPEND_AT_END, 0, (char *) compl[i]->str, NULL);
 
-    /* pop up the dialog and apply the choosen completion */
+    /* pop up the dialog and apply the chosen completion */
     if (dlg_run (compl_dlg) == B_ENTER)
     {
         listbox_get_current (compl_list, &curr, NULL);
@@ -457,7 +457,7 @@ editcmd_dialog_select_definition_show (WEdit * edit, char *match_expr, int max_l
         g_free (label_def);
     }
 
-    /* pop up the dialog and apply the choosen completion */
+    /* pop up the dialog and apply the chosen completion */
     if (dlg_run (def_dlg) == B_ENTER)
     {
         char *tmp_curr_def = (char *) curr_def;

+ 1 - 1
src/filemanager/mountlist.c

@@ -1610,7 +1610,7 @@ my_statfs (struct my_statfs *myfs_stats, const char *path)
          ** This is the "other side" of the hack to read_file_system_list() in
          ** mountlist.c.
          ** It's not the most efficient approach, but consumes less memory. It
-         ** also accomodates QNX's ability to mount filesystems on the fly.
+         ** also accommodates QNX's ability to mount filesystems on the fly.
          */
         struct mount_entry *entry;
     struct fs_usage fs_use;

+ 3 - 3
src/filemanager/panel.c

@@ -3879,7 +3879,7 @@ event_update_panels (const gchar * event_group_name, const gchar * event_name,
 
 /* event callback */
 static gboolean
-panel_save_curent_file_to_clip_file (const gchar * event_group_name, const gchar * event_name,
+panel_save_current_file_to_clip_file (const gchar * event_group_name, const gchar * event_name,
                                      gpointer init_data, gpointer data)
 {
     (void) event_group_name;
@@ -4775,8 +4775,8 @@ panel_init (void)
         mc_skin_get ("widget-panel", "filename-scroll-right-char", "}");
 
     mc_event_add (MCEVENT_GROUP_FILEMANAGER, "update_panels", event_update_panels, NULL, NULL);
-    mc_event_add (MCEVENT_GROUP_FILEMANAGER, "panel_save_curent_file_to_clip_file",
-                  panel_save_curent_file_to_clip_file, NULL, NULL);
+    mc_event_add (MCEVENT_GROUP_FILEMANAGER, "panel_save_current_file_to_clip_file",
+                  panel_save_current_file_to_clip_file, NULL, NULL);
 
 }
 

Some files were not shown because too many files changed in this diff