X-Git-Url: https://git.deb.at/?a=blobdiff_plain;f=options.c;h=8a0f7e9db71cccf22d879f29cac0d8bb537776cc;hb=4b8f9231090ada43f7e16987ec46ac7f45a914ec;hp=d43f0e725793683162fcbd0b5ce31595afeda445;hpb=7a7531e544d236d58ca077ce56b7d6d0c60faa09;p=pkg%2Fabook.git diff --git a/options.c b/options.c index d43f0e7..8a0f7e9 100644 --- a/options.c +++ b/options.c @@ -15,7 +15,9 @@ #include #include "options.h" #include "abook.h" +#include "gettext.h" #include "misc.h" +#include "xmalloc.h" #ifndef FALSE # define FALSE 0 @@ -55,11 +57,11 @@ static struct option abook_vars[] = { { "mutt_command", OT_STR, STR_MUTT_COMMAND, UL "mutt" }, { "mutt_return_all_emails", OT_BOOL, BOOL_MUTT_RETURN_ALL_EMAILS, TRUE }, - + { "print_command", OT_STR, STR_PRINT_COMMAND, UL "lpr" }, { "www_command", OT_STR, STR_WWW_COMMAND, UL "lynx" }, - + { "address_style", OT_STR, STR_ADDRESS_STYLE, UL "eu" }, { "use_ascii_only", OT_BOOL, BOOL_USE_ASCII_ONLY, FALSE }, @@ -99,7 +101,7 @@ set_str(enum str_opts opt, char *value) if(str_opts[opt]) free(str_opts[opt]); - str_opts[opt] = strdup(value); + str_opts[opt] = xstrdup(value); } int @@ -210,7 +212,7 @@ void find_token_start(buffer *b) { assert(b); - + for(; ISSPACE(*b -> ptr); b -> ptr ++); } @@ -230,14 +232,14 @@ static char * opt_set_set_option(char *var, char *p, struct option *opt) { int len; - + strtrim(p); len = strlen(p); if(p[len - 1] == '\"' && *p == '\"') { if(len < 3) - return "invalid value"; + return _("invalid value"); p[len - 1] = 0; p++; } @@ -256,12 +258,12 @@ opt_set_set_option(char *var, char *p, struct option *opt) !strcasecmp(p, "off")) set_bool(opt -> data, FALSE); else - return "invalid value"; + return _("invalid value"); break; default: assert(0); } - + return NULL; } @@ -275,15 +277,15 @@ opt_parse_set(buffer *b) if((p = strchr(b -> ptr, '='))) *p++ = 0; else - return "invalid value assignment"; - + return _("invalid value assignment"); + strtrim(b -> ptr); for(i = 0;abook_vars[i].option; i++) if(!strcmp(abook_vars[i].option, b -> ptr)) return opt_set_set_option(b -> ptr, p, &abook_vars[i]); - - return "unknown option"; + + return _("unknown option"); } #include "database.h" /* needed for change_custom_field_name */ @@ -308,7 +310,7 @@ opt_parse_customfield(buffer *b) find_token_start(b); if(change_custom_field_name(b->ptr, n) == -1) - return "invalid custom field number"; + return _("invalid custom field number"); return NULL; } @@ -329,7 +331,7 @@ opt_parse_line(char *line, int n, char *fn) char *err = NULL; char *token; buffer b; - + assert(line && fn); b.ptr = line; @@ -354,12 +356,12 @@ opt_parse_line(char *line, int n, char *fn) return FALSE; break; } - - fprintf(stderr, "%s: parse error at line %d: ", fn, n); + + fprintf(stderr, _("%s: parse error at line %d: "), fn, n); if(err) fprintf(stderr, "%s\n", err); else - fprintf(stderr, "unknown token %s\n", token); + fprintf(stderr, _("unknown token %s\n"), token); return TRUE; } @@ -371,11 +373,11 @@ load_opts(char *filename) char *line = NULL; int n; int err = 0; - + if((in = fopen(filename, "r")) == NULL) return -1; - + for(n = 1;!feof(in); n++) { line = getaline(in);