mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1000945 - CSP: Remove unused strings from csp.properties (r=sstamm)
This commit is contained in:
parent
37443dae3c
commit
80c5432871
@ -20,9 +20,6 @@ CSPROViolationWithURI = The page's settings observed the loading of a resource a
|
||||
# LOCALIZATION NOTE (triedToSendReport):
|
||||
# %1$S is the URI we attempted to send a report to.
|
||||
triedToSendReport = Tried to send report to invalid URI: "%1$S"
|
||||
# LOCALIZATION NOTE (errorWas):
|
||||
# %1$S is the error resulting from attempting to send the report
|
||||
errorWas = error was: "%1$S"
|
||||
# LOCALIZATION NOTE (couldNotParseReportURI):
|
||||
# %1$S is the report URI that could not be parsed
|
||||
couldNotParseReportURI = couldn't parse report URI: %1$S
|
||||
@ -38,21 +35,9 @@ reportURInotHttpsOrHttp2 = The report URI (%1$S) should be an HTTP or HTTPS URI.
|
||||
# LOCALIZATION NOTE (reportURInotInReportOnlyHeader):
|
||||
# %1$S is the ETLD of the page with the policy
|
||||
reportURInotInReportOnlyHeader = This site (%1$S) has a Report-Only policy without a report URI. CSP will not block and cannot report violations of this policy.
|
||||
# LOCALIZATION NOTE (pageCannotSendReportsTo):
|
||||
# %1$S is the URI of the page with the policy
|
||||
# %2$S is the report URI that could not be used
|
||||
pageCannotSendReportsTo = page on %1$S cannot send reports to %2$S
|
||||
allowOrDefaultSrcRequired = 'allow' or 'default-src' directive required but not present. Reverting to "default-src 'none'"
|
||||
# LOCALIZATION NOTE (failedToParseUnrecognizedSource):
|
||||
# %1$S is the CSP Source that could not be parsed
|
||||
failedToParseUnrecognizedSource = Failed to parse unrecognized source %1$S
|
||||
# LOCALIZATION NOTE (reportPostRedirect):
|
||||
# %1$S is the specified report URI before redirect
|
||||
reportPostRedirect = Post of violation report to %1$S failed, as a redirect occurred
|
||||
# LOCALIZATION NOTE (allowDirectiveIsDeprecated):
|
||||
# Don't translate "allow" and "default-src" as they are keywords and part of
|
||||
# the CSP protocol syntax.
|
||||
allowDirectiveIsDeprecated = allow directive is deprecated, use the equivalent default-src directive instead
|
||||
# LOCALIZATION NOTE (inlineScriptBlocked):
|
||||
# inline script refers to JavaScript code that is embedded into the HTML document.
|
||||
inlineScriptBlocked = An attempt to execute inline scripts has been blocked
|
||||
@ -70,39 +55,9 @@ hostNameMightBeKeyword = Interpreting %1$S as a hostname, not a keyword. If you
|
||||
notSupportingDirective = Not supporting directive '%1$S'. Directive and values will be ignored.
|
||||
|
||||
# CSP Errors:
|
||||
policyURINotAlone = policy-uri directive can only appear alone
|
||||
noParentRequest = The policy-uri cannot be fetched without a parent request and a CSP.
|
||||
# LOCALIZATION NOTE (policyURIParseError):
|
||||
# %1$S is the URI that could not be parsed
|
||||
policyURIParseError = could not parse URI in policy URI: %1$S
|
||||
# LOCALIZATION NOTE (nonMatchingHost):
|
||||
# %1$S is the URI host that does not match
|
||||
nonMatchingHost = can't fetch policy uri from non-matching hostname: %1$S
|
||||
# LOCALIZATION NOTE (nonMatchingPort):
|
||||
# %1$S is the URI port that does not match
|
||||
nonMatchingPort = can't fetch policy uri from non-matching port: %1$S
|
||||
# LOCALIZATION NOTE (nonMatchingScheme):
|
||||
# %1$S is the URI scheme that does not match
|
||||
nonMatchingScheme = can't fetch policy uri from non-matching scheme: %1$S
|
||||
# LOCALIZATION NOTE (errorFetchingPolicy):
|
||||
# %1$S is the error that caused fetching to fail
|
||||
errorFetchingPolicy = Error fetching policy-uri: %1$S
|
||||
cspSourceNotURI = Provided argument is not an nsIURI
|
||||
argumentIsNotString = Provided argument is not a string
|
||||
selfDataNotProvided = Can't use 'self' if self data is not provided
|
||||
# LOCALIZATION NOTE (uriWithoutScheme):
|
||||
# %1$S is the URI without a scheme
|
||||
uriWithoutScheme = can't parse a URI without a scheme: %1$S
|
||||
selfKeywordNoSelfData = self keyword used, but no self data specified
|
||||
# LOCALIZATION NOTE (couldntParseInvalidSource):
|
||||
# %1$S is the source that could not be parsed
|
||||
couldntParseInvalidSource = Couldn't parse invalid source %1$S
|
||||
# LOCALIZATION NOTE (hostSourceWithoutData):
|
||||
# %1$S is the source
|
||||
hostSourceWithoutData = Can't create host-only source %1$S without 'self' data
|
||||
# LOCALIZATION NOTE (sourceWithoutData):
|
||||
# %1$S is the source
|
||||
sourceWithoutData = Can't create source %1$S without 'self' data
|
||||
# LOCALIZATION NOTE (couldntParseInvalidHost):
|
||||
# %1$S is the host that's invalid
|
||||
couldntParseInvalidHost = Couldn't parse invalid host %1$S
|
||||
@ -112,21 +67,6 @@ couldntParseScheme = Couldn't parse scheme in %1$S
|
||||
# LOCALIZATION NOTE (couldntParsePort):
|
||||
# %1$S is the string source
|
||||
couldntParsePort = Couldn't parse port in %1$S
|
||||
# LOCALIZATION NOTE (notIntersectPort):
|
||||
# %1$S is one source we tried to intersect
|
||||
# %2$S is the other
|
||||
notIntersectPort = Could not intersect %1$S with %2$S due to port problems.
|
||||
# LOCALIZATION NOTE (notIntersectScheme):
|
||||
# %1$S is one source we tried to intersect
|
||||
# %2$S is the other
|
||||
notIntersectScheme = Could not intersect %1$S with %2$S due to scheme problems.
|
||||
# LOCALIZATION NOTE (intersectingSourceWithUndefinedHost):
|
||||
# %1$S is the source
|
||||
intersectingSourceWithUndefinedHost = intersecting source with undefined host: %1$S
|
||||
# LOCALIZATION NOTE (intersectingSourcesWithUndefinedHosts):
|
||||
# %1$S is the first source
|
||||
# %2$S is the second source
|
||||
intersectingSourcesWithUndefinedHosts = intersecting two sources with undefined hosts: %1$S and %2$S
|
||||
# LOCALIZATION NOTE (duplicateDirective):
|
||||
# %1$S is the name of the duplicate directive
|
||||
duplicateDirective = Duplicate %1$S directives detected. All but the first instance will be ignored.
|
||||
|
Loading…
Reference in New Issue
Block a user