]> git.deb.at Git - pkg/abook.git/commitdiff
Fixed typo.
authorCedric Duval <cedricduval@free.fr>
Sun, 2 Oct 2005 22:16:58 +0000 (22:16 +0000)
committerCedric Duval <cedricduval@free.fr>
Sun, 2 Oct 2005 22:16:58 +0000 (22:16 +0000)
po/abook.pot
ui.c

index 3a14feba727eab1671c8da40de87e2090df36e17..916215e53bd5747491c8c9f401705bc29c9d1954 100644 (file)
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: <cedricduval+abook@free.fr>\n"
-"POT-Creation-Date: 2005-10-03 00:06+0200\n"
+"POT-Creation-Date: 2005-10-03 00:16+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -638,7 +638,7 @@ msgstr ""
 
 #: ui.c:147
 #, c-format
-msgid "Terminal is too small. Minium terminal size for abook is %dx%d\n"
+msgid "Terminal is too small. Minimum terminal size for abook is %dx%d\n"
 msgstr ""
 
 #: ui.c:333
diff --git a/ui.c b/ui.c
index 644c2acc184b237fb9be0a18d5c0b255e045c1cb..b4152699b560df0e02f664133c8ccf3520bd45f0 100644 (file)
--- a/ui.c
+++ b/ui.c
@@ -144,8 +144,8 @@ init_ui()
        if( LINES < MIN_LINES || COLS < MIN_COLS ) {
                clear(); refresh(); endwin();
                fprintf(stderr, _("Your terminal size is %dx%d\n"), COLS, LINES);
-               fprintf(stderr, _("Terminal is too small. Minium terminal size "
-                               "for abook is "
+               fprintf(stderr, _("Terminal is too small. Minimum terminal "
+                               "size for abook is "
                                "%dx%d\n"), MIN_COLS, MIN_LINES);
                return 1;
        }