1 | {
|
---|
2 | "Commands:": "命令:",
|
---|
3 | "Options:": "选项:",
|
---|
4 | "Examples:": "示例:",
|
---|
5 | "boolean": "布尔",
|
---|
6 | "count": "计数",
|
---|
7 | "string": "字符串",
|
---|
8 | "number": "数字",
|
---|
9 | "array": "数组",
|
---|
10 | "required": "必需",
|
---|
11 | "default:": "默认值:",
|
---|
12 | "choices:": "可选值:",
|
---|
13 | "generated-value": "生成的值",
|
---|
14 | "Not enough non-option arguments: got %s, need at least %s": "缺少 non-option 参数:传入了 %s 个, 至少需要 %s 个",
|
---|
15 | "Too many non-option arguments: got %s, maximum of %s": "non-option 参数过多:传入了 %s 个, 最大允许 %s 个",
|
---|
16 | "Missing argument value: %s": {
|
---|
17 | "one": "没有给此选项指定值:%s",
|
---|
18 | "other": "没有给这些选项指定值:%s"
|
---|
19 | },
|
---|
20 | "Missing required argument: %s": {
|
---|
21 | "one": "缺少必须的选项:%s",
|
---|
22 | "other": "缺少这些必须的选项:%s"
|
---|
23 | },
|
---|
24 | "Unknown argument: %s": {
|
---|
25 | "one": "无法识别的选项:%s",
|
---|
26 | "other": "无法识别这些选项:%s"
|
---|
27 | },
|
---|
28 | "Invalid values:": "无效的选项值:",
|
---|
29 | "Argument: %s, Given: %s, Choices: %s": "选项名称: %s, 传入的值: %s, 可选的值:%s",
|
---|
30 | "Argument check failed: %s": "选项值验证失败:%s",
|
---|
31 | "Implications failed:": "缺少依赖的选项:",
|
---|
32 | "Not enough arguments following: %s": "没有提供足够的值给此选项:%s",
|
---|
33 | "Invalid JSON config file: %s": "无效的 JSON 配置文件:%s",
|
---|
34 | "Path to JSON config file": "JSON 配置文件的路径",
|
---|
35 | "Show help": "显示帮助信息",
|
---|
36 | "Show version number": "显示版本号",
|
---|
37 | "Did you mean %s?": "是指 %s?",
|
---|
38 | "Arguments %s and %s are mutually exclusive" : "选项 %s 和 %s 是互斥的",
|
---|
39 | "Positionals:": "位置:",
|
---|
40 | "command": "命令"
|
---|
41 | }
|
---|