mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Updated German translation.
Fix in gpgconf for W32.
This commit is contained in:
parent
dbaca1ed0f
commit
d9405f0c49
@ -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
|
||||
|
@ -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}.
|
||||
|
@ -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] == '/'
|
||||
|
@ -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/pt_BR.po
451
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
451
po/zh_CN.po
451
po/zh_CN.po
File diff suppressed because it is too large
Load Diff
451
po/zh_TW.po
451
po/zh_TW.po
File diff suppressed because it is too large
Load Diff
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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.
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user