Whamcloud - gitweb
Fix spelling errors pointed out by translators
authorTheodore Ts'o <tytso@mit.edu>
Sat, 8 Oct 2011 17:32:00 +0000 (13:32 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 8 Oct 2011 17:32:00 +0000 (13:32 -0400)
Also remove the _("<foo>") marker from a string that was all numbers
and hence didn't need punctuation.

Thanks to Philipp Thomas and Goeran Uddeborg for reporting these
buglets.

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
e2fsck/prof_err.et
misc/mke2fs.c
resize/extent.c

index af7801e..4c595d6 100644 (file)
@@ -13,7 +13,7 @@ error_code    PROF_ADD_NOT_SECTION,
 error_code     PROF_SECTION_WITH_VALUE, 
        "A profile section header has a non-zero value"
 error_code     PROF_BAD_LINK_LIST,     "Bad linked list in profile structures"
-error_code     PROF_BAD_GROUP_LVL,     "Bad group level in profile strctures"
+error_code     PROF_BAD_GROUP_LVL,     "Bad group level in profile structures"
 error_code     PROF_BAD_PARENT_PTR,    
        "Bad parent pointer in profile strctures"
 error_code     PROF_MAGIC_ITERATOR,    "Bad magic value in profile iterator"
index 244e0c8..a07e866 100644 (file)
@@ -1944,7 +1944,7 @@ profile_error:
                                num_inodes = MAX_32_NUM;
                        else {
                                com_err(program_name, 0,
-                                       _("too many inodes (%llu), raise"
+                                       _("too many inodes (%llu), raise "
                                          "inode ratio?"), n);
                                exit(1);
                        }
index 8f206e9..ec81b94 100644 (file)
@@ -203,7 +203,7 @@ void ext2fs_extent_dump(ext2_extent extent, FILE *out)
        fprintf(out, _("#\tNum=%llu, Size=%llu, Cursor=%llu, Sorted=%llu\n"),
               extent->num, extent->size, extent->cursor, extent->sorted);
        for (i=0, ent=extent->list; i < extent->num; i++, ent++) {
-               fprintf(out, _("#\t\t %llu -> %llu (%llu)\n"), ent->old_loc,
+               fprintf(out, "#\t\t %llu -> %llu (%llu)\n", ent->old_loc,
                        ent->new_loc, ent->size);
        }
 }