diff -r 000000000000 -r 6474c204b198 dom/locales/en-US/chrome/security/csp.properties --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/locales/en-US/chrome/security/csp.properties Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,122 @@ +# 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/. + +# CSP Warnings: +# LOCALIZATION NOTE (CSPViolation): +# %1$S is the reason why the resource has not been loaded. +CSPViolation = The page's settings blocked the loading of a resource: %1$S +# LOCALIZATION NOTE (CSPViolationWithURI): +# %1$S is the directive that has been violated. +# %2$S is the URI of the resource which violated the directive. +CSPViolationWithURI = The page's settings blocked the loading of a resource at %2$S ("%1$S"). +# 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 +# LOCALIZATION NOTE (couldNotProcessUnknownDirective): +# %1$S is the unknown directive +couldNotProcessUnknownDirective = Couldn't process unknown directive '%1$S' +# LOCALIZATION NOTE (ignoringUnknownOption): +# %1$S is the option that could not be understood +ignoringUnknownOption = Ignoring unknown option %1$S +# LOCALIZATION NOTE (reportURInotHttpsOrHttp2): +# %1$S is the ETLD of the report URI that is not HTTP or HTTPS +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 +# LOCALIZATION NOTE (inlineStyleBlocked): +# inline style refers to CSS code that is embedded into the HTML document. +inlineStyleBlocked = An attempt to apply inline style sheets has been blocked +# LOCALIZATION NOTE (scriptFromStringBlocked): +# eval is a name and should not be localized. +scriptFromStringBlocked = An attempt to call JavaScript from a string (by calling a function like eval) has been blocked +# LOCALIZATION NOTE (hostNameMightBeKeyword): +# %1$S is the hostname in question and %2$S is the keyword +hostNameMightBeKeyword = Interpreting %1$S as a hostname, not a keyword. If you intended this to be a keyword, use '%2$S' (wrapped in single quotes). + +# 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 +# LOCALIZATION NOTE (couldntParseScheme): +# %1$S is the string source +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.