trunk: drop uvc_stremaer support, package was removed upstream
This commit is contained in:
parent
66fc0c4692
commit
1973a02329
19 changed files with 0 additions and 628 deletions
|
@ -1,4 +0,0 @@
|
||||||
PO = uvc_streamer
|
|
||||||
|
|
||||||
include ../../build/config.mk
|
|
||||||
include ../../build/module.mk
|
|
|
@ -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
|
|
||||||
}
|
|
|
@ -1,28 +0,0 @@
|
||||||
--[[
|
|
||||||
|
|
||||||
LuCI UVC Streamer
|
|
||||||
(c) 2008 Yanira <forum-2008@email.de>
|
|
||||||
|
|
||||||
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("Webcam streaming"), 60)
|
|
||||||
page.i18n = "uvc_streamer"
|
|
||||||
page.dependent = true
|
|
||||||
end
|
|
|
@ -1,47 +0,0 @@
|
||||||
--[[
|
|
||||||
|
|
||||||
LuCI UVC Streamer
|
|
||||||
(c) 2008 Yanira <forum-2008@email.de>
|
|
||||||
|
|
||||||
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("Webcam streaming"),
|
|
||||||
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("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("Frames per second")).rmempty = true
|
|
||||||
|
|
||||||
s:option(Value, "port", translate("Port")).rmempty = true
|
|
||||||
|
|
||||||
return m
|
|
|
@ -1,7 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
uci batch <<-EOF
|
|
||||||
add ucitrack uvc-streamer
|
|
||||||
set ucitrack.@uvc-streamer[-1].init=uvc-streamer
|
|
||||||
commit ucitrack
|
|
||||||
EOF
|
|
|
@ -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
|
|
|
@ -651,17 +651,6 @@ define Package/luci-app-samba/install
|
||||||
endef
|
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
|
define Package/luci-app-mmc_over_gpio
|
||||||
$(call Package/luci/webtemplate)
|
$(call Package/luci/webtemplate)
|
||||||
DEPENDS+=+luci-admin-full +PACKAGE_luci-app-mmc_over_gpio:kmod-mmc-over-gpio
|
DEPENDS+=+luci-admin-full +PACKAGE_luci-app-mmc_over_gpio:kmod-mmc-over-gpio
|
||||||
|
@ -1118,9 +1107,6 @@ endif
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
|
ifneq ($(CONFIG_PACKAGE_luci-app-samba),)
|
||||||
PKG_SELECTED_MODULES+=applications/luci-samba
|
PKG_SELECTED_MODULES+=applications/luci-samba
|
||||||
endif
|
endif
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-app-uvc_streamer),)
|
|
||||||
PKG_SELECTED_MODULES+=applications/luci-uvc_streamer
|
|
||||||
endif
|
|
||||||
ifneq ($(CONFIG_PACKAGE_luci-app-mmc_over_gpio),)
|
ifneq ($(CONFIG_PACKAGE_luci-app-mmc_over_gpio),)
|
||||||
PKG_SELECTED_MODULES+=applications/luci-mmc_over_gpio
|
PKG_SELECTED_MODULES+=applications/luci-mmc_over_gpio
|
||||||
endif
|
endif
|
||||||
|
@ -1274,7 +1260,6 @@ $(eval $(call BuildPackage,luci-app-upnp))
|
||||||
$(eval $(call BuildPackage,luci-app-ntpc))
|
$(eval $(call BuildPackage,luci-app-ntpc))
|
||||||
$(eval $(call BuildPackage,luci-app-ddns))
|
$(eval $(call BuildPackage,luci-app-ddns))
|
||||||
$(eval $(call BuildPackage,luci-app-samba))
|
$(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-mmc_over_gpio))
|
||||||
$(eval $(call BuildPackage,luci-app-p910nd))
|
$(eval $(call BuildPackage,luci-app-p910nd))
|
||||||
$(eval $(call BuildPackage,luci-app-ushare))
|
$(eval $(call BuildPackage,luci-app-ushare))
|
||||||
|
|
|
@ -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-06-10 03:40+0200\n"
|
|
||||||
"PO-Revision-Date: 2009-05-27 02:07+0200\n"
|
|
||||||
"Last-Translator: Eduard Duran <iopahopa@gmail.com>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Transmissió de càmera web"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: 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. <a href=\"http://%s:%s/\">http://%s:%i/</a>"
|
|
|
@ -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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Webcam Stream"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5
|
|
||||||
msgid "uvc_streamer_desc"
|
|
||||||
msgstr ""
|
|
||||||
"Linux-UVC Webcam Konfiguration. Im Browser z.B. <a href=\"http://%s:%i/"
|
|
||||||
"\">http://%s:%i/</a> laden."
|
|
|
@ -1,40 +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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5
|
|
||||||
msgid ""
|
|
||||||
"Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a "
|
|
||||||
"href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
||||||
msgstr ""
|
|
|
@ -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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Webcam streaming"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: 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. <a "
|
|
||||||
"href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
|
@ -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 <guillermo@geryon.com.ar>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Transmitir via webcam"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: 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: <a href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
|
@ -1,40 +0,0 @@
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
|
||||||
"Report-Msgid-Bugs-To: \n"
|
|
||||||
"POT-Creation-Date: 2009-06-10 03:40+0200\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Webcam streaming"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: 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 sur<a href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
|
@ -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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5
|
|
||||||
msgid ""
|
|
||||||
"Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a "
|
|
||||||
"href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
||||||
msgstr ""
|
|
|
@ -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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5
|
|
||||||
msgid ""
|
|
||||||
"Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a "
|
|
||||||
"href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
||||||
msgstr ""
|
|
|
@ -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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Webcam streaming"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: 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. <a href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
|
@ -1,40 +0,0 @@
|
||||||
#, fuzzy
|
|
||||||
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: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr "Webcam streaming"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: 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. <a href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
|
@ -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 <EMAIL@ADDRESS>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
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 "Webcam streaming"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5
|
|
||||||
msgid ""
|
|
||||||
"Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a "
|
|
||||||
"href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
||||||
msgstr ""
|
|
|
@ -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-08-16 06:59+0200\n"
|
|
||||||
"PO-Revision-Date: 2009-08-13 04:09+0200\n"
|
|
||||||
"Last-Translator: Hong Phuc Dang <dhppat@gmail.com>\n"
|
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\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 "Frames per second"
|
|
||||||
msgstr "Frames trên giây"
|
|
||||||
|
|
||||||
#. Resolution
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:2
|
|
||||||
msgid "Resolution"
|
|
||||||
msgstr "Sự phân giải"
|
|
||||||
|
|
||||||
#. Settings
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:3
|
|
||||||
msgid "Settings"
|
|
||||||
msgstr "Cài đặt "
|
|
||||||
|
|
||||||
#. Webcam streaming
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:4
|
|
||||||
msgid "Webcam streaming"
|
|
||||||
msgstr "Luồng webcam"
|
|
||||||
|
|
||||||
#. Configure your Linux-UVC compatible webcam. Point your browser to e.g. <a href=\"http://%s:%i/\">http://%s:%i/</a>
|
|
||||||
#: applications/luci-uvc_streamer/luasrc/i18n/uvc_streamer.en.lua:5
|
|
||||||
msgid "uvc_streamer_desc"
|
|
||||||
msgstr ""
|
|
||||||
"Định cấu hình của webcam tương thích Linux-UVC. Đưa browser tới ví dụ: <a "
|
|
||||||
"href=\"http://%s:%i/\">http://%s:%i/</a>"
|
|
Loading…
Reference in a new issue