en.js 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /**
  2. * @requires SuperMap/Lang.js
  3. */
  4. /**
  5. * Namespace: SuperMap.Lang["en"]
  6. * Dictionary for English. Keys for entries are used in calls to
  7. * <SuperMap.Lang.translate>. Entry bodies are normal strings or
  8. * strings formatted for use with <SuperMap.String.format> calls.
  9. */
  10. SuperMap.Lang.en = {
  11. 'unhandledRequest': "Unhandled request return ${statusText}",
  12. 'Permalink': "Permalink",
  13. 'Overlays': "Overlays",
  14. 'Base Layer': "Base Layer",
  15. 'LayerSwitcher': "LayerSwitcher",
  16. 'noFID': "Can't update a feature for which there is no FID.",
  17. 'browserNotSupported':
  18. "Your browser does not support vector rendering. Currently supported renderers are:\n${renderers}",
  19. // console message
  20. 'minZoomLevelError':
  21. "The minZoomLevel property is only intended for use " +
  22. "with the FixedZoomLevels-descendent layers. That this " +
  23. "wfs layer checks for minZoomLevel is a relic of the" +
  24. "past. We cannot, however, remove it without possibly " +
  25. " breaking OL based applications that may depend on it." +
  26. "Therefore we are deprecating it -- the minZoomLevel." +
  27. "Please instead use min/max resolution setting.",
  28. 'commitSuccess': "WFS Transaction: SUCCESS ${response}",
  29. 'commitFailed': "WFS Transaction: FAILED ${response}",
  30. 'googleWarning':
  31. "The Google Layer was unable to load correctly.<br><br>" +
  32. "To get rid of this message, select a new BaseLayer " +
  33. "in the layer switcher in the upper-right corner.<br><br>" +
  34. "Most likely, this is because the Google Maps library " +
  35. "script was either not included, or does not contain the " +
  36. "correct API key for your site.<br><br>",
  37. 'getLayerWarning':
  38. "The ${layerType} Layer was unable to load correctly.<br><br>" +
  39. "To get rid of this message, select a new BaseLayer " +
  40. "in the layer switcher in the upper-right corner.<br><br>" +
  41. "Most likely, this is because the ${layerLib} library " +
  42. "script was not correctly included.<br><br>",
  43. 'Scale = 1 : ${scaleDenom}': "Scale = 1 : ${scaleDenom}",
  44. //labels for the graticule control
  45. 'W': 'W',
  46. 'E': 'E',
  47. 'N': 'N',
  48. 'S': 'S',
  49. 'Graticule': 'Graticule',
  50. // console message
  51. 'reprojectDeprecated':
  52. "You are using the 'reproject' option " +
  53. "on the ${layerName} layer. This option is deprecated: " +
  54. "its use was designed to support displaying data over commercial " +
  55. "basemaps, but that functionality should now be achieved by using " +
  56. "Spherical Mercator support.",
  57. // console message
  58. 'methodDeprecated':
  59. "This method has been deprecated and will be removed. " +
  60. "Please use ${newMethod} instead.",
  61. 'proxyNeeded': "You probably need to set SuperMap.ProxyHost to access ${url}.",
  62. // **** end ****
  63. 'end': '',
  64. 'mi': "mi",
  65. 'km': "km",
  66. 'm': "m",
  67. 'ft': "ft"
  68. };