From: Manuel Munz Date: Tue, 18 Oct 2011 09:23:27 +0000 (+0000) Subject: applications/luci-splash: Finish translation work and move translation strings to... X-Git-Tag: 0.11.0~1518 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=241c9bcbef193940ded379d5db508eb07cc88d01 applications/luci-splash: Finish translation work and move translation strings to own file --- diff --git a/applications/luci-splash/Makefile b/applications/luci-splash/Makefile index a4f7c76ef..6e625c0e5 100644 --- a/applications/luci-splash/Makefile +++ b/applications/luci-splash/Makefile @@ -1,4 +1,4 @@ -PO = +PO = splash include ../../build/config.mk include ../../build/module.mk diff --git a/applications/luci-splash/luasrc/controller/splash/splash.lua b/applications/luci-splash/luasrc/controller/splash/splash.lua index 71a61bdbf..a41256a09 100644 --- a/applications/luci-splash/luasrc/controller/splash/splash.lua +++ b/applications/luci-splash/luasrc/controller/splash/splash.lua @@ -1,4 +1,5 @@ module("luci.controller.splash.splash", package.seeall) +luci.i18n.loadc("splash") function index() entry({"admin", "services", "splash"}, cbi("splash/splash"), _("Client-Splash"), 90).i18n = "freifunk" diff --git a/applications/luci-splash/luasrc/model/cbi/splash/splash.lua b/applications/luci-splash/luasrc/model/cbi/splash/splash.lua index 145b16d5b..0e3e6ed2b 100644 --- a/applications/luci-splash/luasrc/model/cbi/splash/splash.lua +++ b/applications/luci-splash/luasrc/model/cbi/splash/splash.lua @@ -1,24 +1,31 @@ --- ToDo: Translate, Add descriptions and help texts +--[[ +LuCI - Lua Configuration Interface + +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 +]]-- + require("luci.model.uci") +luci.i18n.loadc("splash") -m = Map("luci_splash", "Client-Splash", [[Client-Splash ist das Freifunk Hotspot-Authentifizierungs-System.]]) +m = Map("luci_splash", translate("Client-Splash"), translate("Client-Splash is a hotspot authentification system for wireless mesh networks.")) -s = m:section(NamedSection, "general", "core", "Allgemein") +s = m:section(NamedSection, "general", "core", translate("General")) s.addremove = false -s:option(Value, "leasetime", "Freigabezeit", "h") +s:option(Value, "leasetime", translate("Clearance time"), translate("Clients that have accepted the splash are allowed to use the network for that many hours.")) -s:option(Value, "limit_up", "Upload-Limitierung", "Kilobyte/s - limitiert die Upload-Geschwindigkeit von Clients") -s:option(Value, "limit_down", "Download-Limitierung", "Kilobyte/s - limitiert die Download-Geschwindigkeit von Clients") +s:option(Value, "limit_up", translate("Upload limit"), translate("Clients upload speed is limited to this value (kbyte/s)")) +s:option(Value, "limit_down", translate("Download limit"), translate("Clients download speed is limited to this value (kbyte/s)")) s:option(DummyValue, "_tmp", "", - "Bandbreitenlimitierung für Clients wird aktiviert wenn sowohl Up- als auch " .. - "Download-Geschwindigkeit angegeben werden. Auf 0 setzen um die Limitierung zu deaktivieren. " .. - "Clients in der Whitelist werden nicht limitiert.") + translate("Bandwidth limit for clients is only activated when both up- and download limit are set. " .. + "Use a value of 0 here to completely disable this limitation. Whitelisted clients are not limited.")) -s = m:section(TypedSection, "iface", "Schnittstellen", - "Bestimmt die Schnittstellen auf denen Splashing aktiviert werden soll. " .. - "Diese Einstellungen müssen normalerweise nicht angepasst werden.") +s = m:section(TypedSection, "iface", translate("Interfaces"), translate("Interfaces that are used for Splash.")) s.template = "cbi/tblsection" s.addremove = true @@ -26,16 +33,16 @@ s.anonymous = true local uci = luci.model.uci.cursor() -zone = s:option(ListValue, "zone", "Firewallzone", - "Splash-Regeln in der angegebenen Zone eingliedern") +zone = s:option(ListValue, "zone", translate("Firewall zone"), + translate("Splash rules are integrated in this firewall zone")) uci:foreach("firewall", "zone", function (section) zone:value(section.name) end) -iface = s:option(ListValue, "network", "Netzwerk", - "Client-Verkehr auf der angegebenen Schnittstelle abfangen") +iface = s:option(ListValue, "network", translate("Network"), + translate("Intercept client traffic on this Interface")) uci:foreach("network", "interface", function (section) @@ -50,34 +57,30 @@ uci:foreach("network", "alias", end) -s = m:section(TypedSection, "whitelist", "Whitelist", - "MAC-Adressen in dieser Liste werden automatisch freigegeben und unterliegen " .. - "keiner Bandbreitenlimitierung.") +s = m:section(TypedSection, "whitelist", translate("Whitelist"), + translate("MAC addresses of whitelisted clients. These do not need to accept the splash and and are not bandwidth limited.")) s.template = "cbi/tblsection" s.addremove = true s.anonymous = true -s:option(Value, "mac", "MAC-Adresse") +s:option(Value, "mac", translate ("MAC Address")) -s = m:section(TypedSection, "blacklist", "Blacklist", - "MAC-Adressen in dieser Liste werden automatisch gesperrt. Verkehr von diesen " .. - "Adressen wird komplett verworfen und es wird kein Verbindungsaufbau via WLAN " .. - "zugelassen.") +s = m:section(TypedSection, "blacklist", translate("Blacklist"), + translate("MAC addresses in this list are blocked.")) s.template = "cbi/tblsection" s.addremove = true s.anonymous = true -s:option(Value, "mac", "MAC-Adresse") +s:option(Value, "mac", translate ("MAC Address")) -s = m:section(TypedSection, "subnet", "Freigegebene Subnetze", - "Hier eingetragene Subnetze oder Host-Adressen sind vom Splash-Vorgang ausgenommen.") +s = m:section(TypedSection, "subnet", translate("Allowed hosts/subnets"), + translate("Hosts and Networks that are listed here are excluded from splashing, i.e. they are always allowed.")) s.template = "cbi/tblsection" s.addremove = true s.anonymous = true -s:option(Value, "ipaddr", "IP-Adresse") -s:option(Value, "netmask", "Netzmaske", "optional bei Host-Adressen").rmempty = true - +s:option(Value, "ipaddr", translate("IP Address")) +s:option(Value, "netmask", translate("Netmask"), translate("optional when using host addresses")).rmempty = true return m diff --git a/applications/luci-splash/luasrc/model/cbi/splash/splashtext.lua b/applications/luci-splash/luasrc/model/cbi/splash/splashtext.lua index 5f75e8015..453942152 100644 --- a/applications/luci-splash/luasrc/model/cbi/splash/splashtext.lua +++ b/applications/luci-splash/luasrc/model/cbi/splash/splashtext.lua @@ -13,6 +13,8 @@ You may obtain a copy of the License at ]]-- local fs = require "nixio.fs" +luci.i18n.loadc("splash") + local splashtextfile = "/usr/lib/luci-splash/splashtext.html" f = SimpleForm("splashtext", translate("Edit Splash text"), translate("You can change the text that is displayed to clients here.
It is possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, ###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it.")) diff --git a/applications/luci-splash/luasrc/view/admin_status/splash.htm b/applications/luci-splash/luasrc/view/admin_status/splash.htm index 70e6c06cf..1b55e7b27 100644 --- a/applications/luci-splash/luasrc/view/admin_status/splash.htm +++ b/applications/luci-splash/luasrc/view/admin_status/splash.htm @@ -19,6 +19,7 @@ local ipt = require "luci.sys.iptparser".IptParser() local uci = require "luci.model.uci".cursor_state() local wat = require "luci.tools.webadmin" local fs = require "nixio.fs" +luci.i18n.loadc("splash") local clients = { } local leasetime = tonumber(uci:get("luci_splash", "general", "leasetime") or 1) * 60 * 60 diff --git a/po/ca/freifunk.po b/po/ca/freifunk.po index 35b84a024..9e80e5501 100644 --- a/po/ca/freifunk.po +++ b/po/ca/freifunk.po @@ -1,5 +1,3 @@ -# freifunk.pot -# generated from ./modules/freifunk/luasrc/i18n/freifunk.en.lua msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -14,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "Clients actius" - msgid "BSSID" msgstr "" @@ -47,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "Client-Splash" - msgid "Community" msgstr "" @@ -74,9 +63,6 @@ msgstr "Coordenades" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -92,9 +78,6 @@ msgstr "Adreça electrònica" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -131,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "Nom de màquina" -msgid "IP Address" -msgstr "Adreça IP" - msgid "If selected then the default content element is not shown." msgstr "" @@ -176,9 +156,6 @@ msgstr "Localització" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "Adreça MAC" - msgid "Map" msgstr "" @@ -206,9 +183,6 @@ msgstr "" msgid "Nickname" msgstr "Nickname" -msgid "No clients connected" -msgstr "No hi ha cap client connectat" - msgid "No default routes known." msgstr "" @@ -238,9 +212,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "Política" - msgid "Power" msgstr "" @@ -259,9 +230,6 @@ msgstr "Nom real" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -279,9 +247,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -328,12 +293,6 @@ msgstr "" msgid "This is the access point" msgstr "Això és un punt d'accés" -msgid "Time remaining" -msgstr "Temps restant" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -359,13 +318,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -386,9 +338,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "a la llista negra" - msgid "buffered" msgstr "" @@ -398,29 +347,27 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "expirat" - msgid "free" msgstr "" -msgid "splashed" -msgstr "splashed" - -msgid "temporarily blocked" -msgstr "blocat temporalment" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "desconegut" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "a la llista blanca" - msgid "wireless settings" msgstr "" + + + + + + + + + + + + + diff --git a/po/ca/splash.po b/po/ca/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/ca/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/de/freifunk.po b/po/de/freifunk.po index c25258831..ae8012e28 100644 --- a/po/de/freifunk.po +++ b/po/de/freifunk.po @@ -1,5 +1,3 @@ -# freifunk.pot -# generated from ./modules/freifunk/luasrc/i18n/freifunk.en.lua msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -15,12 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.4\n" -msgid "Accept" -msgstr "Akzeptieren" - -msgid "Active Clients" -msgstr "Verbundene Clients" - msgid "BSSID" msgstr "" @@ -50,9 +42,6 @@ msgstr "" msgid "Client network size" msgstr "Größe des DHCP-Netzes" -msgid "Client-Splash" -msgstr "Client-Splash" - msgid "Community" msgstr "" @@ -62,7 +51,6 @@ msgstr "Community Profile" msgid "Community settings" msgstr "Community Einstellungen" -#, fuzzy msgid "Confirm Upgrade" msgstr "Updatevorgang starten" @@ -78,9 +66,6 @@ msgstr "Geokoordinaten" msgid "Country code" msgstr "Ländercode" -msgid "Decline" -msgstr "Ablehnen" - msgid "Default routes" msgstr "Standardrouten" @@ -96,9 +81,6 @@ msgstr "E-Mail" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "Splash-Text bearbeiten" - msgid "Edit index page" msgstr "Indexseite bearbeiten" @@ -135,9 +117,6 @@ msgstr "" msgid "Hostname" msgstr "Hostname" -msgid "IP Address" -msgstr "IP-Adresse" - msgid "If selected then the default content element is not shown." msgstr "" "Wird diese Option gewählt dann wird das standardmässige Inhaltselement nicht " @@ -183,9 +162,6 @@ msgstr "Standort" msgid "Longitude" msgstr "Länge" -msgid "MAC Address" -msgstr "MAC-Adresse" - msgid "Map" msgstr "Karte" @@ -213,9 +189,6 @@ msgstr "Netzwerk aus dem IPs für Clients vergeben werden" msgid "Nickname" msgstr "Pseudonym" -msgid "No clients connected" -msgstr "Keine Clients verbunden" - msgid "No default routes known." msgstr "Es sind keine Standardrouten bekannt." @@ -247,9 +220,6 @@ msgstr "Bitte gib hier deine Kontaktdaten an." msgid "Please set your contact information" msgstr "Bitte gib deine Kontaktinformationen ein" -msgid "Policy" -msgstr "Zugriffsberechtigung" - msgid "Power" msgstr "" @@ -268,9 +238,6 @@ msgstr "Name" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -290,9 +257,6 @@ msgstr "" msgid "Source" msgstr "Quelle" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "Updatevorgang starten" @@ -347,12 +311,6 @@ msgstr "" msgid "This is the access point" msgstr "Dies ist der Zugangspunkt " -msgid "Time remaining" -msgstr "Verbleibende Zeit" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "Einstellungen zum Update" @@ -379,18 +337,6 @@ msgid "Wireless Overview" msgstr "WLAN Übersicht" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" -"Hier kann der Text geändert werden, der Clients vom Splash angezeigt wird." -"
Folgende Marker können verwendet werden: ###COMMUNITY###, " -"###COMMUNITY_URL###, ###LEASETIME### und ###ACCEPT###.
Klicke nach dem " -"Abspeichern hier um den neuen Splash-Text " -"anzuzeigen." - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -416,9 +362,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "und fülle alle benötigten Felder aus." -msgid "blacklisted" -msgstr "dauerhaft gesperrt" - msgid "buffered" msgstr "" @@ -428,81 +371,47 @@ msgstr "" msgid "e.g." msgstr "z.B." -msgid "expired" -msgstr "abgelaufen" - msgid "free" msgstr "" -msgid "splashed" -msgstr "normal splashen" - -msgid "temporarily blocked" -msgstr "vorübergehend gesperrt" - msgid "to disable it." msgstr "um es auszuschalten." -msgid "unknown" -msgstr "unbekannt" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "dauerhaft freigeschaltet" - msgid "wireless settings" msgstr "Drahtloseinstellungen" -#~ msgid "You really should provide your address here!" -#~ msgstr "Bitte gib hier deine Adresse an" -#~ msgid "Node" -#~ msgstr "Knoten" -#~ msgid "Free" -#~ msgstr "Frei" -#~ msgid "Buffers" -#~ msgstr "Gepuffert" -#~ msgid "Cached" -#~ msgstr "Gecached" -#~ msgid "Total" -#~ msgstr "Total" -#~ msgid "Traffic (down/up)" -#~ msgstr "Verkehr (Download/Upload)" -#~ msgid "P2P-Block" -#~ msgstr "P2P-Block" -#~ msgid "" -#~ "P2P-Block is a greylisting mechanism to block various peer-to-peer " -#~ "protocols for non-whitelisted clients." -#~ msgstr "" -#~ "Mit P2P-Block können Verbindungen zu verschiedenen Peer-to-Peer-" -#~ "Netzwerken unterbunden werden." -#~ msgid "Enable P2P-Block" -#~ msgstr "P2P-Block aktivieren" -#~ msgid "Portrange" -#~ msgstr "Port-Bereich" -#~ msgid "Block Time" -#~ msgstr "Blockier-Zeitspanne" -#~ msgid "seconds" -#~ msgstr "Sekunden" -#~ msgid "Whitelisted IPs" -#~ msgstr "Freigeschaltete IP-Adressen" -#~ msgid "Layer7-Protocols" -#~ msgstr "Layer7-Protokolle" -#~ msgid "IP-P2P" -#~ msgstr "IP-P2P" + + + + + + + + + + + + + + + + + diff --git a/po/de/splash.po b/po/de/splash.po new file mode 100644 index 000000000..623c1dc3d --- /dev/null +++ b/po/de/splash.po @@ -0,0 +1,143 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: Manuel Munz \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "verbundene Clients" + +msgid "Allowed hosts/subnets" +msgstr "Erlaubte Rechner/Netzwerke" + +msgid "Bandwidth limit for clients is only activated when both up- and download limit are set. Use a value of 0 here to completely disable this limitation. Whitelisted clients are not limited." +msgstr "Die Bandbreitenlimitierung für Clients wird nur aktiviert, wenn sowohl für Up- als auch für Download Limits eingegeben wurden. Ein Wert von 0 deaktiviert die Bandbreitenbeschränkung komplett. Rechner/Netze aus der Whitelist werden nicht limitiert." + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "Freigabezeit" + +msgid "Client-Splash" +msgstr "" + +msgid "Client-Splash is a hotspot authentification system for wireless mesh networks." +msgstr "Client-Splash ist ein Hotspot-Authentifizierungssystem für Freifunk und andere Meshnetzwerke." + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "Downloadgeschwindigkeit von Clients auf diesen Wert limitieren (kbyte/s) " + +msgid "Clients that have accepted the splash are allowed to use the network for that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "Uploadgeschwindigkeit von Clients auf diesen Wert limitieren (kbyte/s) " + +msgid "Decline" +msgstr "Ablehnen" + +msgid "Download limit" +msgstr "Downloadbegrenzung" + +msgid "Edit Splash text" +msgstr "Splashtext bearbeiten" + +msgid "Firewall zone" +msgstr "Firewallzone" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "Rechnername" + +msgid "Hosts and Networks that are listed here are excluded from splashing, i.e. they are always allowed." +msgstr "Rechner und Netzwerke die hier aufgeführt sind werden vom Splashvorgang ausgenommen, d.h. sie dürfen das Netzwerk immer und ohne Authentifizierung benutzen." + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "Clientverkehr auf dieser Schnittstelle abfangen" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "Schnittstellen die für Splash benutzt werden." + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "MAC-Adressen in dieser Liste werden geblockt." + +msgid "MAC addresses of whitelisted clients. These do not need to accept the splash and and are not bandwidth limited." +msgstr "MAC-Adressen von Clients in der Whitelist. Diese müssen den Splash nicht akzeptieren und unterliegen keinen Bandbreitenbegrenzungen." + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "Keine Clients verbunden." + +msgid "Policy" +msgstr "Richtlinie" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "Splashregeln werden in diese Firewallzone eingegliedert" + +msgid "Splashtext" +msgstr "Splash-Text" + +msgid "Time remaining" +msgstr "Verbleibende Zeit" + +msgid "Traffic in/out" +msgstr "Ein-/Ausgehender Verkehr" + +msgid "Upload limit" +msgstr "Upload-Begrenzung" + +msgid "Whitelist" +msgstr "" + +msgid "You can change the text that is displayed to clients here.
It is possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, ###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "Hier kann der Text geändert werden, der Clients vom Splash angezeigt wird.
Folgende Marker können verwendet werden: ###COMMUNITY###, ###COMMUNITY_URL###, ###LEASETIME### und ###ACCEPT###.
Klicke nach dem Abspeichern hier um den neuen Splash-Text anzuzeigen." + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "Die Angabe ist optional wenn nur einzelne Rechner/IPs verwendet werden" + +msgid "splashed" +msgstr "gesplasht" + +msgid "temporarily blocked" +msgstr "Vorübergehend geblockt" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" + diff --git a/po/el/freifunk.po b/po/el/freifunk.po index 726495f2f..748539295 100644 --- a/po/el/freifunk.po +++ b/po/el/freifunk.po @@ -12,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -45,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -72,9 +63,6 @@ msgstr "Συντεταγμένες" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -90,9 +78,6 @@ msgstr "Ηλ. Ταχυδρομείο " msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -129,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -172,9 +154,6 @@ msgstr "Τοποθεσία" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -202,9 +181,6 @@ msgstr "" msgid "Nickname" msgstr "Ψευδώνυμο" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -234,9 +210,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -255,9 +228,6 @@ msgstr "Ονοματεπώνυμο" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -275,9 +245,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -324,12 +291,6 @@ msgstr "" msgid "This is the access point" msgstr "Αυτό είναι το access point" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -356,13 +317,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -385,9 +339,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -397,29 +348,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/el/splash.po b/po/el/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/el/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/en/freifunk.po b/po/en/freifunk.po index d8853ca33..5e34ee423 100644 --- a/po/en/freifunk.po +++ b/po/en/freifunk.po @@ -12,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "Active Clients" - msgid "BSSID" msgstr "" @@ -45,9 +39,6 @@ msgstr "Check for new firmware versions and perform automatic updates." msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "Client-Splash" - msgid "Community" msgstr "" @@ -72,9 +63,6 @@ msgstr "Coordinates" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -90,9 +78,6 @@ msgstr "E-Mail" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -129,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "Hostname" -msgid "IP Address" -msgstr "IP Address" - msgid "If selected then the default content element is not shown." msgstr "" @@ -172,9 +154,6 @@ msgstr "Location" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "MAC Address" - msgid "Map" msgstr "" @@ -202,9 +181,6 @@ msgstr "" msgid "Nickname" msgstr "Nickname" -msgid "No clients connected" -msgstr "No clients connected" - msgid "No default routes known." msgstr "" @@ -234,9 +210,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "Policy" - msgid "Power" msgstr "" @@ -255,9 +228,6 @@ msgstr "Realname" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -275,9 +245,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "Start Upgrade" @@ -324,12 +291,6 @@ msgstr "" msgid "This is the access point" msgstr "This is the access point" -msgid "Time remaining" -msgstr "Time remaining" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "Update Settings" @@ -356,13 +317,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -384,9 +338,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "blacklisted" - msgid "buffered" msgstr "" @@ -396,29 +347,27 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "expired" - msgid "free" msgstr "" -msgid "splashed" -msgstr "splashed" - -msgid "temporarily blocked" -msgstr "temporarily blocked" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "unknown" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "whitelisted" - msgid "wireless settings" msgstr "" + + + + + + + + + + + + + diff --git a/po/en/splash.po b/po/en/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/en/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/es/freifunk.po b/po/es/freifunk.po index b15377b3e..662d73c3d 100644 --- a/po/es/freifunk.po +++ b/po/es/freifunk.po @@ -12,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "Clientes activos" - msgid "BSSID" msgstr "" @@ -45,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "Client-Splash" - msgid "Community" msgstr "" @@ -72,9 +63,6 @@ msgstr "Coordenadas" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -90,9 +78,6 @@ msgstr "E-Mail" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -129,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "Nombre de host" -msgid "IP Address" -msgstr "Dirección IP" - msgid "If selected then the default content element is not shown." msgstr "" @@ -174,9 +156,6 @@ msgstr "Dirección" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "Dirección MAC" - msgid "Map" msgstr "" @@ -204,9 +183,6 @@ msgstr "" msgid "Nickname" msgstr "Apodo" -msgid "No clients connected" -msgstr "No hay clientes conectados" - msgid "No default routes known." msgstr "" @@ -236,9 +212,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "Política" - msgid "Power" msgstr "" @@ -257,9 +230,6 @@ msgstr "Nombre completo" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -277,9 +247,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -326,12 +293,6 @@ msgstr "" msgid "This is the access point" msgstr "Este es el punto de acceso" -msgid "Time remaining" -msgstr "Tiempo restante" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -358,13 +319,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -385,9 +339,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "en lista negra" - msgid "buffered" msgstr "" @@ -397,29 +348,27 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "expirado" - msgid "free" msgstr "" -msgid "splashed" -msgstr "salpicado" - -msgid "temporarily blocked" -msgstr "bloqueado temporalmente" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "desconocido" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "en lista blanca" - msgid "wireless settings" msgstr "" + + + + + + + + + + + + + diff --git a/po/es/splash.po b/po/es/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/es/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/fr/freifunk.po b/po/fr/freifunk.po index 814b52e3e..254e3c7ff 100644 --- a/po/fr/freifunk.po +++ b/po/fr/freifunk.po @@ -1,4 +1,3 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -13,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -46,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -73,9 +63,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -91,9 +78,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -130,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -171,9 +152,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -201,9 +179,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -233,9 +208,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -254,9 +226,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -274,9 +243,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -323,12 +289,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -353,13 +313,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -380,9 +333,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -392,29 +342,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/fr/splash.po b/po/fr/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/fr/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/he/freifunk.po b/po/he/freifunk.po index 5c09437b8..9eca89526 100644 --- a/po/he/freifunk.po +++ b/po/he/freifunk.po @@ -9,12 +9,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -42,9 +36,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -69,9 +60,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -87,9 +75,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -126,9 +111,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -167,9 +149,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -197,9 +176,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -229,9 +205,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -250,9 +223,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -270,9 +240,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -319,12 +286,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -349,13 +310,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -376,9 +330,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -388,29 +339,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/he/splash.po b/po/he/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/he/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/it/freifunk.po b/po/it/freifunk.po index f3b27debb..a5eaeae7f 100644 --- a/po/it/freifunk.po +++ b/po/it/freifunk.po @@ -1,4 +1,3 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -13,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -46,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -73,9 +63,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -91,9 +78,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -130,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -171,9 +152,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -201,9 +179,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -233,9 +208,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -254,9 +226,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -274,9 +243,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -323,12 +289,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -353,13 +313,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -380,9 +333,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -392,29 +342,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/it/splash.po b/po/it/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/it/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/ja/freifunk.po b/po/ja/freifunk.po index 814b52e3e..254e3c7ff 100644 --- a/po/ja/freifunk.po +++ b/po/ja/freifunk.po @@ -1,4 +1,3 @@ -#, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -13,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -46,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -73,9 +63,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -91,9 +78,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -130,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -171,9 +152,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -201,9 +179,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -233,9 +208,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -254,9 +226,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -274,9 +243,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -323,12 +289,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -353,13 +313,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -380,9 +333,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -392,29 +342,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/ja/splash.po b/po/ja/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/ja/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/ms/freifunk.po b/po/ms/freifunk.po index f1dbcec25..c3e18e9c6 100644 --- a/po/ms/freifunk.po +++ b/po/ms/freifunk.po @@ -8,12 +8,6 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -41,9 +35,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -68,9 +59,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -86,9 +74,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -125,9 +110,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -166,9 +148,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -196,9 +175,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -228,9 +204,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -249,9 +222,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -269,9 +239,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -318,12 +285,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -348,13 +309,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -375,9 +329,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -387,29 +338,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/ms/splash.po b/po/ms/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/ms/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/no/freifunk.po b/po/no/freifunk.po index a10462bb1..844531ffc 100644 --- a/po/no/freifunk.po +++ b/po/no/freifunk.po @@ -4,12 +4,6 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -msgid "Accept" -msgstr "Godta" - -msgid "Active Clients" -msgstr "Aktive Klienter" - msgid "BSSID" msgstr "BSSID" @@ -37,9 +31,6 @@ msgstr "Se etter nye firmware-versjoner og utfør automatiske oppdatering." msgid "Client network size" msgstr "Klient nettverk størrelse" -msgid "Client-Splash" -msgstr "Klient-Splash" - msgid "Community" msgstr "Sted" @@ -64,9 +55,6 @@ msgstr "Koordinater" msgid "Country code" msgstr "Landskode" -msgid "Decline" -msgstr "Avslå" - msgid "Default routes" msgstr "Standard ruter" @@ -82,9 +70,6 @@ msgstr "E-Post" msgid "ESSID" msgstr "ESSID" -msgid "Edit Splash text" -msgstr "Rediger Splash tekst" - msgid "Edit index page" msgstr "Rediger indeks side" @@ -121,9 +106,6 @@ msgstr "Hjemmeside" msgid "Hostname" msgstr "Vertsnavn" -msgid "IP Address" -msgstr "IP Adresse" - msgid "If selected then the default content element is not shown." msgstr "Om valgt vises ikke det vanlige innholdselementet" @@ -166,9 +148,6 @@ msgstr "Sted" msgid "Longitude" msgstr "Lengdegrad" -msgid "MAC Address" -msgstr "MAC Adresse" - msgid "Map" msgstr "Kart" @@ -196,9 +175,6 @@ msgstr "Nettverk for klient DHCP adresser" msgid "Nickname" msgstr "Kallenavn" -msgid "No clients connected" -msgstr "Ingen klienter tilkoblet" - msgid "No default routes known." msgstr "Ingen standard rute er kjent" @@ -230,9 +206,6 @@ msgstr "Vennligst fyll ut skjema nedenfor." msgid "Please set your contact information" msgstr "Vennligst oppgi din kontaktinformasjon" -msgid "Policy" -msgstr "Policy" - msgid "Power" msgstr "Styrke" @@ -251,9 +224,6 @@ msgstr "Virkelig Navn" msgid "SSID" msgstr "SSID" -msgid "Save" -msgstr "Lagre" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -273,9 +243,6 @@ msgstr "Signal" msgid "Source" msgstr "Kilde" -msgid "Splashtext" -msgstr "Splashtekst" - msgid "Start Upgrade" msgstr "Start Oppgradering" @@ -295,8 +262,8 @@ msgid "" "The libiwinfo package is not installed. You must install this " "component for working wireless configuration!" msgstr "" -"Pakken libiwinfo er ikke installert. Du må installere denne " -"pakken for å kunne konfigurerer trådløse enheter!" +"Pakken libiwinfo er ikke installert. Du må installere denne pakken " +"for å kunne konfigurerer trådløse enheter!" msgid "" "The OLSRd service is not configured to capture position data from the " @@ -304,8 +271,8 @@ msgid "" "configured and that the latlon_file option is enabled." msgstr "" "OLSRd tjenesten er ikke konfigurert til å hente posisjons data fra " -"nettverket.
Kontroller at navnetjener pluginen er riktig " -"konfigurert og at latlon_file alternativet er aktivert." +"nettverket.
Kontroller at navnetjener pluginen er riktig konfigurert og " +"at latlon_file alternativet er aktivert." msgid "The installed firmware is the most recent version." msgstr "Den installerte firmware er den nyeste versjonen." @@ -315,9 +282,9 @@ msgid "" "settings define the default values for the wizard and DO NOT affect the " "actual configuration of the router." msgstr "" -"Dette er de grunnleggende innstillinger for det lokale trådløse " -"stedet. Disse innstillingene definerer standard verdiene for " -"veiviseren og vil derfor IKKE gjøre noen endringer på ruteren." +"Dette er de grunnleggende innstillinger for det lokale trådløse stedet. " +"Disse innstillingene definerer standard verdiene for veiviseren og vil " +"derfor IKKE gjøre noen endringer på ruteren." msgid "These are the settings of your local community." msgstr "Dette er innstillingene for det lokale stedet" @@ -326,18 +293,12 @@ msgid "" "These pages will assist you in setting up your router for Freifunk or " "similar wireless community networks." msgstr "" -"Disse sidene vil hjelpe deg med å sette opp ruteren til for Freifunk " -"og lignende trådløse nettverk." +"Disse sidene vil hjelpe deg med å sette opp ruteren til for Freifunk og " +"lignende trådløse nettverk." msgid "This is the access point" msgstr "Dette er aksess punktet" -msgid "Time remaining" -msgstr "Tid som gjenstår" - -msgid "Traffic in/out" -msgstr "Trafikk inn/ut" - msgid "Update Settings" msgstr "Oppdater Innstillingene" @@ -364,17 +325,6 @@ msgid "Wireless Overview" msgstr "Trådløs Oversikt" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" -"Du kan forandre teksten som er vist til klienter her.
Det er " -"mulig å bruke følgende: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Klikk her for å teste splash siden etter at du har lagret den." - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -385,8 +335,7 @@ msgstr "" msgid "" "You can find further information about the global Freifunk initiative at" -msgstr "" -"Du kan finne mere informasjon om den globale Freifunk initiativ på" +msgstr "Du kan finne mere informasjon om den globale Freifunk initiativ på" msgid "You can manually edit the selected community profile here." msgstr "Du kan manuelt endre den valgte stedsprofilen here" @@ -395,15 +344,11 @@ msgid "" "You need to select a profile before you can edit it. To select a profile go " "to" msgstr "" -"Du må velge en profil før du kan endre den. For å velge en profil " -"går du til" +"Du må velge en profil før du kan endre den. For å velge en profil går du til" msgid "and fill out all required fields." msgstr "og fylle ut alle nødvendige felt" -msgid "blacklisted" -msgstr "svartelistet" - msgid "buffered" msgstr "bufret" @@ -413,29 +358,34 @@ msgstr "hurtigbufret" msgid "e.g." msgstr "f.eks." -msgid "expired" -msgstr "utgått" - msgid "free" msgstr "tilgjengelig" -msgid "splashed" -msgstr "splashed" - -msgid "temporarily blocked" -msgstr "midlertidig blokkert" - msgid "to disable it." msgstr "å deaktivere det" -msgid "unknown" -msgstr "ukjent" - msgid "used" msgstr "brukt" -msgid "whitelisted" -msgstr "hvitelistet" - msgid "wireless settings" msgstr "trådløse innstillinger" + + + + + + + + + + + + + + + + + + + + diff --git a/po/no/splash.po b/po/no/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/no/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/pl/freifunk.po b/po/pl/freifunk.po index c5bf60ac0..f8705cdaf 100644 --- a/po/pl/freifunk.po +++ b/po/pl/freifunk.po @@ -10,12 +10,6 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -43,9 +37,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -70,9 +61,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -88,9 +76,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -127,9 +112,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -168,9 +150,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -198,9 +177,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -230,9 +206,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -251,9 +224,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -271,9 +241,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -320,12 +287,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -350,13 +311,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -377,9 +331,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -389,29 +340,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/pl/splash.po b/po/pl/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/pl/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/pt/freifunk.po b/po/pt/freifunk.po index 9f8fe5cf4..009d4925a 100644 --- a/po/pt/freifunk.po +++ b/po/pt/freifunk.po @@ -12,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -45,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -72,9 +63,6 @@ msgstr "Coordenadas" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -90,9 +78,6 @@ msgstr "email" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -129,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -174,9 +156,6 @@ msgstr "Localização" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -204,9 +183,6 @@ msgstr "" msgid "Nickname" msgstr "Nome curto (nick)" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -236,9 +212,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -257,9 +230,6 @@ msgstr "Nome" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -277,9 +247,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -326,12 +293,6 @@ msgstr "" msgid "This is the access point" msgstr "Este é o ponto de acesso " -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -358,13 +319,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -385,9 +339,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -397,29 +348,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/pt/splash.po b/po/pt/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/pt/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/pt_BR/freifunk.po b/po/pt_BR/freifunk.po index 80a9f6bc9..5bb42ce1a 100644 --- a/po/pt_BR/freifunk.po +++ b/po/pt_BR/freifunk.po @@ -13,12 +13,6 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.4\n" -msgid "Accept" -msgstr "Aceitar" - -msgid "Active Clients" -msgstr "Clientes Ativos" - msgid "BSSID" msgstr "BSSID" @@ -48,10 +42,6 @@ msgstr "" msgid "Client network size" msgstr "Tamanho da rede dos clientes" -# Which kind of splash is this? -msgid "Client-Splash" -msgstr "Cliente-Boas Vindas" - msgid "Community" msgstr "Comunidade" @@ -76,9 +66,6 @@ msgstr "Coordenadas" msgid "Country code" msgstr "Código do país" -msgid "Decline" -msgstr "Recusar" - msgid "Default routes" msgstr "Rotas padrão" @@ -94,9 +81,6 @@ msgstr "E-mail" msgid "ESSID" msgstr "ESSID" -msgid "Edit Splash text" -msgstr "Edita o texto de boas vindas" - msgid "Edit index page" msgstr "Edita a página índice" @@ -133,9 +117,6 @@ msgstr "Página" msgid "Hostname" msgstr "Nome do equipamento" -msgid "IP Address" -msgstr "Endereço IP" - msgid "If selected then the default content element is not shown." msgstr "Se selecionado, o conteúdo padrão não é mostrado." @@ -178,9 +159,6 @@ msgstr "Localização" msgid "Longitude" msgstr "Longitude" -msgid "MAC Address" -msgstr "Endereço MAC" - msgid "Map" msgstr "Mapa" @@ -208,9 +186,6 @@ msgstr "Rede para os endereços dos clientes DHCP" msgid "Nickname" msgstr "Apelido" -msgid "No clients connected" -msgstr "Nenhum cliente conectado" - msgid "No default routes known." msgstr "Nenhuma rota padrão conhecida." @@ -242,9 +217,6 @@ msgstr "Por favor, preencha seus detalhes de contato abaixo." msgid "Please set your contact information" msgstr "Por favor, defina a informação de contato" -msgid "Policy" -msgstr "Política" - msgid "Power" msgstr "Potência" @@ -263,9 +235,6 @@ msgstr "Nome Real" msgid "SSID" msgstr "SSID" -msgid "Save" -msgstr "Salvar" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -285,9 +254,6 @@ msgstr "Sinal" msgid "Source" msgstr "Origem" -msgid "Splashtext" -msgstr "Texto de boas vindas" - msgid "Start Upgrade" msgstr "Iniciar a Atualização" @@ -344,12 +310,6 @@ msgstr "" msgid "This is the access point" msgstr "Este é o ponto de acesso " -msgid "Time remaining" -msgstr "Tempo restante" - -msgid "Traffic in/out" -msgstr "Tráfego entrada/saída" - msgid "Update Settings" msgstr "Configurações da Atualização" @@ -376,25 +336,13 @@ msgid "Wireless Overview" msgstr "Visão Geral da Rede Sem Fio" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" -"Você pode mudar o texto que é mostrado para os clientes aqui.
É " -"possível usar as seguintes marcações: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### e ###ACCEPT###.
Clique aqui para testar a página de boas vindas depois que você " -"salvá-la." - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." msgstr "" "Você pode mostrar conteúdo adicional na página índice pública inserindo " -"XHTML válido no formulário abaixo.
As manchetes devem ficam entre " -"<h2> e </h2>." +"XHTML válido no formulário abaixo.
As manchetes devem ficam entre <" +"h2> e </h2>." msgid "" "You can find further information about the global Freifunk initiative at" @@ -414,9 +362,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "e preencher todos os campos obrigatórios." -msgid "blacklisted" -msgstr "na lista negra" - msgid "buffered" msgstr "no Buffer" @@ -426,29 +371,34 @@ msgstr "no Cache" msgid "e.g." msgstr "ex:" -msgid "expired" -msgstr "expirado" - msgid "free" msgstr "livre" -msgid "splashed" -msgstr "mostrado" - -msgid "temporarily blocked" -msgstr "bloqueado temporariamente" - msgid "to disable it." msgstr "para desabilitá-lo." -msgid "unknown" -msgstr "desconhecido" - msgid "used" msgstr "não usado" -msgid "whitelisted" -msgstr "na lista branca" - msgid "wireless settings" msgstr "configurações da rede sem fio" + + + + + + + + + + + + + + + + + + + + diff --git a/po/pt_BR/splash.po b/po/pt_BR/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/pt_BR/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/ro/freifunk.po b/po/ro/freifunk.po index 137aca179..1ec3970ec 100644 --- a/po/ro/freifunk.po +++ b/po/ro/freifunk.po @@ -10,12 +10,6 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -43,9 +37,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -70,9 +61,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -88,9 +76,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -127,9 +112,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -168,9 +150,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -198,9 +177,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -230,9 +206,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -251,9 +224,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -271,9 +241,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -320,12 +287,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -350,13 +311,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -377,9 +331,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -389,29 +340,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/ro/splash.po b/po/ro/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/ro/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/ru/freifunk.po b/po/ru/freifunk.po index 273364352..6182cc8a9 100644 --- a/po/ru/freifunk.po +++ b/po/ru/freifunk.po @@ -10,16 +10,10 @@ msgstr "" "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" +"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" -msgid "Accept" -msgstr "Принять" - -msgid "Active Clients" -msgstr "Активные клиенты" - msgid "BSSID" msgstr "BSSID" @@ -49,9 +43,6 @@ msgstr "" msgid "Client network size" msgstr "Размер клиентской сети" -msgid "Client-Splash" -msgstr "Страницу приветствия клиентов" - msgid "Community" msgstr "Сообщество" @@ -76,9 +67,6 @@ msgstr "Координаты" msgid "Country code" msgstr "Код страны" -msgid "Decline" -msgstr "Отклонить" - msgid "Default routes" msgstr "Маршруты по умолчанию" @@ -94,9 +82,6 @@ msgstr "E-Mail" msgid "ESSID" msgstr "ESSID" -msgid "Edit Splash text" -msgstr "Редактировать всплывающий текст" - msgid "Edit index page" msgstr "Редактировать главную страницу" @@ -133,9 +118,6 @@ msgstr "Домашняя страница" msgid "Hostname" msgstr "Имя хоста" -msgid "IP Address" -msgstr "IP адрес" - msgid "If selected then the default content element is not shown." msgstr "Если выбрано, содержимое по умолчанию не будет показано." @@ -176,9 +158,6 @@ msgstr "Местоположение" msgid "Longitude" msgstr "Долгота" -msgid "MAC Address" -msgstr "MAC адрес" - msgid "Map" msgstr "Карта" @@ -206,9 +185,6 @@ msgstr "Сеть для клиентских DHCP адресов" msgid "Nickname" msgstr "Псевдоним" -msgid "No clients connected" -msgstr "Клиенты не подключены" - msgid "No default routes known." msgstr "Маршруты по умолчанию не известны." @@ -240,9 +216,6 @@ msgstr "Пожалуйста, введите вашу контактную ин msgid "Please set your contact information" msgstr "Пожалуйста, введите вашу контактную информацию" -msgid "Policy" -msgstr "Политика" - msgid "Power" msgstr "Питание" @@ -261,9 +234,6 @@ msgstr "Имя" msgid "SSID" msgstr "SSID" -msgid "Save" -msgstr "Сохранить" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -283,9 +253,6 @@ msgstr "Сигнал" msgid "Source" msgstr "Источник" -msgid "Splashtext" -msgstr "Всплывающий текст" - msgid "Start Upgrade" msgstr "Начать обновление" @@ -313,9 +280,9 @@ msgid "" "network.
Please make sure that the nameservice plugin is properly " "configured and that the latlon_file option is enabled." msgstr "" -"Сервис OLSRd не сконфигурирован на получение данных о местоположении из " -"сети.
Пожалуйста, удостоверьтесь что модуль пространства имен " -"правильно настроен и что опция latlon_file включена." +"Сервис OLSRd не сконфигурирован на получение данных о местоположении из сети." +"
Пожалуйста, удостоверьтесь что модуль пространства имен правильно " +"настроен и что опция latlon_file включена." msgid "The installed firmware is the most recent version." msgstr "Установлена прошивка самой последней версии." @@ -342,12 +309,6 @@ msgstr "" msgid "This is the access point" msgstr "Это точка доступа" -msgid "Time remaining" -msgstr "Оставшееся время" - -msgid "Traffic in/out" -msgstr "Траффик вх/вых" - msgid "Update Settings" msgstr "Настройки обновления" @@ -374,18 +335,6 @@ msgid "Wireless Overview" msgstr "Обзор беспроводных сетей" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" -"Вы можете изменить текст, который будет показан клиентам.
Можно " -"использовать следующие обозначения: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Нажмите сюда чтобы просмотреть страницу приветствия после того, как вы " -"ее сохраните." - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -411,9 +360,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "и заполните все необходимые поля." -msgid "blacklisted" -msgstr "занесен в черный список" - msgid "buffered" msgstr "буферизировано" @@ -423,29 +369,34 @@ msgstr "кэшировано" msgid "e.g." msgstr "например" -msgid "expired" -msgstr "истекло" - msgid "free" msgstr "свободно" -msgid "splashed" -msgstr "приветствие показано" - -msgid "temporarily blocked" -msgstr "временно заблокировано" - msgid "to disable it." msgstr "чтобы выключить." -msgid "unknown" -msgstr "неизвестно" - msgid "used" msgstr "использовано" -msgid "whitelisted" -msgstr "занесено в белый список" - msgid "wireless settings" msgstr "настройки беспроводной сети" + + + + + + + + + + + + + + + + + + + + diff --git a/po/ru/splash.po b/po/ru/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/ru/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/templates/freifunk.pot b/po/templates/freifunk.pot index 130e5ec0a..3327a7199 100644 --- a/po/templates/freifunk.pot +++ b/po/templates/freifunk.pot @@ -1,12 +1,6 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -34,9 +28,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -61,9 +52,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -79,9 +67,6 @@ msgstr "" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -118,9 +103,6 @@ msgstr "" msgid "Hostname" msgstr "" -msgid "IP Address" -msgstr "" - msgid "If selected then the default content element is not shown." msgstr "" @@ -159,9 +141,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "" - msgid "Map" msgstr "" @@ -189,9 +168,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -221,9 +197,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "" - msgid "Power" msgstr "" @@ -242,9 +215,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -262,9 +232,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -311,12 +278,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -341,13 +302,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -368,9 +322,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -380,29 +331,14 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" -msgstr "" - -msgid "temporarily blocked" -msgstr "" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "" - msgid "wireless settings" msgstr "" diff --git a/po/templates/splash.pot b/po/templates/splash.pot new file mode 100644 index 000000000..84e85710f --- /dev/null +++ b/po/templates/splash.pot @@ -0,0 +1,149 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/vi/freifunk.po b/po/vi/freifunk.po index 8abb27f12..de354386b 100644 --- a/po/vi/freifunk.po +++ b/po/vi/freifunk.po @@ -1,5 +1,3 @@ -# freifunk.pot -# generated from ./modules/freifunk/luasrc/i18n/freifunk.en.lua msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -14,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "Đối tượng đang tham gia" - msgid "BSSID" msgstr "" @@ -47,9 +39,6 @@ msgstr "Kiểm tra các phiên bản phần cứng mới và thực hiện tự msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "Client-Splash" - msgid "Community" msgstr "" @@ -74,9 +63,6 @@ msgstr "Tọa độ" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -92,9 +78,6 @@ msgstr "E-mail" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -131,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "Hostname" -msgid "IP Address" -msgstr "Địa chỉ IP" - msgid "If selected then the default content element is not shown." msgstr "" @@ -175,9 +155,6 @@ msgstr "Địa chỉ" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "Địa chỉ MAC" - msgid "Map" msgstr "" @@ -205,9 +182,6 @@ msgstr "" msgid "Nickname" msgstr "Tên" -msgid "No clients connected" -msgstr "Không đối tượng kết nối" - msgid "No default routes known." msgstr "" @@ -237,9 +211,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "Chính sách" - msgid "Power" msgstr "" @@ -258,9 +229,6 @@ msgstr "Tên thật " msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -278,9 +246,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "Bắt đầu cập nhật " @@ -327,12 +292,6 @@ msgstr "" msgid "This is the access point" msgstr "Đây là điểm truy cập " -msgid "Time remaining" -msgstr "Thời gian còn lại" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "Cập nhật cài đặt" @@ -357,13 +316,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -384,9 +336,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "danh sách đen" - msgid "buffered" msgstr "" @@ -396,29 +345,27 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "Hết hạn" - msgid "free" msgstr "" -msgid "splashed" -msgstr "splashed" - -msgid "temporarily blocked" -msgstr "hiện tại chặng" - msgid "to disable it." msgstr "" -msgid "unknown" -msgstr "Không biết" - msgid "used" msgstr "" -msgid "whitelisted" -msgstr "danh sách trắng" - msgid "wireless settings" msgstr "" + + + + + + + + + + + + + diff --git a/po/vi/splash.po b/po/vi/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/vi/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr "" diff --git a/po/zh_CN/freifunk.po b/po/zh_CN/freifunk.po index 62b4d272c..80eb2671c 100644 --- a/po/zh_CN/freifunk.po +++ b/po/zh_CN/freifunk.po @@ -12,12 +12,6 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Pootle 1.1.0\n" -msgid "Accept" -msgstr "" - -msgid "Active Clients" -msgstr "" - msgid "BSSID" msgstr "" @@ -45,9 +39,6 @@ msgstr "" msgid "Client network size" msgstr "" -msgid "Client-Splash" -msgstr "" - msgid "Community" msgstr "" @@ -72,9 +63,6 @@ msgstr "" msgid "Country code" msgstr "" -msgid "Decline" -msgstr "" - msgid "Default routes" msgstr "" @@ -90,9 +78,6 @@ msgstr "Email" msgid "ESSID" msgstr "" -msgid "Edit Splash text" -msgstr "" - msgid "Edit index page" msgstr "" @@ -129,9 +114,6 @@ msgstr "" msgid "Hostname" msgstr "主机名" -msgid "IP Address" -msgstr "IP地址" - msgid "If selected then the default content element is not shown." msgstr "" @@ -170,9 +152,6 @@ msgstr "" msgid "Longitude" msgstr "" -msgid "MAC Address" -msgstr "MAC地址" - msgid "Map" msgstr "" @@ -200,9 +179,6 @@ msgstr "" msgid "Nickname" msgstr "" -msgid "No clients connected" -msgstr "" - msgid "No default routes known." msgstr "" @@ -232,9 +208,6 @@ msgstr "" msgid "Please set your contact information" msgstr "" -msgid "Policy" -msgstr "策略" - msgid "Power" msgstr "" @@ -253,9 +226,6 @@ msgstr "" msgid "SSID" msgstr "" -msgid "Save" -msgstr "" - msgid "" "Select your location with a mouse click on the map. The map will only show " "up if you are connected to the Internet." @@ -273,9 +243,6 @@ msgstr "" msgid "Source" msgstr "" -msgid "Splashtext" -msgstr "" - msgid "Start Upgrade" msgstr "" @@ -322,12 +289,6 @@ msgstr "" msgid "This is the access point" msgstr "" -msgid "Time remaining" -msgstr "" - -msgid "Traffic in/out" -msgstr "" - msgid "Update Settings" msgstr "" @@ -352,13 +313,6 @@ msgid "Wireless Overview" msgstr "" msgid "" -"You can change the text that is displayed to clients here.
It is " -"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " -"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." -msgstr "" - -msgid "" "You can display additional content on the public index page by inserting " "valid XHTML in the form below.
Headlines should be enclosed between <" "h2> and </h2>." @@ -379,9 +333,6 @@ msgstr "" msgid "and fill out all required fields." msgstr "" -msgid "blacklisted" -msgstr "" - msgid "buffered" msgstr "" @@ -391,29 +342,18 @@ msgstr "" msgid "e.g." msgstr "" -msgid "expired" -msgstr "" - msgid "free" msgstr "" -msgid "splashed" +msgid "to disable it." msgstr "" -msgid "temporarily blocked" +msgid "used" msgstr "" -msgid "to disable it." +msgid "wireless settings" msgstr "" -msgid "unknown" -msgstr "未知" -msgid "used" -msgstr "" -msgid "whitelisted" -msgstr "" -msgid "wireless settings" -msgstr "" diff --git a/po/zh_CN/splash.po b/po/zh_CN/splash.po new file mode 100644 index 000000000..50f646252 --- /dev/null +++ b/po/zh_CN/splash.po @@ -0,0 +1,146 @@ +msgid "Accept" +msgstr "" + +msgid "Active Clients" +msgstr "" + +msgid "Allowed hosts/subnets" +msgstr "" + +msgid "" +"Bandwidth limit for clients is only activated when both up- and download " +"limit are set. Use a value of 0 here to completely disable this limitation. " +"Whitelisted clients are not limited." +msgstr "" + +msgid "Blacklist" +msgstr "" + +msgid "Clearance time" +msgstr "" + +msgid "Client-Splash" +msgstr "" + +msgid "" +"Client-Splash is a hotspot authentification system for wireless mesh " +"networks." +msgstr "" + +msgid "Clients download speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "" +"Clients that have accepted the splash are allowed to use the network for " +"that many hours." +msgstr "" + +msgid "Clients upload speed is limited to this value (kbyte/s)" +msgstr "" + +msgid "Decline" +msgstr "" + +msgid "Download limit" +msgstr "" + +msgid "Edit Splash text" +msgstr "" + +msgid "Firewall zone" +msgstr "" + +msgid "General" +msgstr "" + +msgid "Hostname" +msgstr "" + +msgid "" +"Hosts and Networks that are listed here are excluded from splashing, i.e. " +"they are always allowed." +msgstr "" + +msgid "IP Address" +msgstr "" + +msgid "Intercept client traffic on this Interface" +msgstr "" + +msgid "Interfaces" +msgstr "" + +msgid "Interfaces that are used for Splash." +msgstr "" + +msgid "MAC Address" +msgstr "" + +msgid "MAC addresses in this list are blocked." +msgstr "" + +msgid "" +"MAC addresses of whitelisted clients. These do not need to accept the splash " +"and and are not bandwidth limited." +msgstr "" + +msgid "Netmask" +msgstr "" + +msgid "Network" +msgstr "" + +msgid "No clients connected" +msgstr "" + +msgid "Policy" +msgstr "" + +msgid "Save" +msgstr "" + +msgid "Splash rules are integrated in this firewall zone" +msgstr "" + +msgid "Splashtext" +msgstr "" + +msgid "Time remaining" +msgstr "" + +msgid "Traffic in/out" +msgstr "" + +msgid "Upload limit" +msgstr "" + +msgid "Whitelist" +msgstr "" + +msgid "" +"You can change the text that is displayed to clients here.
It is " +"possible to use the following markers: ###COMMUNITY###, ###COMMUNITY_URL###, " +"###LEASETIME### and ###ACCEPT###.
Click here to test the splash page after you saved it." +msgstr "" + +msgid "blacklisted" +msgstr "" + +msgid "expired" +msgstr "" + +msgid "optional when using host addresses" +msgstr "" + +msgid "splashed" +msgstr "" + +msgid "temporarily blocked" +msgstr "" + +msgid "unknown" +msgstr "" + +msgid "whitelisted" +msgstr ""