tweaks: adjust some indentation

master
Benno Schulenberg 2016-09-11 21:36:46 +02:00
parent add0d698b7
commit 1c2b35675e
1 changed files with 15 additions and 18 deletions

View File

@ -919,21 +919,18 @@ void read_file(FILE *f, int fd, const char *filename, bool undoable, bool checkw
if (!writable)
statusline(ALERT, "File '%s' is unwritable", filename);
else if (format == 3) {
statusline(HUSH,
/* TRANSLATORS: Keep the next four messages at most 76 characters. */
P_("Read %lu line (Converted from DOS and Mac format)",
/* TRANSLATORS: Keep the next four messages at most 78 characters. */
statusline(HUSH, P_("Read %lu line (Converted from DOS and Mac format)",
"Read %lu lines (Converted from DOS and Mac format)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else if (format == 2) {
openfile->fmt = MAC_FILE;
statusline(HUSH,
P_("Read %lu line (Converted from Mac format)",
statusline(HUSH, P_("Read %lu line (Converted from Mac format)",
"Read %lu lines (Converted from Mac format)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else if (format == 1) {
openfile->fmt = DOS_FILE;
statusline(HUSH,
P_("Read %lu line (Converted from DOS format)",
statusline(HUSH, P_("Read %lu line (Converted from DOS format)",
"Read %lu lines (Converted from DOS format)",
(unsigned long)num_lines), (unsigned long)num_lines);
} else