# 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/. # LOCALIZATION NOTE These strings are used inside the Web Console # command line which is available from the Web Developer sub-menu # -> 'Web Console'. # These messages are displayed when an attempt is made to validate a # page or a cache manifest using AppCacheUtils.jsm # The correct localization of this file might be to keep it in # English, or another language commonly spoken among web developers. # You want to make that choice consistent across the developer tools. # A good criteria is the language in which you'd find the best # documentation on web development on the web. # LOCALIZATION NOTE (noManifest): the specified page has no cache manifest. noManifest=The specified page has no manifest. # LOCALIZATION NOTE (notUTF8): the associated cache manifest has a character # encoding that is not UTF-8. Parameters: %S is the current encoding. notUTF8=Manifest has a character encoding of %S. Manifests must have the utf-8 character encoding. # LOCALIZATION NOTE (badMimeType): the associated cache manifest has a # mimetype that is not text/cache-manifest. Parameters: %S is the current # mimetype. badMimeType=Manifest has a mimetype of %S. Manifests must have a mimetype of text/cache-manifest. # LOCALIZATION NOTE (duplicateURI): the associated cache manifest references # the same URI from multiple locations. Parameters: %1$S is the URI, %2$S is a # list of references to this URI. duplicateURI=URI %1$S is referenced in multiple locations. This is not allowed: %2$S. # LOCALIZATION NOTE (networkBlocksURI, fallbackBlocksURI): the associated # cache manifest references the same URI in the NETWORK (or FALLBACK) section # as it does in other sections. Parameters: %1$S is the line number, %2$S is # the resource name, %3$S is the line number, %4$S is the resource name, %5$S # is the section name. networkBlocksURI=NETWORK section line %1$S (%2$S) prevents caching of line %3$S (%4$S) in the %5$S section. fallbackBlocksURI=FALLBACK section line %1$S (%2$S) prevents caching of line %3$S (%4$S) in the %5$S section. # LOCALIZATION NOTE (fileChangedButNotManifest): the associated cache manifest # references a URI that has a file modified after the cache manifest. # Parameters: %1$S is the resource name, %2$S is the cache manifest, %3$S is # the line number. fileChangedButNotManifest=The file %1$S was modified after %2$S. Unless the text in the manifest file is changed the cached version will be used instead at line %3$S. # LOCALIZATION NOTE (cacheControlNoStore): the specified page has a header # preventing caching or storing information. Parameters: %1$S is the resource # name, %2$S is the line number. cacheControlNoStore=%1$S has cache-control set to no-store. This will prevent the application cache from storing the file at line %2$S. # LOCALIZATION NOTE (notAvailable): the specified resource is not available. # Parameters: %1$S is the resource name, %2$S is the line number. notAvailable=%1$S points to a resource that is not available at line %2$S. # LOCALIZATION NOTE (invalidURI): it's used when an invalid URI is passed to # the appcache. invalidURI=The URI passed to AppCacheUtils is invalid. # LOCALIZATION NOTE (noResults): it's used when a search returns no results. noResults=Your search returned no results. # LOCALIZATION NOTE (cacheDisabled): it's used when the cache is disabled and # an attempt is made to view offline data. cacheDisabled=Your disk cache is disabled. Please set browser.cache.disk.enable to true in about:config and try again. # LOCALIZATION NOTE (firstLineMustBeCacheManifest): the associated cache # manifest has a first line that is not "CACHE MANIFEST". Parameters: %S is # the line number. firstLineMustBeCacheManifest=The first line of the manifest must be “CACHE MANIFEST” at line %S. # LOCALIZATION NOTE (cacheManifestOnlyFirstLine2): the associated cache # manifest has "CACHE MANIFEST" on a line other than the first line. # Parameters: %S is the line number where "CACHE MANIFEST" appears. cacheManifestOnlyFirstLine2=“CACHE MANIFEST” is only valid on the first line but was found at line %S. # LOCALIZATION NOTE (asteriskInWrongSection2): the associated cache manifest # has an asterisk (*) in a section other than the NETWORK section. Parameters: # %1$S is the section name, %2$S is the line number. asteriskInWrongSection2=Asterisk (*) incorrectly used in the %1$S section at line %2$S. If a line in the NETWORK section contains only a single asterisk character, then any URI not listed in the manifest will be treated as if the URI was listed in the NETWORK section. Otherwise such URIs will be treated as unavailable. Other uses of the * character are prohibited. # LOCALIZATION NOTE (escapeSpaces): the associated cache manifest has a space # in a URI. Spaces must be replaced with %20. Parameters: %S is the line # number where this error occurs. escapeSpaces=Spaces in URIs need to be replaced with %20 at line %S. # LOCALIZATION NOTE (slashDotDotSlashBad): the associated cache manifest has a # URI containing /../, which is invalid. Parameters: %S is the line number # where this error occurs. slashDotDotSlashBad=/../ is not a valid URI prefix at line %S. # LOCALIZATION NOTE (tooManyDotDotSlashes): the associated cache manifest has # a URI containing too many ../ operators. Too many of these operators mean # that the file would be below the root of the site, which is not possible. # Parameters: %S is the line number where this error occurs. tooManyDotDotSlashes=Too many dot dot slash operators (../) at line %S. # LOCALIZATION NOTE (fallbackUseSpaces): the associated cache manifest has a # FALLBACK section containing more or less than the standard two URIs # separated by a single space. Parameters: %S is the line number where this # error occurs. fallbackUseSpaces=Only two URIs separated by spaces are allowed in the FALLBACK section at line %S. # LOCALIZATION NOTE (fallbackAsterisk2): the associated cache manifest has a # FALLBACK section that attempts to use an asterisk (*) as a wildcard. In this # section the URI is simply a path prefix. Parameters: %S is the line number # where this error occurs. fallbackAsterisk2=Asterisk (*) incorrectly used in the FALLBACK section at line %S. URIs in the FALLBACK section simply need to match a prefix of the request URI. # LOCALIZATION NOTE (settingsBadValue): the associated cache manifest has a # SETTINGS section containing something other than the valid "prefer-online" # or "fast". Parameters: %S is the line number where this error occurs. settingsBadValue=The SETTINGS section may only contain a single value, “prefer-online” or “fast” at line %S. # LOCALIZATION NOTE (invalidSectionName): the associated cache manifest # contains an invalid section name. Parameters: %1$S is the section name, %2$S # is the line number. invalidSectionName=Invalid section name (%1$S) at line %2$S.