From 3918a7eaaf63ba1962779e4efe71d2782aef3384 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Mon, 1 Jun 2009 21:23:14 +0000 Subject: SSL certificate verification strings svn path=/trunk/netsurf/; revision=7685 --- amiga/sslcert.c | 22 +++++++++------------- amiga/tree.c | 2 +- 2 files changed, 10 insertions(+), 14 deletions(-) (limited to 'amiga') diff --git a/amiga/sslcert.c b/amiga/sslcert.c index 9158fa5a8..0f26aa0a6 100644 --- a/amiga/sslcert.c +++ b/amiga/sslcert.c @@ -148,24 +148,20 @@ void gui_cert_verify(struct browser_window *bw, struct content *c, ami_open_tree(tree,AMI_TREE_SSLCERT); twin = (struct treeview_window *)data->tree->handle; - if(yesorno = ASPrintf("%s|%s",messages_get("Yes"),messages_get("No"))) + if(yesorno = ASPrintf("%s|%s",messages_get("Accept"),messages_get("Reject"))) { - if(reqcontents = ASPrintf("%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s\n\n%s", - messages_get("ssl subject"), + if(reqcontents = ASPrintf("%s\n\n%s: %s\n%s: %s\n%s: %s\n%s: %s\n%s: %s", + messages_get("SSLError"), + messages_get("Subject"), to->subject_t, - messages_get("ssl issuer"), + messages_get("Issuer"), to->issuer_t, - messages_get("ssl version"), + messages_get("Version"), to->version, - messages_get("ssl valid_from"), + messages_get("ValidFrom"), to->valid_from, - messages_get("ssl type"), - to->type, - messages_get("ssl valid_to"), - to->valid_to, - messages_get("ssl serial"), - to->serial, - messages_get("ssl question"))) + messages_get("ValidTo"), + to->valid_to)) { res = TimedDosRequesterTags(TDR_ImageType,TDRIMAGE_QUESTION, TDR_Window,twin->win, diff --git a/amiga/tree.c b/amiga/tree.c index 15d65b283..7000fb76c 100755 --- a/amiga/tree.c +++ b/amiga/tree.c @@ -240,7 +240,7 @@ void ami_open_tree(struct tree *tree,int type) break; case AMI_TREE_SSLCERT: nothl = TRUE; - wintitle = (char *)messages_get("ssl cert"); + wintitle = (char *)messages_get("SSLCerts"); ami_get_theme_filename(&item,"theme_list_sslcert"); break; } -- cgit v1.2.3