Total Complexity | 0 |
Complexity/F | 0 |
Lines of Code | 69 |
Function Count | 0 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | // translations for Chinese |
||
3 | export default { |
||
4 | content: { |
||
5 | words: { |
||
6 | animation: "动画", |
||
7 | fade: "褪色", |
||
8 | bounce: "弹跳", |
||
9 | submit: "提交", |
||
10 | reset: "重启", |
||
11 | continue: "继续", |
||
12 | proceed: "继续", |
||
13 | dismiss: "解雇", |
||
14 | source_code: "源代码" |
||
15 | }, |
||
16 | titles: { |
||
17 | method_usage: "用法作为一种方法", |
||
18 | directive_usage: "用法作为指令", |
||
19 | confirmation_types: "确认类型", |
||
20 | }, |
||
21 | descriptions: { |
||
22 | confirmation_types: { |
||
23 | 1: "有时,您可能希望通过确保用户真正想要继续进行更严格", |
||
24 | 2: "柔软和硬确认对话框有助于此。" |
||
25 | }, |
||
26 | }, |
||
27 | examples: { |
||
28 | method_usage: { |
||
29 | 1: "警报对话框 - 一个按钮", |
||
30 | 2: "HTML对话框 - 风格/格式内容", |
||
31 | 3: "基本确认 - 立即关闭", |
||
32 | 4: "加载对话框 - 与ajax有用", |
||
33 | 5: "反转对话框 - 开关按钮", |
||
34 | 6: "淡化对话框 - 动画", |
||
35 | 7: "反弹对话框 - 动画" |
||
36 | }, |
||
37 | directive_usage: { |
||
38 | 1: "给它一个字符串", |
||
39 | 2: "转到example.com", |
||
40 | 3: "给它一个对象" |
||
41 | }, |
||
42 | confirmation_types: { |
||
43 | 1: "软确认 - 需要多次点击", |
||
44 | 2: "硬确认 - 需要验证文本" |
||
45 | } |
||
46 | } |
||
47 | }, |
||
48 | |||
49 | messages: { |
||
50 | alert: '这是一个警报对话框。 点击下面的按钮关闭。', |
||
51 | html: `此对话框启用了<b class="dg-highlight-1">超文本标记语言</b>。 点击下面的按钮关闭。`, |
||
52 | basic: '这是一个基本的确认对话框。 点击任一按钮立即关闭对话框', |
||
53 | soft: '这是一个软确认对话框。 需要多次点击才能继续。', |
||
54 | hard: `这是一个难以确认的对话框。用户的输入必须匹配 <span class="dg-highlight-1">验证</span> <span class="dg-highlight-1">文本</span>为了继续。`, |
||
55 | loading: `这是一个加载对话框。 点击继续按钮后,加载程序将启动`, |
||
56 | reverse: `左侧按钮是此对话框中的“继续”按钮。 点击以获得反向按钮的感觉`, |
||
57 | click_continue: `你点击继续`, |
||
58 | click_cancel: `关闭,因为已被点击`, |
||
59 | loading_completed: `如果你看到我,那么装载机已经完成了`, |
||
60 | loading_canceled: `你点击取消,所以没有加载`, |
||
61 | directive_object: "此对话框也使用v-confirm指令触发。 它有OK和CANCEL回调", |
||
62 | directive_string: '这是一个消息', |
||
63 | directive_link: '这将带你到 "http://example.com". 请谨慎行事', |
||
64 | form_reset: '更改将被丢弃。 重设此表格?', |
||
65 | form_submit: '提交此表格?', |
||
66 | empty_name: "名称字段为空" |
||
67 | }, |
||
68 | placeholders: { |
||
69 | your_name: "你的名字" |
||
70 | } |
||
71 | } |