summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-minidlna/luasrc
diff options
context:
space:
mode:
authorAmeer Dawood <ameer1234567890@gmail.com>2018-08-15 22:13:59 +0500
committerAmeer Dawood <ameer1234567890@gmail.com>2018-08-15 22:13:59 +0500
commit808153fd9d95427ebd73ce822c7dd1940dc32ec1 (patch)
tree57d345334b6a6c7978a4cde95611f0231ee76055 /applications/luci-app-minidlna/luasrc
parent809d3b9371cbbbe088ee505a25fbbfbd19526ef6 (diff)
luci-app-minidlna: Colons removed
Colons have been removed as asked in #1566 Signed-off-by: Ameer Dawood <ameer1234567890@gmail.com>
Diffstat (limited to 'applications/luci-app-minidlna/luasrc')
-rw-r--r--applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua36
1 files changed, 18 insertions, 18 deletions
diff --git a/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua b/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua
index 067d08cf0..9dcc527a3 100644
--- a/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua
+++ b/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua
@@ -15,7 +15,7 @@ s.anonymous = true
s:tab("general", translate("General Settings"))
s:tab("advanced", translate("Advanced Settings"))
-o = s:taboption("general", Flag, "enabled", translate("Enable:"))
+o = s:taboption("general", Flag, "enabled", translate("Enable"))
o.rmempty = false
function o.cfgvalue(self, section)
@@ -34,13 +34,13 @@ function o.write(self, section, value)
return Flag.write(self, section, value)
end
-o = s:taboption("general", Value, "port", translate("Port:"),
+o = s:taboption("general", Value, "port", translate("Port"),
translate("Port for HTTP (descriptions, SOAP, media transfer) traffic."))
o.datatype = "port"
o.default = 8200
-o = s:taboption("general", Value, "interface", translate("Interfaces:"),
+o = s:taboption("general", Value, "interface", translate("Interfaces"),
translate("Network interfaces to serve."))
o.template = "cbi/network_ifacelist"
@@ -69,59 +69,59 @@ function o.write(self, section, value)
end
-o = s:taboption("general", Value, "friendly_name", translate("Friendly name:"),
+o = s:taboption("general", Value, "friendly_name", translate("Friendly name"),
translate("Set this if you want to customize the name that shows up on your clients."))
o.rmempty = true
o.placeholder = "OpenWrt DLNA Server"
-o = s:taboption("advanced", Value, "db_dir", translate("Database directory:"),
+o = s:taboption("advanced", Value, "db_dir", translate("Database directory"),
translate("Set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache."))
o.rmempty = true
o.placeholder = "/var/cache/minidlna"
-o = s:taboption("advanced", Value, "log_dir", translate("Log directory:"),
+o = s:taboption("advanced", Value, "log_dir", translate("Log directory"),
translate("Set this if you would like to specify the directory where you want MiniDLNA to store its log file."))
o.rmempty = true
o.placeholder = "/var/log"
-s:taboption("advanced", Flag, "inotify", translate("Enable inotify:"),
+s:taboption("advanced", Flag, "inotify", translate("Enable inotify"),
translate("Set this to enable inotify monitoring to automatically discover new files."))
-s:taboption("advanced", Flag, "enable_tivo", translate("Enable TIVO:"),
+s:taboption("advanced", Flag, "enable_tivo", translate("Enable TIVO"),
translate("Set this to enable support for streaming .jpg and .mp3 files to a TiVo supporting HMO."))
o.rmempty = true
-s:taboption("advanced", Flag, "wide_links", translate("Allow wide links:"),
+s:taboption("advanced", Flag, "wide_links", translate("Allow wide links"),
translate("Set this to allow serving content outside the media root (via symlinks)."))
o.rmempty = true
-o = s:taboption("advanced", Flag, "strict_dlna", translate("Strict to DLNA standard:"),
+o = s:taboption("advanced", Flag, "strict_dlna", translate("Strict to DLNA standard"),
translate("Set this to strictly adhere to DLNA standards. This will allow server-side downscaling of very large JPEG images, which may hurt JPEG serving performance on (at least) Sony DLNA products."))
o.rmempty = true
-o = s:taboption("advanced", Value, "presentation_url", translate("Presentation URL:"))
+o = s:taboption("advanced", Value, "presentation_url", translate("Presentation URL"))
o.rmempty = true
o.placeholder = "http://192.168.1.1/"
-o = s:taboption("advanced", Value, "notify_interval", translate("Notify interval:"),
+o = s:taboption("advanced", Value, "notify_interval", translate("Notify interval"),
translate("Notify interval in seconds."))
o.datatype = "uinteger"
o.placeholder = 900
-o = s:taboption("advanced", Value, "serial", translate("Announced serial number:"),
+o = s:taboption("advanced", Value, "serial", translate("Announced serial number"),
translate("Serial number the miniDLNA daemon will report to clients in its XML description."))
o.placeholder = "12345678"
-s:taboption("advanced", Value, "model_number", translate("Announced model number:"),
+s:taboption("advanced", Value, "model_number", translate("Announced model number"),
translate("Model number the miniDLNA daemon will report to clients in its XML description."))
o.placholder = "1"
-o = s:taboption("advanced", Value, "minissdpsocket", translate("miniSSDP socket:"),
+o = s:taboption("advanced", Value, "minissdpsocket", translate("miniSSDP socket"),
translate("Specify the path to the MiniSSDPd socket."))
o.rmempty = true
o.placeholder = "/var/run/minissdpd.sock"
-o = s:taboption("general", ListValue, "root_container", translate("Root container:"))
+o = s:taboption("general", ListValue, "root_container", translate("Root container"))
o:value(".", translate("Standard container"))
o:value("B", translate("Browse directory"))
o:value("M", translate("Music"))
@@ -129,11 +129,11 @@ o:value("V", translate("Video"))
o:value("P", translate("Pictures"))
-s:taboption("general", DynamicList, "media_dir", translate("Media directories:"),
+s:taboption("general", DynamicList, "media_dir", translate("Media directories"),
translate("Set this to the directory you want scanned. If you want to restrict the directory to a specific content type, you can prepend the type ('A' for audio, 'V' for video, 'P' for images), followed by a comma, to the directory (eg. A,/mnt/media/Music). Multiple directories can be specified."))
-o = s:taboption("general", DynamicList, "album_art_names", translate("Album art names:"),
+o = s:taboption("general", DynamicList, "album_art_names", translate("Album art names"),
translate("This is a list of file names to check for when searching for album art."))
o.rmempty = true
o.placeholder = "Cover.jpg"