rails_admin-i18n 0.0.8 → 0.0.9

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -17,8 +17,9 @@ Happy translating!
17
17
  - pierre-schambacher
18
18
  - Matheus
19
19
  - sugi
20
+ - flyerhzm
20
21
 
21
22
  ## Copyright
22
23
 
23
24
  Copyright (c) 2011 Pham Trung Nam, base on [devise-i18n](https://github.com/tigrish/devise-i18n). See LICENSE.txt for
24
- further details.
25
+ further details.
data/locales/zh-CN.yml ADDED
@@ -0,0 +1,129 @@
1
+ zh-CN:
2
+ admin:
3
+ home:
4
+ name: "首页"
5
+ pagination:
6
+ previous: "« 上一页"
7
+ next: "下一页 »"
8
+ truncate: "…"
9
+ misc:
10
+ filter_date_format: "mm/dd/yy"
11
+ search: "搜索"
12
+ filter: "筛选"
13
+ refresh: "刷新"
14
+ show_all: "显示全部"
15
+ add_filter: "添加筛选条件"
16
+ bulk_menu_title: "选中的项目"
17
+ remove: "移除"
18
+ add_new: "新增"
19
+ chosen: "选择%{name}"
20
+ chose_all: "全选"
21
+ clear_all: "清空"
22
+ up: "上"
23
+ down: "下"
24
+ navigation: "导航"
25
+ log_out: "登出"
26
+ ago: "前"
27
+ flash:
28
+ successful: "%{name}%{action}成功"
29
+ error: "%{name}%{action}失败"
30
+ noaction: "无操作被执行"
31
+ model_not_found: "找不到'%{model}' Model"
32
+ object_not_found: "找不到id为'%{id}'的'%{model}'"
33
+ table_headers:
34
+ model_name: "Model 名"
35
+ last_used: "上次使用"
36
+ records: "记录"
37
+ username: "用户"
38
+ changes: "变更"
39
+ created_at: "日期/时间"
40
+ item: "项目"
41
+ message: "信息"
42
+ actions:
43
+ dashboard:
44
+ title: "网站管理"
45
+ menu: "信息板"
46
+ breadcrumb: "信息板"
47
+ index:
48
+ title: "%{model_label_plural}列表"
49
+ menu: "列表"
50
+ breadcrumb: "%{model_label_plural}"
51
+ show:
52
+ title: "%{model_label} '%{object_label}'详情"
53
+ menu: "查看"
54
+ breadcrumb: "%{object_label}"
55
+ show_in_app:
56
+ menu: "在前台显示"
57
+ new:
58
+ title: "新增%{model_label}"
59
+ menu: "新增"
60
+ breadcrumb: "新增"
61
+ link: "新增%{model_label}"
62
+ done: "创建完成"
63
+ edit:
64
+ title: "编辑%{model_label} '%{object_label}'"
65
+ menu: "编辑"
66
+ breadcrumb: "编辑"
67
+ link: "编辑%{model_label}"
68
+ done: "更新完成"
69
+ delete:
70
+ title: "删除%{model_label} '%{object_label}'"
71
+ menu: "删除"
72
+ breadcrumb: "删除"
73
+ link: "删除'%{object_label}'"
74
+ done: "删除完成"
75
+ bulk_delete:
76
+ title: "删除%{model_label_plural}"
77
+ menu: "批量删除"
78
+ breadcrumb: "批量删除"
79
+ bulk_link: "删除选中的%{model_label_plural}"
80
+ export:
81
+ title: "导出%{model_label_plural}"
82
+ menu: "导出"
83
+ breadcrumb: "导出"
84
+ link: "导出找到的%{model_label_plural}"
85
+ bulk_link: "导出选中的%{model_label_plural}"
86
+ done: "导出完成"
87
+ history_index:
88
+ title: "%{model_label_plural}的历史记录"
89
+ menu: "历史"
90
+ breadcrumb: "历史"
91
+ history_show:
92
+ title: "%{model_label} '%{object_label}'的历史记录"
93
+ menu: "历史"
94
+ breadcrumb: "历史"
95
+ form:
96
+ cancel: "取消"
97
+ basic_info: "基本信息"
98
+ required: "必填"
99
+ optional: "可选"
100
+ one_char: "字节"
101
+ char_length_up_to: "长度不多于"
102
+ char_length_of: "字节数"
103
+ save: "保存"
104
+ save_and_add_another: "保存后继续添加"
105
+ save_and_edit: "保存后编辑"
106
+ all_of_the_following_related_items_will_be_deleted: "? 下列关联的项目可能会被删除或孤立:"
107
+ are_you_sure_you_want_to_delete_the_object: "你确定要删除%{model_name}吗?"
108
+ confirmation: "是的,我确定"
109
+ bulk_delete: "下列项目将被删除, 和它们想关联的项目也可能被删除或孤立:"
110
+ new_model: "%{name} (新)"
111
+ export:
112
+ confirmation: "导出到%{name}"
113
+ select: "选择希望导出的字段"
114
+ fields_from: "出自%{name}的字段"
115
+ fields_from_associated: "源自与%{name}关联项目的字段"
116
+ display: "显示%{name}: %{type}"
117
+ options_for: "%{name}的选项"
118
+ empty_value_for_associated_objects: "<空>"
119
+ click_to_reverse_selection: '反选'
120
+ csv:
121
+ header_for_root_methods: "%{name}"
122
+ header_for_association_methods: "%{name} [%{association}]"
123
+ encoding_to: "文字编码"
124
+ encoding_to_help: "选择输出编码。留空保持原来的编码不变:(%{name})"
125
+ skip_header: "无文件头"
126
+ skip_header_help: "不输出字段描述"
127
+ default_col_sep: ","
128
+ col_sep: "分隔符"
129
+ col_sep_help: "留空使用默认设置('%{value}')"
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rails_admin-i18n}
8
- s.version = "0.0.8"
8
+ s.version = "0.0.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = [%q{Nam Pham Trung}]
12
- s.date = %q{2013-04-18}
12
+ s.date = %q{2013-05-06}
13
13
  s.description = %q{Translations for the rails_admin gem}
14
14
  s.email = %q{puma.puma07@gmail.com}
15
15
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_admin-i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-04-18 00:00:00.000000000 Z
12
+ date: 2013-05-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -118,6 +118,7 @@ files:
118
118
  - locales/ja.yml
119
119
  - locales/pt-BR.yml
120
120
  - locales/vi.yml
121
+ - locales/zh-CN.yml
121
122
  - rails_admin-i18n.gemspec
122
123
  - spec/rails_admin-i18n_spec.rb
123
124
  - spec/spec_helper.rb