diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 19:26:07 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-10-31 19:26:07 +0000 |
commit | cffba70b2ebff664e385f077d30cf701cab49a70 (patch) | |
tree | f5d22dd86b44e051c1c74797c3584e101d1f566a /applications/luci-splash/luasrc | |
parent | b2671410bf5468443d6eb49f525d6c3e3fd7e28f (diff) |
all: translation fixes in templates
Diffstat (limited to 'applications/luci-splash/luasrc')
3 files changed, 17 insertions, 17 deletions
diff --git a/applications/luci-splash/luasrc/view/admin_status/splash.htm b/applications/luci-splash/luasrc/view/admin_status/splash.htm index 11af7f5ec..70e6c06cf 100644 --- a/applications/luci-splash/luasrc/view/admin_status/splash.htm +++ b/applications/luci-splash/luasrc/view/admin_status/splash.htm @@ -128,19 +128,19 @@ end <%+header%> <div id="cbi-splash-leases" class="cbi-map"> - <h2><a id="content" name="content"><%:ff_splash Client-Splash%></a></h2> + <h2><a id="content" name="content"><%:Client-Splash%></a></h2> <fieldset id="cbi-table-table" class="cbi-section"> - <legend><%:ff_splash_clients Active Clients%></legend> + <legend><%:Active Clients%></legend> <div class="cbi-section-node"> <% if is_admin then %><form action="<%=REQUEST_URI%>" method="post"><% end %> <table class="cbi-section-table"> <tr class="cbi-section-table-titles"> - <th class="cbi-section-table-cell"><%:ff_splash_hostname Hostname%></th> - <th class="cbi-section-table-cell"><%:ff_splash_ip IP Address%></th> - <th class="cbi-section-table-cell"><%:ff_splash_mac MAC Address%></th> - <th class="cbi-section-table-cell"><%:ff_splash_timeleft Time remaining%></th> - <th class="cbi-section-table-cell"><%:ff_splash_traffic Traffic in/out%></th> - <th class="cbi-section-table-cell"><%:ff_splash_policy Policy%></th> + <th class="cbi-section-table-cell"><%:Hostname%></th> + <th class="cbi-section-table-cell"><%:IP Address%></th> + <th class="cbi-section-table-cell"><%:MAC Address%></th> + <th class="cbi-section-table-cell"><%:Time remaining%></th> + <th class="cbi-section-table-cell"><%:Traffic in/out%></th> + <th class="cbi-section-table-cell"><%:Policy%></th> </tr> <%- @@ -169,14 +169,14 @@ end <td class="cbi-section-table-cell"> <% if is_admin then %> <select name="policy.<%=c.mac:lower()%>" style="width:200px"> - <option value="whitelist"<%=c.policy=="whitelist" and ' selected="selected"'%>><%:ff_splash_whitelisted whitelisted%></option> - <option value="normal"<%=c.policy=="normal" and not c.kicked and ' selected="selected"'%>><%:ff_splash_splashed splashed%></option> - <option value="blacklist"<%=c.policy=="blacklist" and ' selected="selected"'%>><%:ff_splash_blacklisted blacklisted%></option> + <option value="whitelist"<%=c.policy=="whitelist" and ' selected="selected"'%>><%:whitelisted%></option> + <option value="normal"<%=c.policy=="normal" and not c.kicked and ' selected="selected"'%>><%:splashed%></option> + <option value="blacklist"<%=c.policy=="blacklist" and ' selected="selected"'%>><%:blacklisted%></option> <% if c.policy == "normal" then -%> - <option value="kicked"><%:ff_splash_tempblock temporarily blocked%></option> + <option value="kicked"><%:temporarily blocked%></option> <%- end %> </select> - <input type="submit" class="cbi-button cbi-button-save" name="save.<%=c.mac:lower()%>" value="<%:save Save%>" /> + <input type="submit" class="cbi-button cbi-button-save" name="save.<%=c.mac:lower()%>" value="<%:Save%>" /> <% else %> <%=c.policy%> <% end %> @@ -190,7 +190,7 @@ end -%> <tr class="cbi-section-table-row"> <td colspan="7" class="cbi-section-table-cell"> - <br /><em><%:ff_splash_noclients No clients connected%></em><br /> + <br /><em><%:No clients connected%></em><br /> </td> </tr> <%- end -%> diff --git a/applications/luci-splash/luasrc/view/splash/splash.htm b/applications/luci-splash/luasrc/view/splash/splash.htm index 3fcf02bac..b65927505 100644 --- a/applications/luci-splash/luasrc/view/splash/splash.htm +++ b/applications/luci-splash/luasrc/view/splash/splash.htm @@ -42,6 +42,6 @@ Wenn Du unsere Idee gut findest, kannst Du uns unterstützen: </p> <p> -Mit einem Klick auf <em><%:accept Accept%></em> kannst du für <%=c.leasetime%> Stunden +Mit einem Klick auf <em><%:Accept%></em> kannst du für <%=c.leasetime%> Stunden über unser Netz das Internet verwenden. Dann wirst du erneut aufgefordet, diese Bedingungen zu akzeptieren. </p> diff --git a/applications/luci-splash/luasrc/view/splash_splash/splash.htm b/applications/luci-splash/luasrc/view/splash_splash/splash.htm index 413efbe2e..01dfd05c1 100644 --- a/applications/luci-splash/luasrc/view/splash_splash/splash.htm +++ b/applications/luci-splash/luasrc/view/splash_splash/splash.htm @@ -15,7 +15,7 @@ $Id$ <%+header%> <%+splash/splash%> <form method="get" action="<%=controller%>/splash/activate"> - <input type="submit" value="<%:decline Decline%>" /> - <input type="submit" name="accept" value="<%:accept Accept%>" /> + <input type="submit" value="<%:Decline%>" /> + <input type="submit" name="accept" value="<%:Accept%>" /> </form> <%+footer%> |