From: Jo-Philipp Wich Date: Sun, 7 Mar 2010 19:06:44 +0000 (+0000) Subject: luci-0.9: merge r5730 amd r5731 X-Git-Tag: 0.9.0~74 X-Git-Url: http://git.archive.openwrt.org/?a=commitdiff_plain;h=fa5e477e5661a6f2ef278ba636c09c5913a247ef;p=project%2Fluci.git luci-0.9: merge r5730 amd r5731 --- diff --git a/applications/luci-uvc_streamer/Makefile b/applications/luci-uvc_streamer/Makefile deleted file mode 100644 index eb78c9382..000000000 --- a/applications/luci-uvc_streamer/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -PO = uvc_streamer - -include ../../build/config.mk -include ../../build/module.mk diff --git a/applications/luci-uvc_streamer/ipkg/postinst b/applications/luci-uvc_streamer/ipkg/postinst deleted file mode 100755 index d0cf7fec6..000000000 --- a/applications/luci-uvc_streamer/ipkg/postinst +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/sh -[ -n "${IPKG_INSTROOT}" ] || { - ( . /etc/uci-defaults/luci-uvc_streamer ) && rm -f /etc/uci-defaults/luci-uvc_streamer - /etc/init.d/uvc-streamer enabled || /etc/init.d/uvc-streamer enable -} diff --git a/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua b/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua deleted file mode 100644 index 8363454ef..000000000 --- a/applications/luci-uvc_streamer/luasrc/controller/uvc_streamer.lua +++ /dev/null @@ -1,28 +0,0 @@ ---[[ - -LuCI UVC Streamer -(c) 2008 Yanira - -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.uvc_streamer", package.seeall) - -function index() - require("luci.i18n") - luci.i18n.loadc("uvc_streamer") - if not nixio.fs.access("/etc/config/uvc-streamer") then - return - end - - local page = entry({"admin", "services", "uvc_streamer"}, cbi("uvc_streamer"), luci.i18n.translate("uvc_streamer", "UVC Streaming"), 60) - page.i18n = "uvc_streamer" - page.dependent = true -end diff --git a/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua b/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua deleted file mode 100644 index e4de64568..000000000 --- a/applications/luci-uvc_streamer/luasrc/model/cbi/uvc_streamer.lua +++ /dev/null @@ -1,47 +0,0 @@ ---[[ - -LuCI UVC Streamer -(c) 2008 Yanira - -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$ - -]]-- - --- find current lan address and port of first uvc_streamer config section -local uci = luci.model.uci.cursor_state() -local addr = uci:get("network", "lan", "ipaddr") -local port - -uci:foreach( "uvc-streamer", "uvc-streamer", - function(section) port = port or tonumber(section.port) end ) - -addr = addr or "192.168.1.1" -port = port or 8080 - -m = Map("uvc-streamer", translate("uvc_streamer"), - translatef("uvc_streamer_desc", nil, addr, port, addr, port)) - -s = m:section(TypedSection, "uvc-streamer", translate("settings")) -s.addremove = false -s.anonymous = true - -s:option(Flag, "enabled", translate("enabled", "Enable")) - -s:option(Value, "device", translate("device")).rmempty = true - -nm = s:option(Value, "resolution", translate("resolution")) -nm:value("640x480") -nm:value("320x240") -nm:value("160x120") - -s:option(Value, "framespersecond", translate("framespersecond")).rmempty = true - -s:option(Value, "port", translate("port", "Port")).rmempty = true - -return m diff --git a/applications/luci-uvc_streamer/root/etc/uci-defaults/luci-uvc_streamer b/applications/luci-uvc_streamer/root/etc/uci-defaults/luci-uvc_streamer deleted file mode 100644 index 42372f051..000000000 --- a/applications/luci-uvc_streamer/root/etc/uci-defaults/luci-uvc_streamer +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -uci batch <<-EOF - add ucitrack uvc-streamer - set ucitrack.@uvc-streamer[-1].init=uvc-streamer - commit ucitrack -EOF diff --git a/applications/luci-uvc_streamer/root/lib/uci/schema/default/uvc-streamer b/applications/luci-uvc_streamer/root/lib/uci/schema/default/uvc-streamer deleted file mode 100644 index 9ea255c31..000000000 --- a/applications/luci-uvc_streamer/root/lib/uci/schema/default/uvc-streamer +++ /dev/null @@ -1,41 +0,0 @@ -#package uvc-streamer - -config package - option title 'UVC-Streamer webcam streaming configuration' - -config section - option name 'uvc-streamer' - option package 'uvc-streamer' - option title 'Settings' - option unique true - option required true - -config variable - option name 'enabled' - option section 'uvc-streamer.uvc-streamer' - option title 'Enable' - option required true - option datatype boolean - -config variable - option name 'device' - option section 'uvc-streamer.uvc-streamer' - option title 'Device' - -config variable - option name 'resolution' - option section 'uvc-streamer.uvc-streamer' - option title 'Resolution' - option required true - -config variable - option name 'framespersecond' - option section 'uvc-streamer.uvc-streamer' - option title 'Frames per second' - option datatype uint - -config variable - option name 'port' - option section 'uvc-streamer.uvc-streamer' - option title 'Port' - option datatype port diff --git a/contrib/package/luci/Makefile b/contrib/package/luci/Makefile index 7ab2c2288..59b83066d 100644 --- a/contrib/package/luci/Makefile +++ b/contrib/package/luci/Makefile @@ -256,7 +256,7 @@ NIXIO_TLS:=axtls define Package/luci-nixio $(call Package/luci/libtemplate) TITLE:=NIXIO POSIX Library - DEPENDS:=+PACKAGE_luci-nixio_openssl:libopenssl +PACKAGE_luci-nixio_cyassl:libcyassl-luci + DEPENDS:=+PACKAGE_luci-nixio_openssl:libopenssl +PACKAGE_luci-nixio_cyassl:libcyassl endef define Package/luci-nixio/install @@ -565,17 +565,6 @@ define Package/luci-app-samba/install endef -define Package/luci-app-uvc_streamer - $(call Package/luci/webtemplate) - DEPENDS+=+luci-admin-full +PACKAGE_luci-app-uvc_streamer:uvc-streamer - TITLE:=Webcam Streaming - UVC-Streamer module -endef - -define Package/luci-app-uvc_streamer/install - $(call Package/luci/install/template,$(1),applications/luci-uvc_streamer) -endef - - define Package/luci-app-mmc_over_gpio $(call Package/luci/webtemplate) DEPENDS+=+luci-admin-full +PACKAGE_luci-app-mmc_over_gpio:kmod-mmc-over-gpio @@ -994,9 +983,6 @@ endif ifneq ($(CONFIG_PACKAGE_luci-app-samba),) PKG_SELECTED_MODULES+=applications/luci-samba endif -ifneq ($(CONFIG_PACKAGE_luci-app-uvc_streamer),) - PKG_SELECTED_MODULES+=applications/luci-uvc_streamer -endif ifneq ($(CONFIG_PACKAGE_luci-app-mmc_over_gpio),) PKG_SELECTED_MODULES+=applications/luci-mmc_over_gpio endif @@ -1138,7 +1124,6 @@ $(eval $(call BuildPackage,luci-app-upnp)) $(eval $(call BuildPackage,luci-app-ntpc)) $(eval $(call BuildPackage,luci-app-ddns)) $(eval $(call BuildPackage,luci-app-samba)) -$(eval $(call BuildPackage,luci-app-uvc_streamer)) $(eval $(call BuildPackage,luci-app-mmc_over_gpio)) $(eval $(call BuildPackage,luci-app-p910nd)) $(eval $(call BuildPackage,luci-app-ushare)) diff --git a/po/ca/uvc_streamer.po b/po/ca/uvc_streamer.po deleted file mode 100644 index 7ca32757c..000000000 --- a/po/ca/uvc_streamer.po +++ /dev/null @@ -1,41 +0,0 @@ -# uvc_streamer.pot -# generated from ./applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-26 16:39+0200\n" -"PO-Revision-Date: 2009-05-27 02:07+0200\n" -"Last-Translator: Eduard Duran \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Fotogrames per segon" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Resolució" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Configuració" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Transmissió de càmera web" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Configura la teva càmera web compatible amb Linux-UVC. Apunat el teu " -"navegador a p.e. http://%s:%i/" diff --git a/po/de/uvc_streamer.po b/po/de/uvc_streamer.po deleted file mode 100644 index a7a032d96..000000000 --- a/po/de/uvc_streamer.po +++ /dev/null @@ -1,40 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Bilder pro Sekunde" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Auflösung" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Konfiguration" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Webcam Stream" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Linux-UVC Webcam Konfiguration. Im Browser z.B. http://%s:%i/ laden." diff --git a/po/el/uvc_streamer.po b/po/el/uvc_streamer.po deleted file mode 100644 index feffff257..000000000 --- a/po/el/uvc_streamer.po +++ /dev/null @@ -1,38 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-28 02:08+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" diff --git a/po/en/uvc_streamer.po b/po/en/uvc_streamer.po deleted file mode 100644 index f3c16a606..000000000 --- a/po/en/uvc_streamer.po +++ /dev/null @@ -1,40 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Frames per second" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Resolution" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Settings" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Webcam streaming" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/" diff --git a/po/es/uvc_streamer.po b/po/es/uvc_streamer.po deleted file mode 100644 index a6642a8a7..000000000 --- a/po/es/uvc_streamer.po +++ /dev/null @@ -1,39 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2009-07-09 09:58+0200\n" -"Last-Translator: Guillermo Javier Nardoni \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Cuadros por segundo" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Resolución" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Configuraciones" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Transmitir via webcam" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Configure su cámara web compatible con Linux-UVC. Tipee en su navegador, por " -"ejemplo: http://%s:%i/" diff --git a/po/fr/uvc_streamer.po b/po/fr/uvc_streamer.po deleted file mode 100644 index fb87f7afc..000000000 --- a/po/fr/uvc_streamer.po +++ /dev/null @@ -1,40 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Images par seconde" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Résolution" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Paramètres" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Webcam streaming" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Configurez le pilote linux UVC-webcam pour votre webcam. Pointez votre " -"navigateur par exemple surhttp://%s:%i/" diff --git a/po/it/uvc_streamer.po b/po/it/uvc_streamer.po deleted file mode 100644 index db79cd8a8..000000000 --- a/po/it/uvc_streamer.po +++ /dev/null @@ -1,38 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" diff --git a/po/ja/uvc_streamer.po b/po/ja/uvc_streamer.po deleted file mode 100644 index db79cd8a8..000000000 --- a/po/ja/uvc_streamer.po +++ /dev/null @@ -1,38 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" diff --git a/po/pt/uvc_streamer.po b/po/pt/uvc_streamer.po deleted file mode 100644 index 41b5a75a3..000000000 --- a/po/pt/uvc_streamer.po +++ /dev/null @@ -1,40 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Frames por segundo" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Resolução" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Configurações" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Webcam streaming" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Configure a sua webcam compatível com o Linux-UVC. Coloque no seu browser " -"por ex. http://%s:%i/" diff --git a/po/pt_BR/uvc_streamer.po b/po/pt_BR/uvc_streamer.po deleted file mode 100644 index 2dd5c6ac5..000000000 --- a/po/pt_BR/uvc_streamer.po +++ /dev/null @@ -1,40 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "Frames por segundo" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "Resolução" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "Configurações" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "Webcam streaming" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr "" -"Configure a sua webcam compatível com o Linux-UVC. Coloque no seu browser " -"por ex. http://%s:%i/" diff --git a/po/ru/uvc_streamer.po b/po/ru/uvc_streamer.po deleted file mode 100644 index db79cd8a8..000000000 --- a/po/ru/uvc_streamer.po +++ /dev/null @@ -1,38 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-19 19:36+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#. Frames per second -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:1 -msgid "framespersecond" -msgstr "" - -#. Resolution -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2 -msgid "resolution" -msgstr "" - -#. Settings -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3 -msgid "settings" -msgstr "" - -#. Webcam streaming -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4 -msgid "uvc_streamer" -msgstr "" - -#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. http://%s:%i/ -#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5 -msgid "uvc_streamer_desc" -msgstr ""