1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-01-02 12:01:32 +01:00

See ChangeLog: Tue Dec 8 15:09:29 CET 1998 Werner Koch

This commit is contained in:
Werner Koch 1998-12-08 14:13:59 +00:00
parent ab986970eb
commit 918c684756
16 changed files with 5459 additions and 2315 deletions

View File

@ -48,6 +48,11 @@ TRANSLATIONS Urko Lusa ??????????
es_ES.po
TRANSLATIONS Thiago Jung Bauermann ????????????????
pt_BR.po
Other notes:
============
The file cipher/rndunix.c is heavily based on Peter Gutmann's

View File

@ -1,3 +1,6 @@
Tue Dec 8 15:09:29 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
* VERSION: Set to 0.4.5
Wed Nov 25 12:38:29 1998 Werner Koch (wk@isil.d.shuttle.de)
* configure.in (USE_RNDLINUX): New.

6
NEWS
View File

@ -1,3 +1,5 @@
Noteworthy changes in version 0.4.5
-----------------------------------
* The keyrings and the trustdb is now locked, so that
other GnuPG processes won't damage these files. You
@ -6,11 +8,13 @@
* The latest self-signatures are now used; this enables --import
to see updated preferences etc.
* import of subkeys should now work.
* Import of subkeys should now work.
* Random gathering modules may now be loaded as extensions. Add
such a module for most Unices but it is very experimental!
* Brazilian language support.
Noteworthy changes in version 0.4.4
-----------------------------------

1
THANKS
View File

@ -63,6 +63,7 @@ SL Baur steve@xemacs.org
Stefan Karrmann S.Karrmann@gmx.net
Steffen Ullrich ccrlphr@xensei.com
Steffen Zahn zahn@berlin.snafu.de
Thiago Jung Bauermann jungmann@usa.net
Thomas Roessler roessler@guug.de
Tom Spindler dogcow@home.merit.edu
Tom Zerucha tzeruch@ceddec.com

View File

@ -1 +1 @@
0.4.4a
0.4.5

View File

@ -5,3 +5,4 @@ gpg: NOTE: cipher algorithm 4 not found in preferences
gpg: NOTE: secret key 2E5FA4F4 is NOT protected.
gpg: NOTE: secret key 439F02CA is NOT protected.
gpg: WARNING: using insecure random number generator
gpg: NOTE: This is a development version!

View File

@ -14,7 +14,7 @@ AM_CONFIG_HEADER(config.h)
VERSION=`cat $srcdir/VERSION`
PACKAGE=gnupg
ALL_LINGUAS="de it fr ru es_ES"
ALL_LINGUAS="de it fr ru es_ES pt_BR"
AC_SUBST(VERSION)
AC_SUBST(PACKAGE)
AC_DEFINE_UNQUOTED(VERSION, "$VERSION")

View File

@ -844,7 +844,7 @@ main( int argc, char **argv )
{ const char *p = strusage(13);
for( ; *p && (isdigit(*p) || *p=='.'); p++ )
;
if( p )
if( *p )
log_info("NOTE: This is a development version!\n");
}

View File

@ -78,39 +78,39 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
},
{ N_("keygen.size"),
""
"Enter the size of the key"
},
{ N_("keygen.size.huge.okay"),
""
"Answer \"yes\" or \"no\""
},
{ N_("keygen.size.large.okay"),
""
"Answer \"yes\" or \"no\""
},
{ N_("keygen.valid"),
""
"Enter the required value"
},
{ N_("keygen.valid.okay"),
""
"Answer \"yes\" or \"no\""
},
{ N_("keygen.name"),
""
"Enter the name of the key holder"
},
{ N_("keygen.email"),
""
"please enter an optional but highly suggested email address"
},
{ N_("keygen.comment"),
""
"Please enter an optional comment"
},
@ -128,12 +128,12 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
},
{ N_("sign_uid.okay"),
""
"Answer \"yes\" or \"no\""
},
{ N_("change_passwd.empty.okay"),
""
"Answer \"yes\" or \"no\""
},
@ -142,24 +142,25 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
},
{ N_("keyedit.save.okay"),
""
"Answer \"yes\" or \"no\""
},
{ N_("keyedit.cancel.okay"),
""
"Answer \"yes\" or \"no\""
},
{ N_("keyedit.sign_all.okay"),
""
"Answer \"yes\" is you want to sign ALL the user IDs"
},
{ N_("keyedit.remove.uid.okay"),
""
"Answer \"yes\" if you really want to delete this user ID.\n"
"All ceritifcates are then also lost!"
},
{ N_("keyedit.remove.subkey.okay"),
""
"Answer \"yes\" if it is okay to delete the subkey"
},
{ N_("passphrase.enter"),
@ -174,11 +175,11 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
},
{ N_("detached_signature.filename"),
""
"Give the name fo the file to which the signature applies"
},
{ N_("openfile.overwrite.okay"),
""
"Answer \"yes\" if it is okay to overwrite the file"
},
/* end of list */

View File

@ -1,9 +1,10 @@
Tue Dec 8 15:09:29 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
* pt_BR.po: Add translation by Thiago Jung Bauermann.
Fri Nov 27 12:39:29 CET 1998 Werner Koch <wk@isil.d.shuttle.de>
* en.po: Removed
Fri Nov 20 11:46:22 1998 Werner Koch (wk@isil.d.shuttle.de)
* de.po: Imported new version

975
po/de.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

935
po/fr.po

File diff suppressed because it is too large Load Diff

907
po/it.po

File diff suppressed because it is too large Load Diff

3035
po/pt_BR.po Normal file

File diff suppressed because it is too large Load Diff

937
po/ru.po

File diff suppressed because it is too large Load Diff