appcacheutils.properties 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. # This Source Code Form is subject to the terms of the Mozilla Public
  2. # License, v. 2.0. If a copy of the MPL was not distributed with this
  3. # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  4. # LOCALIZATION NOTE These strings are used inside the Web Console
  5. # command line which is available from the Web Developer sub-menu
  6. # -> 'Web Console'.
  7. # These messages are displayed when an attempt is made to validate a
  8. # page or a cache manifest using AppCacheUtils.jsm
  9. # The correct localization of this file might be to keep it in
  10. # English, or another language commonly spoken among web developers.
  11. # You want to make that choice consistent across the developer tools.
  12. # A good criteria is the language in which you'd find the best
  13. # documentation on web development on the web.
  14. # LOCALIZATION NOTE (noManifest): the specified page has no cache manifest.
  15. noManifest=The specified page has no manifest.
  16. # LOCALIZATION NOTE (notUTF8): the associated cache manifest has a character
  17. # encoding that is not UTF-8. Parameters: %S is the current encoding.
  18. notUTF8=Manifest has a character encoding of %S. Manifests must have the utf-8 character encoding.
  19. # LOCALIZATION NOTE (badMimeType): the associated cache manifest has a
  20. # mimetype that is not text/cache-manifest. Parameters: %S is the current
  21. # mimetype.
  22. badMimeType=Manifest has a mimetype of %S. Manifests must have a mimetype of text/cache-manifest.
  23. # LOCALIZATION NOTE (duplicateURI): the associated cache manifest references
  24. # the same URI from multiple locations. Parameters: %1$S is the URI, %2$S is a
  25. # list of references to this URI.
  26. duplicateURI=URI %1$S is referenced in multiple locations. This is not allowed: %2$S.
  27. # LOCALIZATION NOTE (networkBlocksURI, fallbackBlocksURI): the associated
  28. # cache manifest references the same URI in the NETWORK (or FALLBACK) section
  29. # as it does in other sections. Parameters: %1$S is the line number, %2$S is
  30. # the resource name, %3$S is the line number, %4$S is the resource name, %5$S
  31. # is the section name.
  32. networkBlocksURI=NETWORK section line %1$S (%2$S) prevents caching of line %3$S (%4$S) in the %5$S section.
  33. fallbackBlocksURI=FALLBACK section line %1$S (%2$S) prevents caching of line %3$S (%4$S) in the %5$S section.
  34. # LOCALIZATION NOTE (fileChangedButNotManifest): the associated cache manifest
  35. # references a URI that has a file modified after the cache manifest.
  36. # Parameters: %1$S is the resource name, %2$S is the cache manifest, %3$S is
  37. # the line number.
  38. 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.
  39. # LOCALIZATION NOTE (cacheControlNoStore): the specified page has a header
  40. # preventing caching or storing information. Parameters: %1$S is the resource
  41. # name, %2$S is the line number.
  42. cacheControlNoStore=%1$S has cache-control set to no-store. This will prevent the application cache from storing the file at line %2$S.
  43. # LOCALIZATION NOTE (notAvailable): the specified resource is not available.
  44. # Parameters: %1$S is the resource name, %2$S is the line number.
  45. notAvailable=%1$S points to a resource that is not available at line %2$S.
  46. # LOCALIZATION NOTE (invalidURI): it's used when an invalid URI is passed to
  47. # the appcache.
  48. invalidURI=The URI passed to AppCacheUtils is invalid.
  49. # LOCALIZATION NOTE (noResults): it's used when a search returns no results.
  50. noResults=Your search returned no results.
  51. # LOCALIZATION NOTE (cacheDisabled): it's used when the cache is disabled and
  52. # an attempt is made to view offline data.
  53. cacheDisabled=Your disk cache is disabled. Please set browser.cache.disk.enable to true in about:config and try again.
  54. # LOCALIZATION NOTE (firstLineMustBeCacheManifest): the associated cache
  55. # manifest has a first line that is not "CACHE MANIFEST". Parameters: %S is
  56. # the line number.
  57. firstLineMustBeCacheManifest=The first line of the manifest must be “CACHE MANIFEST” at line %S.
  58. # LOCALIZATION NOTE (cacheManifestOnlyFirstLine2): the associated cache
  59. # manifest has "CACHE MANIFEST" on a line other than the first line.
  60. # Parameters: %S is the line number where "CACHE MANIFEST" appears.
  61. cacheManifestOnlyFirstLine2=“CACHE MANIFEST” is only valid on the first line but was found at line %S.
  62. # LOCALIZATION NOTE (asteriskInWrongSection2): the associated cache manifest
  63. # has an asterisk (*) in a section other than the NETWORK section. Parameters:
  64. # %1$S is the section name, %2$S is the line number.
  65. 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.
  66. # LOCALIZATION NOTE (escapeSpaces): the associated cache manifest has a space
  67. # in a URI. Spaces must be replaced with %20. Parameters: %S is the line
  68. # number where this error occurs.
  69. escapeSpaces=Spaces in URIs need to be replaced with %20 at line %S.
  70. # LOCALIZATION NOTE (slashDotDotSlashBad): the associated cache manifest has a
  71. # URI containing /../, which is invalid. Parameters: %S is the line number
  72. # where this error occurs.
  73. slashDotDotSlashBad=/../ is not a valid URI prefix at line %S.
  74. # LOCALIZATION NOTE (tooManyDotDotSlashes): the associated cache manifest has
  75. # a URI containing too many ../ operators. Too many of these operators mean
  76. # that the file would be below the root of the site, which is not possible.
  77. # Parameters: %S is the line number where this error occurs.
  78. tooManyDotDotSlashes=Too many dot dot slash operators (../) at line %S.
  79. # LOCALIZATION NOTE (fallbackUseSpaces): the associated cache manifest has a
  80. # FALLBACK section containing more or less than the standard two URIs
  81. # separated by a single space. Parameters: %S is the line number where this
  82. # error occurs.
  83. fallbackUseSpaces=Only two URIs separated by spaces are allowed in the FALLBACK section at line %S.
  84. # LOCALIZATION NOTE (fallbackAsterisk2): the associated cache manifest has a
  85. # FALLBACK section that attempts to use an asterisk (*) as a wildcard. In this
  86. # section the URI is simply a path prefix. Parameters: %S is the line number
  87. # where this error occurs.
  88. 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.
  89. # LOCALIZATION NOTE (settingsBadValue): the associated cache manifest has a
  90. # SETTINGS section containing something other than the valid "prefer-online"
  91. # or "fast". Parameters: %S is the line number where this error occurs.
  92. settingsBadValue=The SETTINGS section may only contain a single value, “prefer-online” or “fast” at line %S.
  93. # LOCALIZATION NOTE (invalidSectionName): the associated cache manifest
  94. # contains an invalid section name. Parameters: %1$S is the section name, %2$S
  95. # is the line number.
  96. invalidSectionName=Invalid section name (%1$S) at line %2$S.