X-Git-Url: https://git.deb.at/w?a=blobdiff_plain;f=ui.c;h=874812d48430bb64a9a9fb99dee73710dc75791e;hb=a07d2a804360c52a8630ae22d7a123de13bc0d91;hp=40dc1e138f5a1344e67764df48676fce631e37f5;hpb=ce5cddb064b82a0103d1e02f5749d8614dcdb6c6;p=pkg%2Fabook.git diff --git a/ui.c b/ui.c index 40dc1e1..874812d 100644 --- a/ui.c +++ b/ui.c @@ -18,6 +18,7 @@ #include "ui.h" #include "edit.h" #include "database.h" +#include "gettext.h" #include "list.h" #include "misc.h" #include "options.h" @@ -141,10 +142,10 @@ 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; } @@ -174,7 +175,7 @@ close_ui() void -headerline(char *str) +headerline(const char *str) { werase(top); @@ -199,7 +200,7 @@ refresh_screen() clear(); refresh_statusline(); - headerline(MAIN_HELPLINE); + headerline(gettext(MAIN_HELPLINE)); list_headerline(); refresh_list(); @@ -207,7 +208,7 @@ refresh_screen() int -statusline_msg(char *msg) +statusline_msg(const char *msg) { int c; @@ -223,7 +224,7 @@ statusline_msg(char *msg) } void -statusline_addstr(char *str) +statusline_addstr(const char *str) { mvwaddstr(bottom, 1, 0, str); refresh(); @@ -231,7 +232,7 @@ statusline_addstr(char *str) } char * -ui_readline(char *prompt, char *s, int limit, bool use_completion) +ui_readline(char *prompt, char *s, size_t limit, bool use_completion) { int y, x; char *ret; @@ -240,7 +241,7 @@ ui_readline(char *prompt, char *s, int limit, bool use_completion) getyx(bottom, y, x); - ret = abook_readline(bottom, y, x, s, limit, use_completion); + ret = abook_readline(bottom, y, x, s, use_completion); if(ret) strtrim(ret); @@ -252,25 +253,21 @@ int statusline_ask_boolean(char *msg, int def) { int ret; - char *msg2 = strconcat(msg, def ? " (Y/n)?" : " (y/N)?", NULL); + char *msg2 = strconcat(msg, def ? _(" (Y/n)?") : _(" (y/N)?"), NULL); + char ch; statusline_addstr(msg2); free(msg2); - switch(tolower(getch())) { - case 'n': - case 'N': - ret = FALSE; - break; - case 'y': - case 'Y': - ret = TRUE; - break; - default: - ret = def; - break; - } + ch = tolower(getch()); + + if(ch == *(S_("keybinding for no|n"))) + ret = FALSE; + else if(ch == *(S_("keybinding for yes|y"))) + ret = TRUE; + else + ret = def; clear_statusline(); @@ -334,16 +331,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]); + 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); @@ -451,7 +448,7 @@ get_commands() case 'p': ui_print_database(); break; - case 'u': launch_wwwbrowser(list_current_item()); + case 'v': launch_wwwbrowser(list_current_item()); refresh_screen(); break; } @@ -464,7 +461,7 @@ 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(); @@ -474,7 +471,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(); } @@ -496,12 +493,13 @@ ui_find(int next) char *s; s = ui_readline("/", findstr, MAX_FIELD_LEN - 1, 0); strncpy(findstr, s, MAX_FIELD_LEN); + free(s); refresh_screen(); } 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; @@ -524,8 +522,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); @@ -543,7 +541,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': @@ -551,7 +549,7 @@ ui_print_database() break; case 's': if( !selected_items() ) { - statusline_msg("No selected items"); + statusline_msg(_("No selected items")); return; } mode = ENUM_SELECTED; @@ -577,7 +575,7 @@ ui_open_datafile() { char *filename; - filename = ask_filename("File to open: "); + filename = ask_filename(_("File to open: ")); if(!filename || ! *filename) { free(filename); @@ -587,7 +585,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(); @@ -595,7 +593,7 @@ 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);