rails_admin-i18n 0.0.6 → 0.0.7

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/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ *.gem
2
+
3
+ # rcov generated
4
+ coverage
5
+
6
+ # rdoc generated
7
+ rdoc
8
+
9
+ # yard generated
10
+ doc
11
+ .yardoc
12
+
13
+ # bundler
14
+ .bundle
15
+
16
+ # jeweler generated
17
+ pkg
18
+
19
+ .DS_Store
20
+
21
+ .localeapp/
data/locales/en-US.yml ADDED
@@ -0,0 +1,129 @@
1
+ en-US:
2
+ admin:
3
+ home:
4
+ name: "Home"
5
+ pagination:
6
+ previous: "« Prev"
7
+ next: "Next »"
8
+ truncate: "…"
9
+ misc:
10
+ filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done!
11
+ search: "Search"
12
+ filter: "Filter"
13
+ refresh: "Refresh"
14
+ show_all: "Show all"
15
+ add_filter: "Add filter"
16
+ bulk_menu_title: "Selected items"
17
+ remove: "Remove"
18
+ add_new: "Add new"
19
+ chosen: "Chosen %{name}"
20
+ chose_all: "Choose all"
21
+ clear_all: "Clear all"
22
+ up: "Up"
23
+ down: "Down"
24
+ navigation: "Navigation"
25
+ log_out: "Log out"
26
+ ago: "ago"
27
+ flash:
28
+ successful: "%{name} successfully %{action}"
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} with id '%{id}' could not be found"
33
+ table_headers:
34
+ model_name: "Model name"
35
+ last_used: "Last used"
36
+ records: "Records"
37
+ username: "User"
38
+ changes: "Changes"
39
+ created_at: "Date/Time"
40
+ item: "Item"
41
+ message: "Message"
42
+ actions:
43
+ dashboard:
44
+ title: "Site administration"
45
+ menu: "Dashboard"
46
+ breadcrumb: "Dashboard"
47
+ index:
48
+ title: "List of %{model_label_plural}"
49
+ menu: "List"
50
+ breadcrumb: "%{model_label_plural}"
51
+ show:
52
+ title: "Details for %{model_label} '%{object_label}'"
53
+ menu: "Show"
54
+ breadcrumb: "%{object_label}"
55
+ show_in_app:
56
+ menu: "Show in app"
57
+ new:
58
+ title: "New %{model_label}"
59
+ menu: "Add new"
60
+ breadcrumb: "New"
61
+ link: "Add a new %{model_label}"
62
+ done: "created"
63
+ edit:
64
+ title: "Edit %{model_label} '%{object_label}'"
65
+ menu: "Edit"
66
+ breadcrumb: "Edit"
67
+ link: "Edit this %{model_label}"
68
+ done: "updated"
69
+ delete:
70
+ title: "Delete %{model_label} '%{object_label}'"
71
+ menu: "Delete"
72
+ breadcrumb: "Delete"
73
+ link: "Delete '%{object_label}'"
74
+ done: "deleted"
75
+ bulk_delete:
76
+ title: "Delete %{model_label_plural}"
77
+ menu: "Multiple delete"
78
+ breadcrumb: "Multiple delete"
79
+ bulk_link: "Delete selected %{model_label_plural}"
80
+ export:
81
+ title: "Export %{model_label_plural}"
82
+ menu: "Export"
83
+ breadcrumb: "Export"
84
+ link: "Export found %{model_label_plural}"
85
+ bulk_link: "Export selected %{model_label_plural}"
86
+ done: "exported"
87
+ history_index:
88
+ title: "History for %{model_label_plural}"
89
+ menu: "History"
90
+ breadcrumb: "History"
91
+ history_show:
92
+ title: "History for %{model_label} '%{object_label}'"
93
+ menu: "History"
94
+ breadcrumb: "History"
95
+ form:
96
+ cancel: "Cancel"
97
+ basic_info: "Basic info"
98
+ required: "Required"
99
+ optional: "Optional"
100
+ one_char: "character"
101
+ char_length_up_to: "length up to"
102
+ char_length_of: "length of"
103
+ save: "Save"
104
+ save_and_add_another: "Save and add another"
105
+ save_and_edit: "Save and edit"
106
+ all_of_the_following_related_items_will_be_deleted: "? The following related items may be deleted or orphaned:"
107
+ are_you_sure_you_want_to_delete_the_object: "Are you sure you want to delete this %{model_name}"
108
+ confirmation: "Yes, I'm sure"
109
+ bulk_delete: "The following objects will be deleted, which may delete or orphan some of their related dependencies:"
110
+ new_model: "%{name} (new)"
111
+ export:
112
+ confirmation: "Export to %{name}"
113
+ select: "Select fields to export"
114
+ fields_from: "Fields from %{name}"
115
+ fields_from_associated: "Fields from associated %{name}"
116
+ display: "Display %{name}: %{type}"
117
+ options_for: "Options for %{name}"
118
+ empty_value_for_associated_objects: "<empty>"
119
+ click_to_reverse_selection: 'Click to reverse selection'
120
+ csv:
121
+ header_for_root_methods: "%{name}" # 'model' is available
122
+ header_for_association_methods: "%{name} [%{association}]"
123
+ encoding_to: "Encode to"
124
+ encoding_to_help: "Choose output encoding. Leave empty to let current input encoding untouched: (%{name})"
125
+ skip_header: "No header"
126
+ skip_header_help: "Do not output a header (no fields description)"
127
+ default_col_sep: ","
128
+ col_sep: "Column separator"
129
+ col_sep_help: "Leave blank for default ('%{value}')" # value is default_col_sep
data/locales/fr.yml ADDED
@@ -0,0 +1,129 @@
1
+ fr:
2
+ admin:
3
+ home:
4
+ name: "Accueil"
5
+ pagination:
6
+ previous: "&laquo; Préc."
7
+ next: "Suiv. &raquo;"
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: "Rechercher"
12
+ filter: "Filtrer"
13
+ refresh: "Rafraichir"
14
+ show_all: "Afficher tous"
15
+ add_filter: "Ajouter un filtre"
16
+ bulk_menu_title: "Items sélectionnés"
17
+ remove: "Supprimer"
18
+ add_new: "Créer nouveau"
19
+ chosen: "%{name} choisi"
20
+ chose_all: "Choisir tous"
21
+ clear_all: "Désélectionner tous"
22
+ up: "Monter"
23
+ down: "Descendre"
24
+ navigation: "Navigation"
25
+ log_out: "Déconnexion"
26
+ ago: ""
27
+ flash:
28
+ successful: "%{name} %{action} avec succès"
29
+ error: "%{name} n'a pas pu être %{action}"
30
+ noaction: "Aucune action sélectionnée"
31
+ model_not_found: "Modèle '%{model}' introuvable"
32
+ object_not_found: "%{model} avec l\'id '%{id}' introuvable"
33
+ table_headers:
34
+ model_name: "Nom du modèle"
35
+ last_used: "Dernière utilisation"
36
+ records: "Enregistrements"
37
+ username: "Utilisateur"
38
+ changes: "Changements"
39
+ created_at: "Date/Heure"
40
+ item: "Objet"
41
+ message: "Message"
42
+ actions:
43
+ dashboard:
44
+ title: "Administration du site"
45
+ menu: "Tableau de bord"
46
+ breadcrumb: "Tableau de bord"
47
+ index:
48
+ title: "Liste de %{model_label_plural}"
49
+ menu: "Liste"
50
+ breadcrumb: "%{model_label_plural}"
51
+ show:
52
+ title: "Détails pour %{model_label} '%{object_label}'"
53
+ menu: "Afficher"
54
+ breadcrumb: "%{object_label}"
55
+ show_in_app:
56
+ menu: "Afficher dans l'application"
57
+ new:
58
+ title: "Nouveau %{model_label}"
59
+ menu: "Ajouter nouveau"
60
+ breadcrumb: "Nouveau"
61
+ link: "Ajouter un nouveau %{model_label}"
62
+ done: "créé(e)"
63
+ edit:
64
+ title: "Mofidier %{model_label} '%{object_label}'"
65
+ menu: "Modifier"
66
+ breadcrumb: "Modifier"
67
+ link: "Modifier ce(tte) %{model_label}"
68
+ done: "modifié(e)"
69
+ delete:
70
+ title: "Supprimer %{model_label} '%{object_label}'"
71
+ menu: "Supprimer"
72
+ breadcrumb: "Supprimer"
73
+ link: "Supprimer '%{object_label}'"
74
+ done: "supprimé(e)"
75
+ bulk_delete:
76
+ title: "Supprimer %{model_label_plural}"
77
+ menu: "Suppression multiple"
78
+ breadcrumb: "Suppression multiple"
79
+ bulk_link: "Supprimer les %{model_label_plural} sélectionné(e)s"
80
+ export:
81
+ title: "Exporter %{model_label_plural}"
82
+ menu: "Exporter"
83
+ breadcrumb: "Exporter"
84
+ link: "Exporter les %{model_label_plural} trouvés"
85
+ bulk_link: "Exportze les %{model_label_plural} trouvés"
86
+ done: "exporté(e)"
87
+ history_index:
88
+ title: "Historique pour %{model_label_plural}"
89
+ menu: "Historique"
90
+ breadcrumb: "Historique"
91
+ history_show:
92
+ title: "Historique pour %{model_label} '%{object_label}'"
93
+ menu: "Historique"
94
+ breadcrumb: "Historique"
95
+ form:
96
+ cancel: "Annuler"
97
+ basic_info: "Informations de base"
98
+ required: "Obligatoire"
99
+ optional: "Facultatif"
100
+ one_char: "caractère"
101
+ char_length_up_to: "longueur maxium de"
102
+ char_length_of: "longueur de"
103
+ save: "Sauvegarder"
104
+ save_and_add_another: "Sauvegarder puis ajouter un(e) autre"
105
+ save_and_edit: "Sauvegarder puis ré-éditer"
106
+ all_of_the_following_related_items_will_be_deleted: "? Les items liés suivants pourraient être supprimé ou orphelon:"
107
+ are_you_sure_you_want_to_delete_the_object: "Êtes vous sûr de vouloir supprimer ce %{model_name}"
108
+ confirmation: "Oui, je suis sûr"
109
+ bulk_delete: "Les items suivants vont être supprimés, ce qui pourrait supprimer ou rendre orphelin leurs dépendances:"
110
+ new_model: "%{name} (nouveau)"
111
+ export:
112
+ confirmation: "Exporter vers %{name}"
113
+ select: "Sélectionner les champs à exporter"
114
+ fields_from: "Champs de %{name}"
115
+ fields_from_associated: "Champs du %{name} associé"
116
+ display: "Afficher %{name}: %{type}"
117
+ options_for: "Options pour %{name}"
118
+ empty_value_for_associated_objects: "<vide>"
119
+ click_to_reverse_selection: 'Cliquer pour inverser la sélection'
120
+ csv:
121
+ header_for_root_methods: "%{name}" # 'model' is available
122
+ header_for_association_methods: "%{name} [%{association}]"
123
+ encoding_to: "Encoder en"
124
+ encoding_to_help: "Choisisser l'encodage du fichier. Laisser vide pour conserver l'encodage de l'entrée (%{name})"
125
+ skip_header: "Pas d'entête"
126
+ skip_header_help: "Ne pas afficher l'entête (pas de description des champs)"
127
+ default_col_sep: ","
128
+ col_sep: "Séparateur des colonnes"
129
+ col_sep_help: "Laisser blanc pour la valeur par défaut ('%{value}')" # value is default_col_sep
data/locales/it.yml ADDED
@@ -0,0 +1,129 @@
1
+ it:
2
+ admin:
3
+ home:
4
+ name: "Home"
5
+ pagination:
6
+ previous: "&laquo; Precedente"
7
+ next: "Successiva &raquo;"
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: "Cerca"
12
+ filter: "Filtra"
13
+ refresh: "Aggiorna"
14
+ show_all: "Mostra tutto"
15
+ add_filter: "Aggiungi filtro..."
16
+ bulk_menu_title: "Elementi selezionati..."
17
+ remove: "Elimina"
18
+ add_new: "Aggiungi nuovo"
19
+ chosen: "Selezionato %{name}"
20
+ chose_all: "Seleziona tutto"
21
+ clear_all: "Cancella tutto"
22
+ up: "Sopra"
23
+ down: "Sotto"
24
+ navigation: "Navigazione"
25
+ log_out: "Esci"
26
+ ago: "indietro"
27
+ flash:
28
+ successful: "%{name} è stato %{action} con successo"
29
+ error: "%{name} non ha potuto essere %{action}"
30
+ noaction: "Nessuna azione è stata intrapresa"
31
+ model_not_found: "Il modello '%{model}' non è stato trovato"
32
+ object_not_found: "%{model} con l'id '%{id}' non è stato trovato"
33
+ table_headers:
34
+ model_name: "Nome del modello"
35
+ last_used: "Ultimo utilizzo"
36
+ records: "Registri"
37
+ username: "Utente"
38
+ changes: "Cambi"
39
+ created_at: "Data/Ora"
40
+ item: "Elemento"
41
+ message: "Messaggio"
42
+ actions:
43
+ dashboard:
44
+ title: "Amministrazione del sito"
45
+ menu: "Pannello di controllo"
46
+ breadcrumb: "Pannello di controllo"
47
+ index:
48
+ title: "Lista %{model_label_plural}"
49
+ menu: "Lista"
50
+ breadcrumb: "%{model_label_plural}"
51
+ show:
52
+ title: "Dettagli per %{model_label} '%{object_label}'"
53
+ menu: "Mostra"
54
+ breadcrumb: "%{object_label}"
55
+ show_in_app:
56
+ menu: "Mostra nell'applicazione"
57
+ new:
58
+ title: "Nuovo %{model_label}"
59
+ menu: "Aggiungi nuovo"
60
+ breadcrumb: "Nuovo"
61
+ link: "Aggiungi un nuovo %{model_label}"
62
+ done: "Creato"
63
+ edit:
64
+ title: "Modifica %{model_label} '%{object_label}'"
65
+ menu: "Modifica"
66
+ breadcrumb: "Modifica"
67
+ link: "Modifica questo %{model_label}"
68
+ done: "Modificato"
69
+ delete:
70
+ title: "Elimina %{model_label} '%{object_label}'"
71
+ menu: "Elimina"
72
+ breadcrumb: "Elimina"
73
+ link: "Elimina '%{object_label}'"
74
+ done: "Eliminato"
75
+ bulk_delete:
76
+ title: "Elimina %{model_label_plural}"
77
+ menu: "Elimina molteplici"
78
+ breadcrumb: "Elimina molteplici"
79
+ bulk_link: "Elimina %{model_label_plural} selezionato"
80
+ export:
81
+ title: "Esporta %{model_label}"
82
+ menu: "Esporta"
83
+ breadcrumb: "Esporta"
84
+ link: "Esporta %{model_label_plural} trovati"
85
+ bulk_link: "Esporta %{model_label_plural} selezionati"
86
+ done: "Esportato"
87
+ history_index:
88
+ title: "Cronologia per %{model_label_plural}"
89
+ menu: "Cronologia"
90
+ breadcrumb: "Cronologia"
91
+ history_show:
92
+ title: "Cronologia per %{model_label} '%{object_label}'"
93
+ menu: "Cronologia"
94
+ breadcrumb: "Cronologia"
95
+ form:
96
+ cancel: "Annulla"
97
+ new_model: "Nuovo %{name}"
98
+ basic_info: "Informazioni di base"
99
+ required: "Obbligatorio"
100
+ optional: "Opzionale"
101
+ one_char: "carattere"
102
+ char_length_up_to: "lunghezza fino a"
103
+ char_length_of: "lunghezza di"
104
+ save: "Salva"
105
+ save_and_add_another: "Salva ed Aggiungi nuovo"
106
+ save_and_edit: "Salva e Modifica"
107
+ all_of_the_following_related_items_will_be_deleted: "? Tutti i seguenti elementi correlati potrebbero essere eliminati o rimanere orfani:"
108
+ are_you_sure_you_want_to_delete_the_object: "Sei sicuro di voler eliminare questo %{model_name}"
109
+ confirmation: "Si, sono sicuro"
110
+ bulk_delete: "I seguenti elementi saranno eliminati, questo potrebbe eliminare o rendere orfana qualcuna delle loro correlate dipendenze:"
111
+ export:
112
+ confirmation: "Esporta in %{name}"
113
+ select: "Seleziona i campi da esportare"
114
+ fields_from: "Campi da %{name}"
115
+ fields_from_associated: "Campi %{name} associati"
116
+ display: "Mostra %{name}: %{type}"
117
+ options_for: "Opzioni per %{name}"
118
+ empty_value_for_associated_objects: "<vuoto>"
119
+ click_to_reverse_selection: 'Clicca per invertire la selezione'
120
+ csv:
121
+ header_for_root_methods: "%{name}" # 'model' è disponibile
122
+ header_for_association_methods: "%{name} [%{association}]"
123
+ encoding_to: "Codifica in"
124
+ encoding_to_help: "Scegliere come codificare l'output. Lasciare vuoto al fine di non modificare l'attuale codifica dell'input: (%{name})"
125
+ skip_header: "Nessuna testata"
126
+ skip_header_help: "Non creare output per la testata (no descrizione dei campi)"
127
+ default_col_sep: ","
128
+ col_sep: "Separatore di colonna"
129
+ col_sep_help: "Lasciare vuoto per il default ('%{value}')" # value is default_col_sep
data/locales/ja.yml ADDED
@@ -0,0 +1,129 @@
1
+ ja:
2
+ admin:
3
+ home:
4
+ name: "ホーム"
5
+ pagination:
6
+ previous: "&laquo; 前"
7
+ next: "次 &raquo;"
8
+ truncate: "…"
9
+ misc:
10
+ filter_date_format: "mm/dd/yy" # a combination of 'dd', 'mm' and 'yy' with any delimiter. No other interpolation will be done!
11
+ search: "検索"
12
+ filter: "フィルタ"
13
+ refresh: "更新"
14
+ show_all: "全て表示"
15
+ add_filter: "フィルタを追加"
16
+ bulk_menu_title: "選択したアイテム"
17
+ remove: "削除"
18
+ add_new: "新規作成"
19
+ chosen: "Chosen %{name}"
20
+ chose_all: "全て選択"
21
+ clear_all: "全てクリア"
22
+ up: "Up"
23
+ down: "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}' が見つかりません"
32
+ object_not_found: "ID '%{id}' の%{model}が見つかりません"
33
+ table_headers:
34
+ model_name: "モデル名"
35
+ last_used: "Last used"
36
+ records: "レコード"
37
+ username: "ユーザ"
38
+ changes: "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: "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}" # 'model' is available
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}' になります。" # value is default_col_sep
@@ -5,35 +5,18 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rails_admin-i18n}
8
- s.version = "0.0.6"
8
+ s.version = "0.0.7"
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{2012-08-17}
12
+ s.date = %q{2012-12-03}
13
13
  s.description = %q{Translations for the rails_admin gem}
14
14
  s.email = %q{nampt@kbsvn.vn}
15
15
  s.extra_rdoc_files = [
16
16
  "LICENSE.txt",
17
17
  "README.md"
18
18
  ]
19
- s.files = [
20
- ".document",
21
- ".rspec",
22
- ".rvmrc",
23
- ".travis.yml",
24
- "Gemfile",
25
- "Gemfile.lock",
26
- "LICENSE.txt",
27
- "README.md",
28
- "Rakefile",
29
- "VERSION",
30
- "rails_admin-i18n.gemspec",
31
- "lib/rails_admin-i18n.rb",
32
- "locales/en.yml",
33
- "locales/vi.yml",
34
- "spec/rails_admin-i18n_spec.rb",
35
- "spec/spec_helper.rb"
36
- ]
19
+ s.files = `git ls-files`.split("\n")
37
20
  s.homepage = %q{http://github.com/puma07/rails_admin-i18n}
38
21
  s.licenses = [%q{MIT}]
39
22
  s.require_paths = [%q{lib}]
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.6
4
+ version: 0.0.7
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: 2012-08-17 00:00:00.000000000 Z
12
+ date: 2012-12-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
@@ -100,6 +100,7 @@ extra_rdoc_files:
100
100
  - README.md
101
101
  files:
102
102
  - .document
103
+ - .gitignore
103
104
  - .rspec
104
105
  - .rvmrc
105
106
  - .travis.yml
@@ -109,10 +110,14 @@ files:
109
110
  - README.md
110
111
  - Rakefile
111
112
  - VERSION
112
- - rails_admin-i18n.gemspec
113
113
  - lib/rails_admin-i18n.rb
114
+ - locales/en-US.yml
114
115
  - locales/en.yml
116
+ - locales/fr.yml
117
+ - locales/it.yml
118
+ - locales/ja.yml
115
119
  - locales/vi.yml
120
+ - rails_admin-i18n.gemspec
116
121
  - spec/rails_admin-i18n_spec.rb
117
122
  - spec/spec_helper.rb
118
123
  homepage: http://github.com/puma07/rails_admin-i18n