Skip to content

Commit

Permalink
See changelog, before 0.5.2
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.getfiregpg.org/firegpg@460 1e1cc2a3-b62a-0410-bc93-fb3b3b0a0737
  • Loading branch information
theglu committed Sep 30, 2008
1 parent e800b23 commit 02f2512
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2008-09-29 Maximilien Cuony
* Fix a problem with hu locate
* FS#118
* FS#116

2008-09-29 Maximilien Cuony
* Fix problem with gmail

Expand Down
4 changes: 2 additions & 2 deletions content/cgmail.js
Expand Up @@ -637,7 +637,7 @@ var cGmail = {

if(result.result == RESULT_SUCCESS) {

cGmail.setWriteMailContent(cGmail.lastDomToverify.document,info1,result.crypted);
cGmail.setWriteMailContent(cGmail.lastDomToverify.document,info1,result.encrypted);

if (target.id == "sndcrypt")
{
Expand Down Expand Up @@ -668,7 +668,7 @@ var cGmail = {

if(result.result == RESULT_SUCCESS) {

cGmail.setWriteMailContent(cGmail.lastDomToverify.document,info1,result.crypted);
cGmail.setWriteMailContent(cGmail.lastDomToverify.document,info1,result.encrypted);

if (target.id == "sndsigncrypt")
{
Expand Down
10 changes: 5 additions & 5 deletions content/keyring.js
Expand Up @@ -355,9 +355,9 @@ Keyring.VerifySignature = function(content, block) {



if (resultTest.signresult ==RESULT_ERROR_UNKNOW) {
block.body.className = "failure";
block.header.textContent = i18n.getString("signed-message") + ", " +i18n.getString("verifFailedGeneral");
if (resultTest.signresult == RESULT_SUCCESS) {
block.body.className = "ok";
block.header.textContent = i18n.getString("signed-message") + ", " + i18n.getString("verifSuccess") + " " + resultTest.signresulttext;
}
else if (resultTest.signresult == RESULT_ERROR_BAD_SIGN) {
block.body.className = "failure";
Expand All @@ -368,8 +368,8 @@ Keyring.VerifySignature = function(content, block) {
block.header.textContent = i18n.getString("signed-message") + ", " + i18n.getString("verifFailedUnknownKey") ;
}
else {
block.body.className = "ok";
block.header.textContent = i18n.getString("signed-message") + ", " + i18n.getString("verifSuccess") + " " + resultTest.signresulttext;
block.body.className = "failure";
block.header.textContent = i18n.getString("signed-message") + ", " +i18n.getString("verifFailedGeneral");
}

};
Expand Down
2 changes: 1 addition & 1 deletion locale/hu/prefwindow.dtd
Expand Up @@ -11,7 +11,7 @@
<!ENTITY result-always-in-new-window "Mindig új ablakban jelenítse meg egy kódolás vagy egy aláírás eredményét.">
<!ENTITY no-gpg-agent-checkbox "A GPG Agent kényszerített kikapcsolása (néhány hibát megszüntethet)">
<!ENTITY ask-for-save-pass "Alapból kérdezzen rá a jelszó elmentésére.">
<!ENTITY gmail-no-no-sign-checkbox "Ne mutassa, hogy \"Aláírás nem található a [...]\"">
<!ENTITY gmail-no-no-sign-checkbox "Ne mutassa, hogy 'Aláírás nem található a [...]'">
<!ENTITY gmail-need-a-restart "Ezen beállításokhoz újra kell indítani a böngészőt.">
<!ENTITY gmail-buttons-label "A következő gombokat mutassa:">
<!ENTITY gmail-buton-sign-checkbox "Aláírás">
Expand Down

0 comments on commit 02f2512

Please sign in to comment.