zh-CN.js 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. 'noFID': "无法更新feature,缺少FID。",
  16. 'browserNotSupported':
  17. "你使用的浏览器不支持矢量渲染。当前支持的渲染方式包括:\n${renderers}",
  18. // console message
  19. 'minZoomLevelError':
  20. "minZoomLevel属性仅适合用于" +
  21. "使用了固定缩放级别的图层。这个 " +
  22. "wfs 图层检查 minZoomLevel 是过去遗留下来的。" +
  23. "然而,我们不能移除它," +
  24. "而破坏依赖于它的基于OL的应用程序。" +
  25. "因此,我们废除了它 -- minZoomLevel " +
  26. "将会在3.0中被移除。请改用 " +
  27. "min/max resolution 设置,参考:" +
  28. "http://trac.openlayers.org/wiki/SettingZoomLevels",
  29. 'commitSuccess': "WFS Transaction: 成功。 ${response}",
  30. 'commitFailed': "WFS Transaction: 失败。 ${response}",
  31. 'googleWarning':
  32. "Google图层不能正确加载。<br><br>" +
  33. "要消除这个信息,请在右上角的" +
  34. "图层控制面板中选择其他的基础图层。<br><br>" +
  35. "这种情况很可能是没有正确的包含Google地图脚本库," +
  36. "或者是没有包含在你的站点上" +
  37. "使用的正确的Google Maps API密匙。<br><br>" +
  38. "开发者:获取使其正确工作的帮助信息," +
  39. "<a href='http://trac.openlayers.org/wiki/Google' " +
  40. "target='_blank'>点击这里</a>",
  41. 'getLayerWarning':
  42. "${layerType} 图层不能正确加载。<br><br>" +
  43. "要消除这个信息,请在右上角的" +
  44. "图层控制面板中选择其他的基础图层。<br><br>" +
  45. "这种情况很可能是没有正确的包含" +
  46. "${layerLib} 脚本库。<br><br>" +
  47. "开发者:获取使其正确工作的帮助信息," +
  48. "<a href='http://trac.openlayers.org/wiki/${layerLib}' " +
  49. "target='_blank'>点击这里</a>",
  50. 'Scale = 1 : ${scaleDenom}': "比例尺 = 1 : ${scaleDenom}",
  51. // console message
  52. 'reprojectDeprecated':
  53. "你正在使用 ${layerName} 图层上的'reproject'选项。" +
  54. "这个选项已经不再使用:" +
  55. "它是被设计用来支持显示商业的地图数据," +
  56. "不过现在该功能可以通过使用Spherical Mercator来实现。" +
  57. "更多信息可以参阅" +
  58. "http://trac.openlayers.org/wiki/SphericalMercator.",
  59. // console message
  60. 'methodDeprecated':
  61. "该方法已经不再被支持,并且将在3.0中被移除。" +
  62. "请使用 ${newMethod} 方法来替代。",
  63. 'end': ''
  64. };