]> git.deb.at Git - pkg/abook.git/blobdiff - ui.c
- i18n support
[pkg/abook.git] / ui.c
diff --git a/ui.c b/ui.c
index 27aa91f12f35edc1cc828c92188b1a83446d312b..b58ec5965bca3739c75c37c05d5ac158598d8000 100644 (file)
--- a/ui.c
+++ b/ui.c
 #include "ui.h"
 #include "edit.h"
 #include "database.h"
+#include "gettext.h"
 #include "list.h"
 #include "misc.h"
 #include "options.h"
 #include "filter.h"
+#include "xmalloc.h"
 #ifdef HAVE_CONFIG_H
 #      include "config.h"
 #endif
-#ifdef HAVE_TERMIOS_H
-#      include <termios.h>
-#else
-#      ifdef HAVE_LINUX_TERMIOS_H
-#              include <linux/termios.h>
-#      endif
-#endif
 #ifdef HAVE_SYS_IOCTL_H
 #      include <sys/ioctl.h>
 #endif
@@ -63,7 +58,6 @@ static void
 init_windows()
 {
        top = newwin(LIST_TOP - 1, COLS, 0, 0);
-
        bottom = newwin(LINES - LIST_BOTTOM, COLS, LIST_BOTTOM, 0);
 }
 
@@ -112,7 +106,7 @@ resize_abook()
 static void
 win_changed(int i)
 {
-       if( can_resize )
+       if(can_resize)
                resize_abook();
        else
                should_resize = TRUE;
@@ -148,22 +142,22 @@ init_ui()
 #endif
        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 "
+               fprintf(stderr, _("Your terminal size is %dx%d\n"), COLS, LINES);
+               fprintf(stderr, _("Terminal is too small. Minium terminal size "
                                "for abook is "
-                               "%dx%d\n", MIN_COLS, MIN_LINES);
+                               "%dx%d\n"), MIN_COLS, MIN_LINES);
                return 1;
        }
 
-#ifdef SIGWINCH
-       signal(SIGWINCH, win_changed);
-#endif
-
        init_list();
        init_windows();
 
        ui_initialized = TRUE;
 
+#ifdef SIGWINCH
+       signal(SIGWINCH, win_changed);
+#endif
+
        return 0;
 }
 
@@ -181,7 +175,7 @@ close_ui()
 
 
 void
-headerline(char *str)
+headerline(const char *str)
 {
        werase(top);
 
@@ -198,7 +192,7 @@ void
 refresh_screen()
 {
 #ifdef SIGWINCH
-       if( should_resize ) {
+       if(should_resize) {
                resize_abook();
                return;
        }
@@ -206,7 +200,7 @@ refresh_screen()
        clear();
 
        refresh_statusline();
-       headerline(MAIN_HELPLINE);
+       headerline(gettext(MAIN_HELPLINE));
        list_headerline();
 
        refresh_list();
@@ -214,7 +208,7 @@ refresh_screen()
 
 
 int
-statusline_msg(char *msg)
+statusline_msg(const char *msg)
 {
        int c;
 
@@ -230,7 +224,7 @@ statusline_msg(char *msg)
 }
 
 void
-statusline_addstr(char *str)
+statusline_addstr(const char *str)
 {
        mvwaddstr(bottom, 1, 0, str);
        refresh();
@@ -284,7 +278,6 @@ statusline_ask_boolean(char *msg, int def)
        return ret;
 }
 
-
 void
 refresh_statusline()
 {
@@ -296,7 +289,6 @@ refresh_statusline()
        wrefresh(bottom);
 }
 
-
 char *
 ask_filename(char *prompt)
 {
@@ -343,16 +335,16 @@ display_help(int help)
 
        helpw = newwin(LINES - 5, COLS - 6, 2, 3);
        erase();
-       headerline("help");
+       headerline(_("help"));
 
        for(i = 0; tbl[i] != NULL; i++) {
-               waddstr(helpw, tbl[i]);
-               if( ( !( (i+1) % (LINES-8) ) ) ||
-                       (tbl[i+1] == NULL) ) {
+               waddstr(helpw, gettext(tbl[i]));
+               if( (!((i + 1) % (LINES - 8))) ||
+                       (tbl[i + 1] == NULL) ) {
                        refresh();
                        wrefresh(helpw);
                        refresh_statusline();
-                       if(statusline_msg("Press any key to continue...")
+                       if(statusline_msg(_("Press any key to continue..."))
                                        == 'q')
                                break;
                        wclear(helpw);
@@ -467,14 +459,13 @@ get_commands()
        }
 }
 
-
 void
 ui_remove_items()
 {
        if(list_is_empty())
                return;
 
-       if(statusline_ask_boolean("Remove selected item(s)", TRUE))
+       if(statusline_ask_boolean(_("Remove selected item(s)"), TRUE))
                remove_selected_items();
 
        clear_statusline();
@@ -484,7 +475,7 @@ ui_remove_items()
 void
 ui_clear_database()
 {
-       if(statusline_ask_boolean("Clear WHOLE database", FALSE)) {
+       if(statusline_ask_boolean(_("Clear WHOLE database"), FALSE)) {
                close_database();
                refresh_list();
        }
@@ -511,7 +502,7 @@ ui_find(int next)
 
        if( (item = find_item(findstr, curitem + !!next, search_fields)) < 0 &&
                        (item = find_item(findstr, 0, search_fields)) >= 0)
-               statusline_addstr("Search hit bottom, continuing at top");
+               statusline_addstr(_("Search hit bottom, continuing at top"));
 
        if(item >= 0) {
                curitem = item;
@@ -534,8 +525,8 @@ void
 ui_read_database()
 {
        if(items > 0)
-               if(!statusline_ask_boolean("Your current data will be lost - "
-                               "Press 'y' to continue", FALSE))
+               if(!statusline_ask_boolean(_("Your current data will be lost - "
+                               "Press 'y' to continue"), FALSE))
                        return;
 
        load_database(datafile);
@@ -553,7 +544,7 @@ ui_print_database()
        if(list_is_empty())
                return;
 
-       statusline_addstr("Print All/Selected/Cancel (a/s/C)?");
+       statusline_addstr(_("Print All/Selected/Cancel (a/s/C)?"));
 
        switch(tolower(getch())) {
                case 'a':
@@ -561,7 +552,7 @@ ui_print_database()
                        break;
                case 's':
                        if( !selected_items() ) {
-                               statusline_msg("No selected items");
+                               statusline_msg(_("No selected items"));
                                return;
                        }
                        mode = ENUM_SELECTED;
@@ -587,7 +578,7 @@ ui_open_datafile()
 {
        char *filename;
 
-       filename = ask_filename("File to open: ");
+       filename = ask_filename(_("File to open: "));
 
        if(!filename || ! *filename) {
                free(filename);
@@ -597,7 +588,7 @@ ui_open_datafile()
 
        if(opt_get_bool(BOOL_AUTOSAVE))
                save_database();
-       else if(statusline_ask_boolean("Save current database", FALSE))
+       else if(statusline_ask_boolean(_("Save current database"), FALSE))
                save_database();
 
        close_database();
@@ -605,11 +596,11 @@ ui_open_datafile()
        load_database(filename);
 
        if(items == 0) {
-               statusline_msg("Sorry, that specified file appears not to be a valid abook addressbook");
+               statusline_msg(_("Sorry, that specified file appears not to be a valid abook addressbook"));
                load_database(datafile);
        } else {
                free(datafile);
-               datafile = strdup(filename);
+               datafile = xstrdup(filename);
        }
 
        refresh_screen();