en.js 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. 'noFID': "Can't update a feature for which there is no FID.",
  16. 'browserNotSupported':
  17. "Your browser does not support vector rendering. Currently supported renderers are:\n${renderers}",
  18. // console message
  19. 'minZoomLevelError':
  20. "The minZoomLevel property is only intended for use " +
  21. "with the FixedZoomLevels-descendent layers. That this " +
  22. "wfs layer checks for minZoomLevel is a relic of the" +
  23. "past. We cannot, however, remove it without possibly " +
  24. "breaking OL based applications that may depend on it." +
  25. " Therefore we are deprecating it -- the minZoomLevel " +
  26. "check below will be removed at 3.0. Please instead " +
  27. "use min/max resolution setting as described here: " +
  28. "http://trac.openlayers.org/wiki/SettingZoomLevels",
  29. 'commitSuccess': "WFS Transaction: SUCCESS ${response}",
  30. 'commitFailed': "WFS Transaction: FAILED ${response}",
  31. 'googleWarning':
  32. "The Google Layer was unable to load correctly.<br><br>" +
  33. "To get rid of this message, select a new BaseLayer " +
  34. "in the layer switcher in the upper-right corner.<br><br>" +
  35. "Most likely, this is because the Google Maps library " +
  36. "script was either not included, or does not contain the " +
  37. "correct API key for your site.<br><br>" +
  38. "Developers: For help getting this working correctly, " +
  39. "<a href='http://trac.openlayers.org/wiki/Google' " +
  40. "target='_blank'>click here</a>",
  41. 'getLayerWarning':
  42. "The ${layerType} Layer was unable to load correctly.<br><br>" +
  43. "To get rid of this message, select a new BaseLayer " +
  44. "in the layer switcher in the upper-right corner.<br><br>" +
  45. "Most likely, this is because the ${layerLib} library " +
  46. "script was not correctly included.<br><br>" +
  47. "Developers: For help getting this working correctly, " +
  48. "<a href='http://trac.openlayers.org/wiki/${layerLib}' " +
  49. "target='_blank'>click here</a>",
  50. 'Scale = 1 : ${scaleDenom}': "Scale = 1 : ${scaleDenom}",
  51. //labels for the graticule control
  52. 'W': 'W',
  53. 'E': 'E',
  54. 'N': 'N',
  55. 'S': 'S',
  56. 'Graticule': 'Graticule',
  57. // console message
  58. 'reprojectDeprecated':
  59. "You are using the 'reproject' option " +
  60. "on the ${layerName} layer. This option is deprecated: " +
  61. "its use was designed to support displaying data over commercial " +
  62. "basemaps, but that functionality should now be achieved by using " +
  63. "Spherical Mercator support. More information is available from " +
  64. "http://trac.openlayers.org/wiki/SphericalMercator.",
  65. // console message
  66. 'methodDeprecated':
  67. "This method has been deprecated and will be removed in 3.0. " +
  68. "Please use ${newMethod} instead.",
  69. // **** end ****
  70. 'end': ''
  71. };