en.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /**
  2. * @requires OpenLayers/Lang.js
  3. */
  4. /**
  5. * Namespace: OpenLayers.Lang["en"]
  6. * Dictionary for English. Keys for entries are used in calls to
  7. * <OpenLayers.Lang.translate>. Entry bodies are normal strings or
  8. * strings formatted for use with <OpenLayers.String.format> calls.
  9. */
  10. OpenLayers.Lang.en = {
  11. 'unhandledRequest': "Unhandled request return ${statusText}",
  12. 'Permalink': "Permalink",
  13. 'Overlays': "Overlays",
  14. 'Base Layer': "Base Layer",
  15. 'readNotImplemented': "Read not implemented.",
  16. 'writeNotImplemented': "Write not implemented.",
  17. 'noFID': "Can't update a feature for which there is no FID.",
  18. 'errorLoadingGML': "Error in loading GML file ${url}",
  19. 'browserNotSupported':
  20. "Your browser does not support vector rendering. Currently supported renderers are:\n${renderers}",
  21. 'componentShouldBe': "addFeatures : component should be an ${geomType}",
  22. // console message
  23. 'getFeatureError':
  24. "getFeatureFromEvent called on layer with no renderer. This usually means you " +
  25. "destroyed a layer, but not some handler which is associated with it.",
  26. // console message
  27. 'minZoomLevelError':
  28. "The minZoomLevel property is only intended for use " +
  29. "with the FixedZoomLevels-descendent layers. That this " +
  30. "wfs layer checks for minZoomLevel is a relic of the" +
  31. "past. We cannot, however, remove it without possibly " +
  32. "breaking OL based applications that may depend on it." +
  33. " Therefore we are deprecating it -- the minZoomLevel " +
  34. "check below will be removed at 3.0. Please instead " +
  35. "use min/max resolution setting as described here: " +
  36. "http://trac.openlayers.org/wiki/SettingZoomLevels",
  37. 'commitSuccess': "WFS Transaction: SUCCESS ${response}",
  38. 'commitFailed': "WFS Transaction: FAILED ${response}",
  39. 'googleWarning':
  40. "The Google Layer was unable to load correctly.<br><br>" +
  41. "To get rid of this message, select a new BaseLayer " +
  42. "in the layer switcher in the upper-right corner.<br><br>" +
  43. "Most likely, this is because the Google Maps library " +
  44. "script was either not included, or does not contain the " +
  45. "correct API key for your site.<br><br>" +
  46. "Developers: For help getting this working correctly, " +
  47. "<a href='http://trac.openlayers.org/wiki/Google' " +
  48. "target='_blank'>click here</a>",
  49. 'getLayerWarning':
  50. "The ${layerType} Layer was unable to load correctly.<br><br>" +
  51. "To get rid of this message, select a new BaseLayer " +
  52. "in the layer switcher in the upper-right corner.<br><br>" +
  53. "Most likely, this is because the ${layerLib} library " +
  54. "script was not correctly included.<br><br>" +
  55. "Developers: For help getting this working correctly, " +
  56. "<a href='http://trac.openlayers.org/wiki/${layerLib}' " +
  57. "target='_blank'>click here</a>",
  58. 'Scale = 1 : ${scaleDenom}': "Scale = 1 : ${scaleDenom}",
  59. //labels for the graticule control
  60. 'W': 'W',
  61. 'E': 'E',
  62. 'N': 'N',
  63. 'S': 'S',
  64. 'Graticule': 'Graticule',
  65. // console message
  66. 'layerAlreadyAdded':
  67. "You tried to add the layer: ${layerName} to the map, but it has already been added",
  68. // console message
  69. 'reprojectDeprecated':
  70. "You are using the 'reproject' option " +
  71. "on the ${layerName} layer. This option is deprecated: " +
  72. "its use was designed to support displaying data over commercial " +
  73. "basemaps, but that functionality should now be achieved by using " +
  74. "Spherical Mercator support. More information is available from " +
  75. "http://trac.openlayers.org/wiki/SphericalMercator.",
  76. // console message
  77. 'methodDeprecated':
  78. "This method has been deprecated and will be removed in 3.0. " +
  79. "Please use ${newMethod} instead.",
  80. // console message
  81. 'boundsAddError': "You must pass both x and y values to the add function.",
  82. // console message
  83. 'lonlatAddError': "You must pass both lon and lat values to the add function.",
  84. // console message
  85. 'pixelAddError': "You must pass both x and y values to the add function.",
  86. // console message
  87. 'unsupportedGeometryType': "Unsupported geometry type: ${geomType}",
  88. // console message
  89. 'filterEvaluateNotImplemented': "evaluate is not implemented for this filter type.",
  90. 'proxyNeeded': "You probably need to set OpenLayers.ProxyHost to access ${url}."+
  91. "See http://trac.osgeo.org/openlayers/wiki/FrequentlyAskedQuestions#ProxyHost",
  92. // **** end ****
  93. 'end': ''
  94. };