I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit db8a3d5b authored by zzz's avatar zzz
Browse files

Susimail: Add console translate method so strings don't get tagged in susimail bundle

parent 011d08b1
No related branches found
No related tags found
No related merge requests found
......@@ -1657,12 +1657,12 @@ public class WebMail extends HttpServlet
if (nonce == null || !sessionObject.isValidNonce(nonce)) {
// These two strings are already in the router console FormHandler,
// so translate with that bundle.
sessionObject.error = Translate.getString(
sessionObject.error = consoleGetString(
"Invalid form submission, probably because you used the 'back' or 'reload' button on your browser. Please resubmit.",
ctx, CONSOLE_BUNDLE_NAME)
ctx)
+ '\n' +
Translate.getString("If the problem persists, verify that you have cookies enabled in your browser.",
ctx, CONSOLE_BUNDLE_NAME);
consoleGetString("If the problem persists, verify that you have cookies enabled in your browser.",
ctx);
isPOST = false;
}
}
......@@ -1834,6 +1834,14 @@ public class WebMail extends HttpServlet
}
}
/**
* Translate with the console bundle.
* @since 0.9.27
*/
private static String consoleGetString(String s, I2PAppContext ctx) {
return Translate.getString(s, ctx, CONSOLE_BUNDLE_NAME);
}
/**
* @param sessionObject
* @param response
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment