X-Git-Url: https://git.pterodactylus.net/?p=Sone.git;a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Fweb%2Fajax%2FGetTranslationPage.java;h=2823177a7bf6afb5865b1f070960f61515647cba;hp=68f17773d3fcfb1ce0c7825aee64fdcae5d6a533;hb=419098bcd6215125408b29e60bd888e60979d37b;hpb=896463c592837b09794fa9368accf105c0bb05be diff --git a/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java b/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java index 68f1777..2823177 100644 --- a/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java +++ b/src/main/java/net/pterodactylus/sone/web/ajax/GetTranslationPage.java @@ -1,5 +1,5 @@ /* - * Sone - GetTranslationPage.java - Copyright © 2010 David Roden + * Sone - GetTranslationPage.java - Copyright © 2010–2015 David Roden * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -18,7 +18,7 @@ package net.pterodactylus.sone.web.ajax; import net.pterodactylus.sone.web.WebInterface; -import net.pterodactylus.util.json.JsonObject; +import net.pterodactylus.sone.web.page.FreenetRequest; /** * Returns the translation for a given key as JSON object. @@ -34,7 +34,7 @@ public class GetTranslationPage extends JsonPage { * The Sone web interface */ public GetTranslationPage(WebInterface webInterface) { - super("ajax/getTranslation.ajax", webInterface); + super("getTranslation.ajax", webInterface); } // @@ -45,10 +45,10 @@ public class GetTranslationPage extends JsonPage { * {@inheritDoc} */ @Override - protected JsonObject createJsonObject(Request request) { + protected JsonReturnObject createJsonObject(FreenetRequest request) { String key = request.getHttpRequest().getParam("key"); - String translation = webInterface.l10n().getString(key); - return new JsonObject().put("value", translation); + String translation = webInterface.getL10n().getString(key); + return createSuccessJsonObject().put("value", translation); } /** @@ -59,4 +59,12 @@ public class GetTranslationPage extends JsonPage { return false; } + /** + * {@inheritDoc} + */ + @Override + protected boolean requiresLogin() { + return false; + } + }