zh-CN.js 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /**
  2. * @requires OpenLayers/Lang.js
  3. */
  4. /**
  5. * Namespace: OpenLayers.Lang["zh-CN"]
  6. * Dictionary for Simplified Chinese. 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["zh-CN"] = {
  11. 'unhandledRequest': "未处理的请求,返回值为 ${statusText}",
  12. 'Permalink': "永久链接",
  13. 'Overlays': "叠加层",
  14. 'Base Layer': "基础图层",
  15. 'readNotImplemented': "读取功能没有实现。",
  16. 'writeNotImplemented': "写入功能没有实现。",
  17. 'noFID': "无法更新feature,缺少FID。",
  18. 'errorLoadingGML': "加载GML文件 ${url} 出现错误。",
  19. 'browserNotSupported':
  20. "你使用的浏览器不支持矢量渲染。当前支持的渲染方式包括:\n${renderers}",
  21. 'componentShouldBe': "addFeatures : 组件类型应该是 ${geomType}",
  22. // console message
  23. 'getFeatureError':
  24. "getFeatureFromEvent方法在一个没有渲染器的图层上被调用。 这通常意味着您" +
  25. "销毁了一个图层,但并未销毁其关联的handler。",
  26. // console message
  27. 'minZoomLevelError':
  28. "minZoomLevel属性仅适合用于" +
  29. "使用了固定缩放级别的图层。这个 " +
  30. "wfs 图层检查 minZoomLevel 是过去遗留下来的。" +
  31. "然而,我们不能移除它," +
  32. "而破坏依赖于它的基于OL的应用程序。" +
  33. "因此,我们废除了它 -- minZoomLevel " +
  34. "将会在3.0中被移除。请改用 " +
  35. "min/max resolution 设置,参考:" +
  36. "http://trac.openlayers.org/wiki/SettingZoomLevels",
  37. 'commitSuccess': "WFS Transaction: 成功。 ${response}",
  38. 'commitFailed': "WFS Transaction: 失败。 ${response}",
  39. 'googleWarning':
  40. "Google图层不能正确加载。<br><br>" +
  41. "要消除这个信息,请在右上角的" +
  42. "图层控制面板中选择其他的基础图层。<br><br>" +
  43. "这种情况很可能是没有正确的包含Google地图脚本库," +
  44. "或者是没有包含在你的站点上" +
  45. "使用的正确的Google Maps API密匙。<br><br>" +
  46. "开发者:获取使其正确工作的帮助信息," +
  47. "<a href='http://trac.openlayers.org/wiki/Google' " +
  48. "target='_blank'>点击这里</a>",
  49. 'getLayerWarning':
  50. "${layerType} 图层不能正确加载。<br><br>" +
  51. "要消除这个信息,请在右上角的" +
  52. "图层控制面板中选择其他的基础图层。<br><br>" +
  53. "这种情况很可能是没有正确的包含" +
  54. "${layerLib} 脚本库。<br><br>" +
  55. "开发者:获取使其正确工作的帮助信息," +
  56. "<a href='http://trac.openlayers.org/wiki/${layerLib}' " +
  57. "target='_blank'>点击这里</a>",
  58. 'Scale = 1 : ${scaleDenom}': "比例尺 = 1 : ${scaleDenom}",
  59. // console message
  60. 'layerAlreadyAdded':
  61. "你尝试添加图层: ${layerName} 到地图中,但是它之前就已经被添加。",
  62. // console message
  63. 'reprojectDeprecated':
  64. "你正在使用 ${layerName} 图层上的'reproject'选项。" +
  65. "这个选项已经不再使用:" +
  66. "它是被设计用来支持显示商业的地图数据," +
  67. "不过现在该功能可以通过使用Spherical Mercator来实现。" +
  68. "更多信息可以参阅" +
  69. "http://trac.openlayers.org/wiki/SphericalMercator.",
  70. // console message
  71. 'methodDeprecated':
  72. "该方法已经不再被支持,并且将在3.0中被移除。" +
  73. "请使用 ${newMethod} 方法来替代。",
  74. // console message
  75. 'boundsAddError': "您必须传递 x 和 y 两个参数值到 add 方法。",
  76. // console message
  77. 'lonlatAddError': "您必须传递 lon 和 lat 两个参数值到 add 方法。",
  78. // console message
  79. 'pixelAddError': "您必须传递 x and y 两个参数值到 add 方法。",
  80. // console message
  81. 'unsupportedGeometryType': "不支持的几何体类型: ${geomType}",
  82. 'end': ''
  83. };