diff options
Diffstat (limited to 'applications/luci-app-wol')
29 files changed, 1486 insertions, 0 deletions
diff --git a/applications/luci-app-wol/Makefile b/applications/luci-app-wol/Makefile new file mode 100644 index 000000000..d935ee903 --- /dev/null +++ b/applications/luci-app-wol/Makefile @@ -0,0 +1,14 @@ +# +# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Support for Wake-on-LAN +LUCI_DEPENDS:=+etherwake + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-wol/luasrc/controller/wol.lua b/applications/luci-app-wol/luasrc/controller/wol.lua new file mode 100644 index 000000000..73a9594b2 --- /dev/null +++ b/applications/luci-app-wol/luasrc/controller/wol.lua @@ -0,0 +1,6 @@ +module("luci.controller.wol", package.seeall) + +function index() + entry({"admin", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90) + entry({"mini", "network", "wol"}, cbi("wol"), _("Wake on LAN"), 90) +end diff --git a/applications/luci-app-wol/luasrc/model/cbi/wol.lua b/applications/luci-app-wol/luasrc/model/cbi/wol.lua new file mode 100644 index 000000000..ece9e4983 --- /dev/null +++ b/applications/luci-app-wol/luasrc/model/cbi/wol.lua @@ -0,0 +1,103 @@ +--[[ +LuCI - Lua Configuration Interface + +Copyright 2010 Jo-Philipp Wich <xm@subsignal.org> + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 +]]-- + +local sys = require "luci.sys" +local fs = require "nixio.fs" + +m = SimpleForm("wol", translate("Wake on LAN"), + translate("Wake on LAN is a mechanism to remotely boot computers in the local network.")) + +m.submit = translate("Wake up host") +m.reset = false + + +local has_ewk = fs.access("/usr/bin/etherwake") +local has_wol = fs.access("/usr/bin/wol") + + +s = m:section(SimpleSection) + +if has_ewk and has_wol then + bin = s:option(ListValue, "binary", translate("WoL program"), + translate("Sometimes only one of the two tools works. If one fails, try the other one")) + + bin:value("/usr/bin/etherwake", "Etherwake") + bin:value("/usr/bin/wol", "WoL") +end + +if has_ewk then + iface = s:option(ListValue, "iface", translate("Network interface to use"), + translate("Specifies the interface the WoL packet is sent on")) + + if has_wol then + iface:depends("binary", "/usr/bin/etherwake") + end + + iface:value("", translate("Broadcast on all interfaces")) + + for _, e in ipairs(sys.net.devices()) do + if e ~= "lo" then iface:value(e) end + end +end + + +host = s:option(Value, "mac", translate("Host to wake up"), + translate("Choose the host to wake up or enter a custom MAC address to use")) + +sys.net.mac_hints(function(mac, name) + host:value(mac, "%s (%s)" %{ mac, name }) +end) + + +function host.write(self, s, val) + local host = luci.http.formvalue("cbid.wol.1.mac") + if host and #host > 0 and host:match("^[a-fA-F0-9:]+$") then + local cmd + local util = luci.http.formvalue("cbid.wol.1.binary") or ( + has_ewk and "/usr/bin/etherwake" or "/usr/bin/wol" + ) + + if util == "/usr/bin/etherwake" then + local iface = luci.http.formvalue("cbid.wol.1.iface") + cmd = "%s -D%s %q" %{ + util, (iface ~= "" and " -i %q" % iface or ""), host + } + else + cmd = "%s -v %q" %{ util, host } + end + + local msg = "<p><strong>%s</strong><br /><br /><code>%s<br /><br />" %{ + translate("Starting WoL utility:"), cmd + } + + local p = io.popen(cmd .. " 2>&1") + if p then + while true do + local l = p:read("*l") + if l then + if #l > 100 then l = l:sub(1, 100) .. "..." end + msg = msg .. l .. "<br />" + else + break + end + end + p:close() + end + + msg = msg .. "</code></p>" + + m.message = msg + end +end + + +return m diff --git a/applications/luci-app-wol/po/ca/wol.po b/applications/luci-app-wol/po/ca/wol.po new file mode 100644 index 000000000..42f7cf75a --- /dev/null +++ b/applications/luci-app-wol/po/ca/wol.po @@ -0,0 +1,58 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2014-07-01 06:15+0200\n" +"Last-Translator: Alex <alexhenrie24@gmail.com>\n" +"Language-Team: none\n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "Difon en totes les interfícies" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" +"Trieu el host per a despertar o introduïu una adreça MAC personalitzada per " +"a utilitzar" + +msgid "Host to wake up" +msgstr "Host per a despertar" + +msgid "Network interface to use" +msgstr "Interfície de xarxa per a utilitzar" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"A vegades, només una de les dues eines funciona. Si un dels falla, prova la " +"altra." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Especifica la interfície en que s'envia el paquet WoL" + +msgid "Starting WoL utility:" +msgstr "Iniciant la utilitat WoL:" + +msgid "Wake on LAN" +msgstr "Despert en LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Despert en LAN és un mecanisme per a iniciar remotament ordinadors en la " +"xarxa local." + +msgid "Wake up host" +msgstr "Desperta al host" + +msgid "WoL program" +msgstr "Programa WoL" diff --git a/applications/luci-app-wol/po/cs/wol.po b/applications/luci-app-wol/po/cs/wol.po new file mode 100644 index 000000000..6ee7f67b8 --- /dev/null +++ b/applications/luci-app-wol/po/cs/wol.po @@ -0,0 +1,55 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2014-05-12 11:17+0200\n" +"Last-Translator: sairon <llamka@gmail.com>\n" +"Language-Team: none\n" +"Language: cs\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "Vysílat broadcastem na všech rozhraních" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Vyberte zařízení, které má být probuzeno, nebo zadejte jeho MAC adresu" + +msgid "Host to wake up" +msgstr "Adresa zařízení, které má být probuzeno" + +msgid "Network interface to use" +msgstr "Použité síťové rozhraní" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Může se stát, že pro dané cílové zařízení bude fungovat pouze jeden z " +"programů. Pokud první selže, vyzkoušejte další." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Zde se nastaví síťové rozhraní, přes které budou zasílány WoL packety." + +msgid "Starting WoL utility:" +msgstr "Spouštím nástroj WoL:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Funkce \"Wake on LAN\" umožňuje vzdáleně spouštět počítače v místní síti." + +msgid "Wake up host" +msgstr "Probudit zařízení" + +msgid "WoL program" +msgstr "Program provádějící WoL" diff --git a/applications/luci-app-wol/po/de/wol.po b/applications/luci-app-wol/po/de/wol.po new file mode 100644 index 000000000..21ebc8f2a --- /dev/null +++ b/applications/luci-app-wol/po/de/wol.po @@ -0,0 +1,58 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2011-06-11 01:37+0200\n" +"Last-Translator: Jo-Philipp <xm@subsignal.org>\n" +"Language-Team: none\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Broadcast on all interfaces" +msgstr "Auf allen Schnittstellen senden" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" +"Zu startenden Rechner selektieren oder benutzerdefinierte MAC-Adresse angeben" + +msgid "Host to wake up" +msgstr "Anzuschaltender Rechner" + +msgid "Network interface to use" +msgstr "Verwendete Schnittstelle" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Manchmal funktioniert nur eines der beiden Programme. Wenn eines " +"fehlschlägt, versuchen Sie das Andere." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" +"Selektiert die Netzwerkschnittstelle auf der das WoL-Paket versendet wird" + +msgid "Starting WoL utility:" +msgstr "Starte WoL-Programm:" + +msgid "Wake on LAN" +msgstr "Wake-on-LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake-on-LAN ist ein Mechanismus um Geräte im lokalen Netzwerk ferngesteuert " +"anzuschalten." + +msgid "Wake up host" +msgstr "Rechner anschalten" + +msgid "WoL program" +msgstr "WoL-Programm" diff --git a/applications/luci-app-wol/po/el/wol.po b/applications/luci-app-wol/po/el/wol.po new file mode 100644 index 000000000..cb7c3b971 --- /dev/null +++ b/applications/luci-app-wol/po/el/wol.po @@ -0,0 +1,49 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2010-04-19 00:29+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/en/wol.po b/applications/luci-app-wol/po/en/wol.po new file mode 100644 index 000000000..48c7302a3 --- /dev/null +++ b/applications/luci-app-wol/po/en/wol.po @@ -0,0 +1,50 @@ +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+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" + +msgid "Broadcast on all interfaces" +msgstr "Broadcast on all interfaces" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Choose the host to wake up or enter a custom MAC address to use" + +msgid "Host to wake up" +msgstr "Host to wake up" + +msgid "Network interface to use" +msgstr "Network interface to use" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Sometimes only one of both tools work. If one of fails, try the other one" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Specifies the interface the WoL packet is sent on" + +msgid "Starting WoL utility:" +msgstr "Starting WoL utility:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." + +msgid "Wake up host" +msgstr "Wake up host" + +msgid "WoL program" +msgstr "WoL program" diff --git a/applications/luci-app-wol/po/es/wol.po b/applications/luci-app-wol/po/es/wol.po new file mode 100644 index 000000000..f5bcf6bf4 --- /dev/null +++ b/applications/luci-app-wol/po/es/wol.po @@ -0,0 +1,57 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2012-08-22 21:41+0200\n" +"Last-Translator: José Vicente <josevteg@gmail.com>\n" +"Language-Team: none\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "Propagar en todas las interfaces" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Elija la máquina a despertar o introduzca su dirección MAC" + +msgid "Host to wake up" +msgstr "Máquina a despertar" + +msgid "Network interface to use" +msgstr "Interfaz de red a utilizar" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"A veces, sólo se inicia una de las dos herramientas. Si una falla, intente " +"con la otra" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Especifica la interfaz donde se envían los paquetes WoL" + +msgid "Starting WoL utility:" +msgstr "Iniciando utilidad WoL:" + +# Wake on LAN es un término habitualmente utilizado en el español para referirse a esa misma función de encendido remoto a través de la red +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN permite arrancar ordenadores conectados en una red local de " +"forma remota." + +msgid "Wake up host" +msgstr "Despertar máquina" + +msgid "WoL program" +msgstr "Programa WoL" diff --git a/applications/luci-app-wol/po/fr/wol.po b/applications/luci-app-wol/po/fr/wol.po new file mode 100644 index 000000000..0bed86d8f --- /dev/null +++ b/applications/luci-app-wol/po/fr/wol.po @@ -0,0 +1,57 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2011-11-23 22:22+0200\n" +"Last-Translator: fredb <fblistes+luci@free.fr>\n" +"Language-Team: French\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Broadcast on all interfaces" +msgstr "Émettre sur toutes les interfaces" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Choisir l'hôte à réveiller ou entrer une adresse MAC à utiliser" + +msgid "Host to wake up" +msgstr "Hôte à réveiller" + +msgid "Network interface to use" +msgstr "Interface réseau à utiliser" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Parfois seul un des deux outils fonctionne. Si l'un échoue, essayez l'autre" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" +"Spécifie l'interface sur laquelle le paquet <abbr title=\"Wake on LAN\">WoL</" +"abbr> est envoyé" + +msgid "Starting WoL utility:" +msgstr "Démarrer l'utilitaire <abbr title=\"Wake on LAN\">WoL</abbr> :" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN est un mécanisme pour démarrer à distance les ordinateurs du " +"réseau local." + +msgid "Wake up host" +msgstr "Réveiller l'hôte" + +msgid "WoL program" +msgstr "Programme <abbr title=\"Wake on LAN\">WoL</abbr>" diff --git a/applications/luci-app-wol/po/he/wol.po b/applications/luci-app-wol/po/he/wol.po new file mode 100644 index 000000000..cb7c3b971 --- /dev/null +++ b/applications/luci-app-wol/po/he/wol.po @@ -0,0 +1,49 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2010-04-19 00:29+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/hu/wol.po b/applications/luci-app-wol/po/hu/wol.po new file mode 100644 index 000000000..f47191cba --- /dev/null +++ b/applications/luci-app-wol/po/hu/wol.po @@ -0,0 +1,59 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2012-04-06 10:42+0200\n" +"Last-Translator: juhosg <juhosg@openwrt.org>\n" +"Language-Team: none\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Broadcast on all interfaces" +msgstr "Szórás az összes interfészen" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" +"Válassza ki a felélesztendő gépet, vagy adja meg a haszálandó egyedi MAC " +"címet" + +msgid "Host to wake up" +msgstr "Felélesztendő gép" + +msgid "Network interface to use" +msgstr "Használandó interfész" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Néha csak az egyik eszköz működik. Ha valamelyik nem működik, próbálja ki a " +"másikat." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" +"Megadja azt az interfészt amelyiken keresztül a WoL csomag kiküldésre kerül" + +msgid "Starting WoL utility:" +msgstr "WoL segédprogram elindítása:" + +msgid "Wake on LAN" +msgstr "Felélesztés hálózaton keresztül" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"A felélesztés hálózaton keresztül a helyi hálózatban lévő számítógépek " +"távoli elindítására szolgáló módszer." + +msgid "Wake up host" +msgstr "Gép felélesztése" + +msgid "WoL program" +msgstr "WoL program" diff --git a/applications/luci-app-wol/po/it/wol.po b/applications/luci-app-wol/po/it/wol.po new file mode 100644 index 000000000..63ac0d8dc --- /dev/null +++ b/applications/luci-app-wol/po/it/wol.po @@ -0,0 +1,56 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2013-02-03 14:01+0200\n" +"Last-Translator: Francesco <3gasas@gmail.com>\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "Broadcast su tutte le interfaccie" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Scegli l'host da \"svegliare\" o inserisci il MAC address da usare" + +msgid "Host to wake up" +msgstr "Host da \"svegliare\"" + +msgid "Network interface to use" +msgstr "Interfacci di rete da usare" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Avvolte solo uno dei due tools funziona. Se uno fallisce, tenta di usare il " +"secondo" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Secifica l'interfaccia su cui il pacchetto \"magico\" WoL è inviato" + +msgid "Starting WoL utility:" +msgstr "Avvia l'utility WoL:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN è un meccanismo che ti permette di avviare da remoto un computer " +"collegato alla LAN." + +msgid "Wake up host" +msgstr "Sveglia Host" + +msgid "WoL program" +msgstr "Programma WoL" diff --git a/applications/luci-app-wol/po/ja/wol.po b/applications/luci-app-wol/po/ja/wol.po new file mode 100644 index 000000000..c18b83193 --- /dev/null +++ b/applications/luci-app-wol/po/ja/wol.po @@ -0,0 +1,56 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2013-10-06 17:12+0200\n" +"Last-Translator: Kentaro <kentaro.matsuyama@gmail.com>\n" +"Language-Team: none\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "全てのインターフェースへブロードキャスト" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "起動するホストのMACアドレスを選択または入力してください" + +msgid "Host to wake up" +msgstr "起動するホストを指定" + +msgid "Network interface to use" +msgstr "使用するネットワークインターフェース" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"片方のツールのみが動作する場合があるため、片方が失敗する場合は別のツールを試" +"してみてください。" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "WoLパケットを送信するインタフェースを指定" + +msgid "Starting WoL utility:" +msgstr "WoLユーティリティを起動:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LANはローカルネットワーク内のコンピュータを遠隔で起動させることができ" +"る機能です。" + +msgid "Wake up host" +msgstr "ホストを起動" + +msgid "WoL program" +msgstr "WoLプログラム" diff --git a/applications/luci-app-wol/po/ms/wol.po b/applications/luci-app-wol/po/ms/wol.po new file mode 100644 index 000000000..74380f27b --- /dev/null +++ b/applications/luci-app-wol/po/ms/wol.po @@ -0,0 +1,48 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2010-04-19 00:29+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/no/wol.po b/applications/luci-app-wol/po/no/wol.po new file mode 100644 index 000000000..2f0a8ad63 --- /dev/null +++ b/applications/luci-app-wol/po/no/wol.po @@ -0,0 +1,47 @@ +msgid "" +msgstr "" +"Last-Translator: Lars Hardy <lars.hardy@gmail.com>\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Broadcast on all interfaces" +msgstr "Send på alle grensesnitt" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" +"Velg hvilken vert som skal startes opp, eller angi en MAC adresse som skal " +"brukes" + +msgid "Host to wake up" +msgstr "Vert som skal startes opp" + +msgid "Network interface to use" +msgstr "Nettverksgrensesnitt" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Noen ganger virker bare ett av disse verktøyene. Hvis ett av de ikke lykkes " +"med å starte opp verten kan du prøve det andre." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Angir grensesnittet som WoL pakken blir sendt ut på" + +msgid "Starting WoL utility:" +msgstr "Starter WoL:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN er en mekanisme for å starte opp datamaskiner i det lokale " +"nettverket." + +msgid "Wake up host" +msgstr "Start vert" + +msgid "WoL program" +msgstr "WoL programm" diff --git a/applications/luci-app-wol/po/pl/wol.po b/applications/luci-app-wol/po/pl/wol.po new file mode 100644 index 000000000..c599b9ec3 --- /dev/null +++ b/applications/luci-app-wol/po/pl/wol.po @@ -0,0 +1,57 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2011-08-25 19:04+0200\n" +"Last-Translator: Staszek <fistaszek@tlen.pl>\n" +"Language-Team: none\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Broadcast on all interfaces" +msgstr "Rozgłaszaj na wszystkie interfejsy" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Wybierz hosta z listy lub podaj adres MAC maszyny do wybudzenia" + +msgid "Host to wake up" +msgstr "Host do wybudzenia" + +msgid "Network interface to use" +msgstr "Użyty interfejs sieciowy" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Czasem działa tylko jedno z narzędzi. Jeżeli jedno z nich nie zadziała, " +"proszę użyć drugiego." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Definiuje interfejs, na który będzie wysłany pakiet WoL" + +msgid "Starting WoL utility:" +msgstr "Uruchamianie narzędzia WoL:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"\"Wake on LAN\" to mechanizm służący do zdalnego włączania komputerów w " +"sieci lokalnej." + +msgid "Wake up host" +msgstr "Wybudź hosta" + +msgid "WoL program" +msgstr "Narzędzie WoL" diff --git a/applications/luci-app-wol/po/pt-br/wol.po b/applications/luci-app-wol/po/pt-br/wol.po new file mode 100644 index 000000000..6a21a855b --- /dev/null +++ b/applications/luci-app-wol/po/pt-br/wol.po @@ -0,0 +1,56 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2011-10-11 20:31+0200\n" +"Last-Translator: Luiz Angelo <luizluca@gmail.com>\n" +"Language-Team: none\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Broadcast on all interfaces" +msgstr "Broadcast em todas as interfaces" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Escolha o computador para acordar ou entre com um endereço MAC" + +msgid "Host to wake up" +msgstr "Computador para acordar" + +msgid "Network interface to use" +msgstr "Interfaces de rede para usar" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Algumas vezes, somente uma das ferramentas funciona. Se uma delas falhar, " +"tente a outra" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Especifica a interface para onde os pacotes de WoL serão enviados" + +msgid "Starting WoL utility:" +msgstr "Iniciando utilitário WoL:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN é um mecanismo para acordar/ligar remotamente computadores na " +"rede local." + +msgid "Wake up host" +msgstr "Acorda um computador" + +msgid "WoL program" +msgstr "Programa WoL" diff --git a/applications/luci-app-wol/po/pt/wol.po b/applications/luci-app-wol/po/pt/wol.po new file mode 100644 index 000000000..540e54369 --- /dev/null +++ b/applications/luci-app-wol/po/pt/wol.po @@ -0,0 +1,54 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2013-05-30 22:54+0200\n" +"Last-Translator: joao.f.vieira <joao.f.vieira@gmail.com>\n" +"Language-Team: none\n" +"Language: pt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "Broadcast em todas as interfaces" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Escolha ao host a acordar ou escreva um MAC personalizado a ser usado" + +msgid "Host to wake up" +msgstr "Host a acordar" + +msgid "Network interface to use" +msgstr "Interface de rede a usar" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "Às vezes só uma das ferramentas funciona. Se uma falhar, tente a outra" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Especifica a interface pela qual é enviado o pacota WoL" + +msgid "Starting WoL utility:" +msgstr "A iniciar a ferramenta WoL" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Wake on LAN é um mecanismo para remotamente iniciar computadores numa rede " +"local." + +msgid "Wake up host" +msgstr "Acordar host" + +msgid "WoL program" +msgstr "Programa de WoL" diff --git a/applications/luci-app-wol/po/ro/wol.po b/applications/luci-app-wol/po/ro/wol.po new file mode 100644 index 000000000..154a3f9fb --- /dev/null +++ b/applications/luci-app-wol/po/ro/wol.po @@ -0,0 +1,57 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2011-10-07 16:47+0200\n" +"Last-Translator: Daniel <daniel.petre@pitesti.rcs-rds.ro>\n" +"Language-Team: none\n" +"Language: ro\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2);;\n" +"X-Generator: Pootle 2.0.4\n" + +msgid "Broadcast on all interfaces" +msgstr "Broadcast pe toate interfetele" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Alege statie pentru \"trezire\" sau introdu o adresa MAC de folosit" + +msgid "Host to wake up" +msgstr "Statie pentru \"trezire\"" + +msgid "Network interface to use" +msgstr "Interfata de retea pentru utilizare" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Uneori doar una dintre metode functioneaza. Daca se intampla, incearc-o pe " +"cealalta" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Specifica interfata prin care pachetele WoL sunt trimise" + +msgid "Starting WoL utility:" +msgstr "Pornire utilitar WoL:" + +msgid "Wake on LAN" +msgstr "Activarea pe LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Activarea pe LAN e un mecanism pentru a porni de la distanta computere de pe " +"retea." + +msgid "Wake up host" +msgstr "Statie de \"trezire\"" + +msgid "WoL program" +msgstr "Program WoL" diff --git a/applications/luci-app-wol/po/ru/wol.po b/applications/luci-app-wol/po/ru/wol.po new file mode 100644 index 000000000..9a8436601 --- /dev/null +++ b/applications/luci-app-wol/po/ru/wol.po @@ -0,0 +1,59 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: LuCI: wol\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2012-08-15 12:07+0300\n" +"Last-Translator: Roman A. aka BasicXP <x12ozmouse@ya.ru>\n" +"Language-Team: Russian <x12ozmouse@ya.ru>\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.4\n" +"X-Poedit-SourceCharset: UTF-8\n" + +msgid "Broadcast on all interfaces" +msgstr "Использовать широковещательную передачу на все интерфейсы" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "Выберите хост, который необходимо разбудить, или введите его MAC-адрес" + +msgid "Host to wake up" +msgstr "Хост, который необходимо разбудить" + +msgid "Network interface to use" +msgstr "Используемый сетевой интерфейс" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Иногда только одна из двух утилит работает. В случае ошибки, попробуйте " +"использовать другую" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Определяет интерфейс, по которому будут посланы пакеты WoL" + +msgid "Starting WoL utility:" +msgstr "Запуск WoL утилиты:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Пробуждение по LAN (Wake on LAN, WoL) - технология, позволяющая удалённо " +"«разбудить» (включить) компьютер посредством отправки через локальную сеть " +"специальным образом сформированного пакета данных." + +msgid "Wake up host" +msgstr "Разбудить хост" + +msgid "WoL program" +msgstr "Программа WoL" diff --git a/applications/luci-app-wol/po/sk/wol.po b/applications/luci-app-wol/po/sk/wol.po new file mode 100644 index 000000000..eea59ebc3 --- /dev/null +++ b/applications/luci-app-wol/po/sk/wol.po @@ -0,0 +1,44 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/sv/wol.po b/applications/luci-app-wol/po/sv/wol.po new file mode 100644 index 000000000..44b59958d --- /dev/null +++ b/applications/luci-app-wol/po/sv/wol.po @@ -0,0 +1,45 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: sv\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/templates/wol.pot b/applications/luci-app-wol/po/templates/wol.pot new file mode 100644 index 000000000..1305c5388 --- /dev/null +++ b/applications/luci-app-wol/po/templates/wol.pot @@ -0,0 +1,37 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/tr/wol.po b/applications/luci-app-wol/po/tr/wol.po new file mode 100644 index 000000000..9be6934cf --- /dev/null +++ b/applications/luci-app-wol/po/tr/wol.po @@ -0,0 +1,49 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2010-04-19 00:29+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/uk/wol.po b/applications/luci-app-wol/po/uk/wol.po new file mode 100644 index 000000000..c09d144b3 --- /dev/null +++ b/applications/luci-app-wol/po/uk/wol.po @@ -0,0 +1,59 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2013-05-26 19:00+0200\n" +"Last-Translator: Yurii <yuripet@gmail.com>\n" +"Language-Team: none\n" +"Language: uk\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" +"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "Широкомовна трансляція на всіх інтерфейсах" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" +"Виберіть комп'ютер, який необхідно розбудити або введіть користувацьку MAC-" +"адресу" + +msgid "Host to wake up" +msgstr "Комп'ютер, який необхідно розбудити" + +msgid "Network interface to use" +msgstr "Використовувати мережевий інтерфейс" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" +"Іноді працює тільки одна з цих двох утиліт. Якщо одна з них не працює, " +"спробуйте іншу." + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "Визначає інтерфейс, яким буде надіслано пакет WoL" + +msgid "Starting WoL utility:" +msgstr "Запуск утиліти WoL:" + +msgid "Wake on LAN" +msgstr "Wake on LAN" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" +"Пробудження через LAN (Wake on LAN) є технологією, що дає змогу віддалено " +"\"будити\" (вмикати) комп'ютери у локальній мережі." + +msgid "Wake up host" +msgstr "Розбудити комп'ютер" + +msgid "WoL program" +msgstr "Программа WoL" diff --git a/applications/luci-app-wol/po/vi/wol.po b/applications/luci-app-wol/po/vi/wol.po new file mode 100644 index 000000000..9be6934cf --- /dev/null +++ b/applications/luci-app-wol/po/vi/wol.po @@ -0,0 +1,49 @@ +# Generated from applications/luci-wol/luasrc/model/cbi/wol.lua +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2010-04-19 00:29+0200\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +msgid "Broadcast on all interfaces" +msgstr "" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "" + +msgid "Host to wake up" +msgstr "" + +msgid "Network interface to use" +msgstr "" + +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "" + +msgid "Starting WoL utility:" +msgstr "" + +msgid "Wake on LAN" +msgstr "" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "" + +msgid "Wake up host" +msgstr "" + +msgid "WoL program" +msgstr "" diff --git a/applications/luci-app-wol/po/zh-cn/wol.po b/applications/luci-app-wol/po/zh-cn/wol.po new file mode 100644 index 000000000..6d9cc7227 --- /dev/null +++ b/applications/luci-app-wol/po/zh-cn/wol.po @@ -0,0 +1,50 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-04-19 00:29+0200\n" +"PO-Revision-Date: 2012-06-21 17:52+0200\n" +"Last-Translator: phantasm131 <phantasm131@gmail.com>\n" +"Language-Team: QQ Group 75543259 <axishero@foxmail.com>\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "向所有接口广播" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "选择要唤醒的主机或者输入自定义mac地址" + +msgid "Host to wake up" +msgstr "选择要唤醒的主机" + +msgid "Network interface to use" +msgstr "选择使用的网络接口" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "有时只有一个工具生效。如果其中一个失效,请尝试另一个" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "限定网络唤醒数据包将被发送到的接口" + +msgid "Starting WoL utility:" +msgstr "正在启动网络唤醒工具" + +msgid "Wake on LAN" +msgstr "网络唤醒" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "网络唤醒提供了从远程启动本地网络内计算机的机制。" + +msgid "Wake up host" +msgstr "唤醒主机" + +msgid "WoL program" +msgstr "网络唤醒程序" diff --git a/applications/luci-app-wol/po/zh-tw/wol.po b/applications/luci-app-wol/po/zh-tw/wol.po new file mode 100644 index 000000000..ee290ec2e --- /dev/null +++ b/applications/luci-app-wol/po/zh-tw/wol.po @@ -0,0 +1,48 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2014-05-14 10:25+0200\n" +"Last-Translator: omnistack <omnistack@gmail.com>\n" +"Language-Team: none\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Pootle 2.0.6\n" + +msgid "Broadcast on all interfaces" +msgstr "廣播到所有介面" + +msgid "Choose the host to wake up or enter a custom MAC address to use" +msgstr "叫醒訂選的主機或者打入特定的MAC位址以便使用" + +msgid "Host to wake up" +msgstr "要喚醒主機清單" + +msgid "Network interface to use" +msgstr "使用的網路介面" + +#, fuzzy +msgid "" +"Sometimes only one of the two tools works. If one fails, try the other one" +msgstr "某些時候全部工具裡面只有一個發生作用,試試另外一個" + +msgid "Specifies the interface the WoL packet is sent on" +msgstr "指定WoL喚醒封包將傳到哪個介面" + +msgid "Starting WoL utility:" +msgstr "啟用喚醒工具:" + +msgid "Wake on LAN" +msgstr "LAN區網喚醒" + +msgid "" +"Wake on LAN is a mechanism to remotely boot computers in the local network." +msgstr "Wol就是在本地網路中針對遠端開機電腦喚醒的機制" + +msgid "Wake up host" +msgstr "喚醒主機" + +msgid "WoL program" +msgstr "Wol喚醒程式" |