-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleaning up version and usage statements.
Slight clean-up of the version and usage statments to print GPGME support using the HAVE_GPGME define.
- Loading branch information
Showing
5 changed files
with
37 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
|
||
AC_PREREQ(2.61) | ||
AC_INIT([mcds], [1.1], [[email protected]]) | ||
AC_INIT([mcds], [1.2], [[email protected]]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
|
||
# Define our M4 macro directory | ||
|
@@ -63,7 +63,8 @@ AS_IF([test x$enable_gpgme != xno], | |
], | ||
[AC_MSG_ERROR([GPGME not found])]) | ||
], | ||
[AM_CONDITIONAL([WANT_GPGME], [test x = y])] | ||
[AC_DEFINE(HAVE_GPGME, 0, [GPGME not supported]) | ||
AM_CONDITIONAL([WANT_GPGME], [test x = y])] | ||
) | ||
|
||
AC_OUTPUT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,16 +6,17 @@ | |
#, fuzzy | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: mcds 1.1\n" | ||
"Project-Id-Version: mcds 1.2\n" | ||
"Report-Msgid-Bugs-To: <[email protected]>\n" | ||
"POT-Creation-Date: 2019-05-07 13:52-0600\n" | ||
"POT-Creation-Date: 2019-05-07 15:37-0600\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
"Language: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=CHARSET\n" | ||
"Content-Transfer-Encoding: 8bit\n" | ||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" | ||
|
||
#: src/carddav.c:94 | ||
msgid "Will not to write results to non-null pointer." | ||
|
@@ -78,36 +79,37 @@ msgstr "" | |
msgid "Unable to finalise null curl handle." | ||
msgstr "" | ||
|
||
#: src/main.c:227 | ||
#: src/main.c:228 | ||
msgid "Must specify a term to query for." | ||
msgstr "" | ||
|
||
#: src/main.c:258 | ||
#: src/main.c:259 | ||
#, c-format | ||
msgid "" | ||
"usage: %s [-h] [-V] [-v] [-q n|t|e] [-s n|a|t|e] [-u URL] string\n" | ||
"usage: %s [-h] [-V] [-v] [-q a|e|n|t] [-s a|e|n|t] [-u URL] string\n" | ||
" -h, --help Display this help and exit.\n" | ||
" -V, --version Display version information and exit.\n" | ||
" -v, --verbose Verbose mode.\n" | ||
" -q, --query n|t|e Query term (default name). Known terms are:\n" | ||
" -q, --query a|e|n|t Query term (default name). Known terms are:\n" | ||
" a = address\n" | ||
" e = email\n" | ||
" n = name\n" | ||
" t = telephone\n" | ||
" -s, --search a|n|e|t Search term (default email). Known terms are:\n" | ||
" a = address\n" | ||
" e = email\n" | ||
" -s, --search a|t|e Search term (default email). Known terms are:\n" | ||
" n = name\n" | ||
" a = address\n" | ||
" t = telephone\n" | ||
" e = email\n" | ||
" -u, --url The URL of the carddav server to query.\n" | ||
" string The query string to look for within the query term.\n" | ||
msgstr "" | ||
|
||
#: src/main.c:285 | ||
#: src/main.c:287 | ||
#, c-format | ||
msgid "%s (GNU %s) %s\n" | ||
msgstr "" | ||
|
||
#: src/main.c:286 | ||
#: src/main.c:288 | ||
#, c-format | ||
msgid "" | ||
"Copyright (C) %s Timothy Brown.\n" | ||
|
@@ -118,13 +120,19 @@ msgid "" | |
"\n" | ||
msgstr "" | ||
|
||
#: src/main.c:291 | ||
#: src/main.c:293 | ||
#, c-format | ||
msgid "" | ||
"Compiled on %s at %s %s\n" | ||
"Compiled on %s at %s %s GPGME support.\n" | ||
"\n" | ||
msgstr "" | ||
|
||
#: src/main.c:294 | ||
msgid "with" | ||
msgid_plural "with-out" | ||
msgstr[0] "" | ||
msgstr[1] "" | ||
|
||
#: src/mem.c:60 | ||
#, c-format | ||
msgid "out of memory (unable to allocate %ld bytes)" | ||
|
@@ -165,7 +173,7 @@ msgid "Unable to build password file string" | |
msgstr "" | ||
|
||
#: src/rc.c:205 | ||
msgid "Encrypted password files are not supportred." | ||
msgid "Encrypted password files are not supportred, ignoring." | ||
msgstr "" | ||
|
||
#: src/vcard.c:83 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters