Files
svgedit/dist/extensions/ext-locale/helloworld/zh-CN.js
Brett Zamir cf476ed8ea - l10n: Add zh-CN dist files
- Linting (ESLint): Add back `no-console`; while useful for debugging, could flag incomplete code (and was breaking at reporting of unused directives)
- Docs (CHANGES): Add changes and apply more formal style
- Build: Rebuild with updated Babel/Rollup
- npm: Update devDeps
2018-12-04 14:36:02 +08:00

15 lines
257 B
JavaScript

var svgEditorExtensionLocale_helloworld_zh_CN = (function () {
'use strict';
var zhCN = {
name: 'Hello World',
text: 'Hello World!\n\n 请点击: {x}, {y}',
buttons: [{
title: "输出 'Hello World'"
}]
};
return zhCN;
}());