-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathzh-CN.js
39 lines (38 loc) · 2.85 KB
/
zh-CN.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
module.exports = {
'Print help information': '打印帮助信息',
'Display help message': '显示帮助信息',
'Do not output any message': '不输出任何终端信息',
'application_desc': '为快速开发CLI应用而设计',
'init_command_desc': '快速初始化一个应用',
'init_command_args_name_desc': 'CLI应用的执行名称',
'init_command_options_output_desc': '输出路径',
'make_command_desc': '生成命令行 JS 脚本文件',
'make_command_args_name_desc': '子命令名称',
'make_command_args_output_desc': '命令集目录名称',
'Need setting "${keys}" options for App': '需要设置 "${keys}" 应用配置',
'${name} command already exist!': '${name} 命令已存在',
'commands dir not exist on ${dir}': '命令文件夹不存在于 ${dir} 路径当中',
'${name} command dose not exist.': '不存在 ${name} 命令',
'Duplication option : ${name}': '重复的命令配置项 ${name}',
'Duplication option short : ${name}(${short})': '重复的命令配置项别名 ${name}(${short})',
'Duplication argument : ${name}': '重复的参数名称 : ${name}',
'Required argument : ${name}': '缺少必备的参数 : ${name}',
'Required option : ${name}': '缺少必备的配置项 : ${name}',
'Command "${name}" is ambiguous.': '命令名 "${name}" 冲突.',
'Did you mean one of these?': '以下命令是否是你想要的?',
'Did you mean "${name}" command?': '是要执行 "${name}" 命令吗?',
'load ${name} command error': '加载 ${name} 命令失败',
'Please override exec() method for ${name} command': '请重载 ${name} 命令的 exec() 方法',
'The argument name cannot be empty in "${cmd}" command.': '${cmd} 命令中的参数名称不能为空',
'The option name cannot be empty in "${cmd}" command.': '${cmd} 命令中的配置名称不能为空',
'Argument Name Duplication "${name}" in "${cmd}" command.': '"${cmd}" 命令中存在重复的参数名称 "${name}"',
'Option Name Duplication "${name}" in "${cmd}" command.': '"${cmd}" 命令中存在重复的配置项名称 "${name}"',
'Option Short Name Duplication : -${short} for ${name} option in "${cmd}" command.\'': '"${cmd}" 命令中配置项 ${name} 有重复的别名 : -${short}',
'Option Short Name Duplication : -${short} for ${name} option': '配置项 ${name} 有重复的别名 : -${short}',
'The mode name "${mode}" is invalid in "${cmd}" command. Valid mode names are "required" or "optional"': '"${cmd}"命令中存在无效的mode名称"${mode}"。有效的mode名称为"required"或"optional"',
'The global option name cannot be empty.': '全局配置项不能为空',
'The global option name is duplicated as "${name}".': '重复的全局配置项名称 "${name}"',
'Command js script file path': '命令行 JS 脚本的文件位置',
'Run command js script directly': '直接运行命令行 JS 脚本文件'
};