diff options
Diffstat (limited to 'applications/luci-app-minidlna')
32 files changed, 4879 insertions, 0 deletions
diff --git a/applications/luci-app-minidlna/Makefile b/applications/luci-app-minidlna/Makefile new file mode 100644 index 000000000..4790aa32c --- /dev/null +++ b/applications/luci-app-minidlna/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Support for miniDLNA +LUCI_DEPENDS:=+minidlna + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-minidlna/luasrc/controller/minidlna.lua b/applications/luci-app-minidlna/luasrc/controller/minidlna.lua new file mode 100644 index 000000000..606cf6d7b --- /dev/null +++ b/applications/luci-app-minidlna/luasrc/controller/minidlna.lua @@ -0,0 +1,57 @@ +--[[ +LuCI - Lua Configuration Interface - miniDLNA support + +Copyright 2012 Gabor Juhos <juhosg@openwrt.org> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +module("luci.controller.minidlna", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/minidlna") then + return + end + + local page + + page = entry({"admin", "services", "minidlna"}, cbi("minidlna"), _("miniDLNA")) + page.dependent = true + + entry({"admin", "services", "minidlna_status"}, call("minidlna_status")) +end + +function minidlna_status() + local sys = require "luci.sys" + local uci = require "luci.model.uci".cursor() + local port = tonumber(uci:get_first("minidlna", "minidlna", "port")) + + local status = { + running = (sys.call("pidof minidlna >/dev/null") == 0), + audio = 0, + video = 0, + image = 0 + } + + if status.running then + local fd = sys.httpget("http://127.0.0.1:%d/" % (port or 8200), true) + if fd then + local html = fd:read("*a") + if html then + status.audio = (tonumber(html:match("Audio files</td><td>(%d+)")) or 0) + status.video = (tonumber(html:match("Video files</td><td>(%d+)")) or 0) + status.image = (tonumber(html:match("Image files</td><td>(%d+)")) or 0) + end + fd:close() + end + end + + luci.http.prepare_content("application/json") + luci.http.write_json(status) +end diff --git a/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua b/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua new file mode 100644 index 000000000..41e2826ee --- /dev/null +++ b/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua @@ -0,0 +1,176 @@ +--[[ +LuCI - Lua Configuration Interface - miniDLNA support + +Copyright 2012 Gabor Juhos <juhosg@openwrt.org> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +$Id$ +]]-- + +local m, s, o + +m = Map("minidlna", translate("miniDLNA"), + translate("MiniDLNA is server software with the aim of being fully compliant with DLNA/UPnP-AV clients.")) + +m:section(SimpleSection).template = "minidlna_status" + +s = m:section(TypedSection, "minidlna", "miniDLNA Settings") +s.addremove = false +s.anonymous = true + +s:tab("general", translate("General Settings")) +s:tab("advanced", translate("Advanced Settings")) + +o = s:taboption("general", Flag, "enabled", translate("Enable:")) +o.rmempty = false + +function o.cfgvalue(self, section) + return luci.sys.init.enabled("minidlna") and self.enabled or self.disabled +end + +function o.write(self, section, value) + if value == "1" then + luci.sys.init.enable("minidlna") + luci.sys.call("/etc/init.d/minidlna start >/dev/null") + else + luci.sys.call("/etc/init.d/minidlna stop >/dev/null") + luci.sys.init.disable("minidlna") + end + + return Flag.write(self, section, value) +end + +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:"), + translate("Network interfaces to serve.")) + +o.template = "cbi/network_ifacelist" +o.widget = "checkbox" +o.nocreate = true + +function o.cfgvalue(self, section) + local rv = { } + local val = Value.cfgvalue(self, section) + if val then + local ifc + for ifc in val:gmatch("[^,%s]+") do + rv[#rv+1] = ifc + end + end + return rv +end + +function o.write(self, section, value) + local rv = { } + local ifc + for ifc in luci.util.imatch(value) do + rv[#rv+1] = ifc + end + Value.write(self, section, table.concat(rv, ",")) +end + + +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:"), + 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:"), + 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:"), + translate("Set this to enable inotify monitoring to automatically discover new files.")) + +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 + +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.rmempty = true +o.placeholder = "http://192.168.1.1/" + +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:"), + 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:"), + 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:"), + 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:value(".", translate("Standard container")) +o:value("B", translate("Browse directory")) +o:value("M", translate("Music")) +o:value("V", translate("Video")) +o:value("P", translate("Pictures")) + + +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. media_dir=A,/mnt/media/Music). Multiple directories can be specified.")) + + +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" + +function o.cfgvalue(self, section) + local rv = { } + + local val = Value.cfgvalue(self, section) + if type(val) == "table" then + val = table.concat(val, "/") + elseif not val then + val = "" + end + + local file + for file in val:gmatch("[^/%s]+") do + rv[#rv+1] = file + end + + return rv +end + +function o.write(self, section, value) + local rv = { } + local file + for file in luci.util.imatch(value) do + rv[#rv+1] = file + end + Value.write(self, section, table.concat(rv, "/")) +end + + +return m diff --git a/applications/luci-app-minidlna/luasrc/view/admin_status/index/minidlna.htm b/applications/luci-app-minidlna/luasrc/view/admin_status/index/minidlna.htm new file mode 100644 index 000000000..b2feeb2ef --- /dev/null +++ b/applications/luci-app-minidlna/luasrc/view/admin_status/index/minidlna.htm @@ -0,0 +1 @@ +<%+minidlna_status%> diff --git a/applications/luci-app-minidlna/luasrc/view/minidlna_status.htm b/applications/luci-app-minidlna/luasrc/view/minidlna_status.htm new file mode 100644 index 000000000..098a72a07 --- /dev/null +++ b/applications/luci-app-minidlna/luasrc/view/minidlna_status.htm @@ -0,0 +1,29 @@ +<script type="text/javascript">//<![CDATA[ + XHR.poll(5, '<%=luci.dispatcher.build_url("admin/services/minidlna_status")%>', null, + function(x, st) + { + var tb = document.getElementById('minidlna_status'); + if (st && tb) + { + if (st.running) + { + tb.innerHTML = String.format( + '<%:The miniDLNA service is active, serving %d audio, %d video and %d image files.%>', + st.audio, st.video, st.image + ); + } + else + { + tb.innerHTML = '<em><%:The miniDLNA service is not running.%></em>'; + } + } + } + ); +//]]></script> + +<fieldset class="cbi-section"> + <legend><%:miniDLNA Status%></legend> + <p id="minidlna_status"> + <em><%:Collecting data...%></em> + </p> +</fieldset> diff --git a/applications/luci-app-minidlna/po/ca/minidlna.po b/applications/luci-app-minidlna/po/ca/minidlna.po new file mode 100644 index 000000000..bf160080e --- /dev/null +++ b/applications/luci-app-minidlna/po/ca/minidlna.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-07-01 05:45+0200\n" +"Last-Translator: Alex <alexhenrie24@gmail.com>\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Ajusts avançats" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "Habilita TIVO:" + +msgid "Enable inotify:" +msgstr "Habilita inotify:" + +msgid "Enable:" +msgstr "Habilita:" + +msgid "Friendly name:" +msgstr "Nom amistós:" + +msgid "General Settings" +msgstr "Ajusts generals" + +msgid "Interfaces:" +msgstr "Interfícies" + +msgid "Log directory:" +msgstr "Directori de registre:" + +msgid "Media directories:" +msgstr "Directoris de medis:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "Música" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "Interval de notificació en segons." + +msgid "Notify interval:" +msgstr "Interval de notificació:" + +msgid "Pictures" +msgstr "Imatges" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port de tràfic HTTP (descripcions, SOAP, transferència de medis)" + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Especifiqueu la ruta a l'endoll de MiniSSDPd." + +msgid "Standard container" +msgstr "Contenidor estàndard" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "Vídeo" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Estat de miniDLNA" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/cs/minidlna.po b/applications/luci-app-minidlna/po/cs/minidlna.po new file mode 100644 index 000000000..bf5a7f442 --- /dev/null +++ b/applications/luci-app-minidlna/po/cs/minidlna.po @@ -0,0 +1,171 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-08-04 19:18+0200\n" +"Last-Translator: KubaCZ <kuba.turek@centrum.cz>\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Pokročilé nastavení" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "Procházet adresář" + +msgid "Collecting data..." +msgstr "Shromažďování dat ..." + +msgid "Database directory:" +msgstr "Adresář databáze:" + +msgid "Enable TIVO:" +msgstr "Povolit TIVO:" + +msgid "Enable inotify:" +msgstr "Povolit inotify:" + +msgid "Enable:" +msgstr "Povolit:" + +msgid "Friendly name:" +msgstr "Popisek:" + +msgid "General Settings" +msgstr "Obecné nastavení" + +msgid "Interfaces:" +msgstr "Rozhraní:" + +msgid "Log directory:" +msgstr "Log adresář:" + +msgid "Media directories:" +msgstr "Media adresáře:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA je serverový software s cílem být plně kompatibilní s DLNA / UPnP-" +"AV klienty." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "Hudba" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "Notifikační interval v sekundách." + +msgid "Notify interval:" +msgstr "Notifikační interval:" + +msgid "Pictures" +msgstr "Obrázky" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port pro HTTP (popisy, SOAP, přenos médií) provoz." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "Prezentační URL:" + +msgid "Root container:" +msgstr "Kořenový/root kontejner:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "Standardní kontejner" + +msgid "Strict to DLNA standard:" +msgstr "Striktně se držet standardu DLNA:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"Služba miniDLNA je aktivní, poskytuje %d audio, %d video a %d obrázkových " +"souborů." + +msgid "The miniDLNA service is not running." +msgstr "Služba miniDLNA není spuštěna." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Stav miniDLNA" + +msgid "miniSSDP socket:" +msgstr "miniSSDP socket:" diff --git a/applications/luci-app-minidlna/po/de/minidlna.po b/applications/luci-app-minidlna/po/de/minidlna.po new file mode 100644 index 000000000..d912c926b --- /dev/null +++ b/applications/luci-app-minidlna/po/de/minidlna.po @@ -0,0 +1,205 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-04-09 14:39+0200\n" +"Last-Translator: Jo-Philipp <xm@subsignal.org>\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Advanced Settings" +msgstr "Erweiterte Einstellungen" + +msgid "Album art names:" +msgstr "Dateinamen für Cover-Bilder:" + +msgid "Announced model number:" +msgstr "Angekündigte Modellnummer:" + +msgid "Announced serial number:" +msgstr "Angekündigte Seriennummer:" + +msgid "Browse directory" +msgstr "Browse-Verzeichnis" + +msgid "Collecting data..." +msgstr "Sammle Daten..." + +msgid "Database directory:" +msgstr "Datenbankverzeichnis:" + +msgid "Enable TIVO:" +msgstr "TIVO aktivieren:" + +msgid "Enable inotify:" +msgstr "Inotify aktivieren:" + +msgid "Enable:" +msgstr "Aktivieren:" + +msgid "Friendly name:" +msgstr "Spitzname:" + +msgid "General Settings" +msgstr "Allgemeine Einstellungen" + +msgid "Interfaces:" +msgstr "Schnittstellen:" + +msgid "Log directory:" +msgstr "Protokollverzeichnis:" + +msgid "Media directories:" +msgstr "Medienverzeichnisse:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA ist eine Serversoftware mit dem Ziel voll kompatibel mit DLNA/UPnP-" +"AV-Klienten zu sein." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Spezifiziert die Modellnummer welche der miniDLNA-Dienst als Teil seiner XML-" +"Beschreibung an Clients versendet." + +msgid "Music" +msgstr "Musik" + +msgid "Network interfaces to serve." +msgstr "Zu bedienende Netzwerkschnittstellen." + +msgid "Notify interval in seconds." +msgstr "Ankündigungsinterval in Sekunden." + +msgid "Notify interval:" +msgstr "Ankündigunsintervall" + +msgid "Pictures" +msgstr "Bilder" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port für HTTP-Verkehr (Beschreibungen, SOAP, Mediendaten)." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "Präsentations-URL:" + +msgid "Root container:" +msgstr "Root-Container:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Spezifiziert die Seriennummer welche der miniDLNA-Dienst als Teil seiner XML-" +"Beschreibung an Clients versendet." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "Diesen Wert setzen um den auf Clients angezeigten Namen zu verändern." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Diesen Wert setzen um das Verzeichnis zu bestimmen in dem miniDLNA seine " +"Datenbank und den Cover-Bild-Speicher ablegt." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Diesen Wert setzen um das Verzeichnis zu bestimmen in dem miniDLNA seine " +"Protokolldateien ablegt." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Diese Option aktivieren um den Inotify-Mechanismus zum Entdecken neuer " +"Dateien zu benutzen." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Diese Option aktivieren um die Unterstützung von JPEG- und MP3-Streaming zu " +"HMO-TiVo-Geräten zu aktivieren." + +msgid "" +"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." +msgstr "" +"Diese Option setzen um den DLNA-Standard strikt einzuhalten. Damit wird " +"serverseitiges Herunterskalieren von JPEG-Bildern aktviert was die " +"Auslieferunsgeschwindigkeit in Verbindung mit Sony DLNA-Produkten negativ " +"beeinflussen kann." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Spezifiziert die zu durchsuchenden Medienverzeichnisse. Durch Voranstellung " +"eines Buchstaben gefolgt von einem Komma kann ein Verzeichnis auf einen " +"bestimmten Typ eingeschränkt werden; 'A' für Audio-, 'V' für Video- und 'P' " +"für Bild-Verzeichnisse. Es können mehrere Verzeichnisse angegeben werden." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Spezifiziert den Pfad zur MiniSSDPd-Socket-Datei." + +msgid "Standard container" +msgstr "Standard-Container" + +msgid "Strict to DLNA standard:" +msgstr "Stikt nach DLNA-Standard:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"Der miniDLNA-Dienst ist aktiv und publiziert %d Audio-, %d Video- und %d " +"Bild-Dateien." + +msgid "The miniDLNA service is not running." +msgstr "Der miniDLNA-Dienst ist inaktiv." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" +"Dies ist eine Liste von Dateinamen, die geprüft werden sollen wenn nach " +"Cover-Bildern gesucht wird." + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "miniDLNA-Status" + +msgid "miniSSDP socket:" +msgstr "miniSSDP-Socket:" + +#~ msgid "Network interfaces to serve, comma delimited list." +#~ msgstr "" +#~ "Lister dee bedienten Netzwerkschnittstellen als Komma-getrennte Liste." + +#~ msgid "" +#~ "This is a list of file names to check for when searching for album art. " +#~ "Note: names must be delimited with a forward slash '/'" +#~ msgstr "" +#~ "Dies ist eine Liste von zu prüfenden Dateinamen wenn nach Album-Covern " +#~ "gesucht wird. Hinweis: Namen müssen mit einem Schrägstrich ('/') getrennt " +#~ "werden." diff --git a/applications/luci-app-minidlna/po/el/minidlna.po b/applications/luci-app-minidlna/po/el/minidlna.po new file mode 100644 index 000000000..48c618839 --- /dev/null +++ b/applications/luci-app-minidlna/po/el/minidlna.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/en/minidlna.po b/applications/luci-app-minidlna/po/en/minidlna.po new file mode 100644 index 000000000..5934d42e9 --- /dev/null +++ b/applications/luci-app-minidlna/po/en/minidlna.po @@ -0,0 +1,195 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "Album art names:" + +msgid "Announced model number:" +msgstr "Announced model number:" + +msgid "Announced serial number:" +msgstr "Announced serial number:" + +msgid "Browse directory" +msgstr "Browse directory" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "Database directory:" + +msgid "Enable TIVO:" +msgstr "Enable TIVO:" + +msgid "Enable inotify:" +msgstr "Enable inotify:" + +msgid "Enable:" +msgstr "Enable:" + +msgid "Friendly name:" +msgstr "Friendly name:" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "Interfaces:" + +msgid "Log directory:" +msgstr "Log directory:" + +msgid "Media directories:" +msgstr "Media directories:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." + +msgid "Music" +msgstr "Music" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "Notify interval in seconds." + +msgid "Notify interval:" +msgstr "Notify interval:" + +msgid "Pictures" +msgstr "Pictures" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port for HTTP (descriptions, SOAP, media transfer) traffic." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "Presentation URL:" + +msgid "Root container:" +msgstr "Root container:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" +"Set this if you want to customize the name that shows up on your clients." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Set this to enable inotify monitoring to automatically discover new files." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." + +msgid "" +"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." +msgstr "" +"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." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Specify the path to the MiniSSDPd socket." + +msgid "Standard container" +msgstr "Standard container" + +msgid "Strict to DLNA standard:" +msgstr "Strict to DLNA standard:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "miniSSDP socket:" + +#~ msgid "Network interfaces to serve, comma delimited list." +#~ msgstr "Network interfaces to serve, comma delimited list." + +#~ msgid "" +#~ "This is a list of file names to check for when searching for album art. " +#~ "Note: names must be delimited with a forward slash '/'" +#~ msgstr "" +#~ "This is a list of file names to check for when searching for album art. " +#~ "Note: names must be delimited with a forward slash '/'" diff --git a/applications/luci-app-minidlna/po/es/minidlna.po b/applications/luci-app-minidlna/po/es/minidlna.po new file mode 100644 index 000000000..5f6b3964f --- /dev/null +++ b/applications/luci-app-minidlna/po/es/minidlna.po @@ -0,0 +1,184 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-09-01 09:07+0200\n" +"Last-Translator: José Vicente <josevteg@gmail.com>\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Configuración avanzada" + +msgid "Album art names:" +msgstr "Imágenes de álbumes:" + +msgid "Announced model number:" +msgstr "Número de modelo declarado:" + +msgid "Announced serial number:" +msgstr "Número de serie declarado:" + +msgid "Browse directory" +msgstr "Ver directorio" + +msgid "Collecting data..." +msgstr "Recopilando información..." + +msgid "Database directory:" +msgstr "Directorio de la base de datos:" + +msgid "Enable TIVO:" +msgstr "Activar TIVO:" + +msgid "Enable inotify:" +msgstr "Activar inotify:" + +msgid "Enable:" +msgstr "Activar:" + +msgid "Friendly name:" +msgstr "Nombre amigable:" + +msgid "General Settings" +msgstr "Configuración general" + +msgid "Interfaces:" +msgstr "Interfaces:" + +msgid "Log directory:" +msgstr "Directorio de registro:" + +msgid "Media directories:" +msgstr "Directorios de medios:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA es un servidor que buscar ser compatible con clientes DLNA/UPnP-AV." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Número de modelo que el demonio miniDLNA mostrará a los clientes en su " +"descripción XML." + +msgid "Music" +msgstr "Música" + +msgid "Network interfaces to serve." +msgstr "Interfaces de red a usar." + +msgid "Notify interval in seconds." +msgstr "Intervalo de notificación en segundos." + +msgid "Notify interval:" +msgstr "Intervalo de notificación:" + +msgid "Pictures" +msgstr "Imágenes" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" +"Puerto para tráfico HTTP (descripciones, SOAP y transferencia de medios)." + +msgid "Port:" +msgstr "Puerto:" + +msgid "Presentation URL:" +msgstr "URL de presentación:" + +msgid "Root container:" +msgstr "Raíz de contenidos:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Número de serie que el demonio miniDLNA informará a los clientes en su " +"descripción XML." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "Personalizar el nombre mostrado a los clientes." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Indicar el directorio en el que MiniDLNA guardará su base de datos y la " +"caché de álbumes." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "Indicar el directorio donde MiniDLNA guardará su archivo de registro." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "Inotify descubrirá automáticamente nuevos archivos." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "Envío de archivos .jpg y .mp3 a un TiVo usando HMO." + +msgid "" +"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." +msgstr "" +"Seguir estrictamente el estándar DLNA. Esto permite el reescalado desde el " +"servidor de imágenes JPEG grandes que pueden perjudicar el rendimiento en " +"(al menos) productos DLNA de Sony." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Directorio a explorar. Si quiere restringir el directorio a un contenido " +"específico puede añadir el tipo ('A' par audio, 'V' para vídeo o 'P' para " +"imágenes), seguido por una coma al nombre del directorio (ej. media_dir=A,/" +"mnt/media/Music). Se puede establecer varios directorios." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Camino al socket de MiniSSDPd." + +msgid "Standard container" +msgstr "Contenedor estándar" + +msgid "Strict to DLNA standard:" +msgstr "Ceñirse al estándar DLNA:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"El servicio miniDLNA está activo, sirviendo %d archivos de audio, %d de " +"vídeo y %d de imágenes." + +msgid "The miniDLNA service is not running." +msgstr "El servicio miniDLNA no está arrancado." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "Lista de nombres a comprobar para buscar imágenes de álbumes." + +msgid "Video" +msgstr "Vídeo" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Estado de miniDLNA" + +msgid "miniSSDP socket:" +msgstr "Socket de miniSSDP:" diff --git a/applications/luci-app-minidlna/po/fr/minidlna.po b/applications/luci-app-minidlna/po/fr/minidlna.po new file mode 100644 index 000000000..d638b0cba --- /dev/null +++ b/applications/luci-app-minidlna/po/fr/minidlna.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/he/minidlna.po b/applications/luci-app-minidlna/po/he/minidlna.po new file mode 100644 index 000000000..48c618839 --- /dev/null +++ b/applications/luci-app-minidlna/po/he/minidlna.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/hu/minidlna.po b/applications/luci-app-minidlna/po/hu/minidlna.po new file mode 100644 index 000000000..52fbe749e --- /dev/null +++ b/applications/luci-app-minidlna/po/hu/minidlna.po @@ -0,0 +1,199 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-04-09 19:18+0200\n" +"Last-Translator: Gábor <vargalex@freemail.hu>\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Advanced Settings" +msgstr "Haladó beállítások" + +msgid "Album art names:" +msgstr "Borító album nevek:" + +msgid "Announced model number:" +msgstr "Közölt modellszám:" + +msgid "Announced serial number:" +msgstr "Közölt sorozatszám:" + +msgid "Browse directory" +msgstr "Könyvtár tallózása" + +msgid "Collecting data..." +msgstr "Adatok gyűjtése..." + +msgid "Database directory:" +msgstr "Adatbázis könyvtár:" + +msgid "Enable TIVO:" +msgstr "TIVO engedélyezése:" + +msgid "Enable inotify:" +msgstr "Inotify engedélyezése:" + +msgid "Enable:" +msgstr "Engedélyezés:" + +msgid "Friendly name:" +msgstr "Egyéni név:" + +msgid "General Settings" +msgstr "Általános beállítások" + +msgid "Interfaces:" +msgstr "Interfészek:" + +msgid "Log directory:" +msgstr "Napló könyvtár:" + +msgid "Media directories:" +msgstr "Média könyvtárak:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"A MiniDLNA egy szerver alkalmazás, ami teljes mértékben kompatibilis a DLNA/" +"UPnP-AV képes kliensekkel." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"A miniDLNA által az XML leírásban jelentett modellszám a kliensek számára." + +msgid "Music" +msgstr "Zene" + +msgid "Network interfaces to serve." +msgstr "Kiszolgált hálózati interfészek." + +msgid "Notify interval in seconds." +msgstr "Értesítés intervalluma másodpercben." + +msgid "Notify interval:" +msgstr "Értesítési intervallum:" + +msgid "Pictures" +msgstr "Képek" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "HTTP forgalom (leírások, SOAP, média átvitel) portja." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "Szolgáltatott URL:" + +msgid "Root container:" +msgstr "Gyökér konténer:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"A miniDLNA által az XML leírásban jelentett szériaszám a kliensek számára." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" +"Állítsa be, amennyiben a kliensek számára megjelenő nevet szeretné testre " +"szabni." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Állítsa be, ha meg szeretné adni azt könyvtárat, ahová a a MiniDLNA az " +"adatbázisát, illetve az album borító gyorsítótárat rögzítse." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Áttítsa be, ha meg szeretné adni azt a könyvtárat, ahová a MiniDLNA a napló " +"állományait mentse." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Engedélyezze az új fájlok automatikus felfedezéséhez szükséges inotify " +"monitorozáshoz." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Engedélyezze a .jpg és .mp3 fájlok közvetítéséhez TiVo támogatott HMO-k felé." + +msgid "" +"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." +msgstr "" +"Engedélyezze a DLNA követelmények szigorú betartásához. Ez lehetővé teszi a " +"nagyon nagy JPEG képek szerver oldali leméretezését, amik pl. a Sony DLNA " +"termékek JPEG kiszolgáló teljesítményére nincsenek kedvező hatással." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Állítsa be a vizsgálandó könyvtárra. Ha a könyvtárat egy adott típusú " +"tartalom szerint szeretné korlátozni, akkor a neve előtt vesszővel " +"elválasztva megadhatja a típust ('A' az audió, 'V' a videó, 'P' a képek " +"számára. pl.: media_dir=A,/mnt/media/Music). Több könyvtár is megadható." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "A MiniSSDPd socket elérési útját határozza meg." + +msgid "Standard container" +msgstr "Szabvány konténer" + +msgid "Strict to DLNA standard:" +msgstr "DLNA követelmények szigorú betartása:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"A miniDLNA szolgáltatás aktív, %d hang, %d videó, %d kép fájl található. " + +msgid "The miniDLNA service is not running." +msgstr "A miniDLNA szolgáltatás nem aktív." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "Fájlnevek listája, amik ellenőrzésre kerülnek albumborító keresésekor." + +msgid "Video" +msgstr "Videó" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "miniDLNA állapot" + +msgid "miniSSDP socket:" +msgstr "miniSSDP socket:" + +#~ msgid "Network interfaces to serve, comma delimited list." +#~ msgstr "Kiszolgált hálózati interfészek vesszővel elválasztott listája." + +#~ msgid "" +#~ "This is a list of file names to check for when searching for album art. " +#~ "Note: names must be delimited with a forward slash '/'" +#~ msgstr "" +#~ "Ez egy lista azokról a fájlnevekről, amelyeket ellenőrizni kell a " +#~ "lemezborító keresésekor. Megjegyzés: a neveket per jellel ('/') kell " +#~ "elválasztani egymástól." diff --git a/applications/luci-app-minidlna/po/it/minidlna.po b/applications/luci-app-minidlna/po/it/minidlna.po new file mode 100644 index 000000000..1c0abc672 --- /dev/null +++ b/applications/luci-app-minidlna/po/it/minidlna.po @@ -0,0 +1,194 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-08-05 11:41+0200\n" +"Last-Translator: morganfw <morganfw@gmail.com>\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Opzioni avanzate" + +msgid "Album art names:" +msgstr "Nome Copertina Album:" + +msgid "Announced model number:" +msgstr "Numero modello annunciato:" + +msgid "Announced serial number:" +msgstr "Numero seriale annunciato:" + +msgid "Browse directory" +msgstr "Esplora directory" + +msgid "Collecting data..." +msgstr "Recuperando i dati..." + +msgid "Database directory:" +msgstr "Directory database:" + +msgid "Enable TIVO:" +msgstr "Abilita TIVO:" + +msgid "Enable inotify:" +msgstr "Abilita inotify:" + +msgid "Enable:" +msgstr "Abilita:" + +msgid "Friendly name:" +msgstr "Nome Comune:" + +msgid "General Settings" +msgstr "Impostazioni generali" + +msgid "Interfaces:" +msgstr "Interfacce:" + +msgid "Log directory:" +msgstr "Directory di log:" + +msgid "Media directories:" +msgstr "Cartelle Supporto:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA è un server il cui intento è di essere completamente compatibile " +"con i DLNA/UPnP-AV client disponibili." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Numero del modello che il demone miniDLNA riporterà ai client nella sua " +"descrizione XML." + +msgid "Music" +msgstr "Musica" + +msgid "Network interfaces to serve." +msgstr "Interfaccia di rete usata." + +msgid "Notify interval in seconds." +msgstr "Intervallo di notifica in secondi." + +msgid "Notify interval:" +msgstr "Intervallo di notifica:" + +msgid "Pictures" +msgstr "Immagini" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Porta per traffico (descrizione, SOAP, trasferimento supporto) HTTP:" + +msgid "Port:" +msgstr "Porta:" + +msgid "Presentation URL:" +msgstr "URL di Presentazione:" + +msgid "Root container:" +msgstr "Contenitore Principale:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Serial number che il server miniDLNA invierà ai client nella descrizione " +"XML." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "Imposta se si desidera personalizzare il nome da mostrare ai client." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Impostare questa opzione se si desidera specificare la cartella in cui si " +"desidera archiviare i database MiniDLNA e le copertine della cache album." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Impostare questa opzione se si desidera specificare la cartella in cui si " +"desidera che MiniDLNA archivi i propri file di registro." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Impostare questa opzione per consentire il monitoraggio inotify per rilevare " +"automaticamente i nuovi file." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Impostare questo per abilitare il supporto per lo streaming di file .jpg e " +".mp3 ad un supporto TiVo che supporta HMO." + +msgid "" +"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." +msgstr "" +"Impostare questo parametro per far rispettare rigorosamente gli standard " +"DLNA. Ciò consentirà sul lato server il ridimensionamento delle immagini " +"JPEG di grandi dimensioni che possono influire negativamente sulle " +"prestazioni JPEG del servizio su (almeno) i prodotti Sony DLNA." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Impostare la cartella che si desidera sottoporre a scansione. Se si desidera " +"limitare la directory per un tipo di contenuto specifico, è possibile " +"anteporre il tipo ('A' per l'audio, 'V' per video, 'P' per le immagini), " +"seguito da una virgola, nella cartella (es. media_dir = A,/mnt/media/Music). " +"Cartelle multiple possono essere specificate." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Specificare il percorso del socket MiniSSDPd." + +msgid "Standard container" +msgstr "Contenitore Standard" + +msgid "Strict to DLNA standard:" +msgstr "Scrupolosamente DLNA standard:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"Il servizio miniDLNA è attivo, servo %d audio, %d video, %d file di " +"immagine." + +msgid "The miniDLNA service is not running." +msgstr "Il servizio miniDLNA non è in esecuzione." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" +"Questo è un elenco di nomi di file per verificare la presenza durante la " +"ricerca di copertine degli album." + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Stato miniDLNA" + +msgid "miniSSDP socket:" +msgstr "Socket miniSSDP:" diff --git a/applications/luci-app-minidlna/po/ja/minidlna.po b/applications/luci-app-minidlna/po/ja/minidlna.po new file mode 100644 index 000000000..4cfc3385b --- /dev/null +++ b/applications/luci-app-minidlna/po/ja/minidlna.po @@ -0,0 +1,198 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-04-10 09:10+0200\n" +"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Advanced Settings" +msgstr "詳細設定" + +msgid "Album art names:" +msgstr "アルバムアートワーク・ファイル名:" + +msgid "Announced model number:" +msgstr "通知するモデル番号:" + +msgid "Announced serial number:" +msgstr "通知するシリアルナンバー:" + +msgid "Browse directory" +msgstr "Browse directory" + +msgid "Collecting data..." +msgstr "データ収集中です..." + +msgid "Database directory:" +msgstr "データベース・ディレクトリ:" + +msgid "Enable TIVO:" +msgstr "TIVO を有効にする:" + +msgid "Enable inotify:" +msgstr "inotify を有効にする:" + +msgid "Enable:" +msgstr "サービスを有効にする:" + +msgid "Friendly name:" +msgstr "Friendly名:" + +msgid "General Settings" +msgstr "基本設定" + +msgid "Interfaces:" +msgstr "インターフェース:" + +msgid "Log directory:" +msgstr "ログディレクトリ:" + +msgid "Media directories:" +msgstr "メディアディレクトリ:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNAは、DLNA/UPnP-AVクライアントの完全互換を目的としたサーバー・ソフト" +"ウェアです。" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "miniDLNAがクライアントに通知するXML中のモデル番号を設定します。" + +msgid "Music" +msgstr "ミュージック" + +msgid "Network interfaces to serve." +msgstr "サービスが使用するネットワーク・インターフェースを設定します。" + +msgid "Notify interval in seconds." +msgstr "通知間隔を秒単位で設定します。" + +msgid "Notify interval:" +msgstr "通知間隔:" + +msgid "Pictures" +msgstr "ピクチャ" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "ステータス表示のためのHTTPポート番号を設定してください。" + +msgid "Port:" +msgstr "ポート:" + +msgid "Presentation URL:" +msgstr "プレゼンテーションURL:" + +msgid "Root container:" +msgstr "ルート・コンテナ:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "miniDLNAがクライアントに通知するXML中のシリアルナンバーを設定します。" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "クライアント上で表示されるUPnPノード名を設定してください。" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"miniDLNAが使用するデータベースおよびアルバムアートのキャッシュを保存するディ" +"レクトリパスを設定してください。" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "miniDLNAが書きだすログファイルのディレクトリパスを設定してください。" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"inotifyを使用した新規ファイルの自動検知を有効にする場合、このオプションを有効" +"にしてください。" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"TiVoサポートのための.jpgおよび.mp3ファイルのストリーミングを行う場合、このオ" +"プションを有効にしてください。" + +msgid "" +"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." +msgstr "" +"DLNA規格を厳守する場合、このオプションを有効にしてください。オプションを有効" +"にすると、サーバー側で、大きいサイズのJPEGファイルのダウンスケールを行いま" +"す。しかし、この機能はSonyなどのDLNA製品において、JPEGサービスのパフォーマン" +"スを損なう可能性があります。" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"miniDLNA がスキャンするディレクトリを設定します。ディレクトリを特定のコンテン" +"ツに制限したい場合、タイプをパスのはじめに付け、コンマ記号で区切ることで設定" +"できます ('A'=オーディオ \"audio\", 'V'=ビデオ \"video\", 'P'=写真 \"images" +"\", 例: media_dir=A,/mnt/media/Music)。また、このオプションは複数のディレクト" +"リを登録可能です。" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "MiniSSDPd ソケットのパスを設定してください。" + +msgid "Standard container" +msgstr "標準コンテナ" + +msgid "Strict to DLNA standard:" +msgstr "DLNA規格の厳守:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"miniDLNA サービスは稼働中です。%d 個の音楽ファイル , %d 個のビデオファイル, %" +"d 個の写真ファイルを認識しています。" + +msgid "The miniDLNA service is not running." +msgstr "miniDLNA サービスは稼働していません。" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "アルバムアート検索時にチェックするファイル名のリストを設定します。" + +msgid "Video" +msgstr "ビデオ" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "miniDLNA ステータス" + +msgid "miniSSDP socket:" +msgstr "miniSSDP ソケット:" + +#~ msgid "Network interfaces to serve, comma delimited list." +#~ msgstr "" +#~ "サービスが使用するネットワーク・インターフェースを設定します。カンマ記号 " +#~ "\",\" で区切ってください。" + +#~ msgid "" +#~ "This is a list of file names to check for when searching for album art. " +#~ "Note: names must be delimited with a forward slash '/'" +#~ msgstr "" +#~ "アルバムアート検索時にチェックするファイル名のリストを設定します。注意: " +#~ "ファイル名はスラッシュ記号 '/' で区切ってください。" diff --git a/applications/luci-app-minidlna/po/ms/minidlna.po b/applications/luci-app-minidlna/po/ms/minidlna.po new file mode 100644 index 000000000..8df98a821 --- /dev/null +++ b/applications/luci-app-minidlna/po/ms/minidlna.po @@ -0,0 +1,163 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/no/minidlna.po b/applications/luci-app-minidlna/po/no/minidlna.po new file mode 100644 index 000000000..4b24712f7 --- /dev/null +++ b/applications/luci-app-minidlna/po/no/minidlna.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-03-25 17:25+0200\n" +"Last-Translator: protx <lars.hardy@gmail.com>\n" +"Language-Team: none\n" +"Language: no\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Avanserte Innstillinger" + +msgid "Album art names:" +msgstr "Albumbilder navn:" + +msgid "Announced model number:" +msgstr "Annonsert modellnummer:" + +msgid "Announced serial number:" +msgstr "Annonsert serienummer:" + +msgid "Browse directory" +msgstr "Bla katalog" + +msgid "Collecting data..." +msgstr "Samler inn data..." + +msgid "Database directory:" +msgstr "Database katalog:" + +msgid "Enable TIVO:" +msgstr "Aktiver TIVO:" + +msgid "Enable inotify:" +msgstr "Aktiver inotify:" + +msgid "Enable:" +msgstr "Aktiver:" + +msgid "Friendly name:" +msgstr "Vennlig navn:" + +msgid "General Settings" +msgstr "Generelle Innstillinger" + +msgid "Interfaces:" +msgstr "Grensesnitt:" + +msgid "Log directory:" +msgstr "Logg katalog:" + +msgid "Media directories:" +msgstr "Media kataloger:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA er serverprogramvare som sikter på å være fullt kompatibel med DLNA" +"/UPnP-AV klienter." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Modellnummer som MiniDLNA daemon vil rapportere til klienter. (XML " +"beskrivelse)" + +msgid "Music" +msgstr "Musikk" + +msgid "Network interfaces to serve." +msgstr "Nettverksgrensesnittene å tjene." + +msgid "Notify interval in seconds." +msgstr "Notify intervall i sekunder." + +msgid "Notify interval:" +msgstr "Notify intervall:" + +msgid "Pictures" +msgstr "Bilder" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port for HTTP (beskrivelser, SOAP, media overføring) trafikk." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "Presentasjon URL:" + +msgid "Root container:" +msgstr "Root katalog:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Serienummeret miniDLNA daemon vil rapportere til klienter. (XML beskrivelse)" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "Her kan en tilpasse navnet som dukker opp på MiniDLNA klientene." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Her kan en spesifisere hvilken katalog som MiniDLNA bruker for å lagre sin " +"database og albumcover cache." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Her kan en definere hvilken katalog som MiniDLNA skal bruke til å lagre log " +"filen i." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Her kan en aktivere inotify som overvåker mediakatalogene og dermed " +"automatisk oppdage om det kommer nytt innhold." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Her kan en aktivere støtte for strømming av .jpg og .mp3 filer til en TiVo " +"med HMO støtte." + +msgid "" +"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." +msgstr "" +"Her kan en aktivere at en holder seg til DLNA-standarder. Dette vil tillate " +"server-side nedskalering av svært store JPEG-bilder, noe som kan skade JPEG " +"serverens ytelse på (minst) Sony DLNA-produkter." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Her kan en velge den katalogen som blir skannet. Om du ønsker å begrense " +"katalogen til en spesifikk innholdstype kan sette en bokstav foran ('A' for " +"lyd, 'V' for video, 'P' for bilder), etterfulgt av et komma og katalogen. " +"(f.eks media_dir=A,/mnt/media/Musikk). Flere kataloger kan brukes." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Angi banen til MiniSSDPd socketen." + +msgid "Standard container" +msgstr "Standard container" + +msgid "Strict to DLNA standard:" +msgstr "Streng overholdelse av DLNA-standarden:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"MiniDLNA tjenesten er aktiv, serverer %d lyd, %d video og %d bildefiler." + +msgid "The miniDLNA service is not running." +msgstr "MiniDLNA tjenesten kjører ikke." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" +"Dette er en liste over filnavn for å se etter når du søker etter albumcover." + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "MiniDLNA" + +msgid "miniDLNA Status" +msgstr "MiniDLNA Status" + +msgid "miniSSDP socket:" +msgstr "miniSSDP socket:" diff --git a/applications/luci-app-minidlna/po/pl/minidlna.po b/applications/luci-app-minidlna/po/pl/minidlna.po new file mode 100644 index 000000000..b4a8a6f67 --- /dev/null +++ b/applications/luci-app-minidlna/po/pl/minidlna.po @@ -0,0 +1,189 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2012-08-24 07:53+0200\n" +"Last-Translator: goodgod261 <goodgod261@wp.pl>\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Ustawienia zaawansowane" + +msgid "Album art names:" +msgstr "Nazwy okładek albumów:" + +msgid "Announced model number:" +msgstr "Rozgłaszany model:" + +msgid "Announced serial number:" +msgstr "Rozgłaszany numer seryjny:" + +msgid "Browse directory" +msgstr "Przeglądaj folder" + +msgid "Collecting data..." +msgstr "Zbieranie informacji..." + +msgid "Database directory:" +msgstr "Katalog bazy danych:" + +msgid "Enable TIVO:" +msgstr "Włącz TIVO:" + +msgid "Enable inotify:" +msgstr "Włącz inotify:" + +msgid "Enable:" +msgstr "Włącz:" + +msgid "Friendly name:" +msgstr "Przyjazna nazwa:" + +msgid "General Settings" +msgstr "Ustawienia ogólne" + +msgid "Interfaces:" +msgstr "Interfejsy:" + +msgid "Log directory:" +msgstr "Katalog dzienników (logów):" + +msgid "Media directories:" +msgstr "Katalog mediów:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA jest oprogramowaniem serwerowym mającym na celu pełną zgodność z " +"klientami DLNA/UPnP-AV." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "Model, który demon miniDLNA zgłosi klientom w swoim opisie XML." + +msgid "Music" +msgstr "Muzyka" + +msgid "Network interfaces to serve." +msgstr "Interfejsy sieciowe do obsługiwania." + +msgid "Notify interval in seconds." +msgstr "Interwał powiadamiania w sekundach." + +msgid "Notify interval:" +msgstr "Interwał powiadamiania." + +msgid "Pictures" +msgstr "Obrazy" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port dla ruchu HTTP (opisy, SOAP, transfer mediów)." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "URL prezentacyjny:" + +msgid "Root container:" +msgstr "Kontener główny (root):" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Numer seryjny, który demon miniDLNA zgłosi klientom w swoim opisie XML." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "Ustaw to, jeśli chcesz wybrać własną nazwę pokazującą się w klientach." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Ustaw to, jeśli chcesz podać folder, w którym miniDLNA powinien przechowywać " +"bazę danych i cache okładek albumów." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Ustaw to, jeśli chcesz podać folder, w którym miniDLNA powinien przechowywać " +"dzienniki (logi)." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Ustaw to, aby włączyć monitorowanie inotify, by automatycznie wykrywać nowe " +"pliki." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Ustaw to, aby włączyć wsparcie dla streamingu plików .jpg i .mp3 do TiVo " +"obsługującego HMO." + +msgid "" +"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." +msgstr "" +"Ustaw to, aby ściśle przestrzegać standardów DLNA. Pozwoli to na " +"zmniejszanie wielkich plików JPEG po stronie serwera, co może obniżyć " +"wydajność dostarczania plików JPEG (przynajmniej) na urządzeniach DLNA Sony." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Ustaw tu folder, który chcesz skanować. Jeśli chcesz ograniczyć folder do " +"konkretnego typu zawartości, możesz poprzedzić ścieżkę typem (\"A\" dla " +"audio, \"V\" dla wideo, \"P\" dla obrazów) i przecinkiem (np media_dir=A,/" +"mnt/media/Muzyka). Możesz podać kilka folderów." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Podaj ścieżkę do gniazda (socketu) miniSSDPd." + +msgid "Standard container" +msgstr "Standardowy kontener" + +msgid "Strict to DLNA standard:" +msgstr "Ściśle trzymaj się standardów DLNA:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"Usługa miniDLNA jest aktywna, dostarczając %d utworów, %d filmów i %d " +"obrazów." + +msgid "The miniDLNA service is not running." +msgstr "Usługa miniDLNA nie jest włączona." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" +"To jest lista nazw plików do sprawdzenia podczas wyszukiwania okładki albumu." + +msgid "Video" +msgstr "Wideo" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Status miniDLNA" + +msgid "miniSSDP socket:" +msgstr "Gniazdo (socket) miniSSDP:" diff --git a/applications/luci-app-minidlna/po/pt-br/minidlna.po b/applications/luci-app-minidlna/po/pt-br/minidlna.po new file mode 100644 index 000000000..3d53abd46 --- /dev/null +++ b/applications/luci-app-minidlna/po/pt-br/minidlna.po @@ -0,0 +1,193 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +msgid "Advanced Settings" +msgstr "Configuração Avançada" + +msgid "Album art names:" +msgstr "Nomes do Álbum artistico: " + +msgid "Announced model number:" +msgstr "numero de modelo anunciado:" + +msgid "Announced serial number:" +msgstr "Anunciar serial:" + +msgid "Browse directory" +msgstr "Procurar diretório " + +msgid "Collecting data..." +msgstr "Coletando dados..." + +msgid "Database directory:" +msgstr "Banco de dados de diretório:" + +msgid "Enable TIVO:" +msgstr "Ativar TIVO:" + +msgid "Enable inotify:" +msgstr "Ativar inotify:" + +msgid "Enable:" +msgstr "Ativado" + +msgid "Friendly name:" +msgstr "Nome amigável:" + +msgid "General Settings" +msgstr "Configuração Geral" + +msgid "Interfaces:" +msgstr "Interfaces:" + +msgid "Log directory:" +msgstr "Diretório de Log" + +msgid "Media directories:" +msgstr "Diretórios de mídia:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA é um software de servidor com o objetivo de ser totalmente " +"compatível com os clientes DLNA / UPnP-AV." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Número do modelo do daemon miniDLNA irá relatar aos clientes em sua " +"descrição XML." + +msgid "Music" +msgstr "Musica" + +msgid "Network interfaces to serve." +msgstr "As interfaces de rede para servir." + +msgid "Notify interval in seconds." +msgstr "Notificação de intervalo em segundos." + +msgid "Notify interval:" +msgstr "Intervalo de Notificação:" + +msgid "Pictures" +msgstr "Imagems" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Porta para HTTP (descrições, SOAP, transferência de mídia) de tráfego." + +msgid "Port:" +msgstr "Porta:" + +msgid "Presentation URL:" +msgstr "URL para Apresentação:" + +msgid "Root container:" +msgstr "Root container:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Numero serial do miniDLNA daemon apresentará um relatório a clientes em sua " +"descrição XML." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" +"Defina esta opção se você quiser personalizar o nome que aparece em seus " +"clientes." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Defina esta opção se você gostaria de especificar o diretório onde você " +"deseja MiniDLNA para armazenar seu banco de dados e cache de arte do álbum." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" +"Defina esta opção se você gostaria de especificar o diretório onde você " +"deseja MiniDLNA para armazenar seu arquivo de log." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Defina esta opção para permitir o monitoramento inotify para descobrir " +"automaticamente novos arquivos." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Defina esta opção para habilitar o suporte para streaming. Jpg e. Arquivos " +"MP3 para um TiVo suporte HMO." + +msgid "" +"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." +msgstr "" +"Defina esta opção para aderir estritamente às normas DLNA. Isso permitirá " +"que do lado do servidor downscaling de imagens muito grandes JPEG, que podem " +"prejudicar o desempenho servindo em JPEG (pelo menos) os produtos da Sony " +"DLNA." + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Defina esta opção para o diretório que você deseja verificar. Se você quiser " +"restringir o diretório para um tipo específico de conteúdo, você pode " +"prefixar o tipo ('A' para áudio, 'V' para o vídeo, 'P' para imagens), " +"seguido por uma vírgula, para o diretório (por exemplo media_dir = A, / " +"mnt / media / Música). Vários diretórios podem ser especificados." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Especifique o caminho para o soquete MiniSSDPd." + +msgid "Standard container" +msgstr "container padrão" + +msgid "Strict to DLNA standard:" +msgstr "Strict para DLNA padrão:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"O serviço está ativo miniDLNA, servindo% d áudio, vídeo e arquivos% d% d " +"imagem." + +msgid "The miniDLNA service is not running." +msgstr "O serviço miniDLNA não está funcionando." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" +"Esta é uma lista de nomes de arquivos para verificar quando procurando arte " +"do álbum." + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "miniDLNA Status" + +msgid "miniSSDP socket:" +msgstr "miniSSDP soquete:" diff --git a/applications/luci-app-minidlna/po/pt/minidlna.po b/applications/luci-app-minidlna/po/pt/minidlna.po new file mode 100644 index 000000000..96132cdf6 --- /dev/null +++ b/applications/luci-app-minidlna/po/pt/minidlna.po @@ -0,0 +1,171 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2013-06-03 23:36+0200\n" +"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Definições Avançadas" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "Número modelo anunciado:" + +msgid "Announced serial number:" +msgstr "Número de série anunciado:" + +msgid "Browse directory" +msgstr "Procurar directório" + +msgid "Collecting data..." +msgstr "A obter dados..." + +msgid "Database directory:" +msgstr "Directório da base de dados:" + +msgid "Enable TIVO:" +msgstr "Ativar TIVO:" + +msgid "Enable inotify:" +msgstr "Ativar inotify:" + +msgid "Enable:" +msgstr "Ativar:" + +msgid "Friendly name:" +msgstr "Nome amigável:" + +msgid "General Settings" +msgstr "Definições Gerais" + +msgid "Interfaces:" +msgstr "Interfaces:" + +msgid "Log directory:" +msgstr "Directório de Log:" + +msgid "Media directories:" +msgstr "Pastas multimédia:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"O MiniDLNA é um software de servidor com o objectivo de ser totalmente " +"compatível com clientes de DLNA/UPnP-AV." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Número de modelo que o serviço de miniDLNA irá reportar aos clientes na sua " +"descrição XML." + +msgid "Music" +msgstr "Música" + +msgid "Network interfaces to serve." +msgstr "Interfaces de rede a serem seervidas." + +msgid "Notify interval in seconds." +msgstr "Intervalo de notificação em segundos." + +msgid "Notify interval:" +msgstr "Intervalo de Notificação:" + +msgid "Pictures" +msgstr "Imagens" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Porta para tráfego HTTP (descrições, SOAP, tranferencia de conteudos)." + +msgid "Port:" +msgstr "Porta:" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/ro/minidlna.po b/applications/luci-app-minidlna/po/ro/minidlna.po new file mode 100644 index 000000000..cba5fe6a7 --- /dev/null +++ b/applications/luci-app-minidlna/po/ro/minidlna.po @@ -0,0 +1,168 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-07-09 13:35+0200\n" +"Last-Translator: xxvirusxx <condor20_05@yahoo.it>\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "Setări avansate" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "Răsfoire director" + +msgid "Collecting data..." +msgstr "Colectare date..." + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "Activare TIVO:" + +msgid "Enable inotify:" +msgstr "Activare inotify:" + +msgid "Enable:" +msgstr "Activare:" + +msgid "Friendly name:" +msgstr "Nume prieten:" + +msgid "General Settings" +msgstr "Setări generale" + +msgid "Interfaces:" +msgstr "Interfeţe" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "Directoare media" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "Muzică" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "Notificare interval în secunde." + +msgid "Notify interval:" +msgstr "Notificare interval:" + +msgid "Pictures" +msgstr "Fotografii" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port pentru HTTP (descrieri, SOAP, transfer media) trafic." + +msgid "Port:" +msgstr "Port:" + +msgid "Presentation URL:" +msgstr "URL de prezentare:" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "Video" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Stare miniDLNA" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/ru/minidlna.po b/applications/luci-app-minidlna/po/ru/minidlna.po new file mode 100644 index 000000000..539e8ca03 --- /dev/null +++ b/applications/luci-app-minidlna/po/ru/minidlna.po @@ -0,0 +1,191 @@ +msgid "" +msgstr "" +"Project-Id-Version: LuCI: minidlna\n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2013-11-13 18:43+0200\n" +"Last-Translator: Роман <x.wserfer@gmail.com>\n" +"Language-Team: Russian <x12ozmouse@ya.ru>\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" +"X-Poedit-SourceCharset: UTF-8\n" + +msgid "Advanced Settings" +msgstr "Расширенные настройки" + +msgid "Album art names:" +msgstr "Имена обложек альбома:" + +msgid "Announced model number:" +msgstr "Номер модели:" + +msgid "Announced serial number:" +msgstr "Серийный номер:" + +msgid "Browse directory" +msgstr "Обзор директории" + +msgid "Collecting data..." +msgstr "Сбор данных..." + +msgid "Database directory:" +msgstr "Папка базы данных:" + +msgid "Enable TIVO:" +msgstr "Включить TIVO:" + +msgid "Enable inotify:" +msgstr "Включить inotify:" + +msgid "Enable:" +msgstr "Включить:" + +msgid "Friendly name:" +msgstr "Понятное имя:" + +msgid "General Settings" +msgstr "Общие настройки" + +msgid "Interfaces:" +msgstr "Интерфейсы:" + +msgid "Log directory:" +msgstr "Папка журнала:" + +msgid "Media directories:" +msgstr "Папки медиа:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" +"MiniDLNA - это серверное программное обеспечение, имеющее цель обеспечения " +"полной совместимости с клиентами DLNA/UPnP-AV." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Номер модели который, miniDLNA будет сообщать клиентам в своём XML-описании." + +msgid "Music" +msgstr "Музыка" + +msgid "Network interfaces to serve." +msgstr "Обслуживаемые сетевые интерфейсы." + +msgid "Notify interval in seconds." +msgstr "Интервал уведомления (секунды)." + +msgid "Notify interval:" +msgstr "Интервал уведомления:" + +msgid "Pictures" +msgstr "Картинки" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Порт для HTTP-трафика (описания, SOAP, передача мультимедиа)" + +msgid "Port:" +msgstr "Порт:" + +msgid "Presentation URL:" +msgstr "URL представления:" + +msgid "Root container:" +msgstr "Корневой контейнер:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" +"Серийный номер, который miniDLNA будет сообщать клиентам в своём XML-" +"описании." + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "Изменение имени отображения для клиентов." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" +"Папка, в которой miniDLNA будет хранить свою базу данных и кэш обложек " +"альбомов." + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "Папка, в которой miniDLNA будет хранить свой файл журнала." + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" +"Включение наблюдения inotify для автоматического обнаружения новых файлов." + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" +"Установите для включения поддержки потокового воспроизведения файлов .jpg и ." +"mp3 для TiVo с поддержкой HMO." + +msgid "" +"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." +msgstr "" +"Установите для строгого соответствия стандартам DLNA. Это разрешит " +"уменьшение размера слишком больших JPEG-изображений на стороне сервера, что " +"может повредить производительности (по крайней мере) DLNA-продуктов Sony." + +#, fuzzy +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"Директории, которые необходимо сканировать. Если вы хотите установить " +"ограничение на определённый тип содержимого в директории, вы можете написать " +"тип ('A' для аудио, 'V' для видео, 'P' для изображений) перед путём к " +"директории, за которым следует запятая (напр. media_dir=A,/mnt/media/Music). " +"Может быть указано несколько директорий." + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "Укажите путь к сокету MiniSSDPd." + +msgid "Standard container" +msgstr "Стандартный контейнер" + +msgid "Strict to DLNA standard:" +msgstr "Строгий стандарт DLNA:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" +"Сервис miniDLNA запущен, обслуживает %d аудио-, %d видео- и %d файлов с " +"изображениями." + +msgid "The miniDLNA service is not running." +msgstr "Сервис miniDLNA не запущен." + +msgid "This is a list of file names to check for when searching for album art." +msgstr "Это список файлов, среди которых необходимо искать обложки альбомов." + +msgid "Video" +msgstr "Видео" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "Статус miniDLNA" + +msgid "miniSSDP socket:" +msgstr "Сокет miniSSDP:" diff --git a/applications/luci-app-minidlna/po/sk/minidlna.po b/applications/luci-app-minidlna/po/sk/minidlna.po new file mode 100644 index 000000000..19c3e536d --- /dev/null +++ b/applications/luci-app-minidlna/po/sk/minidlna.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/sv/minidlna.po b/applications/luci-app-minidlna/po/sv/minidlna.po new file mode 100644 index 000000000..51a3f3a63 --- /dev/null +++ b/applications/luci-app-minidlna/po/sv/minidlna.po @@ -0,0 +1,165 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/templates/minidlna.pot b/applications/luci-app-minidlna/po/templates/minidlna.pot new file mode 100644 index 000000000..2b35d1e71 --- /dev/null +++ b/applications/luci-app-minidlna/po/templates/minidlna.pot @@ -0,0 +1,157 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/tr/minidlna.po b/applications/luci-app-minidlna/po/tr/minidlna.po new file mode 100644 index 000000000..070d64c4e --- /dev/null +++ b/applications/luci-app-minidlna/po/tr/minidlna.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/uk/minidlna.po b/applications/luci-app-minidlna/po/uk/minidlna.po new file mode 100644 index 000000000..7df732fb0 --- /dev/null +++ b/applications/luci-app-minidlna/po/uk/minidlna.po @@ -0,0 +1,165 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/vi/minidlna.po b/applications/luci-app-minidlna/po/vi/minidlna.po new file mode 100644 index 000000000..070d64c4e --- /dev/null +++ b/applications/luci-app-minidlna/po/vi/minidlna.po @@ -0,0 +1,164 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Advanced Settings" +msgstr "" + +msgid "Album art names:" +msgstr "" + +msgid "Announced model number:" +msgstr "" + +msgid "Announced serial number:" +msgstr "" + +msgid "Browse directory" +msgstr "" + +msgid "Collecting data..." +msgstr "" + +msgid "Database directory:" +msgstr "" + +msgid "Enable TIVO:" +msgstr "" + +msgid "Enable inotify:" +msgstr "" + +msgid "Enable:" +msgstr "" + +msgid "Friendly name:" +msgstr "" + +msgid "General Settings" +msgstr "" + +msgid "Interfaces:" +msgstr "" + +msgid "Log directory:" +msgstr "" + +msgid "Media directories:" +msgstr "" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/po/zh-cn/minidlna.po b/applications/luci-app-minidlna/po/zh-cn/minidlna.po new file mode 100644 index 000000000..998975689 --- /dev/null +++ b/applications/luci-app-minidlna/po/zh-cn/minidlna.po @@ -0,0 +1,172 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-07-07 16:21+0200\n" +"Last-Translator: qiuchengxuan <qiuchengxuan@gmail.com>\n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "高级设置" + +msgid "Album art names:" +msgstr "专辑封面名称:" + +msgid "Announced model number:" +msgstr "通告型号:" + +msgid "Announced serial number:" +msgstr "通告编号:" + +msgid "Browse directory" +msgstr "浏览目录" + +msgid "Collecting data..." +msgstr "收集数据..." + +msgid "Database directory:" +msgstr "数据库目录:" + +msgid "Enable TIVO:" +msgstr "启用TIVO:" + +msgid "Enable inotify:" +msgstr "启用inotify:" + +msgid "Enable:" +msgstr "启用:" + +msgid "Friendly name:" +msgstr "友好名称:" + +msgid "General Settings" +msgstr "基本设置" + +msgid "Interfaces:" +msgstr "接口:" + +msgid "Log directory:" +msgstr "日志目录:" + +msgid "Media directories:" +msgstr "媒体目录:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "MiniDLNA是目标为完全兼容DLNA / UPnP-AV客户端的服务器软件。" + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "miniDLNA守护程序将在其XML描述中向客户端通告型号。" + +msgid "Music" +msgstr "音乐" + +msgid "Network interfaces to serve." +msgstr "服务的网络接口。" + +msgid "Notify interval in seconds." +msgstr "通知的时间间隔,以秒为单位。" + +msgid "Notify interval:" +msgstr "通知的时间间隔:" + +msgid "Pictures" +msgstr "图片" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port for HTTP (descriptions, SOAP, media transfer) traffic." + +msgid "Port:" +msgstr "端口:" + +msgid "Presentation URL:" +msgstr "服务网址" + +msgid "Root container:" +msgstr "根目录:" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "miniDLNA守护程序将在其XML描述中向客户端通告编号。" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "设置自定义名称。" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "设置miniDLNA缓存目录" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "设置miniDLNA日志目录" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "设定启用inotify监控,自动发现新的文件。" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "为HMO TiVo启用JPG和MP3流媒体支持。" + +msgid "" +"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." +msgstr "" +"设定严格遵守DLNA标准。这将允许服务器端降小大尺寸JPEG图像,在(至少)索尼DLNA" +"的产品这可能会降低JPEG服务性能。" + +# 如果写成media_dir=A,/mnt/media/Music,uci会报错。实际上应该是A,/mnt/media/Music,这样生成的minidlna.conf刚好是media_dir=A,/mnt/media/Music +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" +"设置要扫描的目录。如果你想限制特定内容类型的目录,你可以在前面加上类型(用于音频'A','V'视频,'P'图片),其次是用逗号分隔的目录(如A,/mnt" +"/媒体/音乐)。可以指定多个目录。" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "指定MiniSSDPd socket的路径。" + +msgid "Standard container" +msgstr "基本目录" + +msgid "Strict to DLNA standard:" +msgstr "严格的DLNA标准:" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "miniDLNA服务已启用,提供 %d 音频, %d 视频 和 %d 图片." + +msgid "The miniDLNA service is not running." +msgstr "miniDLNA服务未启用" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "这是一个文件名列表,为搜索专辑封面。" + +msgid "Video" +msgstr "视频" + +msgid "miniDLNA" +msgstr "miniDLNA" + +msgid "miniDLNA Status" +msgstr "miniDLNA 状态" + +msgid "miniSSDP socket:" +msgstr "miniSSDP socket:" diff --git a/applications/luci-app-minidlna/po/zh-tw/minidlna.po b/applications/luci-app-minidlna/po/zh-tw/minidlna.po new file mode 100644 index 000000000..1af328099 --- /dev/null +++ b/applications/luci-app-minidlna/po/zh-tw/minidlna.po @@ -0,0 +1,167 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-05-14 13:15+0200\n" +"Last-Translator: omnistack <omnistack@gmail.com>\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Advanced Settings" +msgstr "進階設定值" + +msgid "Album art names:" +msgstr "專輯名稱" + +msgid "Announced model number:" +msgstr "已宣告型號數量" + +msgid "Announced serial number:" +msgstr "已宣告序號數量" + +msgid "Browse directory" +msgstr "瀏覽目錄" + +msgid "Collecting data..." +msgstr "收集資料進行中..." + +msgid "Database directory:" +msgstr "資料庫目錄所在:" + +msgid "Enable TIVO:" +msgstr "啟用TIVO代錄" + +msgid "Enable inotify:" +msgstr "啟用檔案事件監控" + +msgid "Enable:" +msgstr "啟用:" + +msgid "Friendly name:" +msgstr "友善名稱" + +msgid "General Settings" +msgstr "一般設定值" + +msgid "Interfaces:" +msgstr "介面" + +msgid "Log directory:" +msgstr "Log紀錄放置區" + +msgid "Media directories:" +msgstr "媒體目錄區:" + +msgid "" +"MiniDLNA is server software with the aim of being fully compliant with DLNA/" +"UPnP-AV clients." +msgstr "MiniDLNA是一個伺服器軟體針對能完全兼容DLNA/UPnP-AV用戶端." + +msgid "" +"Model number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "Music" +msgstr "" + +msgid "Network interfaces to serve." +msgstr "" + +msgid "Notify interval in seconds." +msgstr "" + +msgid "Notify interval:" +msgstr "" + +msgid "Pictures" +msgstr "" + +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "" + +msgid "Port:" +msgstr "" + +msgid "Presentation URL:" +msgstr "" + +msgid "Root container:" +msgstr "" + +msgid "" +"Serial number the miniDLNA daemon will report to clients in its XML " +"description." +msgstr "" + +msgid "" +"Set this if you want to customize the name that shows up on your clients." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its database and album art cache." +msgstr "" + +msgid "" +"Set this if you would like to specify the directory where you want MiniDLNA " +"to store its log file." +msgstr "" + +msgid "" +"Set this to enable inotify monitoring to automatically discover new files." +msgstr "" + +msgid "" +"Set this to enable support for streaming .jpg and .mp3 files to a TiVo " +"supporting HMO." +msgstr "" + +msgid "" +"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." +msgstr "" + +msgid "" +"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. media_dir=A,/mnt/media/Music). Multiple directories can be specified." +msgstr "" + +msgid "Specify the path to the MiniSSDPd socket." +msgstr "" + +msgid "Standard container" +msgstr "" + +msgid "Strict to DLNA standard:" +msgstr "" + +msgid "" +"The miniDLNA service is active, serving %d audio, %d video and %d image " +"files." +msgstr "" + +msgid "The miniDLNA service is not running." +msgstr "" + +msgid "This is a list of file names to check for when searching for album art." +msgstr "" + +msgid "Video" +msgstr "" + +msgid "miniDLNA" +msgstr "" + +msgid "miniDLNA Status" +msgstr "" + +msgid "miniSSDP socket:" +msgstr "" diff --git a/applications/luci-app-minidlna/root/etc/uci-defaults/luci-minidlna b/applications/luci-app-minidlna/root/etc/uci-defaults/luci-minidlna new file mode 100755 index 000000000..df43c1b37 --- /dev/null +++ b/applications/luci-app-minidlna/root/etc/uci-defaults/luci-minidlna @@ -0,0 +1,15 @@ +#!/bin/sh + +/etc/init.d/minidlna enabled && { + /etc/init.d/minidlna stop + /etc/init.d/minidlna disable +} + +uci -q batch <<-EOF >/dev/null + delete ucitrack.minidlna + set ucitrack.minidlna=minidlna + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 |