Update negative button text on the SSL Certificate Error dialog.
Change the text on the "negative" button of the SSL Certificate
error dialog to better reflect what action is taking place. It now
reads "Go Back" rather than "Cancel".
Change-Id: Ie4b508514956420ec9b48f4a52f13076053948ba
diff --git a/src/com/android/browser/Tab.java b/src/com/android/browser/Tab.java
index 0f8ce6b..a048c2d 100644
--- a/src/com/android/browser/Tab.java
+++ b/src/com/android/browser/Tab.java
@@ -705,7 +705,7 @@
mWebViewController.showSslCertificateOnError(view,
handler, error);
}
- }).setNegativeButton(R.string.cancel,
+ }).setNegativeButton(R.string.ssl_go_back,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog,
int whichButton) {