diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-14 13:08:18 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-08-14 13:08:18 +0000 |
commit | a1415d74302e12459379437ca8d6af0ff4cf1921 (patch) | |
tree | b21a8c74c8418a69e60610aaa07495e5ed9b3d57 /modules/admin-core | |
parent | 2c844d42d819f1d2b5f9827b3e079801f238938d (diff) |
modules: make most remaining hardcoded strings translatable, patch by "BasicXP" <basicxp@ubuntu.com>
Diffstat (limited to 'modules/admin-core')
-rw-r--r-- | modules/admin-core/luasrc/view/error404.htm | 8 | ||||
-rw-r--r-- | modules/admin-core/luasrc/view/error500.htm | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/modules/admin-core/luasrc/view/error404.htm b/modules/admin-core/luasrc/view/error404.htm index 4aa40f392..813604d12 100644 --- a/modules/admin-core/luasrc/view/error404.htm +++ b/modules/admin-core/luasrc/view/error404.htm @@ -13,7 +13,7 @@ $Id$ -%> <%+header%> -<h2><a id="content" name="content">404 Not Found</a></h2> -<p>Sorry, the object you requested was not found.</p> -<tt>Unable to dispatch: <%=luci.http.request.env.PATH_INFO%></tt> -<%+footer%>
\ No newline at end of file +<h2><a id="content" name="content">404 <%:Not Found%></a></h2> +<p><%:Sorry, the object you requested was not found.%></p> +<tt><%:Unable to dispatch%>: <%=luci.http.request.env.PATH_INFO%></tt> +<%+footer%> diff --git a/modules/admin-core/luasrc/view/error500.htm b/modules/admin-core/luasrc/view/error500.htm index 982f9b9e9..14ba0410a 100644 --- a/modules/admin-core/luasrc/view/error500.htm +++ b/modules/admin-core/luasrc/view/error500.htm @@ -13,7 +13,7 @@ $Id$ -%> <%+header%> -<h2><a id="content" name="content">500 Internal Server Error</a></h2> -<p>Sorry, the server encountered an unexpected error.</p> +<h2><a id="content" name="content">500 <%:Internal Server Error%></a></h2> +<p><%:Sorry, the server encountered an unexpected error.%></p> <pre class="error500"><%=message%></pre> <%+footer%> |