Updated German translation.

Fix in gpgconf for W32.
This commit is contained in:
Werner Koch 2008-05-09 09:54:35 +00:00
parent dbaca1ed0f
commit d9405f0c49
34 changed files with 6261 additions and 5977 deletions

View File

@ -70,7 +70,7 @@ record.
5. Field: KeyID
6. Field: Creation Date (in UTC). For UID and UAT records, this is the
self-signature date. Note that the dae is usally printed
self-signature date. Note that the date is usally printed
in seconds since epoch, however, we are migrating to an ISO
8601 format (e.g. "19660205T091500"). This is currently
only relevant for X.509, A simple way to detect the format

View File

@ -311,7 +311,9 @@ command "tsign").
@item --check-sigs
@opindex check-sigs
Same as @option{--list-sigs}, but the signatures are verified.
Same as @option{--list-sigs}, but the signatures are verified. Note
that for performance reasons the revocation status of a signing key is
not shown.
@ifclear gpgone
This command has the same effect as
using @option{--list-keys} with @option{--with-sig-check}.

View File

@ -1333,6 +1333,11 @@ set_gettext_file ( const char *filename, const char *regkey )
{
struct loaded_domain *domain = NULL;
/* FIXME: To support dgettext we need to make struct loaded_doman a
linked list and search that list for loaded domains before adding
a new one. If it is loaded just switch the current doman but do
not free anything. */
if ( filename && *filename )
{
if ( filename[0] == '/'

View File

@ -1,3 +1,7 @@
2008-05-09 Werner Koch <wk@g10code.com>
* de.po: Update.
2008-05-01 Werner Koch <wk@g10code.com>
* de.po: Typo fix.

451
po/be.po

File diff suppressed because it is too large Load Diff

451
po/ca.po

File diff suppressed because it is too large Load Diff

451
po/cs.po

File diff suppressed because it is too large Load Diff

451
po/da.po

File diff suppressed because it is too large Load Diff

468
po/de.po

File diff suppressed because it is too large Load Diff

451
po/el.po

File diff suppressed because it is too large Load Diff

451
po/eo.po

File diff suppressed because it is too large Load Diff

451
po/es.po

File diff suppressed because it is too large Load Diff

451
po/et.po

File diff suppressed because it is too large Load Diff

451
po/fi.po

File diff suppressed because it is too large Load Diff

451
po/fr.po

File diff suppressed because it is too large Load Diff

451
po/gl.po

File diff suppressed because it is too large Load Diff

451
po/hu.po

File diff suppressed because it is too large Load Diff

451
po/id.po

File diff suppressed because it is too large Load Diff

451
po/it.po

File diff suppressed because it is too large Load Diff

451
po/ja.po

File diff suppressed because it is too large Load Diff

451
po/nb.po

File diff suppressed because it is too large Load Diff

451
po/pl.po

File diff suppressed because it is too large Load Diff

451
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

451
po/ro.po

File diff suppressed because it is too large Load Diff

451
po/ru.po

File diff suppressed because it is too large Load Diff

451
po/sk.po

File diff suppressed because it is too large Load Diff

451
po/sv.po

File diff suppressed because it is too large Load Diff

451
po/tr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1869,7 +1869,7 @@ main ( int argc, char **argv)
default:
log_error ("invalid command (there is no implicit command)\n");
log_error (_("invalid command (there is no implicit command)\n"));
break;
}

View File

@ -1,3 +1,8 @@
2008-05-09 Werner Koch <wk@g10code.com>
* gpgconf-comp.c (my_dgettext) [USE_SIMPLE_GETTEXT]: Hack to
parly support translations.
2008-04-08 Werner Koch <wk@g10code.com>
* gpgconf-comp.c (gc_options_gpg): Add --auto-key-locate.

View File

@ -1027,7 +1027,27 @@ gpg_agent_runtime_change (void)
static const char *
my_dgettext (const char *domain, const char *msgid)
{
#ifdef ENABLE_NLS
#ifdef USE_SIMPLE_GETTEXT
if (domain)
{
static int switched_codeset;
char *text;
if (!switched_codeset)
{
switched_codeset = 1;
gettext_select_utf8 (1);
}
if (!strcmp (domain, "gnupg"))
domain = PACKAGE_GT;
/* FIXME: we have no dgettext, thus we can't switch. */
text = gettext (msgid);
return text ? text : msgid;
}
#elif defined(ENABLE_NLS)
if (domain)
{
static int switched_codeset;