1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# Popup Blocker
# In Extension.jsm
# LOCALIZATION NOTE (webextPerms.header)
# This string is used as a header in the webextension permissions dialog,
# %S is replaced with the localized name of the extension being installed.
# See https://bug1308309.bmoattachments.org/attachment.cgi?id=8814612
# for an example of the full dialog.
# Note, this string will be used as raw markup. Avoid characters like <, >, &
webextPerms.header=¿Agregar %S?
webextPerms.add.label=Agregar
webextPerms.cancel.label=Cancelar
# LOCALIZATION NOTE (webextPerms.updateText)
# %S is replaced with the localized name of the updated extension.
webextPerms.updateText=%S ha sido actualizado. Hay que aprobar nuevos permisos antes que la versión actualizada se instale. Seleccionar “Cancelar” mantendrá la versión actual del complemento.
webextPerms.updateAccept.label=Actualizar
# LOCALIZATION NOTE (webextPerms.optionalPermsHeader)
# %S is replaced with the localized name of the extension requesting new
# permissions.
webextPerms.optionalPermsHeader=%S solicita permisos adicionales.
webextPerms.optionalPermsListIntro=Quiere:
webextPerms.optionalPermsAllow.label=Permitir
webextPerms.optionalPermsDeny.label=Dengar
webextPerms.description.bookmarks=Leer y modificar marcadores
webextPerms.description.browserSettings=Leer y modificar configuración del navegador
webextPerms.description.browsingData=Borrar el historial de navegación reciente, cookies y datos relacionados
webextPerms.description.clipboardRead=Obtener datos desde el portapapeles
webextPerms.description.clipboardWrite=Enviar datos al portapapeles
webextPerms.description.devtools=Ampliar las herramientas para desarrolladores para acceder a sus datos en las pestañas abiertas
webextPerms.description.downloads=Descargar archivos y leer o modificar el historial de descargas del navegador
webextPerms.description.downloads.open=Abrir los archivos descargados en la computadora
webextPerms.description.find=Leer el texto de todas las pestañas abiertas
webextPerms.description.geolocation=Acceder a tu ubicación
webextPerms.description.history=Acceder al historial de navegación
webextPerms.description.management=Monitorear uso de extensiones y administrar temas
# LOCALIZATION NOTE (webextPerms.description.nativeMessaging)
# %S will be replaced with the name of the application
webextPerms.description.nativeMessaging=Intercambiar mensajes con programas que no sean %S
webextPerms.description.notifications=Mostrar notificaciones
webextPerms.description.privacy=Leer y modificar configuración de privacidad
webextPerms.description.proxy=Controlar la configuración del proxy del navegador
webextPerms.description.sessions=Acceder a pestañas recientemente cerradas
webextPerms.description.tabs=Acceder a pestañas del navegador
webextPerms.description.topSites=Acceder al historial de navegación
webextPerms.description.webNavigation=Acceder a actividad del navegador durante la navegación
webextPerms.hostDescription.allUrls=Acceder a los datos para todos los sitios web
# LOCALIZATION NOTE (webextPerms.hostDescription.wildcard)
# %S will be replaced by the DNS domain for which a webextension
# is requesting access (e.g., mozilla.org)
webextPerms.hostDescription.wildcard=Acceder a los datos para los sitios en el dominio %S
# LOCALIZATION NOTE (webextPerms.hostDescription.tooManyWildcards):
# Semi-colon list of plural forms.
# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
# #1 will be replaced by an integer indicating the number of additional
# domains for which this webextension is requesting permission.
webextPerms.hostDescription.tooManyWildcards=Acceder a los datos en #1 dominio diferente;Acceder a los datos en #1 dominios diferentes
# LOCALIZATION NOTE (webextPerms.hostDescription.oneSite)
# %S will be replaced by the DNS host name for which a webextension
# is requesting access (e.g., www.mozilla.org)
webextPerms.hostDescription.oneSite=Acceder a los datos de %S
# LOCALIZATION NOTE (webextPerms.hostDescription.tooManySites)
# Semi-colon list of plural forms.
# See: http://developer.mozilla.org/en/docs/Localization_and_Plurals
# #1 will be replaced by an integer indicating the number of additional
# hosts for which this webextension is requesting permission.
webextPerms.hostDescription.tooManySites=Acceso a los datos en #1 sitio diferente;Acceso a los datos en #1 sitios diferentes
# LOCALIZATION NOTE (password.logins): Label that will be used in
# Web Console API
stacktrace.anonymousFunction=<anónimo>
stacktrace.outputMessage=Stack trace from %S, function %S, line %S.
timer.start=%S: timer started
# LOCALIZATION NOTE (timer.end):
# This string is used to display the result of the console.timeEnd() call.
# %1$S=name of timer, %2$S=number of milliseconds
timer.end=%1$S: %2$Sms
# Site settings dialog
# In ContextualIdentityService.jsm
# LOCALIZATION NOTE (userContextPersonal.label,
# userContextWork.label,
# userContextShopping.label,
# userContextBanking.label,
# userContextNone.label):
# These strings specify the four predefined contexts included in support of the
# Contextual Identity / Containers project. Each context is meant to represent
# the context that the user is in when interacting with the site. Different
# contexts will store cookies and other information from those sites in
# different, isolated locations. You can enable the feature by typing
# about:config in the URL bar and changing privacy.userContext.enabled to true.
# Once enabled, you can open a new tab in a specific context by clicking
# File > New Container Tab > (1 of 4 contexts). Once opened, you will see these
# strings on the right-hand side of the URL bar.
# In android this will be only exposed by web extensions
userContextPersonal.label = Personal
userContextWork.label = Trabajo
userContextBanking.label = Banco
userContextShopping.label = Compras
|