X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=conf.cpp;h=c52287ec47aa6e28e385009c55578f66af0afbce;hb=refs%2Fheads%2Fmaster;hp=60dd93f209df4f03749a067b097470ab76dac8df;hpb=fd6198891d6fd9642effc0843fef6f23b991af3e;p=plocate diff --git a/conf.cpp b/conf.cpp index 60dd93f..c52287e 100644 --- a/conf.cpp +++ b/conf.cpp @@ -323,7 +323,7 @@ eof: static void help(void) { - printf(_("Usage: updatedb [OPTION]...\n" + printf("Usage: updatedb [OPTION]...\n" "Update a plocate database.\n" "\n" " -f, --add-prunefs FS omit also FS (space-separated)\n" @@ -352,10 +352,10 @@ help(void) " -V, --version print version information\n" "\n" "The configuration defaults to values read from\n" - "`%s'.\n"), + "`%s'.\n", DBFILE, UPDATEDB_CONF); - printf(_("\n" - "Report bugs to %s.\n"), + printf("\n" + "Report bugs to %s.\n", PACKAGE_BUGREPORT); } @@ -489,11 +489,11 @@ parse_arguments(int argc, char *argv[]) case 'V': puts("updatedb (" PACKAGE_NAME ") " PACKAGE_VERSION); - puts(_("Copyright (C) 2007 Red Hat, Inc. All rights reserved.\n" - "This software is distributed under the GPL v.2.\n" - "\n" - "This program is provided with NO WARRANTY, to the extent " - "permitted by law.")); + puts("Copyright (C) 2007 Red Hat, Inc. All rights reserved.\n" + "This software is distributed under the GPL v.2.\n" + "\n" + "This program is provided with NO WARRANTY, to the extent " + "permitted by law."); exit(EXIT_SUCCESS); case 'e': @@ -638,7 +638,6 @@ void conf_prepare(int argc, char *argv[]) string_list_dir_path_sort(&conf_prunepaths); if (conf_debug_pruning) { - /* This is debuging output, don't mark anything for translation */ fprintf(stderr, "conf_block:\n"); for (char c : conf_block) { if (isascii((unsigned char)c) && isprint((unsigned char)c) && c != '\\')