1
0
mirror of https://github.com/dkmstr/openuds.git synced 2024-12-22 13:34:04 +03:00

Updated translations & added proxy support for reverse auth, etc...

This commit is contained in:
Adolfo Gómez García 2016-04-20 15:25:41 +02:00
parent 203e2fcdd0
commit 4427448eca
15 changed files with 1641 additions and 1575 deletions

View File

@ -40,10 +40,11 @@ from uds.models import Authenticator as dbAuthenticator
from uds.core.ui import gui from uds.core.ui import gui
from uds.core.managers import cryptoManager from uds.core.managers import cryptoManager
from uds.core.util.State import State from uds.core.util.State import State
from uds.core.util.request import getRequest
import dns import dns
import logging import logging
__updated__ = '2016-04-18' __updated__ = '2016-04-20'
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
@ -62,12 +63,14 @@ class InternalDBAuth(Authenticator):
differentForEachHost = gui.CheckBoxField(label=_('Different user for each host'), order=1, tooltip=_('If checked, each host will have a different user name'), defvalue="false", rdonly=True, tab=gui.ADVANCED_TAB) differentForEachHost = gui.CheckBoxField(label=_('Different user for each host'), order=1, tooltip=_('If checked, each host will have a different user name'), defvalue="false", rdonly=True, tab=gui.ADVANCED_TAB)
reverseDns = gui.CheckBoxField(label=_('Reverse DNS'), order=2, tooltip=_('If checked, the host will be reversed dns'), defvalue="false", rdonly=True, tab=gui.ADVANCED_TAB) reverseDns = gui.CheckBoxField(label=_('Reverse DNS'), order=2, tooltip=_('If checked, the host will be reversed dns'), defvalue="false", rdonly=True, tab=gui.ADVANCED_TAB)
acceptProxy = gui.CheckBoxField(label=_('Accept proxy'), order=3, tooltip=_('If checked, requests via proxy will get FORWARDED ip address (take care with this bein checked, can take internal IP addresses from internet)'), tab=gui.ADVANCED_TAB)
def initialize(self, values): def initialize(self, values):
if values is None: if values is None:
return return
def getIp(self, ip): def getIp(self):
ip = getRequest().ip_proxy if self.acceptProxy.isTrue() else getRequest().ip # pylint: disable=maybe-no-member
if self.reverseDns.isTrue(): if self.reverseDns.isTrue():
try: try:
return str(dns.resolver.query(dns.reversename.from_address(ip), 'PTR')[0]) return str(dns.resolver.query(dns.reversename.from_address(ip), 'PTR')[0])
@ -76,9 +79,8 @@ class InternalDBAuth(Authenticator):
return ip return ip
def transformUsername(self, username): def transformUsername(self, username):
from uds.core.util.request import getRequest
if self.differentForEachHost.isTrue(): if self.differentForEachHost.isTrue():
newUsername = self.getIp(getRequest().ip) + '-' + username # pylint: disable=maybe-no-member newUsername = self.getIp() + '-' + username # pylint: disable=maybe-no-member
# Duplicate basic user into username. # Duplicate basic user into username.
auth = self.dbAuthenticator() auth = self.dbAuthenticator()
# "Derived" users will belong to no group at all, because we will extract groups from "base" user # "Derived" users will belong to no group at all, because we will extract groups from "base" user

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: German (http://www.transifex.com/openuds/openuds/language/" "Language-Team: German (http://www.transifex.com/openuds/openuds/language/"
@ -45,7 +45,7 @@ msgstr "Aktuelle Authentifikatoren"
#: REST/methods/osmanagers.py:57 REST/methods/providers.py:65 #: REST/methods/osmanagers.py:57 REST/methods/providers.py:65
#: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64 #: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64
#: REST/methods/services_pools.py:76 REST/methods/transports.py:56 #: REST/methods/services_pools.py:76 REST/methods/transports.py:56
#: REST/methods/user_services.py:220 REST/methods/user_services.py:255 #: REST/methods/user_services.py:225 REST/methods/user_services.py:260
#: REST/methods/users_groups.py:95 REST/model.py:132 #: REST/methods/users_groups.py:95 REST/model.py:132
#: templates/uds/admin/tmpl/calendar_rule.html:5 #: templates/uds/admin/tmpl/calendar_rule.html:5
#: templates/uds/admin/tmpl/calendar_rule.html:7 #: templates/uds/admin/tmpl/calendar_rule.html:7
@ -55,9 +55,9 @@ msgstr "Name"
#: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104 #: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104
#: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58 #: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58
#: REST/methods/providers.py:66 REST/methods/services.py:188 #: REST/methods/providers.py:66 REST/methods/services.py:189
#: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57 #: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57
#: REST/methods/user_services.py:257 REST/methods/users_groups.py:96 #: REST/methods/user_services.py:262 REST/methods/users_groups.py:96
#: REST/methods/users_groups.py:209 REST/model.py:139 #: REST/methods/users_groups.py:209 REST/model.py:139
#: templates/uds/admin/tmpl/calendar_rule.html:14 #: templates/uds/admin/tmpl/calendar_rule.html:14
#: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40 #: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40
@ -66,7 +66,7 @@ msgstr "Kommentare"
#: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89 #: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89
#: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55 #: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55
#: REST/methods/user_services.py:254 REST/model.py:148 #: REST/methods/user_services.py:259 REST/model.py:148
#: templates/uds/admin/tmpl/pool_add_access.html:5 #: templates/uds/admin/tmpl/pool_add_access.html:5
msgid "Priority" msgid "Priority"
msgstr "Priorität" msgstr "Priorität"
@ -86,7 +86,7 @@ msgstr "Benutzer"
#: REST/methods/authenticators.py:64 REST/methods/calendars.py:63 #: REST/methods/authenticators.py:64 REST/methods/calendars.py:63
#: REST/methods/networks.py:63 REST/methods/osmanagers.py:60 #: REST/methods/networks.py:63 REST/methods/osmanagers.py:60
#: REST/methods/providers.py:70 REST/methods/services.py:192 #: REST/methods/providers.py:70 REST/methods/services.py:193
#: REST/methods/services_pools.py:81 REST/methods/transports.py:59 #: REST/methods/services_pools.py:81 REST/methods/transports.py:59
msgid "tags" msgid "tags"
msgstr "Markierungen" msgstr "Markierungen"
@ -120,7 +120,7 @@ msgstr "Jeder"
msgid "Duration" msgid "Duration"
msgstr "Dauer" msgstr "Dauer"
#: REST/methods/calendarrules.py:128 REST/methods/services.py:153 #: REST/methods/calendarrules.py:128 REST/methods/services.py:154
msgid "Element already exists (duplicate key error)" msgid "Element already exists (duplicate key error)"
msgstr "Element ist bereits vorhanden (doppelte Schlüsselfehler)" msgstr "Element ist bereits vorhanden (doppelte Schlüsselfehler)"
@ -150,7 +150,7 @@ msgstr "Bildergalerie"
#: REST/methods/images.py:60 REST/methods/images.py:79 #: REST/methods/images.py:60 REST/methods/images.py:79
#: REST/methods/services_pool_groups.py:63 #: REST/methods/services_pool_groups.py:63
#: templates/uds/admin/tmpl/new_image.html:10 #: templates/uds/admin/tmpl/new_image.html:10
#: templates/uds/admin/tmpl/service-info.html:21 #: templates/uds/admin/tmpl/service-info.html:23
msgid "Image" msgid "Image"
msgstr "Bild" msgstr "Bild"
@ -248,36 +248,44 @@ msgstr "Beschreibung"
msgid "Generates" msgid "Generates"
msgstr "Generiert" msgstr "Generiert"
#: REST/methods/services.py:157 #: REST/methods/services.py:158
#, python-brace-format #, python-brace-format
msgid "Input error: {0}" msgid "Input error: {0}"
msgstr "Eingabefehler: {0}" msgstr "Eingabefehler: {0}"
#: REST/methods/services.py:181 #: REST/methods/services.py:182
#, python-brace-format #, python-brace-format
msgid "Services of {0}" msgid "Services of {0}"
msgstr "Dienstleistungen von {0}" msgstr "Dienstleistungen von {0}"
#: REST/methods/services.py:183 #: REST/methods/services.py:184
msgid "Current services" msgid "Current services"
msgstr "Aktuelle Dienstleistungen" msgstr "Aktuelle Dienstleistungen"
#: REST/methods/services.py:187 #: REST/methods/services.py:188
msgid "Service name" msgid "Service name"
msgstr "Dienstnamen" msgstr "Dienstnamen"
#: REST/methods/services.py:189 REST/methods/user_services.py:256 #: REST/methods/services.py:190 REST/methods/user_services.py:261
msgid "Type" msgid "Type"
msgstr "Typ" msgstr "Typ"
#: REST/methods/services.py:190 #: REST/methods/services.py:191
msgid "Deployed services" msgid "Deployed services"
msgstr "Bereitgestellten Dienste" msgstr "Bereitgestellten Dienste"
#: REST/methods/services.py:191 templates/uds/admin/tmpl/dashboard.html.py:88 #: REST/methods/services.py:192 templates/uds/admin/tmpl/dashboard.html.py:88
msgid "User services" msgid "User services"
msgstr "Benutzerdienste" msgstr "Benutzerdienste"
#: REST/methods/services.py:246
msgid "With errors"
msgstr "Mit Fehlern"
#: REST/methods/services.py:246
msgid "Ok"
msgstr "Okay"
#: REST/methods/services_pool_calendars.py:85 #: REST/methods/services_pool_calendars.py:85
msgid "Access restrictions by calendar" msgid "Access restrictions by calendar"
msgstr "Zugriffseinschränkungen von Kalender" msgstr "Zugriffseinschränkungen von Kalender"
@ -327,11 +335,11 @@ msgstr "Letzte Ausführung"
msgid "Services Pool Groups" msgid "Services Pool Groups"
msgstr "Services-Pool-Gruppen" msgstr "Services-Pool-Gruppen"
#: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:151 #: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:160
msgid "Associated Image" msgid "Associated Image"
msgstr "Zugeordnetes Bild" msgstr "Zugeordnetes Bild"
#: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:152 #: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:161
msgid "Image assocciated with this service" msgid "Image assocciated with this service"
msgstr "Bild Assocciated mit diesem service" msgstr "Bild Assocciated mit diesem service"
@ -346,7 +354,7 @@ msgstr "Service-Pools"
msgid "Parent Service" msgid "Parent Service"
msgstr "Eltern-Service" msgstr "Eltern-Service"
#: REST/methods/services_pools.py:78 REST/methods/user_services.py:118 #: REST/methods/services_pools.py:78 REST/methods/user_services.py:122
msgid "status" msgid "status"
msgstr "Status" msgstr "Status"
@ -358,89 +366,89 @@ msgstr "Zeigt Transporte"
msgid "Pool Group" msgid "Pool Group"
msgstr "Schwimmbad-Gruppe" msgstr "Schwimmbad-Gruppe"
#: REST/methods/services_pools.py:105 REST/methods/services_pools.py:158 #: REST/methods/services_pools.py:93 REST/methods/services_pools.py:167
msgid "Default" msgid "Default"
msgstr "In der Standardeinstellung" msgstr "In der Standardeinstellung"
#: REST/methods/services_pools.py:126 #: REST/methods/services_pools.py:135
msgid "Create at least one OS Manager before creating a new service pool" msgid "Create at least one OS Manager before creating a new service pool"
msgstr "" msgstr ""
"Erstellen Sie mindestens ein OS-Manager vor dem Erstellen eines neuen " "Erstellen Sie mindestens ein OS-Manager vor dem Erstellen eines neuen "
"Service-Pools" "Service-Pools"
#: REST/methods/services_pools.py:128 #: REST/methods/services_pools.py:137
msgid "Create at least a service before creating a new service pool" msgid "Create at least a service before creating a new service pool"
msgstr "" msgstr ""
"Erstellen Sie mindestens einen Dienst vor dem Erstellen eines neuen Service-" "Erstellen Sie mindestens einen Dienst vor dem Erstellen eines neuen Service-"
"Pools" "Pools"
#: REST/methods/services_pools.py:135 #: REST/methods/services_pools.py:144
msgid "Base service" msgid "Base service"
msgstr "Basisdienst" msgstr "Basisdienst"
#: REST/methods/services_pools.py:136 #: REST/methods/services_pools.py:145
msgid "Service used as base of this service pool" msgid "Service used as base of this service pool"
msgstr "Service als Basis für diesen Service-pool" msgstr "Service als Basis für diesen Service-pool"
#: REST/methods/services_pools.py:143 #: REST/methods/services_pools.py:152
msgid "OS Manager" msgid "OS Manager"
msgstr "OS-Manager" msgstr "OS-Manager"
#: REST/methods/services_pools.py:144 #: REST/methods/services_pools.py:153
msgid "OS Manager used as base of this service pool" msgid "OS Manager used as base of this service pool"
msgstr "OS-Manager verwendet als Grundlage dieser Service-pool" msgstr "OS-Manager verwendet als Grundlage dieser Service-pool"
#: REST/methods/services_pools.py:155 REST/methods/services_pools.py:163 #: REST/methods/services_pools.py:164 REST/methods/services_pools.py:172
#: services/OVirt/OVirtLinkedService.py:167 #: services/OVirt/OVirtLinkedService.py:167
msgid "Display" msgid "Display"
msgstr "Display" msgstr "Display"
#: REST/methods/services_pools.py:159 #: REST/methods/services_pools.py:168
msgid "Pool group" msgid "Pool group"
msgstr "Schwimmbad-Gruppe" msgstr "Schwimmbad-Gruppe"
#: REST/methods/services_pools.py:160 #: REST/methods/services_pools.py:169
msgid "Pool group for this pool (for pool clasify on display)" msgid "Pool group for this pool (for pool clasify on display)"
msgstr "" msgstr ""
"Schwimmbad-Gruppe für diesen Pool (für Schwimmbad-Clasify auf dem Display)" "Schwimmbad-Gruppe für diesen Pool (für Schwimmbad-Clasify auf dem Display)"
#: REST/methods/services_pools.py:168 #: REST/methods/services_pools.py:177
msgid "Initial available services" msgid "Initial available services"
msgstr "Erster verfügbaren Dienste" msgstr "Erster verfügbaren Dienste"
#: REST/methods/services_pools.py:169 #: REST/methods/services_pools.py:178
msgid "Services created initially for this service pool" msgid "Services created initially for this service pool"
msgstr "Dienste, die ursprünglich für diesen Service-Pool erstellt" msgstr "Dienste, die ursprünglich für diesen Service-Pool erstellt"
#: REST/methods/services_pools.py:172 REST/methods/services_pools.py:181 #: REST/methods/services_pools.py:181 REST/methods/services_pools.py:190
#: REST/methods/services_pools.py:190 REST/methods/services_pools.py:199 #: REST/methods/services_pools.py:199 REST/methods/services_pools.py:208
#| msgid "Availability Zones" #| msgid "Availability Zones"
msgid "Availability" msgid "Availability"
msgstr "Verfügbarkeit" msgstr "Verfügbarkeit"
#: REST/methods/services_pools.py:177 #: REST/methods/services_pools.py:186
msgid "Services to keep in cache" msgid "Services to keep in cache"
msgstr "Dienstleistungen im Cache behalten" msgstr "Dienstleistungen im Cache behalten"
#: REST/methods/services_pools.py:178 #: REST/methods/services_pools.py:187
msgid "Services kept in cache for improved user service assignation" msgid "Services kept in cache for improved user service assignation"
msgstr "" msgstr ""
"Dienstleistungen, die im Cache für verbesserte Service Zuweisung gehalten" "Dienstleistungen, die im Cache für verbesserte Service Zuweisung gehalten"
#: REST/methods/services_pools.py:186 #: REST/methods/services_pools.py:195
msgid "Services to keep in L2 cache" msgid "Services to keep in L2 cache"
msgstr "Dienstleistungen im L2-Cache zu behalten" msgstr "Dienstleistungen im L2-Cache zu behalten"
#: REST/methods/services_pools.py:187 #: REST/methods/services_pools.py:196
msgid "Services kept in cache of level2 for improved service generation" msgid "Services kept in cache of level2 for improved service generation"
msgstr "" msgstr ""
"Dienstleistungen gehalten im level2-Cache für verbesserte Service-generation" "Dienstleistungen gehalten im level2-Cache für verbesserte Service-generation"
#: REST/methods/services_pools.py:195 #: REST/methods/services_pools.py:204
msgid "Maximum number of services to provide" msgid "Maximum number of services to provide"
msgstr "Maximale Anzahl der Dienste" msgstr "Maximale Anzahl der Dienste"
#: REST/methods/services_pools.py:196 #: REST/methods/services_pools.py:205
msgid "" msgid ""
"Maximum number of service (assigned and L1 cache) that can be created for " "Maximum number of service (assigned and L1 cache) that can be created for "
"this service" "this service"
@ -448,19 +456,19 @@ msgstr ""
"Maximale Anzahl der Dienst (zugewiesen und L1-Cache) für die erstellt werden " "Maximale Anzahl der Dienst (zugewiesen und L1-Cache) für die erstellt werden "
"können dieser service" "können dieser service"
#: REST/methods/services_pools.py:203 #: REST/methods/services_pools.py:212
msgid "Show transports" msgid "Show transports"
msgstr "Karte-Transporte" msgstr "Karte-Transporte"
#: REST/methods/services_pools.py:204 #: REST/methods/services_pools.py:213
msgid "If active, alternative transports for user will be shown" msgid "If active, alternative transports for user will be shown"
msgstr "Wenn aktiv, werden alternative Transporte für Benutzer angezeigt" msgstr "Wenn aktiv, werden alternative Transporte für Benutzer angezeigt"
#: REST/methods/services_pools.py:219 #: REST/methods/services_pools.py:228
msgid "Base service does not exist anymore" msgid "Base service does not exist anymore"
msgstr "Zentrale Dienst existiert nicht mehr" msgstr "Zentrale Dienst existiert nicht mehr"
#: REST/methods/services_pools.py:238 #: REST/methods/services_pools.py:247
msgid "This service requires an OS Manager" msgid "This service requires an OS Manager"
msgstr "Dieser Service erfordert eine OS-Manager" msgstr "Dieser Service erfordert eine OS-Manager"
@ -498,102 +506,104 @@ msgstr ""
msgid "unknown" msgid "unknown"
msgstr "unbekannt" msgstr "unbekannt"
#: REST/methods/user_services.py:109 #: REST/methods/user_services.py:113
#: templates/uds/admin/tmpl/services_pool.html:31 #: templates/uds/admin/tmpl/services_pool.html:31
msgid "Assigned services" msgid "Assigned services"
msgstr "Zugeordneten services" msgstr "Zugeordneten services"
#: REST/methods/user_services.py:113 REST/methods/user_services.py:181 #: REST/methods/user_services.py:117 REST/methods/user_services.py:185
msgid "Creation date" msgid "Creation date"
msgstr "Erstellungsdatum" msgstr "Erstellungsdatum"
#: REST/methods/user_services.py:114 REST/methods/user_services.py:182 #: REST/methods/user_services.py:118 REST/methods/user_services.py:186
#: REST/methods/user_services.py:323 REST/methods/user_services.py:352 #: REST/methods/user_services.py:328 REST/methods/user_services.py:357
msgid "Revision" msgid "Revision"
msgstr "Revision" msgstr "Revision"
#: REST/methods/user_services.py:116 REST/methods/user_services.py:184 #: REST/methods/user_services.py:120 REST/methods/user_services.py:188
#: auths/IP/Authenticator.py:60 #: auths/IP/Authenticator.py:60
msgid "IP" msgid "IP"
msgstr "IP " msgstr "IP "
#: REST/methods/user_services.py:117 REST/methods/user_services.py:185 #: REST/methods/user_services.py:121 REST/methods/user_services.py:189
msgid "Friendly name" msgid "Friendly name"
msgstr "Angezeigter name" msgstr "Angezeigter name"
#: REST/methods/user_services.py:119 #: REST/methods/user_services.py:123
msgid "Status date" msgid "Status date"
msgstr "Statusdatum" msgstr "Statusdatum"
#: REST/methods/user_services.py:120 #: REST/methods/user_services.py:124
msgid "In Use" msgid "In Use"
msgstr "Im Einsatz" msgstr "Im Einsatz"
#: REST/methods/user_services.py:121 #: REST/methods/user_services.py:125
msgid "Src Host" msgid "Src Host"
msgstr "Src-Host" msgstr "Src-Host"
#: REST/methods/user_services.py:122 #: REST/methods/user_services.py:126
msgid "Src Ip" msgid "Src Ip"
msgstr "Quell-IP-" msgstr "Quell-IP-"
#: REST/methods/user_services.py:123 #: REST/methods/user_services.py:127
msgid "Owner" msgid "Owner"
msgstr "Eigentümer" msgstr "Eigentümer"
#: REST/methods/user_services.py:124 REST/methods/user_services.py:188 #: REST/methods/user_services.py:128 REST/methods/user_services.py:192
msgid "Actor version" msgid "Actor version"
msgstr "Schauspieler-version" msgstr "Schauspieler-version"
#: REST/methods/user_services.py:151 #: REST/methods/user_services.py:155
msgid "Item already being removed" msgid "Item already being removed"
msgstr "Artikel, die bereits wieder entfernt" msgstr "Artikel, die bereits wieder entfernt"
#: REST/methods/user_services.py:153 #: REST/methods/user_services.py:157
msgid "Item is not removable" msgid "Item is not removable"
msgstr "Element ist nicht abnehmbar" msgstr "Element ist nicht abnehmbar"
#: REST/methods/user_services.py:177 #: REST/methods/user_services.py:181
msgid "Cached services" msgid "Cached services"
msgstr "Zwischengespeicherte Dienstleistungen" msgstr "Zwischengespeicherte Dienstleistungen"
#: REST/methods/user_services.py:186 REST/methods/user_services.py:222 #: REST/methods/user_services.py:190 REST/methods/user_services.py:227
#: REST/methods/user_services.py:325 REST/methods/user_services.py:354 #: REST/methods/user_services.py:330 REST/methods/user_services.py:359
#: templates/uds/admin/tmpl/group.html:54 templates/uds/admin/tmpl/user.html:45 #: templates/uds/admin/tmpl/group.html:54
#: templates/uds/admin/tmpl/service-info.html:22
#: templates/uds/admin/tmpl/user.html:45
msgid "State" msgid "State"
msgstr "Zustand" msgstr "Zustand"
#: REST/methods/user_services.py:187 #: REST/methods/user_services.py:191
msgid "Cache level" msgid "Cache level"
msgstr "Cache-Stufe" msgstr "Cache-Stufe"
#: REST/methods/user_services.py:215 #: REST/methods/user_services.py:220
msgid "Assigned groups" msgid "Assigned groups"
msgstr "Zugewiesenen Gruppen" msgstr "Zugewiesenen Gruppen"
#: REST/methods/user_services.py:221 templates/uds/admin/tmpl/group.html.py:46 #: REST/methods/user_services.py:226 templates/uds/admin/tmpl/group.html.py:46
#: templates/uds/admin/tmpl/user.html:37 #: templates/uds/admin/tmpl/user.html:37
msgid "comments" msgid "comments"
msgstr "Kommentare" msgstr "Kommentare"
#: REST/methods/user_services.py:250 #: REST/methods/user_services.py:255
msgid "Assigned transports" msgid "Assigned transports"
msgstr "Zugewiesenen Transporte" msgstr "Zugewiesenen Transporte"
#: REST/methods/user_services.py:319 #: REST/methods/user_services.py:324
#: templates/uds/admin/tmpl/services_pool.html:35 #: templates/uds/admin/tmpl/services_pool.html:35
msgid "Publications" msgid "Publications"
msgstr "Publikationen" msgstr "Publikationen"
#: REST/methods/user_services.py:324 REST/methods/user_services.py:353 #: REST/methods/user_services.py:329 REST/methods/user_services.py:358
msgid "Publish date" msgid "Publish date"
msgstr "Datum der Veröffentlichung" msgstr "Datum der Veröffentlichung"
#: REST/methods/user_services.py:326 templates/uds/admin/tmpl/publish.html.py:5 #: REST/methods/user_services.py:331 templates/uds/admin/tmpl/publish.html.py:5
msgid "Reason" msgid "Reason"
msgstr "Grund" msgstr "Grund"
#: REST/methods/user_services.py:348 #: REST/methods/user_services.py:353
msgid "Changelog" msgid "Changelog"
msgstr "Changelog" msgstr "Changelog"
@ -981,11 +991,11 @@ msgstr ""
"LDAP-Benutzer Klasse oder Benutzer-Id-Attr ist vermutlich falsch (Ldap ist " "LDAP-Benutzer Klasse oder Benutzer-Id-Attr ist vermutlich falsch (Ldap ist "
"eine eDirectory?)" "eine eDirectory?)"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "Accept proxy" msgid "Accept proxy"
msgstr "Proxy zu akzeptieren" msgstr "Proxy zu akzeptieren"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "" msgid ""
"If checked, requests via proxy will get FORWARDED ip address (take care with " "If checked, requests via proxy will get FORWARDED ip address (take care with "
"this bein checked, can take internal IP addresses from internet)" "this bein checked, can take internal IP addresses from internet)"
@ -1006,37 +1016,37 @@ msgstr "IP-Bereich"
msgid "All seems to be fine." msgid "All seems to be fine."
msgstr "Alles scheint in Ordnung zu sein." msgstr "Alles scheint in Ordnung zu sein."
#: auths/InternalDB/Authenticator.py:52 #: auths/InternalDB/Authenticator.py:53
msgid "Internal Database" msgid "Internal Database"
msgstr "Interne Datenbank" msgstr "Interne Datenbank"
#: auths/InternalDB/Authenticator.py:54 #: auths/InternalDB/Authenticator.py:55
msgid "Internal dabasase authenticator. Doesn't use external sources" msgid "Internal dabasase authenticator. Doesn't use external sources"
msgstr "Interne Dabasase Authenticator. Keine verwendet externe Quellen." msgstr "Interne Dabasase Authenticator. Keine verwendet externe Quellen."
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "Different user for each host" msgid "Different user for each host"
msgstr "Verschiedene Benutzer für jeden host" msgstr "Verschiedene Benutzer für jeden host"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "If checked, each host will have a different user name" msgid "If checked, each host will have a different user name"
msgstr "" msgstr ""
"Wenn diese Option aktiviert ist, wird jeder Host einen anderen Benutzernamen " "Wenn diese Option aktiviert ist, wird jeder Host einen anderen Benutzernamen "
"haben." "haben."
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "Reverse DNS" msgid "Reverse DNS"
msgstr "Reverse-DNS" msgstr "Reverse-DNS"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "If checked, the host will be reversed dns" msgid "If checked, the host will be reversed dns"
msgstr "Wenn diese Option aktiviert, wird der Host umgekehrte Dns sein." msgstr "Wenn diese Option aktiviert, wird der Host umgekehrte Dns sein."
#: auths/InternalDB/Authenticator.py:128 #: auths/InternalDB/Authenticator.py:130
msgid "Internal structures seems ok" msgid "Internal structures seems ok"
msgstr "Interne Strukturen scheint in Ordnung" msgstr "Interne Strukturen scheint in Ordnung"
#: auths/InternalDB/Authenticator.py:131 #: auths/InternalDB/Authenticator.py:133
msgid "All seems fine in the authenticator." msgid "All seems fine in the authenticator."
msgstr "Alles scheint in Ordnung in der Authentifikator." msgstr "Alles scheint in Ordnung in der Authentifikator."
@ -2138,7 +2148,7 @@ msgstr "Zugriffe von pool"
#: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366 #: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366
#: reports/stats/usage_by_pool.py:98 #: reports/stats/usage_by_pool.py:98
#: templates/uds/admin/tmpl/service-info.html:22 #: templates/uds/admin/tmpl/service-info.html:21
msgid "Pool" msgid "Pool"
msgstr "Schwimmbad" msgstr "Schwimmbad"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: German (http://www.transifex.com/openuds/openuds/language/" "Language-Team: German (http://www.transifex.com/openuds/openuds/language/"
@ -107,115 +107,115 @@ msgstr "Suche Fehler"
msgid "Accept" msgid "Accept"
msgstr "Akzeptieren" msgstr "Akzeptieren"
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "Fehler beim Zugriff auf Daten" msgstr "Fehler beim Zugriff auf Daten"
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "Gruppe bearbeiten" msgstr "Gruppe bearbeiten"
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "Gruppe gespeichert" msgstr "Gruppe gespeichert"
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "Neue Meta-Gruppe" msgstr "Neue Meta-Gruppe"
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "Neue Gruppe" msgstr "Neue Gruppe"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "Gruppen durchsuchen" msgstr "Gruppen durchsuchen"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "Gruppe" msgstr "Gruppe"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "Gruppen gefunden" msgstr "Gruppen gefunden"
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "Gruppe speichern Fehler" msgstr "Gruppe speichern Fehler"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "Gruppe löschen" msgstr "Gruppe löschen"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "Gruppe löschen Fehler" msgstr "Gruppe löschen Fehler"
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "Benutzer bearbeiten" msgstr "Benutzer bearbeiten"
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "Benutzer gespeichert" msgstr "Benutzer gespeichert"
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "Benutzer speichern Fehler" msgstr "Benutzer speichern Fehler"
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "Neuer Benutzer" msgstr "Neuer Benutzer"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "Suche Mitglieder" msgstr "Suche Mitglieder"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "Benutzer" msgstr "Benutzer"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "Benutzer gefunden" msgstr "Benutzer gefunden"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "Benutzer löschen" msgstr "Benutzer löschen"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "Benutzer löschen Fehler" msgstr "Benutzer löschen Fehler"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "Neuen Authentifikator" msgstr "Neuen Authentifikator"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "Fehler beim Erstellen der Authentifikator" msgstr "Fehler beim Erstellen der Authentifikator"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "Authentifikator bearbeiten" msgstr "Authentifikator bearbeiten"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "Authentifikator speichern Fehler" msgstr "Authentifikator speichern Fehler"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "Authentifikator löschen" msgstr "Authentifikator löschen"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "Authentifikator löschen Fehler" msgstr "Authentifikator löschen Fehler"
@ -503,93 +503,93 @@ msgstr "Fehler beim Erstellen des Berichts"
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "Herbeiführende Bericht Fehlerbeschreibung." msgstr "Herbeiführende Bericht Fehlerbeschreibung."
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "In der Pflege" msgstr "In der Pflege"
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "Aktive" msgstr "Aktive"
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "Informationen" msgstr "Informationen"
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
#| msgid "Service creation error" #| msgid "Service creation error"
msgid "Service information" msgid "Service information"
msgstr "Service-Informationen" msgstr "Service-Informationen"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "Bearbeiten service" msgstr "Bearbeiten service"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "Fehler beim Erstellen von Service" msgstr "Fehler beim Erstellen von Service"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "Neuer service" msgstr "Neuer service"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "Service Fehler speichern" msgstr "Service Fehler speichern"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "Dienst löschen" msgstr "Dienst löschen"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "Dienstfehler löschen" msgstr "Dienstfehler löschen"
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "Wartung" msgstr "Wartung"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "Wartungsmodus" msgstr "Wartungsmodus"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "Geben Sie im Wartungsmodus?" msgstr "Geben Sie im Wartungsmodus?"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "Beenden Wartungsmodus zu?" msgstr "Beenden Wartungsmodus zu?"
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "Geben Sie Wartung Modus" msgstr "Geben Sie Wartung Modus"
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "Ausfahrt-Wartungsmodus" msgstr "Ausfahrt-Wartungsmodus"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "Neuer Anbieter für Dienste" msgstr "Neuer Anbieter für Dienste"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "Fehler beim Erstellen der Provider-Dienste" msgstr "Fehler beim Erstellen der Provider-Dienste"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "Dienstleister bearbeiten" msgstr "Dienstleister bearbeiten"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "Speichern von Fehler-Dienstleister" msgstr "Speichern von Fehler-Dienstleister"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "Löschen-Dienstleister" msgstr "Löschen-Dienstleister"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "Service Provider löschen Fehler" msgstr "Service Provider löschen Fehler"
@ -613,30 +613,30 @@ msgstr "Anfang"
msgid "Ending" msgid "Ending"
msgstr "Endet" msgstr "Endet"
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "Geplante Aktion hinzufügen" msgstr "Geplante Aktion hinzufügen"
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "Bearbeiten von Access-Kalender" msgstr "Bearbeiten von Access-Kalender"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "Entfernen Sie die Access-Kalender" msgstr "Entfernen Sie die Access-Kalender"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "Fehler beim Zugriff auf Kalender entfernen" msgstr "Fehler beim Zugriff auf Kalender entfernen"
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "Access-Kalender hinzufügen" msgstr "Access-Kalender hinzufügen"
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "Standardzugriff Ersatz" msgstr "Standardzugriff Ersatz"
@ -679,84 +679,84 @@ msgstr "Verkehr zu entfernen"
msgid "Transport removal error" msgid "Transport removal error"
msgstr "Transportfehler entfernen" msgstr "Transportfehler entfernen"
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "Fehler" msgstr "Fehler"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "Cache-Element entfernen" msgstr "Cache-Element entfernen"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "Fehler löschen" msgstr "Fehler löschen"
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "Gruppe hinzufügen" msgstr "Gruppe hinzufügen"
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "Sie müssen Authentifikator und Gruppe bereitstellen." msgstr "Sie müssen Authentifikator und Gruppe bereitstellen."
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "Gruppe entfernen" msgstr "Gruppe entfernen"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "Gruppe entfernen Fehler" msgstr "Gruppe entfernen Fehler"
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "Zugewiesene Dienst entfernen" msgstr "Zugewiesene Dienst entfernen"
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "Zurückhaltend" msgstr "Zurückhaltend"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "Neue Service-pool" msgstr "Neue Service-pool"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "Fehler beim Erstellen" msgstr "Fehler beim Erstellen"
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "Bei der Erstellung zu veröffentlichen" msgstr "Bei der Erstellung zu veröffentlichen"
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "" msgstr ""
"Wenn ausgewählt, wird die Publikation Inmediatly nach Erstellung einleiten." "Wenn ausgewählt, wird die Publikation Inmediatly nach Erstellung einleiten."
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "Bearbeiten" msgstr "Bearbeiten"
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "Speichern von Fehler" msgstr "Speichern von Fehler"
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "Fehler löschen" msgstr "Fehler löschen"
@ -788,27 +788,27 @@ msgstr "Cache"
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "Cache geleert hat, wurde" msgstr "Cache geleert hat, wurde"
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "Aktualisieren-Operation fehlgeschlagen" msgstr "Aktualisieren-Operation fehlgeschlagen"
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "Datum" msgstr "Datum"
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "Ebene" msgstr "Ebene"
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "Quelle" msgstr "Quelle"
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "Nachricht" msgstr "Nachricht"
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "Protokolle" msgstr "Protokolle"
@ -908,128 +908,128 @@ msgstr "Einen Moment..."
msgid "Never" msgid "Never"
msgstr "Nie" msgstr "Nie"
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "_MENU_ Datensätze pro Seite" msgstr "_MENU_ Datensätze pro Seite"
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "Leer" msgstr "Leer"
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "Keine Datensätze" msgstr "Keine Datensätze"
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "Zeichnet _START_, _END_ von _TOTAL_" msgstr "Zeichnet _START_, _END_ von _TOTAL_"
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "(von _MAX_ Datensätze gefiltert)" msgstr "(von _MAX_ Datensätze gefiltert)"
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "Bitte warten, Verarbeitung" msgstr "Bitte warten, Verarbeitung"
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "Filter" msgstr "Filter"
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "Ausgewählten %d Zeilen" msgstr "Ausgewählten %d Zeilen"
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "Klicken Sie auf eine Zeile auswählen" msgstr "Klicken Sie auf eine Zeile auswählen"
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "Eine Zeile ausgewählt" msgstr "Eine Zeile ausgewählt"
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "Neu" msgstr "Neu"
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "Berechtigungen" msgstr "Berechtigungen"
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "Xls" msgstr "Xls"
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "Nachricht" msgstr "Nachricht"
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "Verbindung fehlgeschlagen" msgstr "Verbindung fehlgeschlagen"
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "Dieses Feld ist erforderlich." msgstr "Dieses Feld ist erforderlich."
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "Bitte korrigieren Sie in diesem Feld." msgstr "Bitte korrigieren Sie in diesem Feld."
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "Bitte geben Sie eine gültige e-Mail-Adresse." msgstr "Bitte geben Sie eine gültige e-Mail-Adresse."
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Bitte geben Sie eine gültige URL." msgstr "Bitte geben Sie eine gültige URL."
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "Bitte geben Sie ein gültiges Datum." msgstr "Bitte geben Sie ein gültiges Datum."
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "Bitte geben Sie ein gültiges Datum (ISO)." msgstr "Bitte geben Sie ein gültiges Datum (ISO)."
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "Bitte geben Sie eine gültige Nummer." msgstr "Bitte geben Sie eine gültige Nummer."
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "Bitte geben Sie nur Ziffern." msgstr "Bitte geben Sie nur Ziffern."
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "Bitte geben Sie eine gültige Kreditkartennummer." msgstr "Bitte geben Sie eine gültige Kreditkartennummer."
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "Bitte geben Sie den gleichen Wert wieder." msgstr "Bitte geben Sie den gleichen Wert wieder."
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "Bitte geben Sie nicht mehr als {0} Zeichen." msgstr "Bitte geben Sie nicht mehr als {0} Zeichen."
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "Bitte geben Sie mindestens {0} Zeichen." msgstr "Bitte geben Sie mindestens {0} Zeichen."
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} Zeichen lang." msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} Zeichen lang."
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "Bitte geben Sie einen Wert zwischen {0} und {1}." msgstr "Bitte geben Sie einen Wert zwischen {0} und {1}."
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "Bitte geben Sie einen Wert kleiner oder gleich {0}." msgstr "Bitte geben Sie einen Wert kleiner oder gleich {0}."
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "Bitte geben Sie einen Wert größer oder gleich {0}." msgstr "Bitte geben Sie einen Wert größer oder gleich {0}."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -43,7 +43,7 @@ msgstr ""
#: REST/methods/osmanagers.py:57 REST/methods/providers.py:65 #: REST/methods/osmanagers.py:57 REST/methods/providers.py:65
#: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64 #: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64
#: REST/methods/services_pools.py:76 REST/methods/transports.py:56 #: REST/methods/services_pools.py:76 REST/methods/transports.py:56
#: REST/methods/user_services.py:220 REST/methods/user_services.py:255 #: REST/methods/user_services.py:225 REST/methods/user_services.py:260
#: REST/methods/users_groups.py:95 REST/model.py:132 #: REST/methods/users_groups.py:95 REST/model.py:132
#: templates/uds/admin/tmpl/calendar_rule.html:5 #: templates/uds/admin/tmpl/calendar_rule.html:5
#: templates/uds/admin/tmpl/calendar_rule.html:7 #: templates/uds/admin/tmpl/calendar_rule.html:7
@ -53,9 +53,9 @@ msgstr ""
#: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104 #: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104
#: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58 #: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58
#: REST/methods/providers.py:66 REST/methods/services.py:188 #: REST/methods/providers.py:66 REST/methods/services.py:189
#: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57 #: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57
#: REST/methods/user_services.py:257 REST/methods/users_groups.py:96 #: REST/methods/user_services.py:262 REST/methods/users_groups.py:96
#: REST/methods/users_groups.py:209 REST/model.py:139 #: REST/methods/users_groups.py:209 REST/model.py:139
#: templates/uds/admin/tmpl/calendar_rule.html:14 #: templates/uds/admin/tmpl/calendar_rule.html:14
#: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40 #: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40
@ -64,7 +64,7 @@ msgstr ""
#: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89 #: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89
#: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55 #: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55
#: REST/methods/user_services.py:254 REST/model.py:148 #: REST/methods/user_services.py:259 REST/model.py:148
#: templates/uds/admin/tmpl/pool_add_access.html:5 #: templates/uds/admin/tmpl/pool_add_access.html:5
msgid "Priority" msgid "Priority"
msgstr "" msgstr ""
@ -84,7 +84,7 @@ msgstr ""
#: REST/methods/authenticators.py:64 REST/methods/calendars.py:63 #: REST/methods/authenticators.py:64 REST/methods/calendars.py:63
#: REST/methods/networks.py:63 REST/methods/osmanagers.py:60 #: REST/methods/networks.py:63 REST/methods/osmanagers.py:60
#: REST/methods/providers.py:70 REST/methods/services.py:192 #: REST/methods/providers.py:70 REST/methods/services.py:193
#: REST/methods/services_pools.py:81 REST/methods/transports.py:59 #: REST/methods/services_pools.py:81 REST/methods/transports.py:59
msgid "tags" msgid "tags"
msgstr "" msgstr ""
@ -118,7 +118,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "" msgstr ""
#: REST/methods/calendarrules.py:128 REST/methods/services.py:153 #: REST/methods/calendarrules.py:128 REST/methods/services.py:154
msgid "Element already exists (duplicate key error)" msgid "Element already exists (duplicate key error)"
msgstr "" msgstr ""
@ -148,7 +148,7 @@ msgstr ""
#: REST/methods/images.py:60 REST/methods/images.py:79 #: REST/methods/images.py:60 REST/methods/images.py:79
#: REST/methods/services_pool_groups.py:63 #: REST/methods/services_pool_groups.py:63
#: templates/uds/admin/tmpl/new_image.html:10 #: templates/uds/admin/tmpl/new_image.html:10
#: templates/uds/admin/tmpl/service-info.html:21 #: templates/uds/admin/tmpl/service-info.html:23
msgid "Image" msgid "Image"
msgstr "" msgstr ""
@ -242,36 +242,44 @@ msgstr ""
msgid "Generates" msgid "Generates"
msgstr "" msgstr ""
#: REST/methods/services.py:157 #: REST/methods/services.py:158
#, python-brace-format #, python-brace-format
msgid "Input error: {0}" msgid "Input error: {0}"
msgstr "" msgstr ""
#: REST/methods/services.py:181 #: REST/methods/services.py:182
#, python-brace-format #, python-brace-format
msgid "Services of {0}" msgid "Services of {0}"
msgstr "" msgstr ""
#: REST/methods/services.py:183 #: REST/methods/services.py:184
msgid "Current services" msgid "Current services"
msgstr "" msgstr ""
#: REST/methods/services.py:187 #: REST/methods/services.py:188
msgid "Service name" msgid "Service name"
msgstr "" msgstr ""
#: REST/methods/services.py:189 REST/methods/user_services.py:256 #: REST/methods/services.py:190 REST/methods/user_services.py:261
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: REST/methods/services.py:190 #: REST/methods/services.py:191
msgid "Deployed services" msgid "Deployed services"
msgstr "" msgstr ""
#: REST/methods/services.py:191 templates/uds/admin/tmpl/dashboard.html.py:88 #: REST/methods/services.py:192 templates/uds/admin/tmpl/dashboard.html.py:88
msgid "User services" msgid "User services"
msgstr "" msgstr ""
#: REST/methods/services.py:246
msgid "With errors"
msgstr ""
#: REST/methods/services.py:246
msgid "Ok"
msgstr ""
#: REST/methods/services_pool_calendars.py:85 #: REST/methods/services_pool_calendars.py:85
msgid "Access restrictions by calendar" msgid "Access restrictions by calendar"
msgstr "" msgstr ""
@ -321,11 +329,11 @@ msgstr ""
msgid "Services Pool Groups" msgid "Services Pool Groups"
msgstr "" msgstr ""
#: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:151 #: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:160
msgid "Associated Image" msgid "Associated Image"
msgstr "" msgstr ""
#: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:152 #: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:161
msgid "Image assocciated with this service" msgid "Image assocciated with this service"
msgstr "" msgstr ""
@ -340,7 +348,7 @@ msgstr ""
msgid "Parent Service" msgid "Parent Service"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:78 REST/methods/user_services.py:118 #: REST/methods/services_pools.py:78 REST/methods/user_services.py:122
msgid "status" msgid "status"
msgstr "" msgstr ""
@ -352,99 +360,99 @@ msgstr ""
msgid "Pool Group" msgid "Pool Group"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:105 REST/methods/services_pools.py:158 #: REST/methods/services_pools.py:93 REST/methods/services_pools.py:167
msgid "Default" msgid "Default"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:126 #: REST/methods/services_pools.py:135
msgid "Create at least one OS Manager before creating a new service pool" msgid "Create at least one OS Manager before creating a new service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:128 #: REST/methods/services_pools.py:137
msgid "Create at least a service before creating a new service pool" msgid "Create at least a service before creating a new service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:135 #: REST/methods/services_pools.py:144
msgid "Base service" msgid "Base service"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:136 #: REST/methods/services_pools.py:145
msgid "Service used as base of this service pool" msgid "Service used as base of this service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:143 #: REST/methods/services_pools.py:152
msgid "OS Manager" msgid "OS Manager"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:144 #: REST/methods/services_pools.py:153
msgid "OS Manager used as base of this service pool" msgid "OS Manager used as base of this service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:155 REST/methods/services_pools.py:163 #: REST/methods/services_pools.py:164 REST/methods/services_pools.py:172
#: services/OVirt/OVirtLinkedService.py:167 #: services/OVirt/OVirtLinkedService.py:167
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:159 #: REST/methods/services_pools.py:168
msgid "Pool group" msgid "Pool group"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:160 #: REST/methods/services_pools.py:169
msgid "Pool group for this pool (for pool clasify on display)" msgid "Pool group for this pool (for pool clasify on display)"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:168 #: REST/methods/services_pools.py:177
msgid "Initial available services" msgid "Initial available services"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:169 #: REST/methods/services_pools.py:178
msgid "Services created initially for this service pool" msgid "Services created initially for this service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:172 REST/methods/services_pools.py:181 #: REST/methods/services_pools.py:181 REST/methods/services_pools.py:190
#: REST/methods/services_pools.py:190 REST/methods/services_pools.py:199 #: REST/methods/services_pools.py:199 REST/methods/services_pools.py:208
msgid "Availability" msgid "Availability"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:177 #: REST/methods/services_pools.py:186
msgid "Services to keep in cache" msgid "Services to keep in cache"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:178 #: REST/methods/services_pools.py:187
msgid "Services kept in cache for improved user service assignation" msgid "Services kept in cache for improved user service assignation"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:186 #: REST/methods/services_pools.py:195
msgid "Services to keep in L2 cache" msgid "Services to keep in L2 cache"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:187 #: REST/methods/services_pools.py:196
msgid "Services kept in cache of level2 for improved service generation" msgid "Services kept in cache of level2 for improved service generation"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:195 #: REST/methods/services_pools.py:204
msgid "Maximum number of services to provide" msgid "Maximum number of services to provide"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:196 #: REST/methods/services_pools.py:205
msgid "" msgid ""
"Maximum number of service (assigned and L1 cache) that can be created for " "Maximum number of service (assigned and L1 cache) that can be created for "
"this service" "this service"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:203 #: REST/methods/services_pools.py:212
msgid "Show transports" msgid "Show transports"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:204 #: REST/methods/services_pools.py:213
msgid "If active, alternative transports for user will be shown" msgid "If active, alternative transports for user will be shown"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:219 #: REST/methods/services_pools.py:228
msgid "Base service does not exist anymore" msgid "Base service does not exist anymore"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:238 #: REST/methods/services_pools.py:247
msgid "This service requires an OS Manager" msgid "This service requires an OS Manager"
msgstr "" msgstr ""
@ -478,102 +486,104 @@ msgstr ""
msgid "unknown" msgid "unknown"
msgstr "" msgstr ""
#: REST/methods/user_services.py:109 #: REST/methods/user_services.py:113
#: templates/uds/admin/tmpl/services_pool.html:31 #: templates/uds/admin/tmpl/services_pool.html:31
msgid "Assigned services" msgid "Assigned services"
msgstr "" msgstr ""
#: REST/methods/user_services.py:113 REST/methods/user_services.py:181 #: REST/methods/user_services.py:117 REST/methods/user_services.py:185
msgid "Creation date" msgid "Creation date"
msgstr "" msgstr ""
#: REST/methods/user_services.py:114 REST/methods/user_services.py:182 #: REST/methods/user_services.py:118 REST/methods/user_services.py:186
#: REST/methods/user_services.py:323 REST/methods/user_services.py:352 #: REST/methods/user_services.py:328 REST/methods/user_services.py:357
msgid "Revision" msgid "Revision"
msgstr "" msgstr ""
#: REST/methods/user_services.py:116 REST/methods/user_services.py:184 #: REST/methods/user_services.py:120 REST/methods/user_services.py:188
#: auths/IP/Authenticator.py:60 #: auths/IP/Authenticator.py:60
msgid "IP" msgid "IP"
msgstr "" msgstr ""
#: REST/methods/user_services.py:117 REST/methods/user_services.py:185 #: REST/methods/user_services.py:121 REST/methods/user_services.py:189
msgid "Friendly name" msgid "Friendly name"
msgstr "" msgstr ""
#: REST/methods/user_services.py:119 #: REST/methods/user_services.py:123
msgid "Status date" msgid "Status date"
msgstr "" msgstr ""
#: REST/methods/user_services.py:120 #: REST/methods/user_services.py:124
msgid "In Use" msgid "In Use"
msgstr "" msgstr ""
#: REST/methods/user_services.py:121 #: REST/methods/user_services.py:125
msgid "Src Host" msgid "Src Host"
msgstr "" msgstr ""
#: REST/methods/user_services.py:122 #: REST/methods/user_services.py:126
msgid "Src Ip" msgid "Src Ip"
msgstr "" msgstr ""
#: REST/methods/user_services.py:123 #: REST/methods/user_services.py:127
msgid "Owner" msgid "Owner"
msgstr "" msgstr ""
#: REST/methods/user_services.py:124 REST/methods/user_services.py:188 #: REST/methods/user_services.py:128 REST/methods/user_services.py:192
msgid "Actor version" msgid "Actor version"
msgstr "" msgstr ""
#: REST/methods/user_services.py:151 #: REST/methods/user_services.py:155
msgid "Item already being removed" msgid "Item already being removed"
msgstr "" msgstr ""
#: REST/methods/user_services.py:153 #: REST/methods/user_services.py:157
msgid "Item is not removable" msgid "Item is not removable"
msgstr "" msgstr ""
#: REST/methods/user_services.py:177 #: REST/methods/user_services.py:181
msgid "Cached services" msgid "Cached services"
msgstr "" msgstr ""
#: REST/methods/user_services.py:186 REST/methods/user_services.py:222 #: REST/methods/user_services.py:190 REST/methods/user_services.py:227
#: REST/methods/user_services.py:325 REST/methods/user_services.py:354 #: REST/methods/user_services.py:330 REST/methods/user_services.py:359
#: templates/uds/admin/tmpl/group.html:54 templates/uds/admin/tmpl/user.html:45 #: templates/uds/admin/tmpl/group.html:54
#: templates/uds/admin/tmpl/service-info.html:22
#: templates/uds/admin/tmpl/user.html:45
msgid "State" msgid "State"
msgstr "" msgstr ""
#: REST/methods/user_services.py:187 #: REST/methods/user_services.py:191
msgid "Cache level" msgid "Cache level"
msgstr "" msgstr ""
#: REST/methods/user_services.py:215 #: REST/methods/user_services.py:220
msgid "Assigned groups" msgid "Assigned groups"
msgstr "" msgstr ""
#: REST/methods/user_services.py:221 templates/uds/admin/tmpl/group.html.py:46 #: REST/methods/user_services.py:226 templates/uds/admin/tmpl/group.html.py:46
#: templates/uds/admin/tmpl/user.html:37 #: templates/uds/admin/tmpl/user.html:37
msgid "comments" msgid "comments"
msgstr "" msgstr ""
#: REST/methods/user_services.py:250 #: REST/methods/user_services.py:255
msgid "Assigned transports" msgid "Assigned transports"
msgstr "" msgstr ""
#: REST/methods/user_services.py:319 #: REST/methods/user_services.py:324
#: templates/uds/admin/tmpl/services_pool.html:35 #: templates/uds/admin/tmpl/services_pool.html:35
msgid "Publications" msgid "Publications"
msgstr "" msgstr ""
#: REST/methods/user_services.py:324 REST/methods/user_services.py:353 #: REST/methods/user_services.py:329 REST/methods/user_services.py:358
msgid "Publish date" msgid "Publish date"
msgstr "" msgstr ""
#: REST/methods/user_services.py:326 templates/uds/admin/tmpl/publish.html.py:5 #: REST/methods/user_services.py:331 templates/uds/admin/tmpl/publish.html.py:5
msgid "Reason" msgid "Reason"
msgstr "" msgstr ""
#: REST/methods/user_services.py:348 #: REST/methods/user_services.py:353
msgid "Changelog" msgid "Changelog"
msgstr "" msgstr ""
@ -944,11 +954,11 @@ msgid ""
"Ldap user class or user id attr is probably wrong (Ldap is an eDirectory?)" "Ldap user class or user id attr is probably wrong (Ldap is an eDirectory?)"
msgstr "" msgstr ""
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "Accept proxy" msgid "Accept proxy"
msgstr "" msgstr ""
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "" msgid ""
"If checked, requests via proxy will get FORWARDED ip address (take care with " "If checked, requests via proxy will get FORWARDED ip address (take care with "
"this bein checked, can take internal IP addresses from internet)" "this bein checked, can take internal IP addresses from internet)"
@ -966,35 +976,35 @@ msgstr ""
msgid "All seems to be fine." msgid "All seems to be fine."
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:52 #: auths/InternalDB/Authenticator.py:53
msgid "Internal Database" msgid "Internal Database"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:54 #: auths/InternalDB/Authenticator.py:55
msgid "Internal dabasase authenticator. Doesn't use external sources" msgid "Internal dabasase authenticator. Doesn't use external sources"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "Different user for each host" msgid "Different user for each host"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "If checked, each host will have a different user name" msgid "If checked, each host will have a different user name"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "Reverse DNS" msgid "Reverse DNS"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "If checked, the host will be reversed dns" msgid "If checked, the host will be reversed dns"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:128 #: auths/InternalDB/Authenticator.py:130
msgid "Internal structures seems ok" msgid "Internal structures seems ok"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:131 #: auths/InternalDB/Authenticator.py:133
msgid "All seems fine in the authenticator." msgid "All seems fine in the authenticator."
msgstr "" msgstr ""
@ -2035,7 +2045,7 @@ msgstr ""
#: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366 #: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366
#: reports/stats/usage_by_pool.py:98 #: reports/stats/usage_by_pool.py:98
#: templates/uds/admin/tmpl/service-info.html:22 #: templates/uds/admin/tmpl/service-info.html:21
msgid "Pool" msgid "Pool"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -105,115 +105,115 @@ msgstr ""
msgid "Accept" msgid "Accept"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "" msgstr ""
@ -501,92 +501,92 @@ msgstr ""
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
msgid "Service information" msgid "Service information"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "" msgstr ""
@ -610,30 +610,30 @@ msgstr ""
msgid "Ending" msgid "Ending"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "" msgstr ""
@ -676,83 +676,83 @@ msgstr ""
msgid "Transport removal error" msgid "Transport removal error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "" msgstr ""
@ -784,27 +784,27 @@ msgstr ""
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -904,128 +904,128 @@ msgstr ""
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Spanish (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Spanish (http://www.transifex.com/openuds/openuds/language/"
@ -50,7 +50,7 @@ msgstr "Autenticadores actuales"
#: REST/methods/osmanagers.py:57 REST/methods/providers.py:65 #: REST/methods/osmanagers.py:57 REST/methods/providers.py:65
#: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64 #: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64
#: REST/methods/services_pools.py:76 REST/methods/transports.py:56 #: REST/methods/services_pools.py:76 REST/methods/transports.py:56
#: REST/methods/user_services.py:220 REST/methods/user_services.py:255 #: REST/methods/user_services.py:225 REST/methods/user_services.py:260
#: REST/methods/users_groups.py:95 REST/model.py:132 #: REST/methods/users_groups.py:95 REST/model.py:132
#: templates/uds/admin/tmpl/calendar_rule.html:5 #: templates/uds/admin/tmpl/calendar_rule.html:5
#: templates/uds/admin/tmpl/calendar_rule.html:7 #: templates/uds/admin/tmpl/calendar_rule.html:7
@ -60,9 +60,9 @@ msgstr "Nombre"
#: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104 #: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104
#: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58 #: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58
#: REST/methods/providers.py:66 REST/methods/services.py:188 #: REST/methods/providers.py:66 REST/methods/services.py:189
#: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57 #: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57
#: REST/methods/user_services.py:257 REST/methods/users_groups.py:96 #: REST/methods/user_services.py:262 REST/methods/users_groups.py:96
#: REST/methods/users_groups.py:209 REST/model.py:139 #: REST/methods/users_groups.py:209 REST/model.py:139
#: templates/uds/admin/tmpl/calendar_rule.html:14 #: templates/uds/admin/tmpl/calendar_rule.html:14
#: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40 #: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40
@ -71,7 +71,7 @@ msgstr "Comentarios"
#: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89 #: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89
#: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55 #: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55
#: REST/methods/user_services.py:254 REST/model.py:148 #: REST/methods/user_services.py:259 REST/model.py:148
#: templates/uds/admin/tmpl/pool_add_access.html:5 #: templates/uds/admin/tmpl/pool_add_access.html:5
msgid "Priority" msgid "Priority"
msgstr "Prioridad" msgstr "Prioridad"
@ -91,7 +91,7 @@ msgstr "Usuarios"
#: REST/methods/authenticators.py:64 REST/methods/calendars.py:63 #: REST/methods/authenticators.py:64 REST/methods/calendars.py:63
#: REST/methods/networks.py:63 REST/methods/osmanagers.py:60 #: REST/methods/networks.py:63 REST/methods/osmanagers.py:60
#: REST/methods/providers.py:70 REST/methods/services.py:192 #: REST/methods/providers.py:70 REST/methods/services.py:193
#: REST/methods/services_pools.py:81 REST/methods/transports.py:59 #: REST/methods/services_pools.py:81 REST/methods/transports.py:59
msgid "tags" msgid "tags"
msgstr "Etiquetas" msgstr "Etiquetas"
@ -125,7 +125,7 @@ msgstr "Cada"
msgid "Duration" msgid "Duration"
msgstr "Duración" msgstr "Duración"
#: REST/methods/calendarrules.py:128 REST/methods/services.py:153 #: REST/methods/calendarrules.py:128 REST/methods/services.py:154
msgid "Element already exists (duplicate key error)" msgid "Element already exists (duplicate key error)"
msgstr "Elemento ya existe (error de clave duplicada)" msgstr "Elemento ya existe (error de clave duplicada)"
@ -155,7 +155,7 @@ msgstr "Galería de imágenes"
#: REST/methods/images.py:60 REST/methods/images.py:79 #: REST/methods/images.py:60 REST/methods/images.py:79
#: REST/methods/services_pool_groups.py:63 #: REST/methods/services_pool_groups.py:63
#: templates/uds/admin/tmpl/new_image.html:10 #: templates/uds/admin/tmpl/new_image.html:10
#: templates/uds/admin/tmpl/service-info.html:21 #: templates/uds/admin/tmpl/service-info.html:23
msgid "Image" msgid "Image"
msgstr "Imagen" msgstr "Imagen"
@ -251,36 +251,44 @@ msgstr "Descripción"
msgid "Generates" msgid "Generates"
msgstr "Genera" msgstr "Genera"
#: REST/methods/services.py:157 #: REST/methods/services.py:158
#, python-brace-format #, python-brace-format
msgid "Input error: {0}" msgid "Input error: {0}"
msgstr "Error de entrada: {0}" msgstr "Error de entrada: {0}"
#: REST/methods/services.py:181 #: REST/methods/services.py:182
#, python-brace-format #, python-brace-format
msgid "Services of {0}" msgid "Services of {0}"
msgstr "Servicios de {0}" msgstr "Servicios de {0}"
#: REST/methods/services.py:183 #: REST/methods/services.py:184
msgid "Current services" msgid "Current services"
msgstr "Servicios actuales" msgstr "Servicios actuales"
#: REST/methods/services.py:187 #: REST/methods/services.py:188
msgid "Service name" msgid "Service name"
msgstr "Nombre del servicio" msgstr "Nombre del servicio"
#: REST/methods/services.py:189 REST/methods/user_services.py:256 #: REST/methods/services.py:190 REST/methods/user_services.py:261
msgid "Type" msgid "Type"
msgstr "Tipo" msgstr "Tipo"
#: REST/methods/services.py:190 #: REST/methods/services.py:191
msgid "Deployed services" msgid "Deployed services"
msgstr "Servicios desplegados" msgstr "Servicios desplegados"
#: REST/methods/services.py:191 templates/uds/admin/tmpl/dashboard.html.py:88 #: REST/methods/services.py:192 templates/uds/admin/tmpl/dashboard.html.py:88
msgid "User services" msgid "User services"
msgstr "Servicios de usuario" msgstr "Servicios de usuario"
#: REST/methods/services.py:246
msgid "With errors"
msgstr "Con errores"
#: REST/methods/services.py:246
msgid "Ok"
msgstr "Vale"
#: REST/methods/services_pool_calendars.py:85 #: REST/methods/services_pool_calendars.py:85
msgid "Access restrictions by calendar" msgid "Access restrictions by calendar"
msgstr "Restricciones de acceso por calendario" msgstr "Restricciones de acceso por calendario"
@ -330,11 +338,11 @@ msgstr "Última ejecución"
msgid "Services Pool Groups" msgid "Services Pool Groups"
msgstr "Servicios piscina grupos" msgstr "Servicios piscina grupos"
#: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:151 #: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:160
msgid "Associated Image" msgid "Associated Image"
msgstr "Imagen asociada" msgstr "Imagen asociada"
#: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:152 #: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:161
msgid "Image assocciated with this service" msgid "Image assocciated with this service"
msgstr "Imagen asociada a este servicio" msgstr "Imagen asociada a este servicio"
@ -349,7 +357,7 @@ msgstr "Pools de servicios"
msgid "Parent Service" msgid "Parent Service"
msgstr "Servicio Padre" msgstr "Servicio Padre"
#: REST/methods/services_pools.py:78 REST/methods/user_services.py:118 #: REST/methods/services_pools.py:78 REST/methods/user_services.py:122
msgid "status" msgid "status"
msgstr "estado" msgstr "estado"
@ -361,86 +369,86 @@ msgstr "Muestra transportes"
msgid "Pool Group" msgid "Pool Group"
msgstr "Grupo de piscina" msgstr "Grupo de piscina"
#: REST/methods/services_pools.py:105 REST/methods/services_pools.py:158 #: REST/methods/services_pools.py:93 REST/methods/services_pools.py:167
msgid "Default" msgid "Default"
msgstr "Por defecto" msgstr "Por defecto"
#: REST/methods/services_pools.py:126 #: REST/methods/services_pools.py:135
msgid "Create at least one OS Manager before creating a new service pool" msgid "Create at least one OS Manager before creating a new service pool"
msgstr "Cree al menos un OS Manager antes de crear un nuevo pool de servicios" msgstr "Cree al menos un OS Manager antes de crear un nuevo pool de servicios"
#: REST/methods/services_pools.py:128 #: REST/methods/services_pools.py:137
msgid "Create at least a service before creating a new service pool" msgid "Create at least a service before creating a new service pool"
msgstr "Cree al menos un servicio antes de crear un nuevo pool de servicios" msgstr "Cree al menos un servicio antes de crear un nuevo pool de servicios"
#: REST/methods/services_pools.py:135 #: REST/methods/services_pools.py:144
msgid "Base service" msgid "Base service"
msgstr "Servicio base" msgstr "Servicio base"
#: REST/methods/services_pools.py:136 #: REST/methods/services_pools.py:145
msgid "Service used as base of this service pool" msgid "Service used as base of this service pool"
msgstr "Servicio utilizado como base de este pool de servicios" msgstr "Servicio utilizado como base de este pool de servicios"
#: REST/methods/services_pools.py:143 #: REST/methods/services_pools.py:152
msgid "OS Manager" msgid "OS Manager"
msgstr "OS Manager" msgstr "OS Manager"
#: REST/methods/services_pools.py:144 #: REST/methods/services_pools.py:153
msgid "OS Manager used as base of this service pool" msgid "OS Manager used as base of this service pool"
msgstr "OS Manager utilizado como base de este pool de servicios" msgstr "OS Manager utilizado como base de este pool de servicios"
#: REST/methods/services_pools.py:155 REST/methods/services_pools.py:163 #: REST/methods/services_pools.py:164 REST/methods/services_pools.py:172
#: services/OVirt/OVirtLinkedService.py:167 #: services/OVirt/OVirtLinkedService.py:167
msgid "Display" msgid "Display"
msgstr "Pantalla" msgstr "Pantalla"
#: REST/methods/services_pools.py:159 #: REST/methods/services_pools.py:168
msgid "Pool group" msgid "Pool group"
msgstr "Grupo de piscina" msgstr "Grupo de piscina"
#: REST/methods/services_pools.py:160 #: REST/methods/services_pools.py:169
msgid "Pool group for this pool (for pool clasify on display)" msgid "Pool group for this pool (for pool clasify on display)"
msgstr "Grupo de la piscina para esta piscina (piscina clasifique en pantalla)" msgstr "Grupo de la piscina para esta piscina (piscina clasifique en pantalla)"
#: REST/methods/services_pools.py:168 #: REST/methods/services_pools.py:177
msgid "Initial available services" msgid "Initial available services"
msgstr "Servicios disponibles inicialmente" msgstr "Servicios disponibles inicialmente"
#: REST/methods/services_pools.py:169 #: REST/methods/services_pools.py:178
msgid "Services created initially for this service pool" msgid "Services created initially for this service pool"
msgstr "Servicios creados inicialmente para este pool de servicios" msgstr "Servicios creados inicialmente para este pool de servicios"
#: REST/methods/services_pools.py:172 REST/methods/services_pools.py:181 #: REST/methods/services_pools.py:181 REST/methods/services_pools.py:190
#: REST/methods/services_pools.py:190 REST/methods/services_pools.py:199 #: REST/methods/services_pools.py:199 REST/methods/services_pools.py:208
#| msgid "Availability Zones" #| msgid "Availability Zones"
msgid "Availability" msgid "Availability"
msgstr "Disponibilidad de" msgstr "Disponibilidad de"
#: REST/methods/services_pools.py:177 #: REST/methods/services_pools.py:186
msgid "Services to keep in cache" msgid "Services to keep in cache"
msgstr "Servicios para mantener en la caché" msgstr "Servicios para mantener en la caché"
#: REST/methods/services_pools.py:178 #: REST/methods/services_pools.py:187
msgid "Services kept in cache for improved user service assignation" msgid "Services kept in cache for improved user service assignation"
msgstr "" msgstr ""
"Servicios guardado en caché para mejorar la asignación de servicio de " "Servicios guardado en caché para mejorar la asignación de servicio de "
"usuario " "usuario "
#: REST/methods/services_pools.py:186 #: REST/methods/services_pools.py:195
msgid "Services to keep in L2 cache" msgid "Services to keep in L2 cache"
msgstr "Servicios para mantener en la caché L2" msgstr "Servicios para mantener en la caché L2"
#: REST/methods/services_pools.py:187 #: REST/methods/services_pools.py:196
msgid "Services kept in cache of level2 for improved service generation" msgid "Services kept in cache of level2 for improved service generation"
msgstr "" msgstr ""
"Servicios guardados en la caché de nivel 2 para mejorar la generación de " "Servicios guardados en la caché de nivel 2 para mejorar la generación de "
"servicios " "servicios "
#: REST/methods/services_pools.py:195 #: REST/methods/services_pools.py:204
msgid "Maximum number of services to provide" msgid "Maximum number of services to provide"
msgstr "Número máximo de servicios a proveer" msgstr "Número máximo de servicios a proveer"
#: REST/methods/services_pools.py:196 #: REST/methods/services_pools.py:205
msgid "" msgid ""
"Maximum number of service (assigned and L1 cache) that can be created for " "Maximum number of service (assigned and L1 cache) that can be created for "
"this service" "this service"
@ -448,19 +456,19 @@ msgstr ""
"Número máximo de servicios (asignados y caché L1) que pueden crearse para " "Número máximo de servicios (asignados y caché L1) que pueden crearse para "
"este servicio" "este servicio"
#: REST/methods/services_pools.py:203 #: REST/methods/services_pools.py:212
msgid "Show transports" msgid "Show transports"
msgstr "Mostrar transportes" msgstr "Mostrar transportes"
#: REST/methods/services_pools.py:204 #: REST/methods/services_pools.py:213
msgid "If active, alternative transports for user will be shown" msgid "If active, alternative transports for user will be shown"
msgstr "Si está activo, se mostrarán transportes alternativos para el usuario " msgstr "Si está activo, se mostrarán transportes alternativos para el usuario "
#: REST/methods/services_pools.py:219 #: REST/methods/services_pools.py:228
msgid "Base service does not exist anymore" msgid "Base service does not exist anymore"
msgstr "Ya no existe servicio base" msgstr "Ya no existe servicio base"
#: REST/methods/services_pools.py:238 #: REST/methods/services_pools.py:247
msgid "This service requires an OS Manager" msgid "This service requires an OS Manager"
msgstr "Este servicio requiere un OS Manager" msgstr "Este servicio requiere un OS Manager"
@ -499,102 +507,104 @@ msgstr ""
msgid "unknown" msgid "unknown"
msgstr "desconocido" msgstr "desconocido"
#: REST/methods/user_services.py:109 #: REST/methods/user_services.py:113
#: templates/uds/admin/tmpl/services_pool.html:31 #: templates/uds/admin/tmpl/services_pool.html:31
msgid "Assigned services" msgid "Assigned services"
msgstr "Servicios asignados" msgstr "Servicios asignados"
#: REST/methods/user_services.py:113 REST/methods/user_services.py:181 #: REST/methods/user_services.py:117 REST/methods/user_services.py:185
msgid "Creation date" msgid "Creation date"
msgstr "Fecha de creación" msgstr "Fecha de creación"
#: REST/methods/user_services.py:114 REST/methods/user_services.py:182 #: REST/methods/user_services.py:118 REST/methods/user_services.py:186
#: REST/methods/user_services.py:323 REST/methods/user_services.py:352 #: REST/methods/user_services.py:328 REST/methods/user_services.py:357
msgid "Revision" msgid "Revision"
msgstr "Revisión" msgstr "Revisión"
#: REST/methods/user_services.py:116 REST/methods/user_services.py:184 #: REST/methods/user_services.py:120 REST/methods/user_services.py:188
#: auths/IP/Authenticator.py:60 #: auths/IP/Authenticator.py:60
msgid "IP" msgid "IP"
msgstr "IP " msgstr "IP "
#: REST/methods/user_services.py:117 REST/methods/user_services.py:185 #: REST/methods/user_services.py:121 REST/methods/user_services.py:189
msgid "Friendly name" msgid "Friendly name"
msgstr "Nombre descriptivo" msgstr "Nombre descriptivo"
#: REST/methods/user_services.py:119 #: REST/methods/user_services.py:123
msgid "Status date" msgid "Status date"
msgstr "Fecha de estado" msgstr "Fecha de estado"
#: REST/methods/user_services.py:120 #: REST/methods/user_services.py:124
msgid "In Use" msgid "In Use"
msgstr "En uso" msgstr "En uso"
#: REST/methods/user_services.py:121 #: REST/methods/user_services.py:125
msgid "Src Host" msgid "Src Host"
msgstr "Host Orig." msgstr "Host Orig."
#: REST/methods/user_services.py:122 #: REST/methods/user_services.py:126
msgid "Src Ip" msgid "Src Ip"
msgstr "Ip Orig." msgstr "Ip Orig."
#: REST/methods/user_services.py:123 #: REST/methods/user_services.py:127
msgid "Owner" msgid "Owner"
msgstr "Propietario" msgstr "Propietario"
#: REST/methods/user_services.py:124 REST/methods/user_services.py:188 #: REST/methods/user_services.py:128 REST/methods/user_services.py:192
msgid "Actor version" msgid "Actor version"
msgstr "Versión de actor" msgstr "Versión de actor"
#: REST/methods/user_services.py:151 #: REST/methods/user_services.py:155
msgid "Item already being removed" msgid "Item already being removed"
msgstr "Elemento quitado ya" msgstr "Elemento quitado ya"
#: REST/methods/user_services.py:153 #: REST/methods/user_services.py:157
msgid "Item is not removable" msgid "Item is not removable"
msgstr "El elemento no se puede eliminar" msgstr "El elemento no se puede eliminar"
#: REST/methods/user_services.py:177 #: REST/methods/user_services.py:181
msgid "Cached services" msgid "Cached services"
msgstr "Servicios en caché" msgstr "Servicios en caché"
#: REST/methods/user_services.py:186 REST/methods/user_services.py:222 #: REST/methods/user_services.py:190 REST/methods/user_services.py:227
#: REST/methods/user_services.py:325 REST/methods/user_services.py:354 #: REST/methods/user_services.py:330 REST/methods/user_services.py:359
#: templates/uds/admin/tmpl/group.html:54 templates/uds/admin/tmpl/user.html:45 #: templates/uds/admin/tmpl/group.html:54
#: templates/uds/admin/tmpl/service-info.html:22
#: templates/uds/admin/tmpl/user.html:45
msgid "State" msgid "State"
msgstr "Estado" msgstr "Estado"
#: REST/methods/user_services.py:187 #: REST/methods/user_services.py:191
msgid "Cache level" msgid "Cache level"
msgstr "Nivel de caché" msgstr "Nivel de caché"
#: REST/methods/user_services.py:215 #: REST/methods/user_services.py:220
msgid "Assigned groups" msgid "Assigned groups"
msgstr "Grupos asignados" msgstr "Grupos asignados"
#: REST/methods/user_services.py:221 templates/uds/admin/tmpl/group.html.py:46 #: REST/methods/user_services.py:226 templates/uds/admin/tmpl/group.html.py:46
#: templates/uds/admin/tmpl/user.html:37 #: templates/uds/admin/tmpl/user.html:37
msgid "comments" msgid "comments"
msgstr "Comentarios" msgstr "Comentarios"
#: REST/methods/user_services.py:250 #: REST/methods/user_services.py:255
msgid "Assigned transports" msgid "Assigned transports"
msgstr "Transportes asignados" msgstr "Transportes asignados"
#: REST/methods/user_services.py:319 #: REST/methods/user_services.py:324
#: templates/uds/admin/tmpl/services_pool.html:35 #: templates/uds/admin/tmpl/services_pool.html:35
msgid "Publications" msgid "Publications"
msgstr "Publicaciones" msgstr "Publicaciones"
#: REST/methods/user_services.py:324 REST/methods/user_services.py:353 #: REST/methods/user_services.py:329 REST/methods/user_services.py:358
msgid "Publish date" msgid "Publish date"
msgstr "Fecha de publicación" msgstr "Fecha de publicación"
#: REST/methods/user_services.py:326 templates/uds/admin/tmpl/publish.html.py:5 #: REST/methods/user_services.py:331 templates/uds/admin/tmpl/publish.html.py:5
msgid "Reason" msgid "Reason"
msgstr "Razón" msgstr "Razón"
#: REST/methods/user_services.py:348 #: REST/methods/user_services.py:353
msgid "Changelog" msgid "Changelog"
msgstr "Registro de cambios" msgstr "Registro de cambios"
@ -983,11 +993,11 @@ msgstr ""
"La clase de usuario LDAP o el atributo id de usuario son probablemente " "La clase de usuario LDAP o el atributo id de usuario son probablemente "
"incorrectos (¿Ldap es un eDirectory?)" "incorrectos (¿Ldap es un eDirectory?)"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "Accept proxy" msgid "Accept proxy"
msgstr "Aceptar proxy" msgstr "Aceptar proxy"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "" msgid ""
"If checked, requests via proxy will get FORWARDED ip address (take care with " "If checked, requests via proxy will get FORWARDED ip address (take care with "
"this bein checked, can take internal IP addresses from internet)" "this bein checked, can take internal IP addresses from internet)"
@ -1008,35 +1018,35 @@ msgstr "Rango IP"
msgid "All seems to be fine." msgid "All seems to be fine."
msgstr "Parece que todo está bien." msgstr "Parece que todo está bien."
#: auths/InternalDB/Authenticator.py:52 #: auths/InternalDB/Authenticator.py:53
msgid "Internal Database" msgid "Internal Database"
msgstr "Base de datos interna" msgstr "Base de datos interna"
#: auths/InternalDB/Authenticator.py:54 #: auths/InternalDB/Authenticator.py:55
msgid "Internal dabasase authenticator. Doesn't use external sources" msgid "Internal dabasase authenticator. Doesn't use external sources"
msgstr "Autenticador de base de datos interna. No usa fuentes externas" msgstr "Autenticador de base de datos interna. No usa fuentes externas"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "Different user for each host" msgid "Different user for each host"
msgstr "Diferente usuario para cada host" msgstr "Diferente usuario para cada host"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "If checked, each host will have a different user name" msgid "If checked, each host will have a different user name"
msgstr "Si está seleccionado, cada host tendrá un nombre de usuario diferente" msgstr "Si está seleccionado, cada host tendrá un nombre de usuario diferente"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "Reverse DNS" msgid "Reverse DNS"
msgstr "DNS Inversa" msgstr "DNS Inversa"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "If checked, the host will be reversed dns" msgid "If checked, the host will be reversed dns"
msgstr "Si está seleccionado, el host será DNS Inversa" msgstr "Si está seleccionado, el host será DNS Inversa"
#: auths/InternalDB/Authenticator.py:128 #: auths/InternalDB/Authenticator.py:130
msgid "Internal structures seems ok" msgid "Internal structures seems ok"
msgstr "Las estructuras internas parecen correctas" msgstr "Las estructuras internas parecen correctas"
#: auths/InternalDB/Authenticator.py:131 #: auths/InternalDB/Authenticator.py:133
msgid "All seems fine in the authenticator." msgid "All seems fine in the authenticator."
msgstr "Parace que todo funciona correctamente en el autenticador. " msgstr "Parace que todo funciona correctamente en el autenticador. "
@ -2141,7 +2151,7 @@ msgstr "Accesos por Pool"
#: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366 #: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366
#: reports/stats/usage_by_pool.py:98 #: reports/stats/usage_by_pool.py:98
#: templates/uds/admin/tmpl/service-info.html:22 #: templates/uds/admin/tmpl/service-info.html:21
msgid "Pool" msgid "Pool"
msgstr "Pool" msgstr "Pool"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Spanish (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Spanish (http://www.transifex.com/openuds/openuds/language/"
@ -112,115 +112,115 @@ msgstr "Error en la búsqueda"
msgid "Accept" msgid "Accept"
msgstr "Aceptar" msgstr "Aceptar"
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "Error de acceso a datos" msgstr "Error de acceso a datos"
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "Editar grupo" msgstr "Editar grupo"
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "Grupo guardado" msgstr "Grupo guardado"
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "Nuevo meta grupo" msgstr "Nuevo meta grupo"
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "Nuevo grupo" msgstr "Nuevo grupo"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "Buscar grupos" msgstr "Buscar grupos"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "Grupo" msgstr "Grupo"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "Grupos encontrados" msgstr "Grupos encontrados"
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "Error al guardar grupo" msgstr "Error al guardar grupo"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "Borrar grupo" msgstr "Borrar grupo"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "Error al borrar grupo" msgstr "Error al borrar grupo"
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "Editar usuario" msgstr "Editar usuario"
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "Usuario guardado" msgstr "Usuario guardado"
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "Error al guardar usuario" msgstr "Error al guardar usuario"
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "Nuevo usuario" msgstr "Nuevo usuario"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "Buscar usuarios" msgstr "Buscar usuarios"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "Usuario" msgstr "Usuario"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "Usuarios encontrados" msgstr "Usuarios encontrados"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "Eliminar usuario" msgstr "Eliminar usuario"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "Error al borrar usuario" msgstr "Error al borrar usuario"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "Nuevo autenticador" msgstr "Nuevo autenticador"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "Error al crear autenticador" msgstr "Error al crear autenticador"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "Editar autenticador" msgstr "Editar autenticador"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "Error al guardar autenticador" msgstr "Error al guardar autenticador"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "Eliminar autenticador" msgstr "Eliminar autenticador"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "Error al eliminar autenticador" msgstr "Error al eliminar autenticador"
@ -508,93 +508,93 @@ msgstr "Error al crear el informe"
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "Descripción obtención del informe de error" msgstr "Descripción obtención del informe de error"
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "En mantenimiento" msgstr "En mantenimiento"
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "Activo" msgstr "Activo"
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "Información" msgstr "Información"
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
#| msgid "Service creation error" #| msgid "Service creation error"
msgid "Service information" msgid "Service information"
msgstr "Información sobre el servicio" msgstr "Información sobre el servicio"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "Editar servicio" msgstr "Editar servicio"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "Error al crear servicio" msgstr "Error al crear servicio"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "Nuevo servicio" msgstr "Nuevo servicio"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "Error al guardar servicio" msgstr "Error al guardar servicio"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "Eliminar servicio" msgstr "Eliminar servicio"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "Error al eliminar servicio" msgstr "Error al eliminar servicio"
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "Mantenimiento" msgstr "Mantenimiento"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "Modo de mantenimiento" msgstr "Modo de mantenimiento"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "¿Entrar en modo mantenimiento?" msgstr "¿Entrar en modo mantenimiento?"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "Salir del modo mantenimiento" msgstr "Salir del modo mantenimiento"
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "Entrar en modo mantenimiento" msgstr "Entrar en modo mantenimiento"
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "Salir del modo mantenimiento" msgstr "Salir del modo mantenimiento"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "Nuevo proveedor de servicios" msgstr "Nuevo proveedor de servicios"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "Error en la creación del proveedor de servicios" msgstr "Error en la creación del proveedor de servicios"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "Editar proveedor de servicios" msgstr "Editar proveedor de servicios"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "Error al guardar proveedor de servicios" msgstr "Error al guardar proveedor de servicios"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "Eliminar proveedor de servicios" msgstr "Eliminar proveedor de servicios"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "Error al eliminar el proveedor de servicios" msgstr "Error al eliminar el proveedor de servicios"
@ -618,30 +618,30 @@ msgstr "Inicio"
msgid "Ending" msgid "Ending"
msgstr "Final" msgstr "Final"
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "Añadir acción programada" msgstr "Añadir acción programada"
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "Editar calendario de acceso" msgstr "Editar calendario de acceso"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "Eliminar calendario de acceso" msgstr "Eliminar calendario de acceso"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "Error de extracción de calendario de acceso" msgstr "Error de extracción de calendario de acceso"
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "Añadir calendario de acceso" msgstr "Añadir calendario de acceso"
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "Acceso reserva predeterminado" msgstr "Acceso reserva predeterminado"
@ -684,85 +684,85 @@ msgstr "Quitar transporte"
msgid "Transport removal error" msgid "Transport removal error"
msgstr "Error al quitar transporte" msgstr "Error al quitar transporte"
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "error" msgstr "error"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "Retirar elemento de la caché" msgstr "Retirar elemento de la caché"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "Error de eliminación" msgstr "Error de eliminación"
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "Agregar grupo" msgstr "Agregar grupo"
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "Debe proporcionar autenticador y grupo" msgstr "Debe proporcionar autenticador y grupo"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "Quitar grupo" msgstr "Quitar grupo"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "Error al quitar grupo" msgstr "Error al quitar grupo"
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "Quitar servicio asignado" msgstr "Quitar servicio asignado"
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "Contenido" msgstr "Contenido"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "Nuevo Pool de Servicios" msgstr "Nuevo Pool de Servicios"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "error de creación" msgstr "error de creación"
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "Publicar en la creación" msgstr "Publicar en la creación"
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "" msgstr ""
"Si se selecciona, se iniciará la publicación inmediatamente después de la " "Si se selecciona, se iniciará la publicación inmediatamente después de la "
"creación" "creación"
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "error al guardar" msgstr "error al guardar"
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "Borrar" msgstr "Borrar"
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "error al eliminar" msgstr "error al eliminar"
@ -794,27 +794,27 @@ msgstr "Caché"
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "La caché se ha vaciado" msgstr "La caché se ha vaciado"
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "Error en la operación de actualización" msgstr "Error en la operación de actualización"
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "Fecha" msgstr "Fecha"
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "nivel" msgstr "nivel"
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "fuente" msgstr "fuente"
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "Mensaje" msgstr "Mensaje"
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "Logs" msgstr "Logs"
@ -914,128 +914,128 @@ msgstr "Un momento..."
msgid "Never" msgid "Never"
msgstr "Nunca" msgstr "Nunca"
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "_MENU_ Registros por página" msgstr "_MENU_ Registros por página"
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "Vacío" msgstr "Vacío"
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "No hay registros" msgstr "No hay registros"
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "Registros de _START_ a _END_ de _TOTAL_" msgstr "Registros de _START_ a _END_ de _TOTAL_"
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "(registros filtrados de un total de _MAX_)" msgstr "(registros filtrados de un total de _MAX_)"
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "Por favor espere, procesando" msgstr "Por favor espere, procesando"
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "Filtro" msgstr "Filtro"
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "%d filas seleccionadas" msgstr "%d filas seleccionadas"
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "Haga clic en una fila para seleccionarla" msgstr "Haga clic en una fila para seleccionarla"
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "Seleccionar una fila" msgstr "Seleccionar una fila"
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "Nuevo" msgstr "Nuevo"
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "Permisos" msgstr "Permisos"
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "Xls" msgstr "Xls"
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "Mensaje" msgstr "Mensaje"
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "Fallado la conexión" msgstr "Fallado la conexión"
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "Este campo es obligatorio" msgstr "Este campo es obligatorio"
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "Por favor corrija este campo." msgstr "Por favor corrija este campo."
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "Por favor, introduzca una dirección de correo electrónico válida." msgstr "Por favor, introduzca una dirección de correo electrónico válida."
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Por favor, introduzca una URL válida." msgstr "Por favor, introduzca una URL válida."
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "Por favor, introduzca una fecha válida." msgstr "Por favor, introduzca una fecha válida."
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "Por favor, introduzca una fecha válida (ISO)." msgstr "Por favor, introduzca una fecha válida (ISO)."
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "Por favor, introduzca un número válido." msgstr "Por favor, introduzca un número válido."
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "Por favor, introduzca sólo cifras." msgstr "Por favor, introduzca sólo cifras."
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "Por favor, introduzca un número de tarjeta de crédito válida." msgstr "Por favor, introduzca un número de tarjeta de crédito válida."
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "Por favor, introduzca el mismo valor otra vez." msgstr "Por favor, introduzca el mismo valor otra vez."
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "Por favor, no introduzca más de {0} caracteres." msgstr "Por favor, no introduzca más de {0} caracteres."
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "Por favor, introduzca al menos {0} caracteres." msgstr "Por favor, introduzca al menos {0} caracteres."
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "Por favor, introduzca un valor de entre {0} y {1} caracteres." msgstr "Por favor, introduzca un valor de entre {0} y {1} caracteres."
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "Por favor, introduzca un valor entre {0} y {1}." msgstr "Por favor, introduzca un valor entre {0} y {1}."
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "Por favor, introduzca un valor menor o igual a {0}." msgstr "Por favor, introduzca un valor menor o igual a {0}."
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "Por favor, introduzca un valor mayor o igual a {0}." msgstr "Por favor, introduzca un valor mayor o igual a {0}."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Basque (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Basque (http://www.transifex.com/openuds/openuds/language/"
@ -45,7 +45,7 @@ msgstr ""
#: REST/methods/osmanagers.py:57 REST/methods/providers.py:65 #: REST/methods/osmanagers.py:57 REST/methods/providers.py:65
#: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64 #: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64
#: REST/methods/services_pools.py:76 REST/methods/transports.py:56 #: REST/methods/services_pools.py:76 REST/methods/transports.py:56
#: REST/methods/user_services.py:220 REST/methods/user_services.py:255 #: REST/methods/user_services.py:225 REST/methods/user_services.py:260
#: REST/methods/users_groups.py:95 REST/model.py:132 #: REST/methods/users_groups.py:95 REST/model.py:132
#: templates/uds/admin/tmpl/calendar_rule.html:5 #: templates/uds/admin/tmpl/calendar_rule.html:5
#: templates/uds/admin/tmpl/calendar_rule.html:7 #: templates/uds/admin/tmpl/calendar_rule.html:7
@ -55,9 +55,9 @@ msgstr ""
#: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104 #: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104
#: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58 #: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58
#: REST/methods/providers.py:66 REST/methods/services.py:188 #: REST/methods/providers.py:66 REST/methods/services.py:189
#: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57 #: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57
#: REST/methods/user_services.py:257 REST/methods/users_groups.py:96 #: REST/methods/user_services.py:262 REST/methods/users_groups.py:96
#: REST/methods/users_groups.py:209 REST/model.py:139 #: REST/methods/users_groups.py:209 REST/model.py:139
#: templates/uds/admin/tmpl/calendar_rule.html:14 #: templates/uds/admin/tmpl/calendar_rule.html:14
#: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40 #: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40
@ -66,7 +66,7 @@ msgstr ""
#: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89 #: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89
#: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55 #: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55
#: REST/methods/user_services.py:254 REST/model.py:148 #: REST/methods/user_services.py:259 REST/model.py:148
#: templates/uds/admin/tmpl/pool_add_access.html:5 #: templates/uds/admin/tmpl/pool_add_access.html:5
msgid "Priority" msgid "Priority"
msgstr "" msgstr ""
@ -86,7 +86,7 @@ msgstr ""
#: REST/methods/authenticators.py:64 REST/methods/calendars.py:63 #: REST/methods/authenticators.py:64 REST/methods/calendars.py:63
#: REST/methods/networks.py:63 REST/methods/osmanagers.py:60 #: REST/methods/networks.py:63 REST/methods/osmanagers.py:60
#: REST/methods/providers.py:70 REST/methods/services.py:192 #: REST/methods/providers.py:70 REST/methods/services.py:193
#: REST/methods/services_pools.py:81 REST/methods/transports.py:59 #: REST/methods/services_pools.py:81 REST/methods/transports.py:59
msgid "tags" msgid "tags"
msgstr "" msgstr ""
@ -120,7 +120,7 @@ msgstr ""
msgid "Duration" msgid "Duration"
msgstr "" msgstr ""
#: REST/methods/calendarrules.py:128 REST/methods/services.py:153 #: REST/methods/calendarrules.py:128 REST/methods/services.py:154
msgid "Element already exists (duplicate key error)" msgid "Element already exists (duplicate key error)"
msgstr "" msgstr ""
@ -150,7 +150,7 @@ msgstr ""
#: REST/methods/images.py:60 REST/methods/images.py:79 #: REST/methods/images.py:60 REST/methods/images.py:79
#: REST/methods/services_pool_groups.py:63 #: REST/methods/services_pool_groups.py:63
#: templates/uds/admin/tmpl/new_image.html:10 #: templates/uds/admin/tmpl/new_image.html:10
#: templates/uds/admin/tmpl/service-info.html:21 #: templates/uds/admin/tmpl/service-info.html:23
msgid "Image" msgid "Image"
msgstr "" msgstr ""
@ -244,36 +244,44 @@ msgstr ""
msgid "Generates" msgid "Generates"
msgstr "" msgstr ""
#: REST/methods/services.py:157 #: REST/methods/services.py:158
#, python-brace-format #, python-brace-format
msgid "Input error: {0}" msgid "Input error: {0}"
msgstr "" msgstr ""
#: REST/methods/services.py:181 #: REST/methods/services.py:182
#, python-brace-format #, python-brace-format
msgid "Services of {0}" msgid "Services of {0}"
msgstr "" msgstr ""
#: REST/methods/services.py:183 #: REST/methods/services.py:184
msgid "Current services" msgid "Current services"
msgstr "" msgstr ""
#: REST/methods/services.py:187 #: REST/methods/services.py:188
msgid "Service name" msgid "Service name"
msgstr "" msgstr ""
#: REST/methods/services.py:189 REST/methods/user_services.py:256 #: REST/methods/services.py:190 REST/methods/user_services.py:261
msgid "Type" msgid "Type"
msgstr "" msgstr ""
#: REST/methods/services.py:190 #: REST/methods/services.py:191
msgid "Deployed services" msgid "Deployed services"
msgstr "" msgstr ""
#: REST/methods/services.py:191 templates/uds/admin/tmpl/dashboard.html.py:88 #: REST/methods/services.py:192 templates/uds/admin/tmpl/dashboard.html.py:88
msgid "User services" msgid "User services"
msgstr "" msgstr ""
#: REST/methods/services.py:246
msgid "With errors"
msgstr ""
#: REST/methods/services.py:246
msgid "Ok"
msgstr ""
#: REST/methods/services_pool_calendars.py:85 #: REST/methods/services_pool_calendars.py:85
msgid "Access restrictions by calendar" msgid "Access restrictions by calendar"
msgstr "" msgstr ""
@ -323,11 +331,11 @@ msgstr ""
msgid "Services Pool Groups" msgid "Services Pool Groups"
msgstr "" msgstr ""
#: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:151 #: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:160
msgid "Associated Image" msgid "Associated Image"
msgstr "" msgstr ""
#: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:152 #: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:161
msgid "Image assocciated with this service" msgid "Image assocciated with this service"
msgstr "" msgstr ""
@ -342,7 +350,7 @@ msgstr ""
msgid "Parent Service" msgid "Parent Service"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:78 REST/methods/user_services.py:118 #: REST/methods/services_pools.py:78 REST/methods/user_services.py:122
msgid "status" msgid "status"
msgstr "" msgstr ""
@ -354,99 +362,99 @@ msgstr ""
msgid "Pool Group" msgid "Pool Group"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:105 REST/methods/services_pools.py:158 #: REST/methods/services_pools.py:93 REST/methods/services_pools.py:167
msgid "Default" msgid "Default"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:126 #: REST/methods/services_pools.py:135
msgid "Create at least one OS Manager before creating a new service pool" msgid "Create at least one OS Manager before creating a new service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:128 #: REST/methods/services_pools.py:137
msgid "Create at least a service before creating a new service pool" msgid "Create at least a service before creating a new service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:135 #: REST/methods/services_pools.py:144
msgid "Base service" msgid "Base service"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:136 #: REST/methods/services_pools.py:145
msgid "Service used as base of this service pool" msgid "Service used as base of this service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:143 #: REST/methods/services_pools.py:152
msgid "OS Manager" msgid "OS Manager"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:144 #: REST/methods/services_pools.py:153
msgid "OS Manager used as base of this service pool" msgid "OS Manager used as base of this service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:155 REST/methods/services_pools.py:163 #: REST/methods/services_pools.py:164 REST/methods/services_pools.py:172
#: services/OVirt/OVirtLinkedService.py:167 #: services/OVirt/OVirtLinkedService.py:167
msgid "Display" msgid "Display"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:159 #: REST/methods/services_pools.py:168
msgid "Pool group" msgid "Pool group"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:160 #: REST/methods/services_pools.py:169
msgid "Pool group for this pool (for pool clasify on display)" msgid "Pool group for this pool (for pool clasify on display)"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:168 #: REST/methods/services_pools.py:177
msgid "Initial available services" msgid "Initial available services"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:169 #: REST/methods/services_pools.py:178
msgid "Services created initially for this service pool" msgid "Services created initially for this service pool"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:172 REST/methods/services_pools.py:181 #: REST/methods/services_pools.py:181 REST/methods/services_pools.py:190
#: REST/methods/services_pools.py:190 REST/methods/services_pools.py:199 #: REST/methods/services_pools.py:199 REST/methods/services_pools.py:208
msgid "Availability" msgid "Availability"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:177 #: REST/methods/services_pools.py:186
msgid "Services to keep in cache" msgid "Services to keep in cache"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:178 #: REST/methods/services_pools.py:187
msgid "Services kept in cache for improved user service assignation" msgid "Services kept in cache for improved user service assignation"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:186 #: REST/methods/services_pools.py:195
msgid "Services to keep in L2 cache" msgid "Services to keep in L2 cache"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:187 #: REST/methods/services_pools.py:196
msgid "Services kept in cache of level2 for improved service generation" msgid "Services kept in cache of level2 for improved service generation"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:195 #: REST/methods/services_pools.py:204
msgid "Maximum number of services to provide" msgid "Maximum number of services to provide"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:196 #: REST/methods/services_pools.py:205
msgid "" msgid ""
"Maximum number of service (assigned and L1 cache) that can be created for " "Maximum number of service (assigned and L1 cache) that can be created for "
"this service" "this service"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:203 #: REST/methods/services_pools.py:212
msgid "Show transports" msgid "Show transports"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:204 #: REST/methods/services_pools.py:213
msgid "If active, alternative transports for user will be shown" msgid "If active, alternative transports for user will be shown"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:219 #: REST/methods/services_pools.py:228
msgid "Base service does not exist anymore" msgid "Base service does not exist anymore"
msgstr "" msgstr ""
#: REST/methods/services_pools.py:238 #: REST/methods/services_pools.py:247
msgid "This service requires an OS Manager" msgid "This service requires an OS Manager"
msgstr "" msgstr ""
@ -480,102 +488,104 @@ msgstr ""
msgid "unknown" msgid "unknown"
msgstr "" msgstr ""
#: REST/methods/user_services.py:109 #: REST/methods/user_services.py:113
#: templates/uds/admin/tmpl/services_pool.html:31 #: templates/uds/admin/tmpl/services_pool.html:31
msgid "Assigned services" msgid "Assigned services"
msgstr "" msgstr ""
#: REST/methods/user_services.py:113 REST/methods/user_services.py:181 #: REST/methods/user_services.py:117 REST/methods/user_services.py:185
msgid "Creation date" msgid "Creation date"
msgstr "" msgstr ""
#: REST/methods/user_services.py:114 REST/methods/user_services.py:182 #: REST/methods/user_services.py:118 REST/methods/user_services.py:186
#: REST/methods/user_services.py:323 REST/methods/user_services.py:352 #: REST/methods/user_services.py:328 REST/methods/user_services.py:357
msgid "Revision" msgid "Revision"
msgstr "" msgstr ""
#: REST/methods/user_services.py:116 REST/methods/user_services.py:184 #: REST/methods/user_services.py:120 REST/methods/user_services.py:188
#: auths/IP/Authenticator.py:60 #: auths/IP/Authenticator.py:60
msgid "IP" msgid "IP"
msgstr "" msgstr ""
#: REST/methods/user_services.py:117 REST/methods/user_services.py:185 #: REST/methods/user_services.py:121 REST/methods/user_services.py:189
msgid "Friendly name" msgid "Friendly name"
msgstr "" msgstr ""
#: REST/methods/user_services.py:119 #: REST/methods/user_services.py:123
msgid "Status date" msgid "Status date"
msgstr "" msgstr ""
#: REST/methods/user_services.py:120 #: REST/methods/user_services.py:124
msgid "In Use" msgid "In Use"
msgstr "" msgstr ""
#: REST/methods/user_services.py:121 #: REST/methods/user_services.py:125
msgid "Src Host" msgid "Src Host"
msgstr "" msgstr ""
#: REST/methods/user_services.py:122 #: REST/methods/user_services.py:126
msgid "Src Ip" msgid "Src Ip"
msgstr "" msgstr ""
#: REST/methods/user_services.py:123 #: REST/methods/user_services.py:127
msgid "Owner" msgid "Owner"
msgstr "" msgstr ""
#: REST/methods/user_services.py:124 REST/methods/user_services.py:188 #: REST/methods/user_services.py:128 REST/methods/user_services.py:192
msgid "Actor version" msgid "Actor version"
msgstr "" msgstr ""
#: REST/methods/user_services.py:151 #: REST/methods/user_services.py:155
msgid "Item already being removed" msgid "Item already being removed"
msgstr "" msgstr ""
#: REST/methods/user_services.py:153 #: REST/methods/user_services.py:157
msgid "Item is not removable" msgid "Item is not removable"
msgstr "" msgstr ""
#: REST/methods/user_services.py:177 #: REST/methods/user_services.py:181
msgid "Cached services" msgid "Cached services"
msgstr "" msgstr ""
#: REST/methods/user_services.py:186 REST/methods/user_services.py:222 #: REST/methods/user_services.py:190 REST/methods/user_services.py:227
#: REST/methods/user_services.py:325 REST/methods/user_services.py:354 #: REST/methods/user_services.py:330 REST/methods/user_services.py:359
#: templates/uds/admin/tmpl/group.html:54 templates/uds/admin/tmpl/user.html:45 #: templates/uds/admin/tmpl/group.html:54
#: templates/uds/admin/tmpl/service-info.html:22
#: templates/uds/admin/tmpl/user.html:45
msgid "State" msgid "State"
msgstr "" msgstr ""
#: REST/methods/user_services.py:187 #: REST/methods/user_services.py:191
msgid "Cache level" msgid "Cache level"
msgstr "" msgstr ""
#: REST/methods/user_services.py:215 #: REST/methods/user_services.py:220
msgid "Assigned groups" msgid "Assigned groups"
msgstr "" msgstr ""
#: REST/methods/user_services.py:221 templates/uds/admin/tmpl/group.html.py:46 #: REST/methods/user_services.py:226 templates/uds/admin/tmpl/group.html.py:46
#: templates/uds/admin/tmpl/user.html:37 #: templates/uds/admin/tmpl/user.html:37
msgid "comments" msgid "comments"
msgstr "" msgstr ""
#: REST/methods/user_services.py:250 #: REST/methods/user_services.py:255
msgid "Assigned transports" msgid "Assigned transports"
msgstr "" msgstr ""
#: REST/methods/user_services.py:319 #: REST/methods/user_services.py:324
#: templates/uds/admin/tmpl/services_pool.html:35 #: templates/uds/admin/tmpl/services_pool.html:35
msgid "Publications" msgid "Publications"
msgstr "" msgstr ""
#: REST/methods/user_services.py:324 REST/methods/user_services.py:353 #: REST/methods/user_services.py:329 REST/methods/user_services.py:358
msgid "Publish date" msgid "Publish date"
msgstr "" msgstr ""
#: REST/methods/user_services.py:326 templates/uds/admin/tmpl/publish.html.py:5 #: REST/methods/user_services.py:331 templates/uds/admin/tmpl/publish.html.py:5
msgid "Reason" msgid "Reason"
msgstr "" msgstr ""
#: REST/methods/user_services.py:348 #: REST/methods/user_services.py:353
msgid "Changelog" msgid "Changelog"
msgstr "" msgstr ""
@ -946,11 +956,11 @@ msgid ""
"Ldap user class or user id attr is probably wrong (Ldap is an eDirectory?)" "Ldap user class or user id attr is probably wrong (Ldap is an eDirectory?)"
msgstr "" msgstr ""
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "Accept proxy" msgid "Accept proxy"
msgstr "" msgstr ""
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "" msgid ""
"If checked, requests via proxy will get FORWARDED ip address (take care with " "If checked, requests via proxy will get FORWARDED ip address (take care with "
"this bein checked, can take internal IP addresses from internet)" "this bein checked, can take internal IP addresses from internet)"
@ -968,35 +978,35 @@ msgstr ""
msgid "All seems to be fine." msgid "All seems to be fine."
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:52 #: auths/InternalDB/Authenticator.py:53
msgid "Internal Database" msgid "Internal Database"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:54 #: auths/InternalDB/Authenticator.py:55
msgid "Internal dabasase authenticator. Doesn't use external sources" msgid "Internal dabasase authenticator. Doesn't use external sources"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "Different user for each host" msgid "Different user for each host"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "If checked, each host will have a different user name" msgid "If checked, each host will have a different user name"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "Reverse DNS" msgid "Reverse DNS"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "If checked, the host will be reversed dns" msgid "If checked, the host will be reversed dns"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:128 #: auths/InternalDB/Authenticator.py:130
msgid "Internal structures seems ok" msgid "Internal structures seems ok"
msgstr "" msgstr ""
#: auths/InternalDB/Authenticator.py:131 #: auths/InternalDB/Authenticator.py:133
msgid "All seems fine in the authenticator." msgid "All seems fine in the authenticator."
msgstr "" msgstr ""
@ -2037,7 +2047,7 @@ msgstr ""
#: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366 #: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366
#: reports/stats/usage_by_pool.py:98 #: reports/stats/usage_by_pool.py:98
#: templates/uds/admin/tmpl/service-info.html:22 #: templates/uds/admin/tmpl/service-info.html:21
msgid "Pool" msgid "Pool"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Basque (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Basque (http://www.transifex.com/openuds/openuds/language/"
@ -107,115 +107,115 @@ msgstr ""
msgid "Accept" msgid "Accept"
msgstr "onar ezazu" msgstr "onar ezazu"
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "erabiltzaile" msgstr "erabiltzaile"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "" msgstr ""
@ -503,92 +503,92 @@ msgstr ""
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
msgid "Service information" msgid "Service information"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "" msgstr ""
@ -612,30 +612,30 @@ msgstr ""
msgid "Ending" msgid "Ending"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "" msgstr ""
@ -678,83 +678,83 @@ msgstr ""
msgid "Transport removal error" msgid "Transport removal error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "" msgstr ""
@ -786,27 +786,27 @@ msgstr ""
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "" msgstr ""
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "" msgstr ""
@ -906,128 +906,128 @@ msgstr ""
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "" msgstr ""
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "" msgstr ""
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: French (http://www.transifex.com/openuds/openuds/language/" "Language-Team: French (http://www.transifex.com/openuds/openuds/language/"
@ -45,7 +45,7 @@ msgstr "Authentificateurs actuels"
#: REST/methods/osmanagers.py:57 REST/methods/providers.py:65 #: REST/methods/osmanagers.py:57 REST/methods/providers.py:65
#: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64 #: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64
#: REST/methods/services_pools.py:76 REST/methods/transports.py:56 #: REST/methods/services_pools.py:76 REST/methods/transports.py:56
#: REST/methods/user_services.py:220 REST/methods/user_services.py:255 #: REST/methods/user_services.py:225 REST/methods/user_services.py:260
#: REST/methods/users_groups.py:95 REST/model.py:132 #: REST/methods/users_groups.py:95 REST/model.py:132
#: templates/uds/admin/tmpl/calendar_rule.html:5 #: templates/uds/admin/tmpl/calendar_rule.html:5
#: templates/uds/admin/tmpl/calendar_rule.html:7 #: templates/uds/admin/tmpl/calendar_rule.html:7
@ -55,9 +55,9 @@ msgstr "Nom"
#: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104 #: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104
#: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58 #: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58
#: REST/methods/providers.py:66 REST/methods/services.py:188 #: REST/methods/providers.py:66 REST/methods/services.py:189
#: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57 #: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57
#: REST/methods/user_services.py:257 REST/methods/users_groups.py:96 #: REST/methods/user_services.py:262 REST/methods/users_groups.py:96
#: REST/methods/users_groups.py:209 REST/model.py:139 #: REST/methods/users_groups.py:209 REST/model.py:139
#: templates/uds/admin/tmpl/calendar_rule.html:14 #: templates/uds/admin/tmpl/calendar_rule.html:14
#: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40 #: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40
@ -66,7 +66,7 @@ msgstr "Commentaires"
#: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89 #: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89
#: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55 #: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55
#: REST/methods/user_services.py:254 REST/model.py:148 #: REST/methods/user_services.py:259 REST/model.py:148
#: templates/uds/admin/tmpl/pool_add_access.html:5 #: templates/uds/admin/tmpl/pool_add_access.html:5
msgid "Priority" msgid "Priority"
msgstr "Priorité" msgstr "Priorité"
@ -86,7 +86,7 @@ msgstr "Utilisateurs"
#: REST/methods/authenticators.py:64 REST/methods/calendars.py:63 #: REST/methods/authenticators.py:64 REST/methods/calendars.py:63
#: REST/methods/networks.py:63 REST/methods/osmanagers.py:60 #: REST/methods/networks.py:63 REST/methods/osmanagers.py:60
#: REST/methods/providers.py:70 REST/methods/services.py:192 #: REST/methods/providers.py:70 REST/methods/services.py:193
#: REST/methods/services_pools.py:81 REST/methods/transports.py:59 #: REST/methods/services_pools.py:81 REST/methods/transports.py:59
msgid "tags" msgid "tags"
msgstr "Tags" msgstr "Tags"
@ -120,7 +120,7 @@ msgstr "Chaque"
msgid "Duration" msgid "Duration"
msgstr "Durée" msgstr "Durée"
#: REST/methods/calendarrules.py:128 REST/methods/services.py:153 #: REST/methods/calendarrules.py:128 REST/methods/services.py:154
msgid "Element already exists (duplicate key error)" msgid "Element already exists (duplicate key error)"
msgstr "Élément existe déjà (erreur de clé en double)" msgstr "Élément existe déjà (erreur de clé en double)"
@ -150,7 +150,7 @@ msgstr "Galerie d'images"
#: REST/methods/images.py:60 REST/methods/images.py:79 #: REST/methods/images.py:60 REST/methods/images.py:79
#: REST/methods/services_pool_groups.py:63 #: REST/methods/services_pool_groups.py:63
#: templates/uds/admin/tmpl/new_image.html:10 #: templates/uds/admin/tmpl/new_image.html:10
#: templates/uds/admin/tmpl/service-info.html:21 #: templates/uds/admin/tmpl/service-info.html:23
msgid "Image" msgid "Image"
msgstr "Image" msgstr "Image"
@ -246,36 +246,44 @@ msgstr "Description"
msgid "Generates" msgid "Generates"
msgstr "Génère" msgstr "Génère"
#: REST/methods/services.py:157 #: REST/methods/services.py:158
#, python-brace-format #, python-brace-format
msgid "Input error: {0}" msgid "Input error: {0}"
msgstr "Erreur d'entrée : {0}" msgstr "Erreur d'entrée : {0}"
#: REST/methods/services.py:181 #: REST/methods/services.py:182
#, python-brace-format #, python-brace-format
msgid "Services of {0}" msgid "Services of {0}"
msgstr "Services de {0}" msgstr "Services de {0}"
#: REST/methods/services.py:183 #: REST/methods/services.py:184
msgid "Current services" msgid "Current services"
msgstr "Services actuels" msgstr "Services actuels"
#: REST/methods/services.py:187 #: REST/methods/services.py:188
msgid "Service name" msgid "Service name"
msgstr "Nom du service" msgstr "Nom du service"
#: REST/methods/services.py:189 REST/methods/user_services.py:256 #: REST/methods/services.py:190 REST/methods/user_services.py:261
msgid "Type" msgid "Type"
msgstr "Type" msgstr "Type"
#: REST/methods/services.py:190 #: REST/methods/services.py:191
msgid "Deployed services" msgid "Deployed services"
msgstr "Services déployés" msgstr "Services déployés"
#: REST/methods/services.py:191 templates/uds/admin/tmpl/dashboard.html.py:88 #: REST/methods/services.py:192 templates/uds/admin/tmpl/dashboard.html.py:88
msgid "User services" msgid "User services"
msgstr "Services aux utilisateurs" msgstr "Services aux utilisateurs"
#: REST/methods/services.py:246
msgid "With errors"
msgstr "Avec Erreurs"
#: REST/methods/services.py:246
msgid "Ok"
msgstr "Bien"
#: REST/methods/services_pool_calendars.py:85 #: REST/methods/services_pool_calendars.py:85
msgid "Access restrictions by calendar" msgid "Access restrictions by calendar"
msgstr "Restrictions d'accès par calendrier" msgstr "Restrictions d'accès par calendrier"
@ -325,11 +333,11 @@ msgstr "Dernière exécution"
msgid "Services Pool Groups" msgid "Services Pool Groups"
msgstr "Groupes de services piscine" msgstr "Groupes de services piscine"
#: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:151 #: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:160
msgid "Associated Image" msgid "Associated Image"
msgstr "Image associée" msgstr "Image associée"
#: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:152 #: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:161
msgid "Image assocciated with this service" msgid "Image assocciated with this service"
msgstr "Image assocciated grâce à ce service" msgstr "Image assocciated grâce à ce service"
@ -344,7 +352,7 @@ msgstr "Piscines service"
msgid "Parent Service" msgid "Parent Service"
msgstr "Service parent" msgstr "Service parent"
#: REST/methods/services_pools.py:78 REST/methods/user_services.py:118 #: REST/methods/services_pools.py:78 REST/methods/user_services.py:122
msgid "status" msgid "status"
msgstr "statut" msgstr "statut"
@ -356,86 +364,86 @@ msgstr "Montre transports"
msgid "Pool Group" msgid "Pool Group"
msgstr "Groupe piscine" msgstr "Groupe piscine"
#: REST/methods/services_pools.py:105 REST/methods/services_pools.py:158 #: REST/methods/services_pools.py:93 REST/methods/services_pools.py:167
msgid "Default" msgid "Default"
msgstr "Par défaut" msgstr "Par défaut"
#: REST/methods/services_pools.py:126 #: REST/methods/services_pools.py:135
msgid "Create at least one OS Manager before creating a new service pool" msgid "Create at least one OS Manager before creating a new service pool"
msgstr "Créez au moins un OS gérant avant de créer un nouveau pool service" msgstr "Créez au moins un OS gérant avant de créer un nouveau pool service"
#: REST/methods/services_pools.py:128 #: REST/methods/services_pools.py:137
msgid "Create at least a service before creating a new service pool" msgid "Create at least a service before creating a new service pool"
msgstr "Créez au moins un service avant de créer un nouveau pool service" msgstr "Créez au moins un service avant de créer un nouveau pool service"
#: REST/methods/services_pools.py:135 #: REST/methods/services_pools.py:144
msgid "Base service" msgid "Base service"
msgstr "Service de base" msgstr "Service de base"
#: REST/methods/services_pools.py:136 #: REST/methods/services_pools.py:145
msgid "Service used as base of this service pool" msgid "Service used as base of this service pool"
msgstr "Service utilisé comme base de cette piscine service" msgstr "Service utilisé comme base de cette piscine service"
#: REST/methods/services_pools.py:143 #: REST/methods/services_pools.py:152
msgid "OS Manager" msgid "OS Manager"
msgstr "Gestionnaire de système d'exploitation" msgstr "Gestionnaire de système d'exploitation"
#: REST/methods/services_pools.py:144 #: REST/methods/services_pools.py:153
msgid "OS Manager used as base of this service pool" msgid "OS Manager used as base of this service pool"
msgstr "Gestionnaire de l'OS utilisé comme base de cette piscine service" msgstr "Gestionnaire de l'OS utilisé comme base de cette piscine service"
#: REST/methods/services_pools.py:155 REST/methods/services_pools.py:163 #: REST/methods/services_pools.py:164 REST/methods/services_pools.py:172
#: services/OVirt/OVirtLinkedService.py:167 #: services/OVirt/OVirtLinkedService.py:167
msgid "Display" msgid "Display"
msgstr "Affichage" msgstr "Affichage"
#: REST/methods/services_pools.py:159 #: REST/methods/services_pools.py:168
msgid "Pool group" msgid "Pool group"
msgstr "Groupe piscine" msgstr "Groupe piscine"
#: REST/methods/services_pools.py:160 #: REST/methods/services_pools.py:169
msgid "Pool group for this pool (for pool clasify on display)" msgid "Pool group for this pool (for pool clasify on display)"
msgstr "Groupe de piscine pour ce pool (pour piscine Benodigd sur écran)" msgstr "Groupe de piscine pour ce pool (pour piscine Benodigd sur écran)"
#: REST/methods/services_pools.py:168 #: REST/methods/services_pools.py:177
msgid "Initial available services" msgid "Initial available services"
msgstr "Initiales services disponibles" msgstr "Initiales services disponibles"
#: REST/methods/services_pools.py:169 #: REST/methods/services_pools.py:178
msgid "Services created initially for this service pool" msgid "Services created initially for this service pool"
msgstr "Services créés initialement pour ce pool service" msgstr "Services créés initialement pour ce pool service"
#: REST/methods/services_pools.py:172 REST/methods/services_pools.py:181 #: REST/methods/services_pools.py:181 REST/methods/services_pools.py:190
#: REST/methods/services_pools.py:190 REST/methods/services_pools.py:199 #: REST/methods/services_pools.py:199 REST/methods/services_pools.py:208
#| msgid "Availability Zones" #| msgid "Availability Zones"
msgid "Availability" msgid "Availability"
msgstr "Disponibilité" msgstr "Disponibilité"
#: REST/methods/services_pools.py:177 #: REST/methods/services_pools.py:186
msgid "Services to keep in cache" msgid "Services to keep in cache"
msgstr "Services pour conserver en cache" msgstr "Services pour conserver en cache"
#: REST/methods/services_pools.py:178 #: REST/methods/services_pools.py:187
msgid "Services kept in cache for improved user service assignation" msgid "Services kept in cache for improved user service assignation"
msgstr "" msgstr ""
"Services conservés dans le cache pour l'assignation de service utilisateur " "Services conservés dans le cache pour l'assignation de service utilisateur "
"améliorée" "améliorée"
#: REST/methods/services_pools.py:186 #: REST/methods/services_pools.py:195
msgid "Services to keep in L2 cache" msgid "Services to keep in L2 cache"
msgstr "Services de garder en mémoire cache L2" msgstr "Services de garder en mémoire cache L2"
#: REST/methods/services_pools.py:187 #: REST/methods/services_pools.py:196
msgid "Services kept in cache of level2 for improved service generation" msgid "Services kept in cache of level2 for improved service generation"
msgstr "" msgstr ""
"Services conservés dans le cache de niveau 2 pour la production d'un service " "Services conservés dans le cache de niveau 2 pour la production d'un service "
"amélioré" "amélioré"
#: REST/methods/services_pools.py:195 #: REST/methods/services_pools.py:204
msgid "Maximum number of services to provide" msgid "Maximum number of services to provide"
msgstr "Nombre maximum de services à fournir" msgstr "Nombre maximum de services à fournir"
#: REST/methods/services_pools.py:196 #: REST/methods/services_pools.py:205
msgid "" msgid ""
"Maximum number of service (assigned and L1 cache) that can be created for " "Maximum number of service (assigned and L1 cache) that can be created for "
"this service" "this service"
@ -443,20 +451,20 @@ msgstr ""
"Nombre maximal de service (assignés et cache L1) qui peuvent être créés pour " "Nombre maximal de service (assignés et cache L1) qui peuvent être créés pour "
"ce service" "ce service"
#: REST/methods/services_pools.py:203 #: REST/methods/services_pools.py:212
msgid "Show transports" msgid "Show transports"
msgstr "Voir la transports" msgstr "Voir la transports"
#: REST/methods/services_pools.py:204 #: REST/methods/services_pools.py:213
msgid "If active, alternative transports for user will be shown" msgid "If active, alternative transports for user will be shown"
msgstr "" msgstr ""
"S'il est activé, les transports alternatifs pour utilisateur seront affichera" "S'il est activé, les transports alternatifs pour utilisateur seront affichera"
#: REST/methods/services_pools.py:219 #: REST/methods/services_pools.py:228
msgid "Base service does not exist anymore" msgid "Base service does not exist anymore"
msgstr "Service de base n'existe plus" msgstr "Service de base n'existe plus"
#: REST/methods/services_pools.py:238 #: REST/methods/services_pools.py:247
msgid "This service requires an OS Manager" msgid "This service requires an OS Manager"
msgstr "Ce service nécessite un gestionnaire de système d'exploitation" msgstr "Ce service nécessite un gestionnaire de système d'exploitation"
@ -494,102 +502,104 @@ msgstr ""
msgid "unknown" msgid "unknown"
msgstr "inconnu" msgstr "inconnu"
#: REST/methods/user_services.py:109 #: REST/methods/user_services.py:113
#: templates/uds/admin/tmpl/services_pool.html:31 #: templates/uds/admin/tmpl/services_pool.html:31
msgid "Assigned services" msgid "Assigned services"
msgstr "Services attribuées" msgstr "Services attribuées"
#: REST/methods/user_services.py:113 REST/methods/user_services.py:181 #: REST/methods/user_services.py:117 REST/methods/user_services.py:185
msgid "Creation date" msgid "Creation date"
msgstr "Date de création" msgstr "Date de création"
#: REST/methods/user_services.py:114 REST/methods/user_services.py:182 #: REST/methods/user_services.py:118 REST/methods/user_services.py:186
#: REST/methods/user_services.py:323 REST/methods/user_services.py:352 #: REST/methods/user_services.py:328 REST/methods/user_services.py:357
msgid "Revision" msgid "Revision"
msgstr "Révision" msgstr "Révision"
#: REST/methods/user_services.py:116 REST/methods/user_services.py:184 #: REST/methods/user_services.py:120 REST/methods/user_services.py:188
#: auths/IP/Authenticator.py:60 #: auths/IP/Authenticator.py:60
msgid "IP" msgid "IP"
msgstr "IP " msgstr "IP "
#: REST/methods/user_services.py:117 REST/methods/user_services.py:185 #: REST/methods/user_services.py:121 REST/methods/user_services.py:189
msgid "Friendly name" msgid "Friendly name"
msgstr "Nom convivial" msgstr "Nom convivial"
#: REST/methods/user_services.py:119 #: REST/methods/user_services.py:123
msgid "Status date" msgid "Status date"
msgstr "Date d'État" msgstr "Date d'État"
#: REST/methods/user_services.py:120 #: REST/methods/user_services.py:124
msgid "In Use" msgid "In Use"
msgstr "En utilisation" msgstr "En utilisation"
#: REST/methods/user_services.py:121 #: REST/methods/user_services.py:125
msgid "Src Host" msgid "Src Host"
msgstr "Hôte de la SRC" msgstr "Hôte de la SRC"
#: REST/methods/user_services.py:122 #: REST/methods/user_services.py:126
msgid "Src Ip" msgid "Src Ip"
msgstr "SRC Ip" msgstr "SRC Ip"
#: REST/methods/user_services.py:123 #: REST/methods/user_services.py:127
msgid "Owner" msgid "Owner"
msgstr "Propriétaire" msgstr "Propriétaire"
#: REST/methods/user_services.py:124 REST/methods/user_services.py:188 #: REST/methods/user_services.py:128 REST/methods/user_services.py:192
msgid "Actor version" msgid "Actor version"
msgstr "Version de l'acteur" msgstr "Version de l'acteur"
#: REST/methods/user_services.py:151 #: REST/methods/user_services.py:155
msgid "Item already being removed" msgid "Item already being removed"
msgstr "Élément déjà retiré" msgstr "Élément déjà retiré"
#: REST/methods/user_services.py:153 #: REST/methods/user_services.py:157
msgid "Item is not removable" msgid "Item is not removable"
msgstr "Point n'est pas amovible" msgstr "Point n'est pas amovible"
#: REST/methods/user_services.py:177 #: REST/methods/user_services.py:181
msgid "Cached services" msgid "Cached services"
msgstr "Services de mise en cache" msgstr "Services de mise en cache"
#: REST/methods/user_services.py:186 REST/methods/user_services.py:222 #: REST/methods/user_services.py:190 REST/methods/user_services.py:227
#: REST/methods/user_services.py:325 REST/methods/user_services.py:354 #: REST/methods/user_services.py:330 REST/methods/user_services.py:359
#: templates/uds/admin/tmpl/group.html:54 templates/uds/admin/tmpl/user.html:45 #: templates/uds/admin/tmpl/group.html:54
#: templates/uds/admin/tmpl/service-info.html:22
#: templates/uds/admin/tmpl/user.html:45
msgid "State" msgid "State"
msgstr "État" msgstr "État"
#: REST/methods/user_services.py:187 #: REST/methods/user_services.py:191
msgid "Cache level" msgid "Cache level"
msgstr "Niveau de cache" msgstr "Niveau de cache"
#: REST/methods/user_services.py:215 #: REST/methods/user_services.py:220
msgid "Assigned groups" msgid "Assigned groups"
msgstr "Groupes assignés" msgstr "Groupes assignés"
#: REST/methods/user_services.py:221 templates/uds/admin/tmpl/group.html.py:46 #: REST/methods/user_services.py:226 templates/uds/admin/tmpl/group.html.py:46
#: templates/uds/admin/tmpl/user.html:37 #: templates/uds/admin/tmpl/user.html:37
msgid "comments" msgid "comments"
msgstr "Commentaires" msgstr "Commentaires"
#: REST/methods/user_services.py:250 #: REST/methods/user_services.py:255
msgid "Assigned transports" msgid "Assigned transports"
msgstr "Transports assignés" msgstr "Transports assignés"
#: REST/methods/user_services.py:319 #: REST/methods/user_services.py:324
#: templates/uds/admin/tmpl/services_pool.html:35 #: templates/uds/admin/tmpl/services_pool.html:35
msgid "Publications" msgid "Publications"
msgstr "Publications" msgstr "Publications"
#: REST/methods/user_services.py:324 REST/methods/user_services.py:353 #: REST/methods/user_services.py:329 REST/methods/user_services.py:358
msgid "Publish date" msgid "Publish date"
msgstr "La date de publication" msgstr "La date de publication"
#: REST/methods/user_services.py:326 templates/uds/admin/tmpl/publish.html.py:5 #: REST/methods/user_services.py:331 templates/uds/admin/tmpl/publish.html.py:5
msgid "Reason" msgid "Reason"
msgstr "Raison" msgstr "Raison"
#: REST/methods/user_services.py:348 #: REST/methods/user_services.py:353
msgid "Changelog" msgid "Changelog"
msgstr "Changelog" msgstr "Changelog"
@ -981,11 +991,11 @@ msgstr ""
"LDAP user class ou utilisateur id attr est probablement faux (Ldap est un " "LDAP user class ou utilisateur id attr est probablement faux (Ldap est un "
"eDirectory?)" "eDirectory?)"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "Accept proxy" msgid "Accept proxy"
msgstr "Accepter de procuration" msgstr "Accepter de procuration"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "" msgid ""
"If checked, requests via proxy will get FORWARDED ip address (take care with " "If checked, requests via proxy will get FORWARDED ip address (take care with "
"this bein checked, can take internal IP addresses from internet)" "this bein checked, can take internal IP addresses from internet)"
@ -1006,35 +1016,35 @@ msgstr "Plage d'adresses IP"
msgid "All seems to be fine." msgid "All seems to be fine."
msgstr "Tout semble aller bien." msgstr "Tout semble aller bien."
#: auths/InternalDB/Authenticator.py:52 #: auths/InternalDB/Authenticator.py:53
msgid "Internal Database" msgid "Internal Database"
msgstr "Base de données interne" msgstr "Base de données interne"
#: auths/InternalDB/Authenticator.py:54 #: auths/InternalDB/Authenticator.py:55
msgid "Internal dabasase authenticator. Doesn't use external sources" msgid "Internal dabasase authenticator. Doesn't use external sources"
msgstr "Dabasase interne authentificateur. N'utilise pas des sources externes" msgstr "Dabasase interne authentificateur. N'utilise pas des sources externes"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "Different user for each host" msgid "Different user for each host"
msgstr "Verschiedene Benutzer für jeden host" msgstr "Verschiedene Benutzer für jeden host"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "If checked, each host will have a different user name" msgid "If checked, each host will have a different user name"
msgstr "S'il est activé, chaque hôte aura un nom d'utilisateur différent" msgstr "S'il est activé, chaque hôte aura un nom d'utilisateur différent"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "Reverse DNS" msgid "Reverse DNS"
msgstr "Reverse-DNS" msgstr "Reverse-DNS"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "If checked, the host will be reversed dns" msgid "If checked, the host will be reversed dns"
msgstr "S'il est activé, l'hôte sera dns inversée" msgstr "S'il est activé, l'hôte sera dns inversée"
#: auths/InternalDB/Authenticator.py:128 #: auths/InternalDB/Authenticator.py:130
msgid "Internal structures seems ok" msgid "Internal structures seems ok"
msgstr "Les structures internes semble ok" msgstr "Les structures internes semble ok"
#: auths/InternalDB/Authenticator.py:131 #: auths/InternalDB/Authenticator.py:133
msgid "All seems fine in the authenticator." msgid "All seems fine in the authenticator."
msgstr "Tout semble fine dans l'authentificateur." msgstr "Tout semble fine dans l'authentificateur."
@ -2147,7 +2157,7 @@ msgstr "Accès piscine"
#: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366 #: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366
#: reports/stats/usage_by_pool.py:98 #: reports/stats/usage_by_pool.py:98
#: templates/uds/admin/tmpl/service-info.html:22 #: templates/uds/admin/tmpl/service-info.html:21
msgid "Pool" msgid "Pool"
msgstr "Piscine" msgstr "Piscine"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: French (http://www.transifex.com/openuds/openuds/language/" "Language-Team: French (http://www.transifex.com/openuds/openuds/language/"
@ -107,115 +107,115 @@ msgstr "Erreur de recherche"
msgid "Accept" msgid "Accept"
msgstr "Accepter" msgstr "Accepter"
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "Erreur d'accès aux données" msgstr "Erreur d'accès aux données"
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "Modifier groupe" msgstr "Modifier groupe"
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "Groupe sauvé" msgstr "Groupe sauvé"
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "Nouveau groupe de meta" msgstr "Nouveau groupe de meta"
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "Nouveau groupe" msgstr "Nouveau groupe"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "Groupes de recherche" msgstr "Groupes de recherche"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "Groupe" msgstr "Groupe"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "Groupes trouvés" msgstr "Groupes trouvés"
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "Groupe économie erreur" msgstr "Groupe économie erreur"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "Supprimer le groupe" msgstr "Supprimer le groupe"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "Erreur de suppression de groupe" msgstr "Erreur de suppression de groupe"
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "Modifier utilisateur" msgstr "Modifier utilisateur"
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "Utilisateur enregistré" msgstr "Utilisateur enregistré"
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "Utilisateur sauvegarde erreur" msgstr "Utilisateur sauvegarde erreur"
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "Nouvel utilisateur" msgstr "Nouvel utilisateur"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "Utilisateurs de la recherche" msgstr "Utilisateurs de la recherche"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "Utilisateur" msgstr "Utilisateur"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "Utilisateurs trouvés" msgstr "Utilisateurs trouvés"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "Supprimer l'utilisateur" msgstr "Supprimer l'utilisateur"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "Erreur de suppression d'utilisateur" msgstr "Erreur de suppression d'utilisateur"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "Nouvel authentificateur" msgstr "Nouvel authentificateur"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "Erreur de création d'authentificateur" msgstr "Erreur de création d'authentificateur"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "Modifier l'authentificateur" msgstr "Modifier l'authentificateur"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "Authentificateur sauver erreur" msgstr "Authentificateur sauver erreur"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "Supprimer l'authentificateur" msgstr "Supprimer l'authentificateur"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "Erreur suppression authentificateur" msgstr "Erreur suppression authentificateur"
@ -504,93 +504,93 @@ msgstr "Erreur de création du rapport"
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "Pour obtenir description de rapport d'erreur" msgstr "Pour obtenir description de rapport d'erreur"
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "Dans l'entretien" msgstr "Dans l'entretien"
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "Actif" msgstr "Actif"
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "Informations" msgstr "Informations"
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
#| msgid "Service creation error" #| msgid "Service creation error"
msgid "Service information" msgid "Service information"
msgstr "Service d'information" msgstr "Service d'information"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "Modifier le service" msgstr "Modifier le service"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "Erreur de création de service" msgstr "Erreur de création de service"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "Nouveau service" msgstr "Nouveau service"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "Service enregistrement d'erreur" msgstr "Service enregistrement d'erreur"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "Supprimer le service" msgstr "Supprimer le service"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "Erreur de suppression de service" msgstr "Erreur de suppression de service"
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "Entretien" msgstr "Entretien"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "Mode maintenance" msgstr "Mode maintenance"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "Entrer en Mode de Maintenance ?" msgstr "Entrer en Mode de Maintenance ?"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "Quitter le Mode de Maintenance ?" msgstr "Quitter le Mode de Maintenance ?"
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "Entrez maintenance Mode" msgstr "Entrez maintenance Mode"
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "Quitter le Mode d'entretien" msgstr "Quitter le Mode d'entretien"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "Nouveau fournisseur de services" msgstr "Nouveau fournisseur de services"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "Erreur de création de fournisseur de services" msgstr "Erreur de création de fournisseur de services"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "Modifier le fournisseur de services" msgstr "Modifier le fournisseur de services"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "Fournisseur de services de sauvegarde erreur" msgstr "Fournisseur de services de sauvegarde erreur"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "Supprimer le fournisseur de services" msgstr "Supprimer le fournisseur de services"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "Erreur de suppression de fournisseur de services" msgstr "Erreur de suppression de fournisseur de services"
@ -614,30 +614,30 @@ msgstr "Début"
msgid "Ending" msgid "Ending"
msgstr "Se terminant" msgstr "Se terminant"
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "Ajouter une action planifiée" msgstr "Ajouter une action planifiée"
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "Modifier le calendrier d'accès" msgstr "Modifier le calendrier d'accès"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "Supprimer le calendrier d'accès" msgstr "Supprimer le calendrier d'accès"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "Erreur de suppression d'accès calendrier" msgstr "Erreur de suppression d'accès calendrier"
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "Ajouter un accès calendrier" msgstr "Ajouter un accès calendrier"
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "Accès de secours par défaut" msgstr "Accès de secours par défaut"
@ -680,83 +680,83 @@ msgstr "Supprimer le transport"
msgid "Transport removal error" msgid "Transport removal error"
msgstr "Erreur de suppression de transport" msgstr "Erreur de suppression de transport"
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "Oui" msgstr "Oui"
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "Non" msgstr "Non"
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "erreur" msgstr "erreur"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "Remove, élément de Cache" msgstr "Remove, élément de Cache"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "Erreur de suppression" msgstr "Erreur de suppression"
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "Ajouter groupe" msgstr "Ajouter groupe"
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "Vous devez fournir authentificateur et groupe" msgstr "Vous devez fournir authentificateur et groupe"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "Supprimer le groupe" msgstr "Supprimer le groupe"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "Erreur de suppression de groupe" msgstr "Erreur de suppression de groupe"
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "Supprimer le service affecté" msgstr "Supprimer le service affecté"
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "Retenu" msgstr "Retenu"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "Nouvelle piscine service" msgstr "Nouvelle piscine service"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "erreur de création" msgstr "erreur de création"
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "Publier sur création" msgstr "Publier sur création"
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "Si sélectionné, lancera la publication immédiatement après création" msgstr "Si sélectionné, lancera la publication immédiatement après création"
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "Edit" msgstr "Edit"
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "erreur de sauvegarde" msgstr "erreur de sauvegarde"
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "erreur de suppression" msgstr "erreur de suppression"
@ -788,27 +788,27 @@ msgstr "Cache"
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "Cache a été vidé" msgstr "Cache a été vidé"
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "Actualiser l'opération a échoué" msgstr "Actualiser l'opération a échoué"
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "Date" msgstr "Date"
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "niveau" msgstr "niveau"
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "source" msgstr "source"
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "Message" msgstr "Message"
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "Journaux" msgstr "Journaux"
@ -908,128 +908,128 @@ msgstr "Un instant..."
msgid "Never" msgid "Never"
msgstr "Jamais" msgstr "Jamais"
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "Documents _MENU_ par page" msgstr "Documents _MENU_ par page"
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "Vide" msgstr "Vide"
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "Aucun enregistrement" msgstr "Aucun enregistrement"
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "Dossiers _START_ à _END_ de _TOTAL_" msgstr "Dossiers _START_ à _END_ de _TOTAL_"
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "(filtrée de total d'enregistrements _MAX_)" msgstr "(filtrée de total d'enregistrements _MAX_)"
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "Veuillez patienter, traitement" msgstr "Veuillez patienter, traitement"
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "Filtre" msgstr "Filtre"
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "Certains %d lignes" msgstr "Certains %d lignes"
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "Cliquez sur une ligne pour la sélectionner" msgstr "Cliquez sur une ligne pour la sélectionner"
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "Sélectionné une ligne" msgstr "Sélectionné une ligne"
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "Nouveau" msgstr "Nouveau"
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "Autorisations" msgstr "Autorisations"
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "XLS" msgstr "XLS"
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "Message" msgstr "Message"
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "Échoué de la connexion" msgstr "Échoué de la connexion"
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "Ce champ est obligatoire." msgstr "Ce champ est obligatoire."
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "Corrigez ce champ." msgstr "Corrigez ce champ."
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "Veuillez entrer une adresse email valide." msgstr "Veuillez entrer une adresse email valide."
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Veuillez entrer une URL valide." msgstr "Veuillez entrer une URL valide."
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "Veuillez entrer une date valide." msgstr "Veuillez entrer une date valide."
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "Veuillez entrer une date valide (ISO)." msgstr "Veuillez entrer une date valide (ISO)."
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "Veuillez entrer un numéro valide." msgstr "Veuillez entrer un numéro valide."
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "Veuillez saisir uniquement des chiffres." msgstr "Veuillez saisir uniquement des chiffres."
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "Veuillez entrer un numéro de carte de crédit valide." msgstr "Veuillez entrer un numéro de carte de crédit valide."
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "Entrez à nouveau la même valeur." msgstr "Entrez à nouveau la même valeur."
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "S'il vous plaît entrez pas plus de {0} caractères." msgstr "S'il vous plaît entrez pas plus de {0} caractères."
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "Veuillez saisir au moins {0} caractères." msgstr "Veuillez saisir au moins {0} caractères."
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "Veuillez entrer une valeur entre {0} et {1} caractères longtemps." msgstr "Veuillez entrer une valeur entre {0} et {1} caractères longtemps."
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "Veuillez entrer une valeur entre {0} et {1}." msgstr "Veuillez entrer une valeur entre {0} et {1}."
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "Veuillez entrer une valeur inférieure ou égale à {0}." msgstr "Veuillez entrer une valeur inférieure ou égale à {0}."
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "Entrez une valeur supérieure ou égale à {0}." msgstr "Entrez une valeur supérieure ou égale à {0}."

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Italian (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Italian (http://www.transifex.com/openuds/openuds/language/"
@ -44,7 +44,7 @@ msgstr "Autenticatori correnti"
#: REST/methods/osmanagers.py:57 REST/methods/providers.py:65 #: REST/methods/osmanagers.py:57 REST/methods/providers.py:65
#: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64 #: REST/methods/reports.py:58 REST/methods/services_pool_groups.py:64
#: REST/methods/services_pools.py:76 REST/methods/transports.py:56 #: REST/methods/services_pools.py:76 REST/methods/transports.py:56
#: REST/methods/user_services.py:220 REST/methods/user_services.py:255 #: REST/methods/user_services.py:225 REST/methods/user_services.py:260
#: REST/methods/users_groups.py:95 REST/model.py:132 #: REST/methods/users_groups.py:95 REST/model.py:132
#: templates/uds/admin/tmpl/calendar_rule.html:5 #: templates/uds/admin/tmpl/calendar_rule.html:5
#: templates/uds/admin/tmpl/calendar_rule.html:7 #: templates/uds/admin/tmpl/calendar_rule.html:7
@ -54,9 +54,9 @@ msgstr "Nome"
#: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104 #: REST/methods/authenticators.py:60 REST/methods/calendarrules.py:104
#: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58 #: REST/methods/calendars.py:61 REST/methods/osmanagers.py:58
#: REST/methods/providers.py:66 REST/methods/services.py:188 #: REST/methods/providers.py:66 REST/methods/services.py:189
#: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57 #: REST/methods/services_pool_groups.py:65 REST/methods/transports.py:57
#: REST/methods/user_services.py:257 REST/methods/users_groups.py:96 #: REST/methods/user_services.py:262 REST/methods/users_groups.py:96
#: REST/methods/users_groups.py:209 REST/model.py:139 #: REST/methods/users_groups.py:209 REST/model.py:139
#: templates/uds/admin/tmpl/calendar_rule.html:14 #: templates/uds/admin/tmpl/calendar_rule.html:14
#: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40 #: templates/uds/admin/tmpl/group.html:49 templates/uds/admin/tmpl/user.html:40
@ -65,7 +65,7 @@ msgstr "Commenti"
#: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89 #: REST/methods/authenticators.py:61 REST/methods/services_pool_calendars.py:89
#: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55 #: REST/methods/services_pool_groups.py:62 REST/methods/transports.py:55
#: REST/methods/user_services.py:254 REST/model.py:148 #: REST/methods/user_services.py:259 REST/model.py:148
#: templates/uds/admin/tmpl/pool_add_access.html:5 #: templates/uds/admin/tmpl/pool_add_access.html:5
msgid "Priority" msgid "Priority"
msgstr "Priorità" msgstr "Priorità"
@ -85,7 +85,7 @@ msgstr "Utenti"
#: REST/methods/authenticators.py:64 REST/methods/calendars.py:63 #: REST/methods/authenticators.py:64 REST/methods/calendars.py:63
#: REST/methods/networks.py:63 REST/methods/osmanagers.py:60 #: REST/methods/networks.py:63 REST/methods/osmanagers.py:60
#: REST/methods/providers.py:70 REST/methods/services.py:192 #: REST/methods/providers.py:70 REST/methods/services.py:193
#: REST/methods/services_pools.py:81 REST/methods/transports.py:59 #: REST/methods/services_pools.py:81 REST/methods/transports.py:59
msgid "tags" msgid "tags"
msgstr "Tag" msgstr "Tag"
@ -119,7 +119,7 @@ msgstr "Ogni"
msgid "Duration" msgid "Duration"
msgstr "Durata" msgstr "Durata"
#: REST/methods/calendarrules.py:128 REST/methods/services.py:153 #: REST/methods/calendarrules.py:128 REST/methods/services.py:154
msgid "Element already exists (duplicate key error)" msgid "Element already exists (duplicate key error)"
msgstr "Elemento già esistente (errore chiave duplicata)" msgstr "Elemento già esistente (errore chiave duplicata)"
@ -149,7 +149,7 @@ msgstr "Galleria di immagini"
#: REST/methods/images.py:60 REST/methods/images.py:79 #: REST/methods/images.py:60 REST/methods/images.py:79
#: REST/methods/services_pool_groups.py:63 #: REST/methods/services_pool_groups.py:63
#: templates/uds/admin/tmpl/new_image.html:10 #: templates/uds/admin/tmpl/new_image.html:10
#: templates/uds/admin/tmpl/service-info.html:21 #: templates/uds/admin/tmpl/service-info.html:23
msgid "Image" msgid "Image"
msgstr "Immagine" msgstr "Immagine"
@ -245,36 +245,44 @@ msgstr "Descrizione"
msgid "Generates" msgid "Generates"
msgstr "Genera" msgstr "Genera"
#: REST/methods/services.py:157 #: REST/methods/services.py:158
#, python-brace-format #, python-brace-format
msgid "Input error: {0}" msgid "Input error: {0}"
msgstr "Errore di input: {0}" msgstr "Errore di input: {0}"
#: REST/methods/services.py:181 #: REST/methods/services.py:182
#, python-brace-format #, python-brace-format
msgid "Services of {0}" msgid "Services of {0}"
msgstr "Servizi di {0}" msgstr "Servizi di {0}"
#: REST/methods/services.py:183 #: REST/methods/services.py:184
msgid "Current services" msgid "Current services"
msgstr "Servizi attuali" msgstr "Servizi attuali"
#: REST/methods/services.py:187 #: REST/methods/services.py:188
msgid "Service name" msgid "Service name"
msgstr "Nome servizio" msgstr "Nome servizio"
#: REST/methods/services.py:189 REST/methods/user_services.py:256 #: REST/methods/services.py:190 REST/methods/user_services.py:261
msgid "Type" msgid "Type"
msgstr "Tipo" msgstr "Tipo"
#: REST/methods/services.py:190 #: REST/methods/services.py:191
msgid "Deployed services" msgid "Deployed services"
msgstr "Servizi distribuiti" msgstr "Servizi distribuiti"
#: REST/methods/services.py:191 templates/uds/admin/tmpl/dashboard.html.py:88 #: REST/methods/services.py:192 templates/uds/admin/tmpl/dashboard.html.py:88
msgid "User services" msgid "User services"
msgstr "Servizi utente" msgstr "Servizi utente"
#: REST/methods/services.py:246
msgid "With errors"
msgstr "Con errori"
#: REST/methods/services.py:246
msgid "Ok"
msgstr "Ok"
#: REST/methods/services_pool_calendars.py:85 #: REST/methods/services_pool_calendars.py:85
msgid "Access restrictions by calendar" msgid "Access restrictions by calendar"
msgstr "Restrizioni di accesso di calendario" msgstr "Restrizioni di accesso di calendario"
@ -324,11 +332,11 @@ msgstr "Ultima esecuzione"
msgid "Services Pool Groups" msgid "Services Pool Groups"
msgstr "Servizi piscina gruppi" msgstr "Servizi piscina gruppi"
#: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:151 #: REST/methods/services_pool_groups.py:86 REST/methods/services_pools.py:160
msgid "Associated Image" msgid "Associated Image"
msgstr "Immagine associata" msgstr "Immagine associata"
#: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:152 #: REST/methods/services_pool_groups.py:87 REST/methods/services_pools.py:161
msgid "Image assocciated with this service" msgid "Image assocciated with this service"
msgstr "Immagine assocciated con questo servizio" msgstr "Immagine assocciated con questo servizio"
@ -343,7 +351,7 @@ msgstr "Servizio piscine"
msgid "Parent Service" msgid "Parent Service"
msgstr "Servizio padre" msgstr "Servizio padre"
#: REST/methods/services_pools.py:78 REST/methods/user_services.py:118 #: REST/methods/services_pools.py:78 REST/methods/user_services.py:122
msgid "status" msgid "status"
msgstr "stato" msgstr "stato"
@ -355,83 +363,83 @@ msgstr "Trasporti spettacoli"
msgid "Pool Group" msgid "Pool Group"
msgstr "Gruppo piscina" msgstr "Gruppo piscina"
#: REST/methods/services_pools.py:105 REST/methods/services_pools.py:158 #: REST/methods/services_pools.py:93 REST/methods/services_pools.py:167
msgid "Default" msgid "Default"
msgstr "Impostazione predefinita" msgstr "Impostazione predefinita"
#: REST/methods/services_pools.py:126 #: REST/methods/services_pools.py:135
msgid "Create at least one OS Manager before creating a new service pool" msgid "Create at least one OS Manager before creating a new service pool"
msgstr "Creare almeno un OS Manager prima di creare un nuovo pool di servizio" msgstr "Creare almeno un OS Manager prima di creare un nuovo pool di servizio"
#: REST/methods/services_pools.py:128 #: REST/methods/services_pools.py:137
msgid "Create at least a service before creating a new service pool" msgid "Create at least a service before creating a new service pool"
msgstr "Creare almeno un servizio prima di creare un nuovo pool di servizio" msgstr "Creare almeno un servizio prima di creare un nuovo pool di servizio"
#: REST/methods/services_pools.py:135 #: REST/methods/services_pools.py:144
msgid "Base service" msgid "Base service"
msgstr "Servizio di base" msgstr "Servizio di base"
#: REST/methods/services_pools.py:136 #: REST/methods/services_pools.py:145
msgid "Service used as base of this service pool" msgid "Service used as base of this service pool"
msgstr "Servizio utilizzato come base di questo servizio piscina" msgstr "Servizio utilizzato come base di questo servizio piscina"
#: REST/methods/services_pools.py:143 #: REST/methods/services_pools.py:152
msgid "OS Manager" msgid "OS Manager"
msgstr "OS Manager" msgstr "OS Manager"
#: REST/methods/services_pools.py:144 #: REST/methods/services_pools.py:153
msgid "OS Manager used as base of this service pool" msgid "OS Manager used as base of this service pool"
msgstr "OS Manager utilizzato come base di questo servizio piscina" msgstr "OS Manager utilizzato come base di questo servizio piscina"
#: REST/methods/services_pools.py:155 REST/methods/services_pools.py:163 #: REST/methods/services_pools.py:164 REST/methods/services_pools.py:172
#: services/OVirt/OVirtLinkedService.py:167 #: services/OVirt/OVirtLinkedService.py:167
msgid "Display" msgid "Display"
msgstr "Visualizzazione" msgstr "Visualizzazione"
#: REST/methods/services_pools.py:159 #: REST/methods/services_pools.py:168
msgid "Pool group" msgid "Pool group"
msgstr "Gruppo piscina" msgstr "Gruppo piscina"
#: REST/methods/services_pools.py:160 #: REST/methods/services_pools.py:169
msgid "Pool group for this pool (for pool clasify on display)" msgid "Pool group for this pool (for pool clasify on display)"
msgstr "Gruppo del pool per il pool (per piscina classificare sul display)" msgstr "Gruppo del pool per il pool (per piscina classificare sul display)"
#: REST/methods/services_pools.py:168 #: REST/methods/services_pools.py:177
msgid "Initial available services" msgid "Initial available services"
msgstr "Servizi disponibili iniziali" msgstr "Servizi disponibili iniziali"
#: REST/methods/services_pools.py:169 #: REST/methods/services_pools.py:178
msgid "Services created initially for this service pool" msgid "Services created initially for this service pool"
msgstr "Servizi creati inizialmente per questo servizio piscina" msgstr "Servizi creati inizialmente per questo servizio piscina"
#: REST/methods/services_pools.py:172 REST/methods/services_pools.py:181 #: REST/methods/services_pools.py:181 REST/methods/services_pools.py:190
#: REST/methods/services_pools.py:190 REST/methods/services_pools.py:199 #: REST/methods/services_pools.py:199 REST/methods/services_pools.py:208
#| msgid "Compatibility" #| msgid "Compatibility"
msgid "Availability" msgid "Availability"
msgstr "Disponibilità" msgstr "Disponibilità"
#: REST/methods/services_pools.py:177 #: REST/methods/services_pools.py:186
msgid "Services to keep in cache" msgid "Services to keep in cache"
msgstr "Servizi per mantenere nella cache" msgstr "Servizi per mantenere nella cache"
#: REST/methods/services_pools.py:178 #: REST/methods/services_pools.py:187
msgid "Services kept in cache for improved user service assignation" msgid "Services kept in cache for improved user service assignation"
msgstr "Servizi tenuti in cache per assegnazione servizio utente migliorata" msgstr "Servizi tenuti in cache per assegnazione servizio utente migliorata"
#: REST/methods/services_pools.py:186 #: REST/methods/services_pools.py:195
msgid "Services to keep in L2 cache" msgid "Services to keep in L2 cache"
msgstr "Servizi per mantenere in cache L2" msgstr "Servizi per mantenere in cache L2"
#: REST/methods/services_pools.py:187 #: REST/methods/services_pools.py:196
msgid "Services kept in cache of level2 for improved service generation" msgid "Services kept in cache of level2 for improved service generation"
msgstr "" msgstr ""
"Servizi mantenuto nella cache di level2 per generazione migliore servizio" "Servizi mantenuto nella cache di level2 per generazione migliore servizio"
#: REST/methods/services_pools.py:195 #: REST/methods/services_pools.py:204
msgid "Maximum number of services to provide" msgid "Maximum number of services to provide"
msgstr "Numero massimo di servizi per fornire" msgstr "Numero massimo di servizi per fornire"
#: REST/methods/services_pools.py:196 #: REST/methods/services_pools.py:205
msgid "" msgid ""
"Maximum number of service (assigned and L1 cache) that can be created for " "Maximum number of service (assigned and L1 cache) that can be created for "
"this service" "this service"
@ -439,19 +447,19 @@ msgstr ""
"Numero massimo di servizio (assegnate e cache L1) che possono essere creati " "Numero massimo di servizio (assegnate e cache L1) che possono essere creati "
"per Questo servizio" "per Questo servizio"
#: REST/methods/services_pools.py:203 #: REST/methods/services_pools.py:212
msgid "Show transports" msgid "Show transports"
msgstr "Visualizza trasporti" msgstr "Visualizza trasporti"
#: REST/methods/services_pools.py:204 #: REST/methods/services_pools.py:213
msgid "If active, alternative transports for user will be shown" msgid "If active, alternative transports for user will be shown"
msgstr "Se attivo, verranno mostrati trasporti alternativi per utente" msgstr "Se attivo, verranno mostrati trasporti alternativi per utente"
#: REST/methods/services_pools.py:219 #: REST/methods/services_pools.py:228
msgid "Base service does not exist anymore" msgid "Base service does not exist anymore"
msgstr "Servizio di base non esiste più" msgstr "Servizio di base non esiste più"
#: REST/methods/services_pools.py:238 #: REST/methods/services_pools.py:247
msgid "This service requires an OS Manager" msgid "This service requires an OS Manager"
msgstr "Questo servizio richiede un OS Manager" msgstr "Questo servizio richiede un OS Manager"
@ -489,102 +497,104 @@ msgstr ""
msgid "unknown" msgid "unknown"
msgstr "sconosciuto" msgstr "sconosciuto"
#: REST/methods/user_services.py:109 #: REST/methods/user_services.py:113
#: templates/uds/admin/tmpl/services_pool.html:31 #: templates/uds/admin/tmpl/services_pool.html:31
msgid "Assigned services" msgid "Assigned services"
msgstr "Servizi assegnati" msgstr "Servizi assegnati"
#: REST/methods/user_services.py:113 REST/methods/user_services.py:181 #: REST/methods/user_services.py:117 REST/methods/user_services.py:185
msgid "Creation date" msgid "Creation date"
msgstr "Data di creazione" msgstr "Data di creazione"
#: REST/methods/user_services.py:114 REST/methods/user_services.py:182 #: REST/methods/user_services.py:118 REST/methods/user_services.py:186
#: REST/methods/user_services.py:323 REST/methods/user_services.py:352 #: REST/methods/user_services.py:328 REST/methods/user_services.py:357
msgid "Revision" msgid "Revision"
msgstr "Revisione" msgstr "Revisione"
#: REST/methods/user_services.py:116 REST/methods/user_services.py:184 #: REST/methods/user_services.py:120 REST/methods/user_services.py:188
#: auths/IP/Authenticator.py:60 #: auths/IP/Authenticator.py:60
msgid "IP" msgid "IP"
msgstr "IP" msgstr "IP"
#: REST/methods/user_services.py:117 REST/methods/user_services.py:185 #: REST/methods/user_services.py:121 REST/methods/user_services.py:189
msgid "Friendly name" msgid "Friendly name"
msgstr "Nome descrittivo" msgstr "Nome descrittivo"
#: REST/methods/user_services.py:119 #: REST/methods/user_services.py:123
msgid "Status date" msgid "Status date"
msgstr "Data stato" msgstr "Data stato"
#: REST/methods/user_services.py:120 #: REST/methods/user_services.py:124
msgid "In Use" msgid "In Use"
msgstr "In uso" msgstr "In uso"
#: REST/methods/user_services.py:121 #: REST/methods/user_services.py:125
msgid "Src Host" msgid "Src Host"
msgstr "Src Host" msgstr "Src Host"
#: REST/methods/user_services.py:122 #: REST/methods/user_services.py:126
msgid "Src Ip" msgid "Src Ip"
msgstr "Src Ip" msgstr "Src Ip"
#: REST/methods/user_services.py:123 #: REST/methods/user_services.py:127
msgid "Owner" msgid "Owner"
msgstr "Proprietario" msgstr "Proprietario"
#: REST/methods/user_services.py:124 REST/methods/user_services.py:188 #: REST/methods/user_services.py:128 REST/methods/user_services.py:192
msgid "Actor version" msgid "Actor version"
msgstr "Versione attore" msgstr "Versione attore"
#: REST/methods/user_services.py:151 #: REST/methods/user_services.py:155
msgid "Item already being removed" msgid "Item already being removed"
msgstr "Elemento già essere rimosso" msgstr "Elemento già essere rimosso"
#: REST/methods/user_services.py:153 #: REST/methods/user_services.py:157
msgid "Item is not removable" msgid "Item is not removable"
msgstr "Elemento non è rimovibile" msgstr "Elemento non è rimovibile"
#: REST/methods/user_services.py:177 #: REST/methods/user_services.py:181
msgid "Cached services" msgid "Cached services"
msgstr "Servizi memorizzati nella cache" msgstr "Servizi memorizzati nella cache"
#: REST/methods/user_services.py:186 REST/methods/user_services.py:222 #: REST/methods/user_services.py:190 REST/methods/user_services.py:227
#: REST/methods/user_services.py:325 REST/methods/user_services.py:354 #: REST/methods/user_services.py:330 REST/methods/user_services.py:359
#: templates/uds/admin/tmpl/group.html:54 templates/uds/admin/tmpl/user.html:45 #: templates/uds/admin/tmpl/group.html:54
#: templates/uds/admin/tmpl/service-info.html:22
#: templates/uds/admin/tmpl/user.html:45
msgid "State" msgid "State"
msgstr "Stato" msgstr "Stato"
#: REST/methods/user_services.py:187 #: REST/methods/user_services.py:191
msgid "Cache level" msgid "Cache level"
msgstr "Livello della cache" msgstr "Livello della cache"
#: REST/methods/user_services.py:215 #: REST/methods/user_services.py:220
msgid "Assigned groups" msgid "Assigned groups"
msgstr "Gruppi assegnati" msgstr "Gruppi assegnati"
#: REST/methods/user_services.py:221 templates/uds/admin/tmpl/group.html.py:46 #: REST/methods/user_services.py:226 templates/uds/admin/tmpl/group.html.py:46
#: templates/uds/admin/tmpl/user.html:37 #: templates/uds/admin/tmpl/user.html:37
msgid "comments" msgid "comments"
msgstr "Commenti" msgstr "Commenti"
#: REST/methods/user_services.py:250 #: REST/methods/user_services.py:255
msgid "Assigned transports" msgid "Assigned transports"
msgstr "Trasporti assegnati" msgstr "Trasporti assegnati"
#: REST/methods/user_services.py:319 #: REST/methods/user_services.py:324
#: templates/uds/admin/tmpl/services_pool.html:35 #: templates/uds/admin/tmpl/services_pool.html:35
msgid "Publications" msgid "Publications"
msgstr "Pubblicazioni" msgstr "Pubblicazioni"
#: REST/methods/user_services.py:324 REST/methods/user_services.py:353 #: REST/methods/user_services.py:329 REST/methods/user_services.py:358
msgid "Publish date" msgid "Publish date"
msgstr "Data di pubblicazione" msgstr "Data di pubblicazione"
#: REST/methods/user_services.py:326 templates/uds/admin/tmpl/publish.html.py:5 #: REST/methods/user_services.py:331 templates/uds/admin/tmpl/publish.html.py:5
msgid "Reason" msgid "Reason"
msgstr "Motivo" msgstr "Motivo"
#: REST/methods/user_services.py:348 #: REST/methods/user_services.py:353
msgid "Changelog" msgid "Changelog"
msgstr "Changelog" msgstr "Changelog"
@ -969,11 +979,11 @@ msgstr ""
"LDAP dell'utente utente o classe id attr è probabilmente sbagliato (Ldap è " "LDAP dell'utente utente o classe id attr è probabilmente sbagliato (Ldap è "
"un eDirectory?)" "un eDirectory?)"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "Accept proxy" msgid "Accept proxy"
msgstr "Accettare il proxy" msgstr "Accettare il proxy"
#: auths/IP/Authenticator.py:52 #: auths/IP/Authenticator.py:52 auths/InternalDB/Authenticator.py:66
msgid "" msgid ""
"If checked, requests via proxy will get FORWARDED ip address (take care with " "If checked, requests via proxy will get FORWARDED ip address (take care with "
"this bein checked, can take internal IP addresses from internet)" "this bein checked, can take internal IP addresses from internet)"
@ -994,35 +1004,35 @@ msgstr "Intervallo IP"
msgid "All seems to be fine." msgid "All seems to be fine."
msgstr "Tutto sembra andare bene." msgstr "Tutto sembra andare bene."
#: auths/InternalDB/Authenticator.py:52 #: auths/InternalDB/Authenticator.py:53
msgid "Internal Database" msgid "Internal Database"
msgstr "Database interno" msgstr "Database interno"
#: auths/InternalDB/Authenticator.py:54 #: auths/InternalDB/Authenticator.py:55
msgid "Internal dabasase authenticator. Doesn't use external sources" msgid "Internal dabasase authenticator. Doesn't use external sources"
msgstr "Database interno autenticatore. Non utilizzare fonti esterne" msgstr "Database interno autenticatore. Non utilizzare fonti esterne"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "Different user for each host" msgid "Different user for each host"
msgstr "Utente diverso per ogni host" msgstr "Utente diverso per ogni host"
#: auths/InternalDB/Authenticator.py:63 #: auths/InternalDB/Authenticator.py:64
msgid "If checked, each host will have a different user name" msgid "If checked, each host will have a different user name"
msgstr "Se selezionata, ogni ospite avrà un nome utente diverso" msgstr "Se selezionata, ogni ospite avrà un nome utente diverso"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "Reverse DNS" msgid "Reverse DNS"
msgstr "Reverse DNS" msgstr "Reverse DNS"
#: auths/InternalDB/Authenticator.py:64 #: auths/InternalDB/Authenticator.py:65
msgid "If checked, the host will be reversed dns" msgid "If checked, the host will be reversed dns"
msgstr "Se selezionata, l'ospite sarà invertito dns" msgstr "Se selezionata, l'ospite sarà invertito dns"
#: auths/InternalDB/Authenticator.py:128 #: auths/InternalDB/Authenticator.py:130
msgid "Internal structures seems ok" msgid "Internal structures seems ok"
msgstr "Strutture interne sembra ok" msgstr "Strutture interne sembra ok"
#: auths/InternalDB/Authenticator.py:131 #: auths/InternalDB/Authenticator.py:133
msgid "All seems fine in the authenticator." msgid "All seems fine in the authenticator."
msgstr "Tutto sembra bene nell'autenticatore." msgstr "Tutto sembra bene nell'autenticatore."
@ -2127,7 +2137,7 @@ msgstr "Accessi da piscina"
#: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366 #: reports/stats/pool_performance.py:104 reports/stats/pool_performance.py:366
#: reports/stats/usage_by_pool.py:98 #: reports/stats/usage_by_pool.py:98
#: templates/uds/admin/tmpl/service-info.html:22 #: templates/uds/admin/tmpl/service-info.html:21
msgid "Pool" msgid "Pool"
msgstr "Piscina" msgstr "Piscina"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Italian (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Italian (http://www.transifex.com/openuds/openuds/language/"
@ -106,115 +106,115 @@ msgstr "Errore di ricerca"
msgid "Accept" msgid "Accept"
msgstr "Accettare" msgstr "Accettare"
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "Errore di accesso ai dati" msgstr "Errore di accesso ai dati"
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "Modifica gruppo" msgstr "Modifica gruppo"
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "Gruppo salvato" msgstr "Gruppo salvato"
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "Nuovo gruppo meta" msgstr "Nuovo gruppo meta"
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "Nuovo gruppo" msgstr "Nuovo gruppo"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "Gruppi di ricerca" msgstr "Gruppi di ricerca"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "Gruppo" msgstr "Gruppo"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "Gruppo trovato" msgstr "Gruppo trovato"
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "Gruppo risparmio errore" msgstr "Gruppo risparmio errore"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "Elimina gruppo" msgstr "Elimina gruppo"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "Errore di omissione di gruppo" msgstr "Errore di omissione di gruppo"
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "Modifica utente" msgstr "Modifica utente"
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "Utente salvato" msgstr "Utente salvato"
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "Utente errore di risparmio" msgstr "Utente errore di risparmio"
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "Nuovo utente" msgstr "Nuovo utente"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "Ricerca utenti" msgstr "Ricerca utenti"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "Utente" msgstr "Utente"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "Utenti trovati" msgstr "Utenti trovati"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "Cancella utente" msgstr "Cancella utente"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "Errore di omissione dell'utente" msgstr "Errore di omissione dell'utente"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "Nuovo autenticatore" msgstr "Nuovo autenticatore"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "Errore di creazione di autenticatore" msgstr "Errore di creazione di autenticatore"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "Modifica autenticatore" msgstr "Modifica autenticatore"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "Autenticatore errore di risparmio" msgstr "Autenticatore errore di risparmio"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "Eliminare l'autenticatore" msgstr "Eliminare l'autenticatore"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "Errore di omissione autenticatore" msgstr "Errore di omissione autenticatore"
@ -502,93 +502,93 @@ msgstr "Errore di creazione di report"
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "Descrizione dell'errore ottenere report" msgstr "Descrizione dell'errore ottenere report"
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "In manutenzione" msgstr "In manutenzione"
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "Attivo" msgstr "Attivo"
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "Informazioni" msgstr "Informazioni"
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
#| msgid "Service creation error" #| msgid "Service creation error"
msgid "Service information" msgid "Service information"
msgstr "Informazioni di servizio" msgstr "Informazioni di servizio"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "Modifica servizio" msgstr "Modifica servizio"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "Errore di creazione del servizio" msgstr "Errore di creazione del servizio"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "Nuovo servizio" msgstr "Nuovo servizio"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "Servizio risparmio errore" msgstr "Servizio risparmio errore"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "Eliminare il servizio" msgstr "Eliminare il servizio"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "Errore di omissione del servizio" msgstr "Errore di omissione del servizio"
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "Manutenzione" msgstr "Manutenzione"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "Modalità di manutenzione" msgstr "Modalità di manutenzione"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "Entrare in modalità di manutenzione?" msgstr "Entrare in modalità di manutenzione?"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "Uscire dalla modalità di manutenzione?" msgstr "Uscire dalla modalità di manutenzione?"
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "Entrare in modalità di manutenzione" msgstr "Entrare in modalità di manutenzione"
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "Disattiva modalità di manutenzione" msgstr "Disattiva modalità di manutenzione"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "Nuovo provider di servizi" msgstr "Nuovo provider di servizi"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "Errore di creazione di provider di servizi" msgstr "Errore di creazione di provider di servizi"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "Modificare il provider di servizi" msgstr "Modificare il provider di servizi"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "Provider di servizi risparmiando errore" msgstr "Provider di servizi risparmiando errore"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "Eliminare il provider di servizi" msgstr "Eliminare il provider di servizi"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "Errore di omissione del Provider di servizi" msgstr "Errore di omissione del Provider di servizi"
@ -612,30 +612,30 @@ msgstr "Inizio"
msgid "Ending" msgid "Ending"
msgstr "Finale" msgstr "Finale"
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "Aggiungere l'azione pianificata" msgstr "Aggiungere l'azione pianificata"
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "Modificare il calendario di access" msgstr "Modificare il calendario di access"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "Rimuovere il calendario di access" msgstr "Rimuovere il calendario di access"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "Errore di rimozione di accesso calendario" msgstr "Errore di rimozione di accesso calendario"
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "Aggiungere accesso calendario" msgstr "Aggiungere accesso calendario"
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "Accesso fallback predefinito" msgstr "Accesso fallback predefinito"
@ -678,83 +678,83 @@ msgstr "Rimuovere il trasporto"
msgid "Transport removal error" msgid "Transport removal error"
msgstr "Trasporto rimozione errore" msgstr "Trasporto rimozione errore"
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "Sì" msgstr "Sì"
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "No" msgstr "No"
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "errore" msgstr "errore"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "Rimuovere l'elemento della Cache" msgstr "Rimuovere l'elemento della Cache"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "Errore di omissione" msgstr "Errore di omissione"
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "Aggiungi gruppo" msgstr "Aggiungi gruppo"
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "È necessario fornire autenticatore e gruppo" msgstr "È necessario fornire autenticatore e gruppo"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "Rimuovere il gruppo" msgstr "Rimuovere il gruppo"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "Errore di rimozione di gruppo" msgstr "Errore di rimozione di gruppo"
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "Rimuovere il servizio assegnato" msgstr "Rimuovere il servizio assegnato"
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "Trattenuto" msgstr "Trattenuto"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "Nuovo servizio piscina" msgstr "Nuovo servizio piscina"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "errore di creazione" msgstr "errore di creazione"
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "Pubblicare sulla creazione" msgstr "Pubblicare sulla creazione"
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "Se selezionata, avvia la pubblicazione inmediatly dopo la creazione" msgstr "Se selezionata, avvia la pubblicazione inmediatly dopo la creazione"
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "Modifica" msgstr "Modifica"
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "errore di risparmio" msgstr "errore di risparmio"
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "Eliminare" msgstr "Eliminare"
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "errore di omissione" msgstr "errore di omissione"
@ -786,27 +786,27 @@ msgstr "Cache"
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "Cache è stata scaricata" msgstr "Cache è stata scaricata"
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "Operazione non riuscita di aggiornamento" msgstr "Operazione non riuscita di aggiornamento"
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "livello" msgstr "livello"
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "fonte" msgstr "fonte"
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "Messaggio" msgstr "Messaggio"
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "Registri" msgstr "Registri"
@ -906,128 +906,128 @@ msgstr "Solo un momento..."
msgid "Never" msgid "Never"
msgstr "Mai" msgstr "Mai"
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "Record _MENU_ per pagina" msgstr "Record _MENU_ per pagina"
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "Vuoto" msgstr "Vuoto"
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "Nessun record" msgstr "Nessun record"
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "Registra _START_ a _END_ di _TOTAL_" msgstr "Registra _START_ a _END_ di _TOTAL_"
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "(filtrato da record totale _MAX_)" msgstr "(filtrato da record totale _MAX_)"
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "Attendere prego, elaborazione" msgstr "Attendere prego, elaborazione"
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "Filtro" msgstr "Filtro"
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "Righe di %d selezionato" msgstr "Righe di %d selezionato"
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "Fare clic su una riga per selezionarla" msgstr "Fare clic su una riga per selezionarla"
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "Selezionata una riga" msgstr "Selezionata una riga"
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "Nuovo" msgstr "Nuovo"
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "Autorizzazioni" msgstr "Autorizzazioni"
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "Xls" msgstr "Xls"
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "Messaggio" msgstr "Messaggio"
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "Connessione non riuscita" msgstr "Connessione non riuscita"
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "Questo campo è obbligatorio." msgstr "Questo campo è obbligatorio."
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "Si prega di correggere questo campo." msgstr "Si prega di correggere questo campo."
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "Inserisci un indirizzo email valido." msgstr "Inserisci un indirizzo email valido."
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Immettere un URL valido." msgstr "Immettere un URL valido."
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "Inserisci una data valida." msgstr "Inserisci una data valida."
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "Inserisci una data valida (ISO)." msgstr "Inserisci una data valida (ISO)."
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "Si prega di inserire un numero valido." msgstr "Si prega di inserire un numero valido."
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "Inserire solo cifre." msgstr "Inserire solo cifre."
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "Si prega di inserire un numero di carta di credito valida." msgstr "Si prega di inserire un numero di carta di credito valida."
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "Inserisci nuovamente lo stesso valore." msgstr "Inserisci nuovamente lo stesso valore."
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "Si prega di inserire non più di {0} caratteri." msgstr "Si prega di inserire non più di {0} caratteri."
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "Si prega di inserire almeno {0} caratteri." msgstr "Si prega di inserire almeno {0} caratteri."
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "Per favore inserisci un valore tra {0} e {1} caratteri lungo." msgstr "Per favore inserisci un valore tra {0} e {1} caratteri lungo."
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "Immettere un valore compreso tra {0} e {1}." msgstr "Immettere un valore compreso tra {0} e {1}."
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "Inserisci un valore minore o uguale a {0}." msgstr "Inserisci un valore minore o uguale a {0}."
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "Immettere un valore maggiore o uguale a {0}." msgstr "Immettere un valore maggiore o uguale a {0}."

File diff suppressed because it is too large Load Diff

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: OpenUDS\n" "Project-Id-Version: OpenUDS\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-04-19 10:01+0200\n" "POT-Creation-Date: 2016-04-20 15:06+0200\n"
"PO-Revision-Date: 2016-04-18 05:02+0000\n" "PO-Revision-Date: 2016-04-18 05:02+0000\n"
"Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n" "Last-Translator: Adolfo Gómez <dkmaster@dkmon.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/openuds/openuds/language/" "Language-Team: Portuguese (http://www.transifex.com/openuds/openuds/language/"
@ -106,115 +106,115 @@ msgstr "Erro de pesquisa"
msgid "Accept" msgid "Accept"
msgstr "Aceitar" msgstr "Aceitar"
#: static/tmp_js/gui-d-authenticators.js:131 #: static/tmp_js/gui-d-authenticators.js:148
#: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39 #: static/tmp_js/gui-d-connectivity.js:43 static/tmp_js/gui-d-osmanagers.js:39
#: static/tmp_js/gui-d-services.js:82 static/tmp_js/gui-d-services.js:123 #: static/tmp_js/gui-d-services.js:89 static/tmp_js/gui-d-services.js:131
#: static/tmp_js/gui-d-servicespools.js:182 #: static/tmp_js/gui-d-servicespools.js:220
msgid "Error accessing data" msgid "Error accessing data"
msgstr "Erro ao acessar dados" msgstr "Erro ao acessar dados"
#: static/tmp_js/gui-d-authenticators.js:157 #: static/tmp_js/gui-d-authenticators.js:174
msgid "Edit group" msgid "Edit group"
msgstr "Editar grupo" msgstr "Editar grupo"
#: static/tmp_js/gui-d-authenticators.js:179 #: static/tmp_js/gui-d-authenticators.js:196
#: static/tmp_js/gui-d-authenticators.js:222 #: static/tmp_js/gui-d-authenticators.js:239
msgid "Group saved" msgid "Group saved"
msgstr "Grupo salvou" msgstr "Grupo salvou"
#: static/tmp_js/gui-d-authenticators.js:200 #: static/tmp_js/gui-d-authenticators.js:217
msgid "New meta group" msgid "New meta group"
msgstr "Novo grupo meta" msgstr "Novo grupo meta"
#: static/tmp_js/gui-d-authenticators.js:202 #: static/tmp_js/gui-d-authenticators.js:219
msgid "New group" msgid "New group"
msgstr "Novo grupo" msgstr "Novo grupo"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Search groups" msgid "Search groups"
msgstr "Grupos de pesquisa" msgstr "Grupos de pesquisa"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
#: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85 #: static/tmp_js/gui-permissions.js:36 static/tmp_js/gui-permissions.js:85
msgid "Group" msgid "Group"
msgstr "Grupo" msgstr "Grupo"
#: static/tmp_js/gui-d-authenticators.js:214 #: static/tmp_js/gui-d-authenticators.js:231
msgid "Groups found" msgid "Groups found"
msgstr "Grupos encontrados" msgstr "Grupos encontrados"
#: static/tmp_js/gui-d-authenticators.js:223 #: static/tmp_js/gui-d-authenticators.js:240
msgid "Group saving error" msgid "Group saving error"
msgstr "Grupo salvando o erro" msgstr "Grupo salvando o erro"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Delete group" msgid "Delete group"
msgstr "Apagar grupo" msgstr "Apagar grupo"
#: static/tmp_js/gui-d-authenticators.js:235 #: static/tmp_js/gui-d-authenticators.js:252
msgid "Group deletion error" msgid "Group deletion error"
msgstr "Erro de exclusão do grupo" msgstr "Erro de exclusão do grupo"
#: static/tmp_js/gui-d-authenticators.js:282 #: static/tmp_js/gui-d-authenticators.js:299
msgid "Edit user" msgid "Edit user"
msgstr "Editar usuário" msgstr "Editar usuário"
#: static/tmp_js/gui-d-authenticators.js:314 #: static/tmp_js/gui-d-authenticators.js:331
#: static/tmp_js/gui-d-authenticators.js:345 #: static/tmp_js/gui-d-authenticators.js:362
msgid "User saved" msgid "User saved"
msgstr "Usuário salvado" msgstr "Usuário salvado"
#: static/tmp_js/gui-d-authenticators.js:315 #: static/tmp_js/gui-d-authenticators.js:332
#: static/tmp_js/gui-d-authenticators.js:346 #: static/tmp_js/gui-d-authenticators.js:363
msgid "User saving error" msgid "User saving error"
msgstr "Usuário salvar o erro" msgstr "Usuário salvar o erro"
#: static/tmp_js/gui-d-authenticators.js:326 #: static/tmp_js/gui-d-authenticators.js:343
msgid "New user" msgid "New user"
msgstr "Novo usuário" msgstr "Novo usuário"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Search users" msgid "Search users"
msgstr "Pesquisar usuários" msgstr "Pesquisar usuários"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
#: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82 #: static/tmp_js/gui-permissions.js:33 static/tmp_js/gui-permissions.js:82
msgid "User" msgid "User"
msgstr "Usuário" msgstr "Usuário"
#: static/tmp_js/gui-d-authenticators.js:337 #: static/tmp_js/gui-d-authenticators.js:354
msgid "Users found" msgid "Users found"
msgstr "Usuários encontrados" msgstr "Usuários encontrados"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "Delete user" msgid "Delete user"
msgstr "Excluir usuário" msgstr "Excluir usuário"
#: static/tmp_js/gui-d-authenticators.js:351 #: static/tmp_js/gui-d-authenticators.js:368
msgid "User deletion error" msgid "User deletion error"
msgstr "Erro de exclusão de usuário" msgstr "Erro de exclusão de usuário"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "New authenticator" msgid "New authenticator"
msgstr "Novo autenticador" msgstr "Novo autenticador"
#: static/tmp_js/gui-d-authenticators.js:362 #: static/tmp_js/gui-d-authenticators.js:379
msgid "Authenticator creation error" msgid "Authenticator creation error"
msgstr "Erro de criação do autenticador" msgstr "Erro de criação do autenticador"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Edit authenticator" msgid "Edit authenticator"
msgstr "Editar autenticador" msgstr "Editar autenticador"
#: static/tmp_js/gui-d-authenticators.js:363 #: static/tmp_js/gui-d-authenticators.js:380
msgid "Authenticator saving error" msgid "Authenticator saving error"
msgstr "Autenticador salvando o erro" msgstr "Autenticador salvando o erro"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Delete authenticator" msgid "Delete authenticator"
msgstr "Excluir o autenticador" msgstr "Excluir o autenticador"
#: static/tmp_js/gui-d-authenticators.js:364 #: static/tmp_js/gui-d-authenticators.js:381
msgid "Authenticator deletion error" msgid "Authenticator deletion error"
msgstr "Erro de exclusão do autenticador" msgstr "Erro de exclusão do autenticador"
@ -502,94 +502,93 @@ msgstr "Erro ao criar o relatório"
msgid "Error obtaining report description" msgid "Error obtaining report description"
msgstr "Descrição de relatório de obtenção do erro" msgstr "Descrição de relatório de obtenção do erro"
#: static/tmp_js/gui-d-services.js:59 #: static/tmp_js/gui-d-services.js:66
msgid "In Maintenance" msgid "In Maintenance"
msgstr "Em manutenção" msgstr "Em manutenção"
#: static/tmp_js/gui-d-services.js:61 #: static/tmp_js/gui-d-services.js:68
msgid "Active" msgid "Active"
msgstr "Ativo" msgstr "Ativo"
#: static/tmp_js/gui-d-services.js:104 #: static/tmp_js/gui-d-services.js:111
msgid "Information" msgid "Information"
msgstr "" msgstr "Informações"
#: static/tmp_js/gui-d-services.js:120 #: static/tmp_js/gui-d-services.js:128
#, fuzzy
#| msgid "Service creation error" #| msgid "Service creation error"
msgid "Service information" msgid "Service information"
msgstr "Erro de criação do serviço" msgstr "Informação de serviço"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Edit service" msgid "Edit service"
msgstr "Editar serviço" msgstr "Editar serviço"
#: static/tmp_js/gui-d-services.js:141 #: static/tmp_js/gui-d-services.js:186
msgid "Service creation error" msgid "Service creation error"
msgstr "Erro de criação do serviço" msgstr "Erro de criação do serviço"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "New service" msgid "New service"
msgstr "Novo serviço" msgstr "Novo serviço"
#: static/tmp_js/gui-d-services.js:142 #: static/tmp_js/gui-d-services.js:187
msgid "Service saving error" msgid "Service saving error"
msgstr "Salvando o erro de serviço" msgstr "Salvando o erro de serviço"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Delete service" msgid "Delete service"
msgstr "Excluir o serviço" msgstr "Excluir o serviço"
#: static/tmp_js/gui-d-services.js:143 #: static/tmp_js/gui-d-services.js:188
msgid "Service deletion error" msgid "Service deletion error"
msgstr "Erro de exclusão do serviço" msgstr "Erro de exclusão do serviço"
#: static/tmp_js/gui-d-services.js:159 static/tmp_js/gui-d-services.js:182 #: static/tmp_js/gui-d-services.js:204 static/tmp_js/gui-d-services.js:227
msgid "Maintenance" msgid "Maintenance"
msgstr "Manutenção" msgstr "Manutenção"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Maintenance Mode" msgid "Maintenance Mode"
msgstr "Modo de manutenção" msgstr "Modo de manutenção"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Enter Maintenance Mode?" msgid "Enter Maintenance Mode?"
msgstr "Entrar no modo de manutenção?" msgstr "Entrar no modo de manutenção?"
#: static/tmp_js/gui-d-services.js:168 #: static/tmp_js/gui-d-services.js:213
msgid "Exit Maintenance Mode?" msgid "Exit Maintenance Mode?"
msgstr "Sair do modo de manutenção?" msgstr "Sair do modo de manutenção?"
#: static/tmp_js/gui-d-services.js:187 #: static/tmp_js/gui-d-services.js:232
msgid "Enter maintenance Mode" msgid "Enter maintenance Mode"
msgstr "Digite o modo de manutenção" msgstr "Digite o modo de manutenção"
#: static/tmp_js/gui-d-services.js:190 #: static/tmp_js/gui-d-services.js:235
msgid "Exit Maintenance Mode" msgid "Exit Maintenance Mode"
msgstr "Sair do modo de manutenção" msgstr "Sair do modo de manutenção"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "New services provider" msgid "New services provider"
msgstr "Novo provedor de serviços" msgstr "Novo provedor de serviços"
#: static/tmp_js/gui-d-services.js:198 #: static/tmp_js/gui-d-services.js:243
msgid "Services provider creation error" msgid "Services provider creation error"
msgstr "Erro de criação do provedor de serviços" msgstr "Erro de criação do provedor de serviços"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
msgid "Edit services provider" msgid "Edit services provider"
msgstr "Editar Provedor de serviços" msgstr "Editar Provedor de serviços"
#: static/tmp_js/gui-d-services.js:199 #: static/tmp_js/gui-d-services.js:244
#: static/tmp_js/gui-d-servicespoolsgroup.js:22 #: static/tmp_js/gui-d-servicespoolsgroup.js:22
msgid "Services Provider saving error" msgid "Services Provider saving error"
msgstr "Salvando o erro do prestador de serviços" msgstr "Salvando o erro do prestador de serviços"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Delete services provider" msgid "Delete services provider"
msgstr "Exclua o provedor de serviços" msgstr "Exclua o provedor de serviços"
#: static/tmp_js/gui-d-services.js:200 #: static/tmp_js/gui-d-services.js:245
msgid "Services Provider deletion error" msgid "Services Provider deletion error"
msgstr "Erro de exclusão do provedor de serviços" msgstr "Erro de exclusão do provedor de serviços"
@ -613,30 +612,30 @@ msgstr "Início"
msgid "Ending" msgid "Ending"
msgstr "Final" msgstr "Final"
#: static/tmp_js/gui-d-servicespools-actions.js:116 #: static/tmp_js/gui-d-servicespools-actions.js:117
msgid "Add scheduled action" msgid "Add scheduled action"
msgstr "Adicionar ação programada" msgstr "Adicionar ação programada"
#: static/tmp_js/gui-d-servicespools-actions.js:178 #: static/tmp_js/gui-d-servicespools-actions.js:179
#: static/tmp_js/gui-d-servicespools-calendars.js:92 #: static/tmp_js/gui-d-servicespools-calendars.js:95
msgid "Edit access calendar" msgid "Edit access calendar"
msgstr "Editar o calendário de acesso" msgstr "Editar o calendário de acesso"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Remove access calendar" msgid "Remove access calendar"
msgstr "Remover acesso calendário" msgstr "Remover acesso calendário"
#: static/tmp_js/gui-d-servicespools-actions.js:215 #: static/tmp_js/gui-d-servicespools-actions.js:216
#: static/tmp_js/gui-d-servicespools-calendars.js:119 #: static/tmp_js/gui-d-servicespools-calendars.js:122
msgid "Access calendar removal error" msgid "Access calendar removal error"
msgstr "Erro de remoção de calendário de acesso" msgstr "Erro de remoção de calendário de acesso"
#: static/tmp_js/gui-d-servicespools-calendars.js:41 #: static/tmp_js/gui-d-servicespools-calendars.js:44
msgid "Add access calendar" msgid "Add access calendar"
msgstr "Adicionar calendário de acesso" msgstr "Adicionar calendário de acesso"
#: static/tmp_js/gui-d-servicespools-calendars.js:70 #: static/tmp_js/gui-d-servicespools-calendars.js:73
msgid "Default fallback access" msgid "Default fallback access"
msgstr "Acesso de retorno padrão" msgstr "Acesso de retorno padrão"
@ -679,83 +678,83 @@ msgstr "Remover o transporte"
msgid "Transport removal error" msgid "Transport removal error"
msgstr "Erro de remoção de transporte" msgstr "Erro de remoção de transporte"
#: static/tmp_js/gui-d-servicespools.js:115 #: static/tmp_js/gui-d-servicespools.js:153
#: static/tmp_js/gui-d-servicespools.js:298 #: static/tmp_js/gui-d-servicespools.js:336
msgid "Yes" msgid "Yes"
msgstr "Sim" msgstr "Sim"
#: static/tmp_js/gui-d-servicespools.js:117 #: static/tmp_js/gui-d-servicespools.js:155
#: static/tmp_js/gui-d-servicespools.js:300 #: static/tmp_js/gui-d-servicespools.js:338
msgid "No" msgid "No"
msgstr "Não" msgstr "Não"
#: static/tmp_js/gui-d-servicespools.js:177 #: static/tmp_js/gui-d-servicespools.js:215
msgid "error" msgid "error"
msgstr "erro" msgstr "erro"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
msgid "Remove Cache element" msgid "Remove Cache element"
msgstr "Remover o elemento de Cache" msgstr "Remover o elemento de Cache"
#: static/tmp_js/gui-d-servicespools.js:213 #: static/tmp_js/gui-d-servicespools.js:251
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Deletion error" msgid "Deletion error"
msgstr "Erro de exclusão" msgstr "Erro de exclusão"
#: static/tmp_js/gui-d-servicespools.js:236 #: static/tmp_js/gui-d-servicespools.js:274
msgid "Add group" msgid "Add group"
msgstr "Adicionar grupo" msgstr "Adicionar grupo"
#: static/tmp_js/gui-d-servicespools.js:259 #: static/tmp_js/gui-d-servicespools.js:297
msgid "You must provide authenticator and group" msgid "You must provide authenticator and group"
msgstr "Você deve fornecer o autenticador e grupo" msgstr "Você deve fornecer o autenticador e grupo"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Remove group" msgid "Remove group"
msgstr "Remover grupo" msgstr "Remover grupo"
#: static/tmp_js/gui-d-servicespools.js:273 #: static/tmp_js/gui-d-servicespools.js:316
msgid "Group removal error" msgid "Group removal error"
msgstr "Erro de remoção do grupo" msgstr "Erro de remoção do grupo"
#: static/tmp_js/gui-d-servicespools.js:316 #: static/tmp_js/gui-d-servicespools.js:355
msgid "Remove Assigned service" msgid "Remove Assigned service"
msgstr "Remover o serviço atribuído" msgstr "Remover o serviço atribuído"
#: static/tmp_js/gui-d-servicespools.js:360 #: static/tmp_js/gui-d-servicespools.js:403
msgid "Restrained" msgid "Restrained"
msgstr "Contido" msgstr "Contido"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "New service pool" msgid "New service pool"
msgstr "Novo pool de serviço" msgstr "Novo pool de serviço"
#: static/tmp_js/gui-d-servicespools.js:369 #: static/tmp_js/gui-d-servicespools.js:412
msgid "creation error" msgid "creation error"
msgstr "erro de criação" msgstr "erro de criação"
#: static/tmp_js/gui-d-servicespools.js:379 #: static/tmp_js/gui-d-servicespools.js:422
msgid "Publish on creation" msgid "Publish on creation"
msgstr "Publicar na criação" msgstr "Publicar na criação"
#: static/tmp_js/gui-d-servicespools.js:380 #: static/tmp_js/gui-d-servicespools.js:423
msgid "If selected, will initiate the publication inmediatly after creation" msgid "If selected, will initiate the publication inmediatly after creation"
msgstr "Se selecionado, irá iniciar a publicação imediatamente após a criação" msgstr "Se selecionado, irá iniciar a publicação imediatamente após a criação"
#: static/tmp_js/gui-d-servicespools.js:392 static/tmp_js/gui.js:48 #: static/tmp_js/gui-d-servicespools.js:435 static/tmp_js/gui.js:50
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
#: static/tmp_js/gui-d-servicespools.js:392 #: static/tmp_js/gui-d-servicespools.js:435
msgid "saving error" msgid "saving error"
msgstr "salvando o erro" msgstr "salvando o erro"
#: static/tmp_js/gui-d-servicespools.js:395 static/tmp_js/gui-methods.js:141 #: static/tmp_js/gui-d-servicespools.js:438 static/tmp_js/gui-methods.js:141
#: static/tmp_js/gui.js:52 #: static/tmp_js/gui.js:54
msgid "Delete" msgid "Delete"
msgstr "Excluir" msgstr "Excluir"
#: static/tmp_js/gui-d-servicespools.js:395 #: static/tmp_js/gui-d-servicespools.js:438
msgid "deletion error" msgid "deletion error"
msgstr "erro de exclusão" msgstr "erro de exclusão"
@ -787,33 +786,33 @@ msgstr "Cache"
msgid "Cache has been flushed" msgid "Cache has been flushed"
msgstr "Cache foi liberado" msgstr "Cache foi liberado"
#: static/tmp_js/gui-element.js:229 #: static/tmp_js/gui-element.js:252
msgid "Refresh operation failed" msgid "Refresh operation failed"
msgstr "Falha na operação de atualizar" msgstr "Falha na operação de atualizar"
#: static/tmp_js/gui-element.js:604 #: static/tmp_js/gui-element.js:629
msgid "Date" msgid "Date"
msgstr "Data" msgstr "Data"
#: static/tmp_js/gui-element.js:612 #: static/tmp_js/gui-element.js:637
msgid "level" msgid "level"
msgstr "nível" msgstr "nível"
#: static/tmp_js/gui-element.js:619 #: static/tmp_js/gui-element.js:644
msgid "source" msgid "source"
msgstr "fonte" msgstr "fonte"
#: static/tmp_js/gui-element.js:625 #: static/tmp_js/gui-element.js:650
msgid "message" msgid "message"
msgstr "Mensagem" msgstr "Mensagem"
#: static/tmp_js/gui-element.js:630 #: static/tmp_js/gui-element.js:655
msgid "Logs" msgid "Logs"
msgstr "Logs" msgstr "Logs"
#: static/tmp_js/gui-form.js:95 #: static/tmp_js/gui-form.js:95
msgid "Main" msgid "Main"
msgstr "" msgstr "Main"
#: static/tmp_js/gui-form.js:301 #: static/tmp_js/gui-form.js:301
msgid "yes" msgid "yes"
@ -907,128 +906,128 @@ msgstr "Só um momento..."
msgid "Never" msgid "Never"
msgstr "Nunca" msgstr "Nunca"
#: static/tmp_js/gui.js:19 #: static/tmp_js/gui.js:21
msgid "_MENU_ records per page" msgid "_MENU_ records per page"
msgstr "Registros _MENU_ por página" msgstr "Registros _MENU_ por página"
#: static/tmp_js/gui.js:20 #: static/tmp_js/gui.js:22
msgid "Empty" msgid "Empty"
msgstr "Vazio" msgstr "Vazio"
#: static/tmp_js/gui.js:21 static/tmp_js/gui.js:23 #: static/tmp_js/gui.js:23 static/tmp_js/gui.js:25
msgid "No records" msgid "No records"
msgstr "Não há registros" msgstr "Não há registros"
#: static/tmp_js/gui.js:22 #: static/tmp_js/gui.js:24
msgid "Records _START_ to _END_ of _TOTAL_" msgid "Records _START_ to _END_ of _TOTAL_"
msgstr "Registros _START_ para _END_ de _TOTAL_" msgstr "Registros _START_ para _END_ de _TOTAL_"
#: static/tmp_js/gui.js:24 #: static/tmp_js/gui.js:26
msgid "(filtered from _MAX_ total records)" msgid "(filtered from _MAX_ total records)"
msgstr "(filtrada de registros total de _MAX_)" msgstr "(filtrada de registros total de _MAX_)"
#: static/tmp_js/gui.js:25 #: static/tmp_js/gui.js:27
msgid "Please wait, processing" msgid "Please wait, processing"
msgstr "Aguarde, processamento" msgstr "Aguarde, processamento"
#: static/tmp_js/gui.js:26 #: static/tmp_js/gui.js:28
msgid "Filter" msgid "Filter"
msgstr "Filtro" msgstr "Filtro"
#: static/tmp_js/gui.js:36 #: static/tmp_js/gui.js:38
#, javascript-format #, javascript-format
msgid "Selected %d rows" msgid "Selected %d rows"
msgstr "%d selecionado linhas" msgstr "%d selecionado linhas"
#: static/tmp_js/gui.js:37 #: static/tmp_js/gui.js:39
msgid "Click on a row to select it" msgid "Click on a row to select it"
msgstr "Clique em uma linha para selecioná-lo" msgstr "Clique em uma linha para selecioná-lo"
#: static/tmp_js/gui.js:38 #: static/tmp_js/gui.js:40
msgid "Selected one row" msgid "Selected one row"
msgstr "Selecionada uma linha" msgstr "Selecionada uma linha"
#: static/tmp_js/gui.js:44 #: static/tmp_js/gui.js:46
msgid "New" msgid "New"
msgstr "Novo" msgstr "Novo"
#: static/tmp_js/gui.js:56 #: static/tmp_js/gui.js:58
msgid "Permissions" msgid "Permissions"
msgstr "Permissões" msgstr "Permissões"
#: static/tmp_js/gui.js:60 #: static/tmp_js/gui.js:62
msgid "Xls" msgid "Xls"
msgstr "Xls" msgstr "Xls"
#: static/tmp_js/gui.js:122 #: static/tmp_js/gui.js:124
msgid "Message" msgid "Message"
msgstr "Mensagem" msgstr "Mensagem"
#: static/tmp_js/gui.js:130 #: static/tmp_js/gui.js:132
msgid "Connection failed" msgid "Connection failed"
msgstr "Conexão falhado" msgstr "Conexão falhado"
#: static/tmp_js/gui.js:224 #: static/tmp_js/gui.js:229
msgid "This field is required." msgid "This field is required."
msgstr "Este campo é obrigatório." msgstr "Este campo é obrigatório."
#: static/tmp_js/gui.js:225 #: static/tmp_js/gui.js:230
msgid "Please fix this field." msgid "Please fix this field."
msgstr "Por favor corrigi este campo." msgstr "Por favor corrigi este campo."
#: static/tmp_js/gui.js:226 #: static/tmp_js/gui.js:231
msgid "Please enter a valid email address." msgid "Please enter a valid email address."
msgstr "Por favor insira um endereço de email válido." msgstr "Por favor insira um endereço de email válido."
#: static/tmp_js/gui.js:227 #: static/tmp_js/gui.js:232
msgid "Please enter a valid URL." msgid "Please enter a valid URL."
msgstr "Por favor introduza um URL válido." msgstr "Por favor introduza um URL válido."
#: static/tmp_js/gui.js:228 #: static/tmp_js/gui.js:233
msgid "Please enter a valid date." msgid "Please enter a valid date."
msgstr "Por favor introduza uma data válida." msgstr "Por favor introduza uma data válida."
#: static/tmp_js/gui.js:229 #: static/tmp_js/gui.js:234
msgid "Please enter a valid date (ISO)." msgid "Please enter a valid date (ISO)."
msgstr "Por favor introduza uma data válida (ISO)." msgstr "Por favor introduza uma data válida (ISO)."
#: static/tmp_js/gui.js:230 #: static/tmp_js/gui.js:235
msgid "Please enter a valid number." msgid "Please enter a valid number."
msgstr "Por favor, insira um número válido." msgstr "Por favor, insira um número válido."
#: static/tmp_js/gui.js:231 #: static/tmp_js/gui.js:236
msgid "Please enter only digits." msgid "Please enter only digits."
msgstr "Por favor, digite somente dígitos." msgstr "Por favor, digite somente dígitos."
#: static/tmp_js/gui.js:232 #: static/tmp_js/gui.js:237
msgid "Please enter a valid credit card number." msgid "Please enter a valid credit card number."
msgstr "Por favor, insira um número válido de cartão de crédito." msgstr "Por favor, insira um número válido de cartão de crédito."
#: static/tmp_js/gui.js:233 #: static/tmp_js/gui.js:238
msgid "Please enter the same value again." msgid "Please enter the same value again."
msgstr "Digite novamente o mesmo valor." msgstr "Digite novamente o mesmo valor."
#: static/tmp_js/gui.js:234 #: static/tmp_js/gui.js:239
msgid "Please enter no more than {0} characters." msgid "Please enter no more than {0} characters."
msgstr "Não mais de {0} caracteres digite." msgstr "Não mais de {0} caracteres digite."
#: static/tmp_js/gui.js:235 #: static/tmp_js/gui.js:240
msgid "Please enter at least {0} characters." msgid "Please enter at least {0} characters."
msgstr "Por favor, insira pelo menos {0} caracteres." msgstr "Por favor, insira pelo menos {0} caracteres."
#: static/tmp_js/gui.js:236 #: static/tmp_js/gui.js:241
msgid "Please enter a value between {0} and {1} characters long." msgid "Please enter a value between {0} and {1} characters long."
msgstr "Por favor, insira um valor entre {0} e {1} caracteres longo." msgstr "Por favor, insira um valor entre {0} e {1} caracteres longo."
#: static/tmp_js/gui.js:237 #: static/tmp_js/gui.js:242
msgid "Please enter a value between {0} and {1}." msgid "Please enter a value between {0} and {1}."
msgstr "Por favor, insira um valor entre {0} e {1}." msgstr "Por favor, insira um valor entre {0} e {1}."
#: static/tmp_js/gui.js:238 #: static/tmp_js/gui.js:243
msgid "Please enter a value less than or equal to {0}." msgid "Please enter a value less than or equal to {0}."
msgstr "Por favor digite um valor menor ou igual a {0}." msgstr "Por favor digite um valor menor ou igual a {0}."
#: static/tmp_js/gui.js:239 #: static/tmp_js/gui.js:244
msgid "Please enter a value greater than or equal to {0}." msgid "Please enter a value greater than or equal to {0}."
msgstr "Por favor, insira um valor maior ou igual a {0}." msgstr "Por favor, insira um valor maior ou igual a {0}."