all: change most translate statements to new format, some need manual cleanup
[project/luci.git] / applications / luci-ushare / luasrc / model / cbi / ushare.lua
index d90d2640f1059d87bae8f920b537faca840c5d41..0e5b6cff6e00735fe481b2061c20bb84f30d0560 100644 (file)
@@ -13,30 +13,30 @@ $Id$
 
 ]]--
 
-m = Map("ushare", translate("ushare"),
+m = Map("ushare", translate("uShare"),
        translate("ushare_desc"))
 
-s = m:section(TypedSection, "ushare", translate("settings"))
+s = m:section(TypedSection, "ushare", translate("Settings"))
 s.addremove = false
 s.anonymous = true
 
-s:option(Flag, "enabled", translate("enabled", "Enable"))
+s:option(Flag, "enabled", translate("Enable"))
 
-s:option(Value, "username", translate("username"))
+s:option(Value, "username", translate("Username"))
 
-s:option(Value, "servername", translate("servername"))
+s:option(Value, "servername", translate("Servername"))
 
-dif = s:option( Value, "interface", translate("interface")) 
+dif = s:option( Value, "interface", translate("Interface")) 
 for _, nif in ipairs(luci.sys.net.devices()) do                         
         if nif ~= "lo" then dif:value(nif) end                          
 end 
 
-s:option(Value, "content_directories", translate("content_directories"))
+s:option(Value, "content_directories", translate("Content directories"))
 
-s:option(Flag, "disable_webif", translate("disable_webif"))
+s:option(Flag, "disable_webif", translate("Disable webinterface"))
 
-s:option(Flag, "disable_telnet", translate("disable_telnet"))
+s:option(Flag, "disable_telnet", translate("Disable telnet console"))
 
-s:option(Value, "options", translate("options"))
+s:option(Value, "options", translate("Options"))
 
 return m