rails_admin-i18n 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +6 -0
- data/locales/pt-BR.yml +129 -0
- data/rails_admin-i18n.gemspec +4 -4
- metadata +7 -5
data/README.md
CHANGED
@@ -12,6 +12,12 @@ Translations for **[Rails Admin v0.0.5+](https://github.com/sferik/rails_admin)*
|
|
12
12
|
|
13
13
|
Happy translating!
|
14
14
|
|
15
|
+
## Contributors
|
16
|
+
|
17
|
+
- pierre-schambacher
|
18
|
+
- Matheus
|
19
|
+
- sugi
|
20
|
+
|
15
21
|
## Copyright
|
16
22
|
|
17
23
|
Copyright (c) 2011 Pham Trung Nam, base on [devise-i18n](https://github.com/tigrish/devise-i18n). See LICENSE.txt for
|
data/locales/pt-BR.yml
ADDED
@@ -0,0 +1,129 @@
|
|
1
|
+
pt-BR:
|
2
|
+
admin:
|
3
|
+
home:
|
4
|
+
name: "Home"
|
5
|
+
pagination:
|
6
|
+
previous: "« Anterior"
|
7
|
+
next: "Próximo »"
|
8
|
+
truncate: "…"
|
9
|
+
misc:
|
10
|
+
filter_date_format: "dd/mm/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done!
|
11
|
+
search: "Buscar"
|
12
|
+
filter: "Filtrar"
|
13
|
+
refresh: "Atualizar"
|
14
|
+
show_all: "Exibir todos"
|
15
|
+
add_filter: "Adicionar filtro"
|
16
|
+
bulk_menu_title: "Ítens selecionados"
|
17
|
+
remove: "Remover"
|
18
|
+
add_new: "Adicionar"
|
19
|
+
chosen: "Selecionado %{name}"
|
20
|
+
chose_all: "Selecionar todos"
|
21
|
+
clear_all: "Limpar todos"
|
22
|
+
up: "Subir"
|
23
|
+
down: "Baixar"
|
24
|
+
navigation: "Navegação"
|
25
|
+
log_out: "Sair"
|
26
|
+
ago: "atrás"
|
27
|
+
flash:
|
28
|
+
successful: "%{name} %{action} com sucesso"
|
29
|
+
error: "%{name} failed to be %{action}"
|
30
|
+
noaction: "No actions were taken"
|
31
|
+
model_not_found: "Model '%{model}' could not be found"
|
32
|
+
object_not_found: "%{model} com id '%{id}' não foi encontrado"
|
33
|
+
table_headers:
|
34
|
+
model_name: "Model name"
|
35
|
+
last_used: "Usado pela última vez"
|
36
|
+
records: "Registros"
|
37
|
+
username: "Usuário"
|
38
|
+
changes: "Alterações"
|
39
|
+
created_at: "Data/Horário"
|
40
|
+
item: "Ítem"
|
41
|
+
message: "Menssagem"
|
42
|
+
actions:
|
43
|
+
dashboard:
|
44
|
+
title: "Administração"
|
45
|
+
menu: "Dashboard"
|
46
|
+
breadcrumb: "Dashboard"
|
47
|
+
index:
|
48
|
+
title: "Lista de %{model_label_plural}"
|
49
|
+
menu: "Listar"
|
50
|
+
breadcrumb: "%{model_label_plural}"
|
51
|
+
show:
|
52
|
+
title: "Detalhes para %{model_label} '%{object_label}'"
|
53
|
+
menu: "Visualizar"
|
54
|
+
breadcrumb: "%{object_label}"
|
55
|
+
show_in_app:
|
56
|
+
menu: "Show in app"
|
57
|
+
new:
|
58
|
+
title: "Novo %{model_label}"
|
59
|
+
menu: "Adicionar"
|
60
|
+
breadcrumb: "Adicionar"
|
61
|
+
link: "Adicionar %{model_label}"
|
62
|
+
done: "criado"
|
63
|
+
edit:
|
64
|
+
title: "Editar %{model_label} '%{object_label}'"
|
65
|
+
menu: "Editar"
|
66
|
+
breadcrumb: "Editar"
|
67
|
+
link: "Editar este %{model_label}"
|
68
|
+
done: "Atualizado"
|
69
|
+
delete:
|
70
|
+
title: "Remover %{model_label} '%{object_label}'"
|
71
|
+
menu: "Remover"
|
72
|
+
breadcrumb: "Remover"
|
73
|
+
link: "Remover '%{object_label}'"
|
74
|
+
done: "removido"
|
75
|
+
bulk_delete:
|
76
|
+
title: "Remover"
|
77
|
+
menu: "Remover vários"
|
78
|
+
breadcrumb: "Remover vários"
|
79
|
+
bulk_link: "Remover"
|
80
|
+
export:
|
81
|
+
title: "Exportar"
|
82
|
+
menu: "Exportar"
|
83
|
+
breadcrumb: "Exportar"
|
84
|
+
link: "Exportar dados encontrados"
|
85
|
+
bulk_link: "Exportar dados"
|
86
|
+
done: "exportado"
|
87
|
+
history_index:
|
88
|
+
title: "Histórico para %{model_label_plural}"
|
89
|
+
menu: "Histórico"
|
90
|
+
breadcrumb: "Histórico"
|
91
|
+
history_show:
|
92
|
+
title: "Histórico para %{model_label} '%{object_label}'"
|
93
|
+
menu: "Histórico"
|
94
|
+
breadcrumb: "Histórico"
|
95
|
+
form:
|
96
|
+
cancel: "Cancelar"
|
97
|
+
basic_info: "Informações Básicas"
|
98
|
+
required: "Obrigatório"
|
99
|
+
optional: "Opcional"
|
100
|
+
one_char: "caractere"
|
101
|
+
char_length_up_to: "comprimento até"
|
102
|
+
char_length_of: "comprimento de"
|
103
|
+
save: "Salvar"
|
104
|
+
save_and_add_another: "Salvar e adicionar"
|
105
|
+
save_and_edit: "Salvar e editar"
|
106
|
+
all_of_the_following_related_items_will_be_deleted: "? Os seguintes ítens relacionados podem ser excluídos ou órfãos:"
|
107
|
+
are_you_sure_you_want_to_delete_the_object: "Tem certeza que deseja deletar este(a) %{model_name}"
|
108
|
+
confirmation: "Sim, tenho certeza"
|
109
|
+
bulk_delete: "Os seguintes objetos serão deletados,o que pode deletar ou tornar órfãos algumas de suas dependências relacionadas:"
|
110
|
+
new_model: "%{name} (novo)"
|
111
|
+
export:
|
112
|
+
confirmation: "Exportar para %{name}"
|
113
|
+
select: "Selecionar campos para exportação"
|
114
|
+
fields_from: "Campos de %{name}"
|
115
|
+
fields_from_associated: "Campos de %{name} associados"
|
116
|
+
display: "Exibir %{name}: %{type}"
|
117
|
+
options_for: "Opção para %{name}"
|
118
|
+
empty_value_for_associated_objects: "<vazio>"
|
119
|
+
click_to_reverse_selection: 'Clilque para inverter seleção'
|
120
|
+
csv:
|
121
|
+
header_for_root_methods: "%{name}" # 'model' is available
|
122
|
+
header_for_association_methods: "%{name} [%{association}]"
|
123
|
+
encoding_to: "Codificar para"
|
124
|
+
encoding_to_help: "Escolha a codificação de saída. Deixe em branco para manter a condificação de entrada: (%{name})"
|
125
|
+
skip_header: "Sem cabeçalho"
|
126
|
+
skip_header_help: "Do not output a header (no fields description)"
|
127
|
+
default_col_sep: ","
|
128
|
+
col_sep: "Separador de coluna"
|
129
|
+
col_sep_help: "Deixe em branco para usar o padrão ('%{value}')" # value is default_col_sep
|
data/rails_admin-i18n.gemspec
CHANGED
@@ -5,19 +5,19 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rails_admin-i18n}
|
8
|
-
s.version = "0.0.
|
8
|
+
s.version = "0.0.8"
|
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{
|
12
|
+
s.date = %q{2013-04-18}
|
13
13
|
s.description = %q{Translations for the rails_admin gem}
|
14
|
-
s.email = %q{
|
14
|
+
s.email = %q{puma.puma07@gmail.com}
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
17
17
|
"README.md"
|
18
18
|
]
|
19
19
|
s.files = `git ls-files`.split("\n")
|
20
|
-
s.homepage = %q{http://github.com/
|
20
|
+
s.homepage = %q{http://github.com/starchow/rails_admin-i18n}
|
21
21
|
s.licenses = [%q{MIT}]
|
22
22
|
s.require_paths = [%q{lib}]
|
23
23
|
s.rubygems_version = %q{1.8.6}
|
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.
|
4
|
+
version: 0.0.8
|
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:
|
12
|
+
date: 2013-04-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -92,7 +92,7 @@ dependencies:
|
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: '0'
|
94
94
|
description: Translations for the rails_admin gem
|
95
|
-
email:
|
95
|
+
email: puma.puma07@gmail.com
|
96
96
|
executables: []
|
97
97
|
extensions: []
|
98
98
|
extra_rdoc_files:
|
@@ -116,11 +116,12 @@ files:
|
|
116
116
|
- locales/fr.yml
|
117
117
|
- locales/it.yml
|
118
118
|
- locales/ja.yml
|
119
|
+
- locales/pt-BR.yml
|
119
120
|
- locales/vi.yml
|
120
121
|
- rails_admin-i18n.gemspec
|
121
122
|
- spec/rails_admin-i18n_spec.rb
|
122
123
|
- spec/spec_helper.rb
|
123
|
-
homepage: http://github.com/
|
124
|
+
homepage: http://github.com/starchow/rails_admin-i18n
|
124
125
|
licenses:
|
125
126
|
- MIT
|
126
127
|
post_install_message:
|
@@ -141,8 +142,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
141
142
|
version: '0'
|
142
143
|
requirements: []
|
143
144
|
rubyforge_project:
|
144
|
-
rubygems_version: 1.8.
|
145
|
+
rubygems_version: 1.8.25
|
145
146
|
signing_key:
|
146
147
|
specification_version: 3
|
147
148
|
summary: Translations for the rails_admin gem
|
148
149
|
test_files: []
|
150
|
+
has_rdoc:
|