From: Ameer Dawood Date: Wed, 15 Aug 2018 17:13:59 +0000 (+0500) Subject: luci-app-minidlna: Colons removed X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=808153fd9d95427ebd73ce822c7dd1940dc32ec1;p=oweals%2Fluci.git luci-app-minidlna: Colons removed Colons have been removed as asked in #1566 Signed-off-by: Ameer Dawood --- diff --git a/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua b/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua index 067d08cf0..9dcc527a3 100644 --- a/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua +++ b/applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua @@ -15,7 +15,7 @@ s.anonymous = true s:tab("general", translate("General Settings")) s:tab("advanced", translate("Advanced Settings")) -o = s:taboption("general", Flag, "enabled", translate("Enable:")) +o = s:taboption("general", Flag, "enabled", translate("Enable")) o.rmempty = false function o.cfgvalue(self, section) @@ -34,13 +34,13 @@ function o.write(self, section, value) return Flag.write(self, section, value) end -o = s:taboption("general", Value, "port", translate("Port:"), +o = s:taboption("general", Value, "port", translate("Port"), translate("Port for HTTP (descriptions, SOAP, media transfer) traffic.")) o.datatype = "port" o.default = 8200 -o = s:taboption("general", Value, "interface", translate("Interfaces:"), +o = s:taboption("general", Value, "interface", translate("Interfaces"), translate("Network interfaces to serve.")) o.template = "cbi/network_ifacelist" @@ -69,59 +69,59 @@ function o.write(self, section, value) end -o = s:taboption("general", Value, "friendly_name", translate("Friendly name:"), +o = s:taboption("general", Value, "friendly_name", translate("Friendly name"), translate("Set this if you want to customize the name that shows up on your clients.")) o.rmempty = true o.placeholder = "OpenWrt DLNA Server" -o = s:taboption("advanced", Value, "db_dir", translate("Database directory:"), +o = s:taboption("advanced", Value, "db_dir", translate("Database directory"), translate("Set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache.")) o.rmempty = true o.placeholder = "/var/cache/minidlna" -o = s:taboption("advanced", Value, "log_dir", translate("Log directory:"), +o = s:taboption("advanced", Value, "log_dir", translate("Log directory"), translate("Set this if you would like to specify the directory where you want MiniDLNA to store its log file.")) o.rmempty = true o.placeholder = "/var/log" -s:taboption("advanced", Flag, "inotify", translate("Enable inotify:"), +s:taboption("advanced", Flag, "inotify", translate("Enable inotify"), translate("Set this to enable inotify monitoring to automatically discover new files.")) -s:taboption("advanced", Flag, "enable_tivo", translate("Enable TIVO:"), +s:taboption("advanced", Flag, "enable_tivo", translate("Enable TIVO"), translate("Set this to enable support for streaming .jpg and .mp3 files to a TiVo supporting HMO.")) o.rmempty = true -s:taboption("advanced", Flag, "wide_links", translate("Allow wide links:"), +s:taboption("advanced", Flag, "wide_links", translate("Allow wide links"), translate("Set this to allow serving content outside the media root (via symlinks).")) o.rmempty = true -o = s:taboption("advanced", Flag, "strict_dlna", translate("Strict to DLNA standard:"), +o = s:taboption("advanced", Flag, "strict_dlna", translate("Strict to DLNA standard"), translate("Set this to strictly adhere to DLNA standards. This will allow server-side downscaling of very large JPEG images, which may hurt JPEG serving performance on (at least) Sony DLNA products.")) o.rmempty = true -o = s:taboption("advanced", Value, "presentation_url", translate("Presentation URL:")) +o = s:taboption("advanced", Value, "presentation_url", translate("Presentation URL")) o.rmempty = true o.placeholder = "http://192.168.1.1/" -o = s:taboption("advanced", Value, "notify_interval", translate("Notify interval:"), +o = s:taboption("advanced", Value, "notify_interval", translate("Notify interval"), translate("Notify interval in seconds.")) o.datatype = "uinteger" o.placeholder = 900 -o = s:taboption("advanced", Value, "serial", translate("Announced serial number:"), +o = s:taboption("advanced", Value, "serial", translate("Announced serial number"), translate("Serial number the miniDLNA daemon will report to clients in its XML description.")) o.placeholder = "12345678" -s:taboption("advanced", Value, "model_number", translate("Announced model number:"), +s:taboption("advanced", Value, "model_number", translate("Announced model number"), translate("Model number the miniDLNA daemon will report to clients in its XML description.")) o.placholder = "1" -o = s:taboption("advanced", Value, "minissdpsocket", translate("miniSSDP socket:"), +o = s:taboption("advanced", Value, "minissdpsocket", translate("miniSSDP socket"), translate("Specify the path to the MiniSSDPd socket.")) o.rmempty = true o.placeholder = "/var/run/minissdpd.sock" -o = s:taboption("general", ListValue, "root_container", translate("Root container:")) +o = s:taboption("general", ListValue, "root_container", translate("Root container")) o:value(".", translate("Standard container")) o:value("B", translate("Browse directory")) o:value("M", translate("Music")) @@ -129,11 +129,11 @@ o:value("V", translate("Video")) o:value("P", translate("Pictures")) -s:taboption("general", DynamicList, "media_dir", translate("Media directories:"), +s:taboption("general", DynamicList, "media_dir", translate("Media directories"), translate("Set this to the directory you want scanned. If you want to restrict the directory to a specific content type, you can prepend the type ('A' for audio, 'V' for video, 'P' for images), followed by a comma, to the directory (eg. A,/mnt/media/Music). Multiple directories can be specified.")) -o = s:taboption("general", DynamicList, "album_art_names", translate("Album art names:"), +o = s:taboption("general", DynamicList, "album_art_names", translate("Album art names"), translate("This is a list of file names to check for when searching for album art.")) o.rmempty = true o.placeholder = "Cover.jpg" diff --git a/applications/luci-app-minidlna/po/ca/minidlna.po b/applications/luci-app-minidlna/po/ca/minidlna.po index dadcf04ae..2c0dbafb4 100644 --- a/applications/luci-app-minidlna/po/ca/minidlna.po +++ b/applications/luci-app-minidlna/po/ca/minidlna.po @@ -14,16 +14,16 @@ msgstr "" msgid "Advanced Settings" msgstr "Ajusts avançats" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -32,32 +32,32 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" -msgstr "Habilita TIVO:" +msgid "Enable TIVO" +msgstr "Habilita TIVO" -msgid "Enable inotify:" -msgstr "Habilita inotify:" +msgid "Enable inotify" +msgstr "Habilita inotify" -msgid "Enable:" -msgstr "Habilita:" +msgid "Enable" +msgstr "Habilita" -msgid "Friendly name:" -msgstr "Nom amistós:" +msgid "Friendly name" +msgstr "Nom amistós" msgid "General Settings" msgstr "Ajusts generals" -msgid "Interfaces:" +msgid "Interfaces" msgstr "Interfícies" -msgid "Log directory:" -msgstr "Directori de registre:" +msgid "Log directory" +msgstr "Directori de registre" -msgid "Media directories:" -msgstr "Directoris de medis:" +msgid "Media directories" +msgstr "Directoris de medis" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -78,8 +78,8 @@ msgstr "" msgid "Notify interval in seconds." msgstr "Interval de notificació en segons." -msgid "Notify interval:" -msgstr "Interval de notificació:" +msgid "Notify interval" +msgstr "Interval de notificació" msgid "Pictures" msgstr "Imatges" @@ -87,13 +87,13 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -147,7 +147,7 @@ msgstr "Especifiqueu la ruta a l'endoll de MiniSSDPd." msgid "Standard container" msgstr "Contenidor estàndard" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -170,5 +170,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Estat de miniDLNA" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/cs/minidlna.po b/applications/luci-app-minidlna/po/cs/minidlna.po index f4cbd76ec..1c2051188 100644 --- a/applications/luci-app-minidlna/po/cs/minidlna.po +++ b/applications/luci-app-minidlna/po/cs/minidlna.po @@ -14,16 +14,16 @@ msgstr "" msgid "Advanced Settings" msgstr "Pokročilé nastavení" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -32,32 +32,32 @@ msgstr "Procházet adresář" msgid "Collecting data..." msgstr "Shromažďování dat ..." -msgid "Database directory:" -msgstr "Adresář databáze:" +msgid "Database directory" +msgstr "Adresář databáze" -msgid "Enable TIVO:" -msgstr "Povolit TIVO:" +msgid "Enable TIVO" +msgstr "Povolit TIVO" -msgid "Enable inotify:" -msgstr "Povolit inotify:" +msgid "Enable inotify" +msgstr "Povolit inotify" -msgid "Enable:" -msgstr "Povolit:" +msgid "Enable" +msgstr "Povolit" -msgid "Friendly name:" -msgstr "Popisek:" +msgid "Friendly name" +msgstr "Popisek" msgid "General Settings" msgstr "Obecné nastavení" -msgid "Interfaces:" -msgstr "Rozhraní:" +msgid "Interfaces" +msgstr "Rozhraní" -msgid "Log directory:" -msgstr "Log adresář:" +msgid "Log directory" +msgstr "Log adresář" -msgid "Media directories:" -msgstr "Media adresáře:" +msgid "Media directories" +msgstr "Media adresáře" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -80,8 +80,8 @@ msgstr "" msgid "Notify interval in seconds." msgstr "Notifikační interval v sekundách." -msgid "Notify interval:" -msgstr "Notifikační interval:" +msgid "Notify interval" +msgstr "Notifikační interval" msgid "Pictures" msgstr "Obrázky" @@ -89,14 +89,14 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "Prezentační URL:" +msgid "Presentation URL" +msgstr "Prezentační URL" -msgid "Root container:" -msgstr "Kořenový/root kontejner:" +msgid "Root container" +msgstr "Kořenový/root kontejner" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -149,8 +149,8 @@ msgstr "" msgid "Standard container" msgstr "Standardní kontejner" -msgid "Strict to DLNA standard:" -msgstr "Striktně se držet standardu DLNA:" +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 " @@ -174,5 +174,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Stav miniDLNA" -msgid "miniSSDP socket:" -msgstr "miniSSDP socket:" +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 index d00169687..552651ead 100644 --- a/applications/luci-app-minidlna/po/de/minidlna.po +++ b/applications/luci-app-minidlna/po/de/minidlna.po @@ -14,17 +14,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -msgid "Album art names:" -msgstr "Dateinamen für Cover-Bilder:" +msgid "Album art names" +msgstr "Dateinamen für Cover-Bilder" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Angekündigte Modellnummer:" +msgid "Announced model number" +msgstr "Angekündigte Modellnummer" -msgid "Announced serial number:" -msgstr "Angekündigte Seriennummer:" +msgid "Announced serial number" +msgstr "Angekündigte Seriennummer" msgid "Browse directory" msgstr "Browse-Verzeichnis" @@ -32,32 +32,32 @@ msgstr "Browse-Verzeichnis" msgid "Collecting data..." msgstr "Sammle Daten..." -msgid "Database directory:" -msgstr "Datenbankverzeichnis:" +msgid "Database directory" +msgstr "Datenbankverzeichnis" -msgid "Enable TIVO:" -msgstr "TIVO aktivieren:" +msgid "Enable TIVO" +msgstr "TIVO aktivieren" -msgid "Enable inotify:" -msgstr "Inotify aktivieren:" +msgid "Enable inotify" +msgstr "Inotify aktivieren" -msgid "Enable:" -msgstr "Aktivieren:" +msgid "Enable" +msgstr "Aktivieren" -msgid "Friendly name:" -msgstr "Spitzname:" +msgid "Friendly name" +msgstr "Spitzname" msgid "General Settings" msgstr "Allgemeine Einstellungen" -msgid "Interfaces:" -msgstr "Schnittstellen:" +msgid "Interfaces" +msgstr "Schnittstellen" -msgid "Log directory:" -msgstr "Protokollverzeichnis:" +msgid "Log directory" +msgstr "Protokollverzeichnis" -msgid "Media directories:" -msgstr "Medienverzeichnisse:" +msgid "Media directories" +msgstr "Medienverzeichnisse" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -82,7 +82,7 @@ msgstr "Zu bedienende Netzwerkschnittstellen." msgid "Notify interval in seconds." msgstr "Ankündigungsinterval in Sekunden." -msgid "Notify interval:" +msgid "Notify interval" msgstr "Ankündigunsintervall" msgid "Pictures" @@ -91,14 +91,14 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "Präsentations-URL:" +msgid "Presentation URL" +msgstr "Präsentations-URL" -msgid "Root container:" -msgstr "Root-Container:" +msgid "Root container" +msgstr "Root-Container" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -169,8 +169,8 @@ 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 "Strict to DLNA standard" +msgstr "Stikt nach DLNA-Standard" msgid "" "The miniDLNA service is active, serving %d audio, %d video and %d image " @@ -196,8 +196,8 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "miniDLNA-Status" -msgid "miniSSDP socket:" -msgstr "miniSSDP-Socket:" +msgid "miniSSDP socket" +msgstr "miniSSDP-Socket" #~ msgid "Network interfaces to serve, comma delimited list." #~ msgstr "" diff --git a/applications/luci-app-minidlna/po/el/minidlna.po b/applications/luci-app-minidlna/po/el/minidlna.po index d319afd23..aeb6fb088 100644 --- a/applications/luci-app-minidlna/po/el/minidlna.po +++ b/applications/luci-app-minidlna/po/el/minidlna.po @@ -11,16 +11,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -29,31 +29,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -75,7 +75,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -84,13 +84,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -144,7 +144,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -167,5 +167,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/en/minidlna.po b/applications/luci-app-minidlna/po/en/minidlna.po index ca5bc3b59..1ea7cb8b9 100644 --- a/applications/luci-app-minidlna/po/en/minidlna.po +++ b/applications/luci-app-minidlna/po/en/minidlna.po @@ -11,17 +11,17 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" -msgstr "Album art names:" +msgid "Album art names" +msgstr "Album art names" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Announced model number:" +msgid "Announced model number" +msgstr "Announced model number" -msgid "Announced serial number:" -msgstr "Announced serial number:" +msgid "Announced serial number" +msgstr "Announced serial number" msgid "Browse directory" msgstr "Browse directory" @@ -29,32 +29,32 @@ msgstr "Browse directory" msgid "Collecting data..." msgstr "" -msgid "Database directory:" -msgstr "Database directory:" +msgid "Database directory" +msgstr "Database directory" -msgid "Enable TIVO:" -msgstr "Enable TIVO:" +msgid "Enable TIVO" +msgstr "Enable TIVO" -msgid "Enable inotify:" -msgstr "Enable inotify:" +msgid "Enable inotify" +msgstr "Enable inotify" -msgid "Enable:" -msgstr "Enable:" +msgid "Enable" +msgstr "Enable" -msgid "Friendly name:" -msgstr "Friendly name:" +msgid "Friendly name" +msgstr "Friendly name" msgid "General Settings" msgstr "" -msgid "Interfaces:" -msgstr "Interfaces:" +msgid "Interfaces" +msgstr "Interfaces" -msgid "Log directory:" -msgstr "Log directory:" +msgid "Log directory" +msgstr "Log directory" -msgid "Media directories:" -msgstr "Media directories:" +msgid "Media directories" +msgstr "Media directories" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -79,8 +79,8 @@ msgstr "" msgid "Notify interval in seconds." msgstr "Notify interval in seconds." -msgid "Notify interval:" -msgstr "Notify interval:" +msgid "Notify interval" +msgstr "Notify interval" msgid "Pictures" msgstr "Pictures" @@ -88,14 +88,14 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "Presentation URL:" +msgid "Presentation URL" +msgstr "Presentation URL" -msgid "Root container:" -msgstr "Root container:" +msgid "Root container" +msgstr "Root container" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -165,8 +165,8 @@ 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 "Strict to DLNA standard" +msgstr "Strict to DLNA standard" msgid "" "The miniDLNA service is active, serving %d audio, %d video and %d image " @@ -188,8 +188,8 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" -msgstr "miniSSDP socket:" +msgid "miniSSDP socket" +msgstr "miniSSDP socket" #~ msgid "Network interfaces to serve, comma delimited list." #~ msgstr "Network interfaces to serve, comma delimited list." diff --git a/applications/luci-app-minidlna/po/es/minidlna.po b/applications/luci-app-minidlna/po/es/minidlna.po index f71e9a2b9..aa97674e7 100644 --- a/applications/luci-app-minidlna/po/es/minidlna.po +++ b/applications/luci-app-minidlna/po/es/minidlna.po @@ -14,17 +14,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Configuración avanzada" -msgid "Album art names:" -msgstr "Imágenes de álbumes:" +msgid "Album art names" +msgstr "Imágenes de álbumes" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Número de modelo declarado:" +msgid "Announced model number" +msgstr "Número de modelo declarado" -msgid "Announced serial number:" -msgstr "Número de serie declarado:" +msgid "Announced serial number" +msgstr "Número de serie declarado" msgid "Browse directory" msgstr "Ver directorio" @@ -32,32 +32,32 @@ msgstr "Ver directorio" msgid "Collecting data..." msgstr "Recopilando información..." -msgid "Database directory:" -msgstr "Directorio de la base de datos:" +msgid "Database directory" +msgstr "Directorio de la base de datos" -msgid "Enable TIVO:" -msgstr "Activar TIVO:" +msgid "Enable TIVO" +msgstr "Activar TIVO" -msgid "Enable inotify:" -msgstr "Activar inotify:" +msgid "Enable inotify" +msgstr "Activar inotify" -msgid "Enable:" -msgstr "Activar:" +msgid "Enable" +msgstr "Activar" -msgid "Friendly name:" -msgstr "Nombre amigable:" +msgid "Friendly name" +msgstr "Nombre amigable" msgid "General Settings" msgstr "Configuración general" -msgid "Interfaces:" -msgstr "Interfaces:" +msgid "Interfaces" +msgstr "Interfaces" -msgid "Log directory:" -msgstr "Directorio de registro:" +msgid "Log directory" +msgstr "Directorio de registro" -msgid "Media directories:" -msgstr "Directorios de medios:" +msgid "Media directories" +msgstr "Directorios de medios" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -81,8 +81,8 @@ 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 "Notify interval" +msgstr "Intervalo de notificación" msgid "Pictures" msgstr "Imágenes" @@ -91,14 +91,14 @@ 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 "Port" +msgstr "Puerto" -msgid "Presentation URL:" -msgstr "URL de presentación:" +msgid "Presentation URL" +msgstr "URL de presentación" -msgid "Root container:" -msgstr "Raíz de contenidos:" +msgid "Root container" +msgstr "Raíz de contenidos" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -162,8 +162,8 @@ 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 "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 " @@ -187,5 +187,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Estado de miniDLNA" -msgid "miniSSDP socket:" -msgstr "Socket de miniSSDP:" +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 index 498dea6c8..4956da955 100644 --- a/applications/luci-app-minidlna/po/fr/minidlna.po +++ b/applications/luci-app-minidlna/po/fr/minidlna.po @@ -11,16 +11,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -29,31 +29,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -75,7 +75,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -84,13 +84,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -144,7 +144,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -167,5 +167,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/he/minidlna.po b/applications/luci-app-minidlna/po/he/minidlna.po index d319afd23..aeb6fb088 100644 --- a/applications/luci-app-minidlna/po/he/minidlna.po +++ b/applications/luci-app-minidlna/po/he/minidlna.po @@ -11,16 +11,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -29,31 +29,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -75,7 +75,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -84,13 +84,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -144,7 +144,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -167,5 +167,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/hu/minidlna.po b/applications/luci-app-minidlna/po/hu/minidlna.po index c1371afd9..91744f578 100644 --- a/applications/luci-app-minidlna/po/hu/minidlna.po +++ b/applications/luci-app-minidlna/po/hu/minidlna.po @@ -14,17 +14,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Haladó beállítások" -msgid "Album art names:" -msgstr "Borító album nevek:" +msgid "Album art names" +msgstr "Borító album nevek" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Közölt modellszám:" +msgid "Announced model number" +msgstr "Közölt modellszám" -msgid "Announced serial number:" -msgstr "Közölt sorozatszám:" +msgid "Announced serial number" +msgstr "Közölt sorozatszám" msgid "Browse directory" msgstr "Könyvtár tallózása" @@ -32,32 +32,32 @@ 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 "Database directory" +msgstr "Adatbázis könyvtár" -msgid "Enable TIVO:" -msgstr "TIVO engedélyezése:" +msgid "Enable TIVO" +msgstr "TIVO engedélyezése" -msgid "Enable inotify:" -msgstr "Inotify engedélyezése:" +msgid "Enable inotify" +msgstr "Inotify engedélyezése" -msgid "Enable:" -msgstr "Engedélyezés:" +msgid "Enable" +msgstr "Engedélyezés" -msgid "Friendly name:" -msgstr "Egyéni név:" +msgid "Friendly name" +msgstr "Egyéni név" msgid "General Settings" msgstr "Általános beállítások" -msgid "Interfaces:" -msgstr "Interfészek:" +msgid "Interfaces" +msgstr "Interfészek" -msgid "Log directory:" -msgstr "Napló könyvtár:" +msgid "Log directory" +msgstr "Napló könyvtár" -msgid "Media directories:" -msgstr "Média könyvtárak:" +msgid "Media directories" +msgstr "Média könyvtárak" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -81,8 +81,8 @@ 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 "Notify interval" +msgstr "Értesítési intervallum" msgid "Pictures" msgstr "Képek" @@ -90,14 +90,14 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "Szolgáltatott URL:" +msgid "Presentation URL" +msgstr "Szolgáltatott URL" -msgid "Root container:" -msgstr "Gyökér konténer:" +msgid "Root container" +msgstr "Gyökér konténer" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -167,8 +167,8 @@ 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 "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 " @@ -191,8 +191,8 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "miniDLNA állapot" -msgid "miniSSDP socket:" -msgstr "miniSSDP socket:" +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." diff --git a/applications/luci-app-minidlna/po/it/minidlna.po b/applications/luci-app-minidlna/po/it/minidlna.po index 4ecc3d4ae..452873466 100644 --- a/applications/luci-app-minidlna/po/it/minidlna.po +++ b/applications/luci-app-minidlna/po/it/minidlna.po @@ -14,17 +14,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Opzioni avanzate" -msgid "Album art names:" -msgstr "Nome Copertina Album:" +msgid "Album art names" +msgstr "Nome Copertina Album" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Numero modello annunciato:" +msgid "Announced model number" +msgstr "Numero modello annunciato" -msgid "Announced serial number:" -msgstr "Numero seriale annunciato:" +msgid "Announced serial number" +msgstr "Numero seriale annunciato" msgid "Browse directory" msgstr "Esplora directory" @@ -32,32 +32,32 @@ msgstr "Esplora directory" msgid "Collecting data..." msgstr "Recuperando i dati..." -msgid "Database directory:" -msgstr "Directory database:" +msgid "Database directory" +msgstr "Directory database" -msgid "Enable TIVO:" -msgstr "Abilita TIVO:" +msgid "Enable TIVO" +msgstr "Abilita TIVO" -msgid "Enable inotify:" -msgstr "Abilita inotify:" +msgid "Enable inotify" +msgstr "Abilita inotify" -msgid "Enable:" -msgstr "Abilita:" +msgid "Enable" +msgstr "Abilita" -msgid "Friendly name:" -msgstr "Nome Comune:" +msgid "Friendly name" +msgstr "Nome Comune" msgid "General Settings" msgstr "Impostazioni generali" -msgid "Interfaces:" -msgstr "Interfacce:" +msgid "Interfaces" +msgstr "Interfacce" -msgid "Log directory:" -msgstr "Directory di log:" +msgid "Log directory" +msgstr "Directory di log" -msgid "Media directories:" -msgstr "Cartelle Supporto:" +msgid "Media directories" +msgstr "Cartelle Supporto" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -82,23 +82,23 @@ msgstr "Interfaccia di rete usata." msgid "Notify interval in seconds." msgstr "Intervallo di notifica in secondi." -msgid "Notify interval:" -msgstr "Intervallo di notifica:" +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:" +msgstr "Porta per traffico (descrizione, SOAP, trasferimento supporto) HTTP" -msgid "Port:" -msgstr "Porta:" +msgid "Port" +msgstr "Porta" -msgid "Presentation URL:" -msgstr "URL di Presentazione:" +msgid "Presentation URL" +msgstr "URL di Presentazione" -msgid "Root container:" -msgstr "Contenitore Principale:" +msgid "Root container" +msgstr "Contenitore Principale" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -169,8 +169,8 @@ msgstr "Specificare il percorso del socket MiniSSDPd." msgid "Standard container" msgstr "Contenitore Standard" -msgid "Strict to DLNA standard:" -msgstr "Scrupolosamente DLNA standard:" +msgid "Strict to DLNA standard" +msgstr "Scrupolosamente DLNA standard" msgid "" "The miniDLNA service is active, serving %d audio, %d video and %d image " @@ -195,5 +195,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Stato miniDLNA" -msgid "miniSSDP socket:" -msgstr "Socket miniSSDP:" +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 index de2eb9b57..e6d11c75e 100644 --- a/applications/luci-app-minidlna/po/ja/minidlna.po +++ b/applications/luci-app-minidlna/po/ja/minidlna.po @@ -15,17 +15,17 @@ msgstr "" msgid "Advanced Settings" msgstr "詳細設定" -msgid "Album art names:" -msgstr "アルバムアートワーク ファイル名:" +msgid "Album art names" +msgstr "アルバムアートワーク ファイル名" -msgid "Allow wide links:" -msgstr "ワイド リンクの許可:" +msgid "Allow wide links" +msgstr "ワイド リンクの許可" -msgid "Announced model number:" -msgstr "通知するモデル番号:" +msgid "Announced model number" +msgstr "通知するモデル番号" -msgid "Announced serial number:" -msgstr "通知するシリアルナンバー:" +msgid "Announced serial number" +msgstr "通知するシリアルナンバー" msgid "Browse directory" msgstr "Browse directory" @@ -33,32 +33,32 @@ msgstr "Browse directory" msgid "Collecting data..." msgstr "データ収集中です..." -msgid "Database directory:" -msgstr "データベース・ディレクトリ:" +msgid "Database directory" +msgstr "データベース・ディレクトリ" -msgid "Enable TIVO:" -msgstr "TIVO を有効にする:" +msgid "Enable TIVO" +msgstr "TIVO を有効にする" -msgid "Enable inotify:" -msgstr "inotify を有効にする:" +msgid "Enable inotify" +msgstr "inotify を有効にする" -msgid "Enable:" -msgstr "サービスを有効にする:" +msgid "Enable" +msgstr "サービスを有効にする" -msgid "Friendly name:" -msgstr "Friendly名:" +msgid "Friendly name" +msgstr "Friendly名" msgid "General Settings" msgstr "基本設定" -msgid "Interfaces:" -msgstr "インターフェース:" +msgid "Interfaces" +msgstr "インターフェース" -msgid "Log directory:" -msgstr "ログディレクトリ:" +msgid "Log directory" +msgstr "ログディレクトリ" -msgid "Media directories:" -msgstr "メディアディレクトリ:" +msgid "Media directories" +msgstr "メディアディレクトリ" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -81,8 +81,8 @@ msgstr "サービスが使用するネットワーク・インターフェース msgid "Notify interval in seconds." msgstr "通知間隔を秒単位で設定します。" -msgid "Notify interval:" -msgstr "通知間隔:" +msgid "Notify interval" +msgstr "通知間隔" msgid "Pictures" msgstr "ピクチャ" @@ -90,14 +90,14 @@ msgstr "ピクチャ" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "ステータス表示のためのHTTPポート番号を設定してください。" -msgid "Port:" -msgstr "ポート:" +msgid "Port" +msgstr "ポート" -msgid "Presentation URL:" -msgstr "プレゼンテーションURL:" +msgid "Presentation URL" +msgstr "プレゼンテーションURL" -msgid "Root container:" -msgstr "ルート・コンテナ:" +msgid "Root container" +msgstr "ルート・コンテナ" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -167,8 +167,8 @@ msgstr "MiniSSDPd ソケットのパスを設定してください。" msgid "Standard container" msgstr "標準コンテナ" -msgid "Strict to DLNA standard:" -msgstr "DLNA規格の厳守:" +msgid "Strict to DLNA standard" +msgstr "DLNA規格の厳守" msgid "" "The miniDLNA service is active, serving %d audio, %d video and %d image " @@ -192,8 +192,8 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "miniDLNA ステータス" -msgid "miniSSDP socket:" -msgstr "miniSSDP ソケット:" +msgid "miniSSDP socket" +msgstr "miniSSDP ソケット" #~ msgid "Network interfaces to serve, comma delimited list." #~ msgstr "" diff --git a/applications/luci-app-minidlna/po/ms/minidlna.po b/applications/luci-app-minidlna/po/ms/minidlna.po index 7372c90a8..078693e4e 100644 --- a/applications/luci-app-minidlna/po/ms/minidlna.po +++ b/applications/luci-app-minidlna/po/ms/minidlna.po @@ -10,16 +10,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -28,31 +28,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -74,7 +74,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -83,13 +83,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -143,7 +143,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -166,5 +166,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/no/minidlna.po b/applications/luci-app-minidlna/po/no/minidlna.po index daf199656..f409220bc 100644 --- a/applications/luci-app-minidlna/po/no/minidlna.po +++ b/applications/luci-app-minidlna/po/no/minidlna.po @@ -14,17 +14,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Avanserte Innstillinger" -msgid "Album art names:" -msgstr "Albumbilder navn:" +msgid "Album art names" +msgstr "Albumbilder navn" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Annonsert modellnummer:" +msgid "Announced model number" +msgstr "Annonsert modellnummer" -msgid "Announced serial number:" -msgstr "Annonsert serienummer:" +msgid "Announced serial number" +msgstr "Annonsert serienummer" msgid "Browse directory" msgstr "Bla katalog" @@ -32,32 +32,32 @@ msgstr "Bla katalog" msgid "Collecting data..." msgstr "Samler inn data..." -msgid "Database directory:" -msgstr "Database katalog:" +msgid "Database directory" +msgstr "Database katalog" -msgid "Enable TIVO:" -msgstr "Aktiver TIVO:" +msgid "Enable TIVO" +msgstr "Aktiver TIVO" -msgid "Enable inotify:" -msgstr "Aktiver inotify:" +msgid "Enable inotify" +msgstr "Aktiver inotify" -msgid "Enable:" -msgstr "Aktiver:" +msgid "Enable" +msgstr "Aktiver" -msgid "Friendly name:" -msgstr "Vennlig navn:" +msgid "Friendly name" +msgstr "Vennlig navn" msgid "General Settings" msgstr "Generelle Innstillinger" -msgid "Interfaces:" -msgstr "Grensesnitt:" +msgid "Interfaces" +msgstr "Grensesnitt" -msgid "Log directory:" -msgstr "Logg katalog:" +msgid "Log directory" +msgstr "Logg katalog" -msgid "Media directories:" -msgstr "Media kataloger:" +msgid "Media directories" +msgstr "Media kataloger" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -82,8 +82,8 @@ msgstr "Nettverksgrensesnittene å tjene." msgid "Notify interval in seconds." msgstr "Notify intervall i sekunder." -msgid "Notify interval:" -msgstr "Notify intervall:" +msgid "Notify interval" +msgstr "Notify intervall" msgid "Pictures" msgstr "Bilder" @@ -91,14 +91,14 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "Presentasjon URL:" +msgid "Presentation URL" +msgstr "Presentasjon URL" -msgid "Root container:" -msgstr "Root katalog:" +msgid "Root container" +msgstr "Root katalog" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -167,8 +167,8 @@ msgstr "Angi banen til MiniSSDPd socketen." msgid "Standard container" msgstr "Standard container" -msgid "Strict to DLNA standard:" -msgstr "Streng overholdelse av DLNA-standarden:" +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 " @@ -192,5 +192,5 @@ msgstr "MiniDLNA" msgid "miniDLNA Status" msgstr "MiniDLNA Status" -msgid "miniSSDP socket:" -msgstr "miniSSDP socket:" +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 index 8c03b5155..bfbc871c1 100644 --- a/applications/luci-app-minidlna/po/pl/minidlna.po +++ b/applications/luci-app-minidlna/po/pl/minidlna.po @@ -15,17 +15,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -msgid "Album art names:" -msgstr "Nazwy okładek albumów:" +msgid "Album art names" +msgstr "Nazwy okładek albumów" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Rozgłaszany model:" +msgid "Announced model number" +msgstr "Rozgłaszany model" -msgid "Announced serial number:" -msgstr "Rozgłaszany numer seryjny:" +msgid "Announced serial number" +msgstr "Rozgłaszany numer seryjny" msgid "Browse directory" msgstr "Przeglądaj folder" @@ -33,32 +33,32 @@ msgstr "Przeglądaj folder" msgid "Collecting data..." msgstr "Zbieranie informacji..." -msgid "Database directory:" -msgstr "Katalog bazy danych:" +msgid "Database directory" +msgstr "Katalog bazy danych" -msgid "Enable TIVO:" -msgstr "Włącz TIVO:" +msgid "Enable TIVO" +msgstr "Włącz TIVO" -msgid "Enable inotify:" -msgstr "Włącz inotify:" +msgid "Enable inotify" +msgstr "Włącz inotify" -msgid "Enable:" -msgstr "Włącz:" +msgid "Enable" +msgstr "Włącz" -msgid "Friendly name:" -msgstr "Przyjazna nazwa:" +msgid "Friendly name" +msgstr "Przyjazna nazwa" msgid "General Settings" msgstr "Ustawienia ogólne" -msgid "Interfaces:" -msgstr "Interfejsy:" +msgid "Interfaces" +msgstr "Interfejsy" -msgid "Log directory:" -msgstr "Katalog dzienników (logów):" +msgid "Log directory" +msgstr "Katalog dzienników (logów)" -msgid "Media directories:" -msgstr "Katalog mediów:" +msgid "Media directories" +msgstr "Katalog mediów" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -81,7 +81,7 @@ msgstr "Interfejsy sieciowe do obsługiwania." msgid "Notify interval in seconds." msgstr "Interwał powiadamiania w sekundach." -msgid "Notify interval:" +msgid "Notify interval" msgstr "Interwał powiadamiania." msgid "Pictures" @@ -90,14 +90,14 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "URL prezentacyjny:" +msgid "Presentation URL" +msgstr "URL prezentacyjny" -msgid "Root container:" -msgstr "Kontener główny (root):" +msgid "Root container" +msgstr "Kontener główny (root)" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -166,8 +166,8 @@ 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 "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 " @@ -192,5 +192,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Status miniDLNA" -msgid "miniSSDP socket:" -msgstr "Gniazdo (socket) miniSSDP:" +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 index 5ae9226d1..5739c6ff8 100644 --- a/applications/luci-app-minidlna/po/pt-br/minidlna.po +++ b/applications/luci-app-minidlna/po/pt-br/minidlna.po @@ -11,17 +11,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Configuração Avançada" -msgid "Album art names:" +msgid "Album art names" msgstr "Nomes do Álbum artistico: " -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "numero de modelo anunciado:" +msgid "Announced model number" +msgstr "numero de modelo anunciado" -msgid "Announced serial number:" -msgstr "Anunciar serial:" +msgid "Announced serial number" +msgstr "Anunciar serial" msgid "Browse directory" msgstr "Procurar diretório " @@ -29,32 +29,32 @@ msgstr "Procurar diretório " msgid "Collecting data..." msgstr "Coletando dados..." -msgid "Database directory:" -msgstr "Banco de dados de diretório:" +msgid "Database directory" +msgstr "Banco de dados de diretório" -msgid "Enable TIVO:" -msgstr "Ativar TIVO:" +msgid "Enable TIVO" +msgstr "Ativar TIVO" -msgid "Enable inotify:" -msgstr "Ativar inotify:" +msgid "Enable inotify" +msgstr "Ativar inotify" -msgid "Enable:" +msgid "Enable" msgstr "Ativado" -msgid "Friendly name:" -msgstr "Nome amigável:" +msgid "Friendly name" +msgstr "Nome amigável" msgid "General Settings" msgstr "Configuração Geral" -msgid "Interfaces:" -msgstr "Interfaces:" +msgid "Interfaces" +msgstr "Interfaces" -msgid "Log directory:" +msgid "Log directory" msgstr "Diretório de Log" -msgid "Media directories:" -msgstr "Diretórios de mídia:" +msgid "Media directories" +msgstr "Diretórios de mídia" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -79,8 +79,8 @@ 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 "Notify interval" +msgstr "Intervalo de Notificação" msgid "Pictures" msgstr "Imagems" @@ -88,14 +88,14 @@ 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 "Port" +msgstr "Porta" -msgid "Presentation URL:" -msgstr "URL para Apresentação:" +msgid "Presentation URL" +msgstr "URL para Apresentação" -msgid "Root container:" -msgstr "Root container:" +msgid "Root container" +msgstr "Root container" msgid "" "Serial number the miniDLNA daemon will report to clients in its XML " @@ -169,8 +169,8 @@ 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 "Strict to DLNA standard" +msgstr "Strict para DLNA padrão" msgid "" "The miniDLNA service is active, serving %d audio, %d video and %d image " @@ -196,5 +196,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "miniDLNA Status" -msgid "miniSSDP socket:" -msgstr "miniSSDP soquete:" +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 index dbd835f50..5eff3034f 100644 --- a/applications/luci-app-minidlna/po/pt/minidlna.po +++ b/applications/luci-app-minidlna/po/pt/minidlna.po @@ -14,17 +14,17 @@ msgstr "" msgid "Advanced Settings" msgstr "Definições Avançadas" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" -msgstr "Número modelo anunciado:" +msgid "Announced model number" +msgstr "Número modelo anunciado" -msgid "Announced serial number:" -msgstr "Número de série anunciado:" +msgid "Announced serial number" +msgstr "Número de série anunciado" msgid "Browse directory" msgstr "Procurar directório" @@ -32,32 +32,32 @@ msgstr "Procurar directório" msgid "Collecting data..." msgstr "A obter dados..." -msgid "Database directory:" -msgstr "Directório da base de dados:" +msgid "Database directory" +msgstr "Directório da base de dados" -msgid "Enable TIVO:" -msgstr "Ativar TIVO:" +msgid "Enable TIVO" +msgstr "Ativar TIVO" -msgid "Enable inotify:" -msgstr "Ativar inotify:" +msgid "Enable inotify" +msgstr "Ativar inotify" -msgid "Enable:" -msgstr "Ativar:" +msgid "Enable" +msgstr "Ativar" -msgid "Friendly name:" -msgstr "Nome amigável:" +msgid "Friendly name" +msgstr "Nome amigável" msgid "General Settings" msgstr "Definições Gerais" -msgid "Interfaces:" -msgstr "Interfaces:" +msgid "Interfaces" +msgstr "Interfaces" -msgid "Log directory:" -msgstr "Directório de Log:" +msgid "Log directory" +msgstr "Directório de Log" -msgid "Media directories:" -msgstr "Pastas multimédia:" +msgid "Media directories" +msgstr "Pastas multimédia" msgid "" "MiniDLNA is server software with the aim of being fully compliant with DLNA/" @@ -82,8 +82,8 @@ 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 "Notify interval" +msgstr "Intervalo de Notificação" msgid "Pictures" msgstr "Imagens" @@ -91,13 +91,13 @@ 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 "Port" +msgstr "Porta" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -151,7 +151,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -174,5 +174,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/ro/minidlna.po b/applications/luci-app-minidlna/po/ro/minidlna.po index 5e79cd2cf..f3714c216 100644 --- a/applications/luci-app-minidlna/po/ro/minidlna.po +++ b/applications/luci-app-minidlna/po/ro/minidlna.po @@ -15,16 +15,16 @@ msgstr "" msgid "Advanced Settings" msgstr "Setări avansate" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -33,31 +33,31 @@ msgstr "Răsfoire director" msgid "Collecting data..." msgstr "Colectare date..." -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" -msgstr "Activare TIVO:" +msgid "Enable TIVO" +msgstr "Activare TIVO" -msgid "Enable inotify:" -msgstr "Activare inotify:" +msgid "Enable inotify" +msgstr "Activare inotify" -msgid "Enable:" -msgstr "Activare:" +msgid "Enable" +msgstr "Activare" -msgid "Friendly name:" -msgstr "Nume prieten:" +msgid "Friendly name" +msgstr "Nume prieten" msgid "General Settings" msgstr "Setări generale" -msgid "Interfaces:" +msgid "Interfaces" msgstr "Interfeţe" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "Directoare media" msgid "" @@ -79,8 +79,8 @@ msgstr "" msgid "Notify interval in seconds." msgstr "Notificare interval în secunde." -msgid "Notify interval:" -msgstr "Notificare interval:" +msgid "Notify interval" +msgstr "Notificare interval" msgid "Pictures" msgstr "Fotografii" @@ -88,13 +88,13 @@ 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 "Port" +msgstr "Port" -msgid "Presentation URL:" -msgstr "URL de prezentare:" +msgid "Presentation URL" +msgstr "URL de prezentare" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -148,7 +148,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -171,5 +171,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Stare miniDLNA" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/ru/minidlna.po b/applications/luci-app-minidlna/po/ru/minidlna.po index 859cf1dca..ea28c56a4 100644 --- a/applications/luci-app-minidlna/po/ru/minidlna.po +++ b/applications/luci-app-minidlna/po/ru/minidlna.po @@ -18,16 +18,16 @@ msgstr "" msgid "Advanced Settings" msgstr "Дополнительные настройки" -msgid "Album art names:" +msgid "Album art names" msgstr "Имена обложек альбома" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "Разрешить ссылки" -msgid "Announced model number:" +msgid "Announced model number" msgstr "Объявить номер модели" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "Объявить серийный номер" msgid "Browse directory" @@ -36,31 +36,31 @@ msgstr "Обзор папок" msgid "Collecting data..." msgstr "Сбор данных..." -msgid "Database directory:" +msgid "Database directory" msgstr "Папка базы данных" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "Включить TiVo" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "Включить inotify" -msgid "Enable:" +msgid "Enable" msgstr "Включить" -msgid "Friendly name:" +msgid "Friendly name" msgstr "Имя протокола" msgid "General Settings" msgstr "Основные настройки" -msgid "Interfaces:" +msgid "Interfaces" msgstr "Интерфейсы" -msgid "Log directory:" +msgid "Log directory" msgstr "Папка системного
журнала" -msgid "Media directories:" +msgid "Media directories" msgstr "Папки медиа" msgid "" @@ -84,7 +84,7 @@ msgstr "Использовать сетевые интерфейсы." msgid "Notify interval in seconds." msgstr "Интервал уведомления в секундах." -msgid "Notify interval:" +msgid "Notify interval" msgstr "Интервал уведомления" msgid "Pictures" @@ -93,13 +93,13 @@ msgstr "Картинки" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "Задайте порт для HTTP-трафика (описания, SOAP, передача мультимедиа)." -msgid "Port:" +msgid "Port" msgstr "Порт" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "Задать URL-адрес" -msgid "Root container:" +msgid "Root container" msgstr "Root контейнер" msgid "" @@ -168,7 +168,7 @@ msgstr "Укажите путь к сокету MiniSSDPd." msgid "Standard container" msgstr "Стандартный контейнер" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "Следовать стандарту DLNA" msgid "" @@ -193,5 +193,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "Состояние miniDLNA" -msgid "miniSSDP socket:" +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 index 2968311d2..2d7274580 100644 --- a/applications/luci-app-minidlna/po/sk/minidlna.po +++ b/applications/luci-app-minidlna/po/sk/minidlna.po @@ -11,16 +11,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -29,31 +29,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -75,7 +75,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -84,13 +84,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -144,7 +144,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -167,5 +167,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/sv/minidlna.po b/applications/luci-app-minidlna/po/sv/minidlna.po index d06abfd4c..4d9cea96c 100644 --- a/applications/luci-app-minidlna/po/sv/minidlna.po +++ b/applications/luci-app-minidlna/po/sv/minidlna.po @@ -12,16 +12,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -30,31 +30,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -76,7 +76,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -85,13 +85,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -145,7 +145,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -168,5 +168,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/templates/minidlna.pot b/applications/luci-app-minidlna/po/templates/minidlna.pot index 0f22c674d..cef337431 100644 --- a/applications/luci-app-minidlna/po/templates/minidlna.pot +++ b/applications/luci-app-minidlna/po/templates/minidlna.pot @@ -4,16 +4,16 @@ msgstr "Content-Type: text/plain; charset=UTF-8" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -22,31 +22,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -68,7 +68,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -77,13 +77,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -137,7 +137,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -160,5 +160,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/tr/minidlna.po b/applications/luci-app-minidlna/po/tr/minidlna.po index 1eeba3f1b..95353845c 100644 --- a/applications/luci-app-minidlna/po/tr/minidlna.po +++ b/applications/luci-app-minidlna/po/tr/minidlna.po @@ -11,16 +11,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -29,31 +29,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -75,7 +75,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -84,13 +84,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -144,7 +144,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -167,5 +167,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/uk/minidlna.po b/applications/luci-app-minidlna/po/uk/minidlna.po index db23241cc..89b15ce26 100644 --- a/applications/luci-app-minidlna/po/uk/minidlna.po +++ b/applications/luci-app-minidlna/po/uk/minidlna.po @@ -12,16 +12,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -30,31 +30,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -76,7 +76,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -85,13 +85,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -145,7 +145,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -168,5 +168,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "" diff --git a/applications/luci-app-minidlna/po/vi/minidlna.po b/applications/luci-app-minidlna/po/vi/minidlna.po index 1eeba3f1b..95353845c 100644 --- a/applications/luci-app-minidlna/po/vi/minidlna.po +++ b/applications/luci-app-minidlna/po/vi/minidlna.po @@ -11,16 +11,16 @@ msgstr "" msgid "Advanced Settings" msgstr "" -msgid "Album art names:" +msgid "Album art names" msgstr "" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "" -msgid "Announced model number:" +msgid "Announced model number" msgstr "" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "" msgid "Browse directory" @@ -29,31 +29,31 @@ msgstr "" msgid "Collecting data..." msgstr "" -msgid "Database directory:" +msgid "Database directory" msgstr "" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "" -msgid "Enable:" +msgid "Enable" msgstr "" -msgid "Friendly name:" +msgid "Friendly name" msgstr "" msgid "General Settings" msgstr "" -msgid "Interfaces:" +msgid "Interfaces" msgstr "" -msgid "Log directory:" +msgid "Log directory" msgstr "" -msgid "Media directories:" +msgid "Media directories" msgstr "" msgid "" @@ -75,7 +75,7 @@ msgstr "" msgid "Notify interval in seconds." msgstr "" -msgid "Notify interval:" +msgid "Notify interval" msgstr "" msgid "Pictures" @@ -84,13 +84,13 @@ msgstr "" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" -msgid "Port:" +msgid "Port" msgstr "" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "" -msgid "Root container:" +msgid "Root container" msgstr "" msgid "" @@ -144,7 +144,7 @@ msgstr "" msgid "Standard container" msgstr "" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "" msgid "" @@ -167,5 +167,5 @@ msgstr "" msgid "miniDLNA Status" msgstr "" -msgid "miniSSDP socket:" +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 index 1406f6d2d..243d57470 100644 --- a/applications/luci-app-minidlna/po/zh-cn/minidlna.po +++ b/applications/luci-app-minidlna/po/zh-cn/minidlna.po @@ -17,16 +17,16 @@ msgstr "" msgid "Advanced Settings" msgstr "高级设置" -msgid "Album art names:" +msgid "Album art names" msgstr "专辑艺术名:" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "允许全局链接:" -msgid "Announced model number:" +msgid "Announced model number" msgstr "通告的型号:" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "通告的编号:" msgid "Browse directory" @@ -35,31 +35,31 @@ msgstr "浏览目录" msgid "Collecting data..." msgstr "正在收集数据…" -msgid "Database directory:" +msgid "Database directory" msgstr "数据库目录:" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "启用 TIVO:" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "启用 inotify:" -msgid "Enable:" +msgid "Enable" msgstr "启用:" -msgid "Friendly name:" +msgid "Friendly name" msgstr "友好名称:" msgid "General Settings" msgstr "基本设置" -msgid "Interfaces:" +msgid "Interfaces" msgstr "接口:" -msgid "Log directory:" +msgid "Log directory" msgstr "日志目录:" -msgid "Media directories:" +msgid "Media directories" msgstr "媒体目录:" msgid "" @@ -81,7 +81,7 @@ msgstr "服务的网络接口。" msgid "Notify interval in seconds." msgstr "通知的时间间隔(秒)。" -msgid "Notify interval:" +msgid "Notify interval" msgstr "通知的时间间隔:" msgid "Pictures" @@ -90,13 +90,13 @@ msgstr "图片" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "HTTP(描述,SOAP,媒体传输)流量的端口。" -msgid "Port:" +msgid "Port" msgstr "端口:" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "服务网址" -msgid "Root container:" +msgid "Root container" msgstr "根目录:" msgid "" @@ -156,7 +156,7 @@ msgstr "指定 MiniSSDPd socket 的路径。" msgid "Standard container" msgstr "基本目录" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "严格 DLNA 标准:" msgid "" @@ -179,5 +179,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "miniDLNA 状态" -msgid "miniSSDP socket:" +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 index 66441bece..3bdf86a08 100644 --- a/applications/luci-app-minidlna/po/zh-tw/minidlna.po +++ b/applications/luci-app-minidlna/po/zh-tw/minidlna.po @@ -18,16 +18,16 @@ msgstr "" msgid "Advanced Settings" msgstr "進階設定" -msgid "Album art names:" +msgid "Album art names" msgstr "專輯藝術名:" -msgid "Allow wide links:" +msgid "Allow wide links" msgstr "允許全域性連結:" -msgid "Announced model number:" +msgid "Announced model number" msgstr "通告的型號:" -msgid "Announced serial number:" +msgid "Announced serial number" msgstr "通告的編號:" msgid "Browse directory" @@ -36,31 +36,31 @@ msgstr "瀏覽目錄" msgid "Collecting data..." msgstr "正在收集資料…" -msgid "Database directory:" +msgid "Database directory" msgstr "資料庫目錄:" -msgid "Enable TIVO:" +msgid "Enable TIVO" msgstr "啟用 TIVO:" -msgid "Enable inotify:" +msgid "Enable inotify" msgstr "啟用 inotify:" -msgid "Enable:" +msgid "Enable" msgstr "啟用:" -msgid "Friendly name:" +msgid "Friendly name" msgstr "友善名稱:" msgid "General Settings" msgstr "基本設定" -msgid "Interfaces:" +msgid "Interfaces" msgstr "介面:" -msgid "Log directory:" +msgid "Log directory" msgstr "日誌目錄:" -msgid "Media directories:" +msgid "Media directories" msgstr "媒體目錄:" msgid "" @@ -82,7 +82,7 @@ msgstr "服務的網路介面。" msgid "Notify interval in seconds." msgstr "通知的時間間隔(秒)。" -msgid "Notify interval:" +msgid "Notify interval" msgstr "通知的時間間隔:" msgid "Pictures" @@ -91,13 +91,13 @@ msgstr "圖片" msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "HTTP(描述,SOAP,媒體傳輸)流量的埠。" -msgid "Port:" +msgid "Port" msgstr "埠:" -msgid "Presentation URL:" +msgid "Presentation URL" msgstr "服務網址" -msgid "Root container:" +msgid "Root container" msgstr "根目錄:" msgid "" @@ -157,7 +157,7 @@ msgstr "指定 MiniSSDPd socket 的路徑。" msgid "Standard container" msgstr "基本目錄" -msgid "Strict to DLNA standard:" +msgid "Strict to DLNA standard" msgstr "嚴格 DLNA 標準:" msgid "" @@ -180,5 +180,5 @@ msgstr "miniDLNA" msgid "miniDLNA Status" msgstr "miniDLNA 狀態" -msgid "miniSSDP socket:" +msgid "miniSSDP socket" msgstr "miniSSDP socket:"