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 /modules/admin-mini/luasrc/view | |
parent | b2671410bf5468443d6eb49f525d6c3e3fd7e28f (diff) |
all: translation fixes in templates
Diffstat (limited to 'modules/admin-mini/luasrc/view')
-rw-r--r-- | modules/admin-mini/luasrc/view/mini/upgrade.htm | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/modules/admin-mini/luasrc/view/mini/upgrade.htm b/modules/admin-mini/luasrc/view/mini/upgrade.htm index 510a51b15..1083a1618 100644 --- a/modules/admin-mini/luasrc/view/mini/upgrade.htm +++ b/modules/admin-mini/luasrc/view/mini/upgrade.htm @@ -16,58 +16,58 @@ $Id$ <%+header%> <h2><a id="content" name="content"><%:System%></a></h2> -<h3><%:admin_upgrade Flash Firmware%></h3> +<h3><%:Flash Firmware%></h3> <% if step == 1 then %> <% if supported then %> <form method="post" action="<%=REQUEST_URI%>" enctype="multipart/form-data"> <p> - <%:admin_upgrade_desc Upload an OpenWrt image file to reflash the device.%> + <%:Upload an OpenWrt image file to reflash the device.%> <% if bad_image then %> <br /><br /> - <div class="error"><%:admin_upgrade_badimage The uploaded image file does not + <div class="error"><%:The uploaded image file does not contain a supported format. Make sure that you choose the generic image format for your platform. %></div> <% end %> </p> <div> - <%:admin_upgrade_fwimage Firmware image%>:<br /> + <%:Firmware image%>:<br /> <input type="hidden" name="step" value="2" /> <input type="file" size="30" name="image" /> <br /> <br /> <% if keepavail then -%> <input type="checkbox" name="keepcfg" value="1" checked="checked" /> - <span class="bold"><%:admin_upgrade_keepcfg Keep configuration files%></span> + <span class="bold"><%:Keep configuration files%></span> <% end -%> <br /> - <input class="cbi-button cbi-button-apply" type="submit" value="<%:admin_upgrade_upload Upload image%>" /> + <input class="cbi-button cbi-button-apply" type="submit" value="<%:Upload image%>" /> </div> </form> <% else %> - <div class="error"><%:admin_upgrade_nosupport Sorry. + <div class="error"><%_ Sorry. OpenWrt does not support a system upgrade on this platform.<br /> You need to manually flash your device. %></div> <% end %> <% elseif step == 2 then %> <p> - <%:admin_upgrade_uploaded The flash image was uploaded. + <%_ The flash image was uploaded. Below is the checksum and file size listed, compare them with the original file to ensure data integrity.<br /> Click "Proceed" below to start the flash procedure. %> <% if flashsize > 0 and filesize > flashsize then %> <br /><br /> - <div class="error"><%:admin_upgrade_toolarge It appears that you try to + <div class="error"><%:It appears that you try to flash an image that does not fit into the flash memory, please verify the image file! %></div> <% end %> <br /> <ul> - <li><%:admin_upgrade_checksum Checksum%>: <code><%=checksum%></code></li> - <li><%:admin_upgrade_filesize Size%>: <% + <li><%:Checksum%>: <code><%=checksum%></code></li> + <li><%:Size%>: <% local w = require "luci.tools.webadmin" write(w.byte_format(filesize)) @@ -84,16 +84,16 @@ $Id$ <form style="display:inline"> <input type="hidden" name="step" value="3" /> <input type="hidden" name="keepcfg" value="<%=keepconfig and "1" or "0"%>" /> - <input class="cbi-button cbi-button-apply" type="submit" value="<%:proceed Proceed%>" /> + <input class="cbi-button cbi-button-apply" type="submit" value="<%:Proceed%>" /> </form> <form style="display:inline"> <input type="hidden" name="step" value="1" /> <input type="hidden" name="keepcfg" value="<%=keepconfig and "1" or "0"%>" /> - <input class="cbi-button cbi-button-reset" type="submit" value="<%:cancel Cancel%>" /> + <input class="cbi-button cbi-button-reset" type="submit" value="<%:Cancel%>" /> </form> </div> <% elseif step == 3 then %> - <p><%:admin_upgrade_running The system is flashing now.<br /> + <p><%_ The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a few minutes until you try to reconnect. It might be necessary to renew the address of your computer to reach the device |