activeadmin 1.0.0 → 1.1.0
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.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +20 -0
- data/.mdlrc +1 -0
- data/.rubocop.yml +52 -3
- data/.simplecov +13 -0
- data/.travis.yml +9 -24
- data/.yardopts +0 -1
- data/CHANGELOG.md +85 -4
- data/CONTRIBUTING.md +33 -57
- data/Gemfile +26 -17
- data/Rakefile +1 -12
- data/activeadmin.gemspec +9 -11
- data/app/assets/javascripts/active_admin/base.js.coffee +6 -2
- data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +6 -3
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +9 -7
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +5 -2
- data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +6 -2
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +3 -5
- data/app/assets/stylesheets/active_admin/_base.scss +2 -2
- data/app/assets/stylesheets/active_admin/_forms.scss +6 -12
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +1 -0
- data/app/assets/stylesheets/active_admin/components/_tables.scss +4 -1
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +0 -2
- data/app/assets/stylesheets/active_admin/print.scss +2 -3
- data/app/views/active_admin/devise/sessions/new.html.erb +1 -1
- data/app/views/active_admin/devise/shared/_links.erb +12 -6
- data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
- data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_page.html.erb +12 -0
- data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
- data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
- data/codecov.yml +14 -12
- data/config/i18n-tasks.yml +26 -0
- data/config/locales/ar.yml +1 -3
- data/config/locales/bg.yml +0 -2
- data/config/locales/bs.yml +0 -2
- data/config/locales/ca.yml +0 -2
- data/config/locales/cs.yml +0 -2
- data/config/locales/da.yml +1 -3
- data/config/locales/de-CH.yml +1 -3
- data/config/locales/de.yml +1 -3
- data/config/locales/el.yml +1 -3
- data/config/locales/en-CA.yml +138 -0
- data/config/locales/en-GB.yml +43 -3
- data/config/locales/en.yml +8 -4
- data/config/locales/es-MX.yml +3 -2
- data/config/locales/es.yml +10 -4
- data/config/locales/fa.yml +0 -2
- data/config/locales/fi.yml +0 -2
- data/config/locales/fr.yml +9 -2
- data/config/locales/he.yml +53 -7
- data/config/locales/hr.yml +0 -2
- data/config/locales/hu.yml +0 -2
- data/config/locales/id.yml +1 -3
- data/config/locales/it.yml +2 -4
- data/config/locales/ja.yml +1 -3
- data/config/locales/ko.yml +0 -2
- data/config/locales/lt.yml +24 -4
- data/config/locales/lv.yml +0 -2
- data/config/locales/nb.yml +0 -2
- data/config/locales/nl.yml +1 -3
- data/config/locales/pl.yml +3 -2
- data/config/locales/pt-BR.yml +1 -3
- data/config/locales/pt-PT.yml +0 -2
- data/config/locales/ro.yml +0 -2
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv-SE.yml +1 -3
- data/config/locales/tr.yml +0 -2
- data/config/locales/uk.yml +1 -3
- data/config/locales/vi.yml +0 -2
- data/config/locales/zh-CN.yml +0 -2
- data/config/locales/zh-TW.yml +1 -3
- data/config/mdl_style.rb +9 -0
- data/cucumber.yml +3 -3
- data/docs/0-installation.md +15 -12
- data/docs/1-general-configuration.md +10 -3
- data/docs/10-custom-pages.md +10 -5
- data/docs/11-decorators.md +1 -0
- data/docs/12-arbre-components.md +7 -9
- data/docs/13-authorization-adapter.md +39 -24
- data/docs/14-gotchas.md +41 -22
- data/docs/2-resource-customization.md +41 -18
- data/docs/3-index-pages.md +30 -12
- data/docs/3-index-pages/custom-index.md +1 -0
- data/docs/3-index-pages/index-as-block.md +0 -5
- data/docs/3-index-pages/index-as-blog.md +0 -5
- data/docs/3-index-pages/index-as-grid.md +0 -5
- data/docs/3-index-pages/index-as-table.md +1 -9
- data/docs/4-csv-format.md +2 -1
- data/docs/5-forms.md +45 -21
- data/docs/6-show-pages.md +2 -1
- data/docs/7-sidebars.md +2 -1
- data/docs/8-custom-actions.md +4 -1
- data/docs/9-batch-actions.md +4 -2
- data/docs/documentation.md +19 -21
- data/features/comments/commenting.feature +20 -0
- data/features/index/filters.feature +41 -1
- data/features/index/format_as_csv.feature +17 -0
- data/features/index/index_scopes.feature +15 -0
- data/features/registering_assets.feature +8 -4
- data/features/show/attributes_table_title.feature +54 -0
- data/features/show/tabs.feature +10 -4
- data/features/step_definitions/action_link_steps.rb +0 -1
- data/features/step_definitions/attributes_table_title_steps.rb +11 -0
- data/features/step_definitions/batch_action_steps.rb +2 -2
- data/features/step_definitions/comment_steps.rb +21 -1
- data/features/step_definitions/configuration_steps.rb +1 -1
- data/features/step_definitions/filter_steps.rb +9 -0
- data/features/step_definitions/format_steps.rb +1 -1
- data/features/step_definitions/index_scope_steps.rb +4 -0
- data/features/support/env.rb +5 -4
- data/features/support/regular_env.rb +7 -0
- data/features/support/reload_env.rb +7 -0
- data/gemfiles/rails_42.gemfile +2 -37
- data/gemfiles/rails_50.gemfile +5 -40
- data/gemfiles/rails_51.gemfile +5 -40
- data/lib/active_admin.rb +0 -3
- data/lib/active_admin/application.rb +6 -4
- data/lib/active_admin/asset_registration.rb +8 -0
- data/lib/active_admin/authorization_adapter.rb +0 -3
- data/lib/active_admin/base_controller.rb +1 -2
- data/lib/active_admin/base_controller/authorization.rb +0 -1
- data/lib/active_admin/base_controller/menu.rb +9 -9
- data/lib/active_admin/batch_actions/controller.rb +1 -1
- data/lib/active_admin/batch_actions/views/selection_cells.rb +6 -5
- data/lib/active_admin/csv_builder.rb +3 -3
- data/lib/active_admin/dependency.rb +1 -1
- data/lib/active_admin/devise.rb +2 -2
- data/lib/active_admin/dsl.rb +2 -2
- data/lib/active_admin/filters.rb +2 -0
- data/lib/active_admin/filters/active.rb +13 -14
- data/lib/active_admin/filters/active_filter.rb +87 -0
- data/lib/active_admin/filters/active_sidebar.rb +50 -0
- data/lib/active_admin/filters/forms.rb +1 -2
- data/lib/active_admin/filters/resource_extension.rb +2 -30
- data/lib/active_admin/helpers/settings.rb +0 -1
- data/lib/active_admin/inputs/datepicker_input.rb +5 -5
- data/lib/active_admin/inputs/filters/date_range_input.rb +12 -4
- data/lib/active_admin/inputs/filters/text_input.rb +0 -1
- data/lib/active_admin/menu.rb +4 -4
- data/lib/active_admin/menu_collection.rb +0 -2
- data/lib/active_admin/namespace.rb +1 -1
- data/lib/active_admin/orm/active_record/comments/comment.rb +1 -5
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +4 -2
- data/lib/active_admin/page_controller.rb +1 -1
- data/lib/active_admin/resource/action_items.rb +4 -0
- data/lib/active_admin/resource/attributes.rb +1 -1
- data/lib/active_admin/resource/page_presenters.rb +1 -1
- data/lib/active_admin/resource/routes.rb +0 -1
- data/lib/active_admin/resource/scopes.rb +2 -1
- data/lib/active_admin/resource_controller.rb +1 -1
- data/lib/active_admin/resource_controller/data_access.rb +8 -9
- data/lib/active_admin/resource_dsl.rb +10 -10
- data/lib/active_admin/router.rb +1 -1
- data/lib/active_admin/scope.rb +3 -3
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_helpers.rb +1 -0
- data/lib/active_admin/view_helpers/display_helper.rb +1 -1
- data/lib/active_admin/view_helpers/form_helper.rb +1 -1
- data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
- data/lib/active_admin/views/action_items.rb +1 -1
- data/lib/active_admin/views/components/active_admin_form.rb +1 -1
- data/lib/active_admin/views/components/dropdown_menu.rb +2 -2
- data/lib/active_admin/views/components/index_list.rb +0 -2
- data/lib/active_admin/views/components/paginated_collection.rb +1 -1
- data/lib/active_admin/views/components/scopes.rb +2 -10
- data/lib/active_admin/views/components/status_tag.rb +19 -11
- data/lib/active_admin/views/components/tabs.rb +2 -2
- data/lib/active_admin/views/header.rb +0 -1
- data/lib/active_admin/views/index_as_blog.rb +1 -2
- data/lib/active_admin/views/index_as_grid.rb +2 -2
- data/lib/active_admin/views/index_as_table.rb +19 -1
- data/lib/active_admin/views/pages/base.rb +4 -4
- data/lib/active_admin/views/pages/show.rb +6 -1
- data/lib/active_admin/views/title_bar.rb +4 -4
- data/lib/bug_report_templates/{rails_5_master.rb → active_admin_master.rb} +35 -40
- data/lib/generators/active_admin/devise/devise_generator.rb +1 -1
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +1 -1
- data/spec/bug_report_templates_spec.rb +2 -3
- data/spec/rails_helper.rb +0 -3
- data/spec/spec_helper.rb +1 -12
- data/spec/support/active_admin_integration_spec_helper.rb +1 -1
- data/spec/support/rails_template.rb +5 -37
- data/spec/support/rails_template_with_data.rb +262 -3
- data/spec/support/templates/policies/active_admin/comment_policy.rb +1 -1
- data/spec/support/templates/policies/active_admin/page_policy.rb +1 -1
- data/spec/support/templates/policies/application_policy.rb +1 -2
- data/spec/support/templates/post_decorator.rb +0 -1
- data/spec/unit/abstract_view_factory_spec.rb +0 -1
- data/spec/unit/application_spec.rb +4 -0
- data/spec/unit/asset_registration_spec.rb +29 -0
- data/spec/unit/belongs_to_spec.rb +1 -2
- data/spec/unit/config_shared_examples.rb +1 -1
- data/spec/unit/csv_builder_spec.rb +2 -4
- data/spec/unit/dependency_spec.rb +7 -7
- data/spec/unit/dsl_spec.rb +0 -2
- data/spec/unit/filters/active_filter_spec.rb +135 -0
- data/spec/unit/filters/active_spec.rb +11 -1
- data/spec/unit/filters/filter_form_builder_spec.rb +9 -7
- data/spec/unit/form_builder_spec.rb +14 -14
- data/spec/unit/helpers/scope_chain_spec.rb +0 -1
- data/spec/unit/i18n_spec.rb +17 -0
- data/spec/unit/menu_item_spec.rb +1 -3
- data/spec/unit/namespace/register_page_spec.rb +1 -1
- data/spec/unit/namespace_spec.rb +0 -1
- data/spec/unit/page_spec.rb +0 -3
- data/spec/unit/resource/action_items_spec.rb +5 -1
- data/spec/unit/resource/attributes_spec.rb +1 -2
- data/spec/unit/resource/ordering_spec.rb +0 -3
- data/spec/unit/resource/scopes_spec.rb +1 -1
- data/spec/unit/resource_controller/data_access_spec.rb +2 -2
- data/spec/unit/resource_controller_spec.rb +1 -2
- data/spec/unit/resource_spec.rb +9 -2
- data/spec/unit/routing_spec.rb +0 -2
- data/spec/unit/scope_spec.rb +3 -3
- data/spec/unit/settings_spec.rb +0 -1
- data/spec/unit/view_factory_spec.rb +1 -1
- data/spec/unit/view_helpers/flash_helper_spec.rb +0 -1
- data/spec/unit/view_helpers/form_helper_spec.rb +3 -4
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -1
- data/spec/unit/views/components/attributes_table_spec.rb +0 -1
- data/spec/unit/views/components/columns_spec.rb +0 -2
- data/spec/unit/views/components/site_title_spec.rb +0 -2
- data/spec/unit/views/components/status_tag_spec.rb +23 -7
- data/spec/unit/views/components/tabs_spec.rb +29 -1
- data/spec/unit/views/pages/index_spec.rb +1 -1
- data/tasks/docs.rake +37 -10
- data/tasks/lint.rake +14 -1
- data/tasks/local.rake +2 -2
- data/tasks/test.rake +8 -25
- data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
- data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
- data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
- data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
- data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
- data/vendor/assets/stylesheets/active_admin/_normalize.scss +447 -0
- metadata +62 -51
- data/.hound.yml +0 -14
- data/Appraisals +0 -41
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
- data/app/assets/javascripts/active_admin/jquery_ui.js.erb +0 -18
- data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
- data/lib/active_admin/filters/humanized.rb +0 -68
- data/spec/requests/javascript_spec.rb +0 -22
- data/spec/support/jslint.yml +0 -80
- data/spec/unit/filters/humanized_spec.rb +0 -64
- data/tasks/yard.rake +0 -9
data/config/locales/id.yml
CHANGED
|
@@ -68,7 +68,6 @@ id:
|
|
|
68
68
|
one: "Berhasil menghapus %{model}"
|
|
69
69
|
other: "Berhasil menghapus %{count} %{plural_model}"
|
|
70
70
|
selection_toggle_explanation: "(Tampilkan Pilihan)"
|
|
71
|
-
link: "Tambah data"
|
|
72
71
|
action_label: "%{title} terpilih"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "Hapus"
|
|
@@ -78,7 +77,6 @@ id:
|
|
|
78
77
|
author_type: "Tipe Penulis"
|
|
79
78
|
body: "Isi"
|
|
80
79
|
author: "Penulis"
|
|
81
|
-
title: "Komentar"
|
|
82
80
|
add: "Tambah Komentar"
|
|
83
81
|
delete: "Hapus Komentar"
|
|
84
82
|
delete_confirmation: "Apakah anda yakin akan menghapus komentar tersebut?"
|
|
@@ -126,7 +124,7 @@ id:
|
|
|
126
124
|
unsupported_browser:
|
|
127
125
|
headline: "Harap dicatat bahwa ActiveAdmin sudah tidak mendukung InternetExplorer versi 8 atau versi sebelum itu."
|
|
128
126
|
recommendation: "Kami sarankan agar anda mengupgrade ke versi <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, atau <a href=\"https://mozilla.org/firefox/\">Firefox</a> yang terbaru."
|
|
129
|
-
turn_off_compatibility_view: "Kalau anda menggunakan IE 9 atau yang lebih baru, pastikan anda <a href=\"
|
|
127
|
+
turn_off_compatibility_view: "Kalau anda menggunakan IE 9 atau yang lebih baru, pastikan anda <a href=\"https://support.microsoft.com/id-id/help/17471\">mematikan \"Compatibility View\"</a>."
|
|
130
128
|
access_denied:
|
|
131
129
|
message: "Anda tidak diperkenankan melakukan aksi tersebut."
|
|
132
130
|
index_list:
|
data/config/locales/it.yml
CHANGED
|
@@ -68,7 +68,6 @@ it:
|
|
|
68
68
|
one: "Eliminato con successo 1 %{model}"
|
|
69
69
|
other: "Eliminati con successo %{count} %{plural_model}"
|
|
70
70
|
selection_toggle_explanation: "(Toggle Selection)"
|
|
71
|
-
link: "Crea uno"
|
|
72
71
|
action_label: "%{title} Selezionati"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "Elimina"
|
|
@@ -78,7 +77,6 @@ it:
|
|
|
78
77
|
author_type: "Tipo di Autore"
|
|
79
78
|
body: "Corpo"
|
|
80
79
|
author: "Autore"
|
|
81
|
-
title: "Commento"
|
|
82
80
|
add: "Aggiungi Commento"
|
|
83
81
|
delete: "Cancella Commento"
|
|
84
82
|
delete_confirmation: "Sei sicuro di voler cancellare questo commento?"
|
|
@@ -117,7 +115,7 @@ it:
|
|
|
117
115
|
title: "Invia di nuovo le istruzioni per la conferma"
|
|
118
116
|
submit: "Invia di nuovo le istruzioni per la conferma"
|
|
119
117
|
links:
|
|
120
|
-
|
|
118
|
+
sign_up: "Iscriviti"
|
|
121
119
|
sign_in: "Entra"
|
|
122
120
|
forgot_your_password: "Dimenticato la password?"
|
|
123
121
|
sign_in_with_omniauth_provider: "Collegati a %{provider}"
|
|
@@ -126,7 +124,7 @@ it:
|
|
|
126
124
|
unsupported_browser:
|
|
127
125
|
headline: "Perfavore, notare che ActiveAdmin non supporta più Internet Explorer 8 o inferiore"
|
|
128
126
|
recommendation: "Ti raccomandiamo di aggiornare alla versione più recente di <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, o <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
129
|
-
turn_off_compatibility_view: "Se stai utilizzando Internet Explorer 9 o successivo, assicurati di <a href=\"
|
|
127
|
+
turn_off_compatibility_view: "Se stai utilizzando Internet Explorer 9 o successivo, assicurati di <a href=\"https://support.microsoft.com/it-it/help/17471\">disabilitare la \"Modalità Compatibilità\"</a>."
|
|
130
128
|
access_denied:
|
|
131
129
|
message: "Non hai le autorizzazioni necessarie per eseguire questa azione."
|
|
132
130
|
index_list:
|
data/config/locales/ja.yml
CHANGED
|
@@ -69,7 +69,6 @@ ja:
|
|
|
69
69
|
one: "1件の %{model} を削除しました"
|
|
70
70
|
other: "%{count}件の %{plural_model} を削除しました"
|
|
71
71
|
selection_toggle_explanation: "(選択)"
|
|
72
|
-
link: "作成する"
|
|
73
72
|
action_label: "選択した行を%{title}"
|
|
74
73
|
labels:
|
|
75
74
|
destroy: "削除する"
|
|
@@ -79,7 +78,6 @@ ja:
|
|
|
79
78
|
author_type: "作成者種別"
|
|
80
79
|
body: "本文"
|
|
81
80
|
author: "作成者"
|
|
82
|
-
title: "コメント"
|
|
83
81
|
add: "コメントを追加"
|
|
84
82
|
delete: "コメントを削除"
|
|
85
83
|
delete_confirmation: "本当にコメントを削除しますか?"
|
|
@@ -127,7 +125,7 @@ ja:
|
|
|
127
125
|
unsupported_browser:
|
|
128
126
|
headline: "ActiveAdminは、Internet Explorer 8以下はサポートはしていません。"
|
|
129
127
|
recommendation: "最新版の<a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>、<a href=\"https://chrome.google.com/\">Google Chrome</a>、もしくは<a href=\"https://mozilla.org/firefox/\">Firefox</a>を使うことを推奨します。"
|
|
130
|
-
turn_off_compatibility_view: "Internet Explorer 9以降を使っている場合、<a href=\"
|
|
128
|
+
turn_off_compatibility_view: "Internet Explorer 9以降を使っている場合、<a href=\"https://support.microsoft.com/ja-jp/help/17471\">互換表示をオフ</a>にしてください。"
|
|
131
129
|
access_denied:
|
|
132
130
|
message: "アクションを実行する権限がありません"
|
|
133
131
|
index_list:
|
data/config/locales/ko.yml
CHANGED
|
@@ -68,7 +68,6 @@ ko:
|
|
|
68
68
|
one: "성공적으로 1개 %{model}을/를 삭제하였습니다"
|
|
69
69
|
other: "성공적으로 %{count}개의 %{plural_model}을/를 삭제하였습니다"
|
|
70
70
|
selection_toggle_explanation: "(선택 항목 바꾸기)"
|
|
71
|
-
link: "만들기"
|
|
72
71
|
action_label: "%{title} 선택됨"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "삭제"
|
|
@@ -78,7 +77,6 @@ ko:
|
|
|
78
77
|
author_type: "글쓴이 종류"
|
|
79
78
|
body: "내용"
|
|
80
79
|
author: "글쓴이"
|
|
81
|
-
title: "제목"
|
|
82
80
|
add: "댓글 추가"
|
|
83
81
|
resource: "첨부파일"
|
|
84
82
|
no_comments_yet: "아직 댓글이 없습니다."
|
data/config/locales/lt.yml
CHANGED
|
@@ -31,6 +31,15 @@ lt:
|
|
|
31
31
|
ends_with: "Baigiasi"
|
|
32
32
|
greater_than: 'didesnis nei'
|
|
33
33
|
less_than: 'mažiau nei'
|
|
34
|
+
gteq_datetime: "daugiau arba lygu nei"
|
|
35
|
+
lteq_datetime: "mažiau arba lygu nei"
|
|
36
|
+
from: "Nuo"
|
|
37
|
+
to: "Iki"
|
|
38
|
+
search_status:
|
|
39
|
+
headline: "Paieškos būsena:"
|
|
40
|
+
current_scope: "Apimtis:"
|
|
41
|
+
current_filters: "Esami filtrai:"
|
|
42
|
+
no_current_filters: "nėra"
|
|
34
43
|
status_tag:
|
|
35
44
|
"yes": "Taip"
|
|
36
45
|
"no": "Nėra"
|
|
@@ -39,12 +48,14 @@ lt:
|
|
|
39
48
|
powered_by: "Powered by %{active_admin} %{version}"
|
|
40
49
|
sidebars:
|
|
41
50
|
filters: 'Filtrai'
|
|
51
|
+
search_status: "Paieškos būsena"
|
|
42
52
|
pagination:
|
|
43
53
|
empty: '%{model} nerastas'
|
|
44
54
|
one: 'Rodoma <B> 1 </ b> %{model}'
|
|
45
55
|
one_page: 'Rodoma <b>visi %{n} </ b> %{model}'
|
|
46
56
|
multiple: 'Rodomi %{model} <b>%{iš} - %{to} </ b> iš<b>%{total} </ b> iš viso'
|
|
47
57
|
multiple_without_total: 'Rodomi %{model} <b>%{iš} - %{to} </ b> '
|
|
58
|
+
per_page: "Puslapyje: "
|
|
48
59
|
entry:
|
|
49
60
|
one: 'įrašas'
|
|
50
61
|
other: 'įrašai'
|
|
@@ -60,20 +71,20 @@ lt:
|
|
|
60
71
|
delete_confirmation: 'Ar jūs tikrai norite pašalinti šiuos %{plural_model}?'
|
|
61
72
|
succesfully_destroyed:
|
|
62
73
|
one: 'Sėkmingai pašalintas 1 %{model}'
|
|
63
|
-
few: 'Sėkmingai pašalinti %{count} %{plural_model}'
|
|
64
74
|
other: 'Sėkmingai pašalinti %{count} %{plural_model}'
|
|
65
75
|
selection_toggle_explanation: '(Žymėti)'
|
|
66
|
-
link: 'Sukurti'
|
|
67
76
|
action_label: '%{title} Pasirinkta'
|
|
68
77
|
labels:
|
|
69
78
|
destroy: 'Šalinti'
|
|
70
79
|
comments:
|
|
80
|
+
created_at: "Sukurta"
|
|
71
81
|
resource_type: 'Resurso Tipas'
|
|
72
82
|
author_type: 'Autoriaus Tipas'
|
|
73
83
|
body: 'Įrašas'
|
|
74
84
|
author: 'Autorius'
|
|
75
|
-
title: 'Komentaras'
|
|
76
85
|
add: 'Pridėti komentarą'
|
|
86
|
+
delete: "Trinti komentarą"
|
|
87
|
+
delete_confirmation: "Ar tikrai norite ištrinti šį komentarą?"
|
|
77
88
|
resource: 'Išteklių'
|
|
78
89
|
no_comments_yet: 'Dar nėra komentarų.'
|
|
79
90
|
author_missing: 'Anonimas'
|
|
@@ -89,6 +100,8 @@ lt:
|
|
|
89
100
|
title: 'Subdomenas'
|
|
90
101
|
password:
|
|
91
102
|
title: 'Slaptažodis'
|
|
103
|
+
password_confirmation:
|
|
104
|
+
title: "Pakartokite slaptažodį"
|
|
92
105
|
sign_up:
|
|
93
106
|
title: 'Registracija'
|
|
94
107
|
submit: 'Užsiregistruoti'
|
|
@@ -107,11 +120,18 @@ lt:
|
|
|
107
120
|
submit: 'Pakartotinai siųsti atrakinimo instrukcijas'
|
|
108
121
|
resend_confirmation_instructions:
|
|
109
122
|
title: 'Patvirtinimo Instrukcijos'
|
|
110
|
-
submit: 'Siųsti patvirtinimo
|
|
123
|
+
submit: 'Siųsti patvirtinimo instrukcijas'
|
|
111
124
|
links:
|
|
125
|
+
sign_up: "Užsiregistruoti"
|
|
112
126
|
sign_in: 'Prisijungti'
|
|
113
127
|
forgot_your_password: 'Pamiršote slaptažodį?'
|
|
114
128
|
sign_in_with_omniauth_provider: 'Prisijungti su %{provider}'
|
|
129
|
+
resend_unlock_instructions: "Persiųsti pakartotinio atrakinimo instrukcijas"
|
|
130
|
+
resend_confirmation_instructions: "Persiųsti patvirtinimo instrukcijas"
|
|
131
|
+
unsupported_browser:
|
|
132
|
+
headline: "Atkreipiame dėmesį, kad ActiveAdmin nebepalaiko Internet Explorer 8 arba žemesnių versijų."
|
|
133
|
+
recommendation: "Rekomenduojame atsinaujinti į naujausią <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, arba <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
134
|
+
turn_off_compatibility_view: "Jei naudojate IE 9 ar vėlesnę versiją, įsitikinkite kad <a href=\"http://windows.microsoft.com/en-US/windows7/webpages-look-incorrect-in-Internet-Explorer\">išjungėte \"Suderinamumo rodinį\"</a>."
|
|
115
135
|
access_denied:
|
|
116
136
|
message: 'Jūs nesate įgaliotas atlikti šį veiksmą.'
|
|
117
137
|
index_list:
|
data/config/locales/lv.yml
CHANGED
|
@@ -62,14 +62,12 @@ lv:
|
|
|
62
62
|
one: "Successfully destroyed 1 %{model}"
|
|
63
63
|
other: "Successfully destroyed %{count} %{plural_model}"
|
|
64
64
|
selection_toggle_explanation: "(Toggle Selection)"
|
|
65
|
-
link: "Create one"
|
|
66
65
|
action_label: "%{title} Selected"
|
|
67
66
|
labels:
|
|
68
67
|
destroy: "Delete"
|
|
69
68
|
comments:
|
|
70
69
|
body: "Saturs"
|
|
71
70
|
author: "Autors"
|
|
72
|
-
title: "Komentārs"
|
|
73
71
|
add: "Pievienot komentāru"
|
|
74
72
|
resource: "Resurss"
|
|
75
73
|
no_comments_yet: "Nav neviena komentāra."
|
data/config/locales/nb.yml
CHANGED
|
@@ -66,14 +66,12 @@ nb:
|
|
|
66
66
|
one: "Slettet én %{model}"
|
|
67
67
|
other: "Slettet %{count} %{plural_model}"
|
|
68
68
|
selection_toggle_explanation: "(Toggle Selection)"
|
|
69
|
-
link: "Opprett en"
|
|
70
69
|
action_label: "%{title} valgt"
|
|
71
70
|
labels:
|
|
72
71
|
destroy: "Slett"
|
|
73
72
|
comments:
|
|
74
73
|
body: "Body"
|
|
75
74
|
author: "Author"
|
|
76
|
-
title: "Comment"
|
|
77
75
|
add: "Add Comment"
|
|
78
76
|
resource: "Resource"
|
|
79
77
|
no_comments_yet: "No comments yet."
|
data/config/locales/nl.yml
CHANGED
|
@@ -66,7 +66,6 @@ nl:
|
|
|
66
66
|
one: "1 %{model} verwijderd."
|
|
67
67
|
other: "%{count} %{plural_model} verwijderd."
|
|
68
68
|
selection_toggle_explanation: "(Toggle selectie)"
|
|
69
|
-
link: "Maak aan"
|
|
70
69
|
action_label: "%{title} geselecteerde"
|
|
71
70
|
labels:
|
|
72
71
|
destroy: "Verwijder"
|
|
@@ -76,7 +75,6 @@ nl:
|
|
|
76
75
|
author_type: "Auteur Type"
|
|
77
76
|
body: "Tekst"
|
|
78
77
|
author: "Auteur"
|
|
79
|
-
title: "Reactie"
|
|
80
78
|
add: "Voeg commentaar toe"
|
|
81
79
|
delete: 'Verwijder commentaar'
|
|
82
80
|
delete_confirmation: "Weet u zeker dat u dit commentaar wilt verwijderen?"
|
|
@@ -124,7 +122,7 @@ nl:
|
|
|
124
122
|
unsupported_browser:
|
|
125
123
|
headline: "Opgelet, ActiveAdmin bied geen support meer voor Internet Explorer 8 of lager"
|
|
126
124
|
recommendation: "Wij raden aan om te upgraden naar de nieuwste <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, of <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
127
|
-
turn_off_compatibility_view: "Als u IE 9 of nieuwer gebruikt, zorg ervoor dat u <a href=\"
|
|
125
|
+
turn_off_compatibility_view: "Als u IE 9 of nieuwer gebruikt, zorg ervoor dat u <a href=\"https://support.microsoft.com/nl-nl/help/17471\"> \"Compatibility View\" uit zet</a>."
|
|
128
126
|
access_denied:
|
|
129
127
|
message: "U bent niet gemachtigd voor deze actie."
|
|
130
128
|
index_list:
|
data/config/locales/pl.yml
CHANGED
|
@@ -45,6 +45,9 @@ pl:
|
|
|
45
45
|
one_page: "Wyświetlanie <b>wszystkich %{n}</b> %{model}"
|
|
46
46
|
multiple: "Wyświetlanie %{model} <b>%{from} - %{to}</b> z <b>%{total}</b>"
|
|
47
47
|
multiple_without_total: "Wyświetlanie %{model} <b>%{from} - %{to}</b>"
|
|
48
|
+
entry:
|
|
49
|
+
one:
|
|
50
|
+
other:
|
|
48
51
|
any: "Jakikolwiek"
|
|
49
52
|
blank_slate:
|
|
50
53
|
content: "Nie ma jeszcze zasobu %{resource_name}."
|
|
@@ -61,14 +64,12 @@ pl:
|
|
|
61
64
|
many: "Poprawnie usunięto %{count} %{plural_model}"
|
|
62
65
|
few: "Poprawnie usunięto %{count} %{plural_model}"
|
|
63
66
|
selection_toggle_explanation: "(Przełącz zaznaczenie)"
|
|
64
|
-
link: "Utwórz jeden"
|
|
65
67
|
action_label: "%{title} zaznaczone"
|
|
66
68
|
labels:
|
|
67
69
|
destroy: "Usuń"
|
|
68
70
|
comments:
|
|
69
71
|
body: "Treść"
|
|
70
72
|
author: "Autor"
|
|
71
|
-
title: "Komentarz"
|
|
72
73
|
add: "Dodaj komentarz"
|
|
73
74
|
resource: "Zasób"
|
|
74
75
|
no_comments_yet: "Nie ma jeszcze komentarzy."
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -68,7 +68,6 @@ pt-BR:
|
|
|
68
68
|
one: "Excluiu com sucesso 1 %{model}"
|
|
69
69
|
other: "Excluiu com sucesso %{count} %{plural_model}"
|
|
70
70
|
selection_toggle_explanation: "(Alternar Seleção)"
|
|
71
|
-
link: "Novo"
|
|
72
71
|
action_label: "%{title} Selecionado"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "Excluir"
|
|
@@ -78,7 +77,6 @@ pt-BR:
|
|
|
78
77
|
author_type: "Tipo de Autor"
|
|
79
78
|
body: "Conteúdo"
|
|
80
79
|
author: "Autor"
|
|
81
|
-
title: "Comentário"
|
|
82
80
|
add: "Adicionar Comentário"
|
|
83
81
|
delete: "Deletar comentário"
|
|
84
82
|
delete_confirmation: "Tem certeza que deseja excluir este comentário?"
|
|
@@ -126,7 +124,7 @@ pt-BR:
|
|
|
126
124
|
unsupported_browser:
|
|
127
125
|
headline: "O ActiveAdmin não oferece suporte ao Internet Explorer versão 8 ou inferior."
|
|
128
126
|
recommendation: "Nós recomendamos atualizar para a última versão do <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, ou <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
129
|
-
turn_off_compatibility_view: "Se você está usando o IE 9 ou superior, <a href=\"
|
|
127
|
+
turn_off_compatibility_view: "Se você está usando o IE 9 ou superior, <a href=\"https://support.microsoft.com/pt-br/help/17471\">desligue o \"Modo de Exibição de Compatibilidade\"</a>."
|
|
130
128
|
access_denied:
|
|
131
129
|
message: "Você não tem permissão para realizar o solicitado"
|
|
132
130
|
index_list:
|
data/config/locales/pt-PT.yml
CHANGED
|
@@ -62,14 +62,12 @@
|
|
|
62
62
|
one: "Excluiu com sucesso 1 %{model}"
|
|
63
63
|
other: "Excluiu com sucesso %{count} %{plural_model}"
|
|
64
64
|
selection_toggle_explanation: "(Alternar Seleção)"
|
|
65
|
-
link: "Novo"
|
|
66
65
|
action_label: "%{title} Selecionado"
|
|
67
66
|
labels:
|
|
68
67
|
destroy: "Excluir"
|
|
69
68
|
comments:
|
|
70
69
|
body: "Conteúdo"
|
|
71
70
|
author: "Autor"
|
|
72
|
-
title: "Comentário"
|
|
73
71
|
add: "Adicionar Comentário"
|
|
74
72
|
resource: "Objeto"
|
|
75
73
|
no_comments_yet: "Nenhum comentário."
|
data/config/locales/ro.yml
CHANGED
|
@@ -63,14 +63,12 @@ ro:
|
|
|
63
63
|
few: "%{count} %{plural_model} sterse"
|
|
64
64
|
other: "%{count} %{plural_model} sterse"
|
|
65
65
|
selection_toggle_explanation: "(Modifica Selectia)"
|
|
66
|
-
link: "Creati unul"
|
|
67
66
|
action_label: "%{title} Selectat"
|
|
68
67
|
labels:
|
|
69
68
|
destroy: "Sterge"
|
|
70
69
|
comments:
|
|
71
70
|
body: "Text"
|
|
72
71
|
author: "Autor"
|
|
73
|
-
title: "Comentariu"
|
|
74
72
|
add: "Adaugati comentariu"
|
|
75
73
|
resource: "Resursa"
|
|
76
74
|
no_comments_yet: "Nu exista comentarii."
|
data/config/locales/ru.yml
CHANGED
|
@@ -72,7 +72,6 @@ ru:
|
|
|
72
72
|
many: "Успешно удалено: %{count} %{plural_model}"
|
|
73
73
|
other: "Успешно удалено: %{count} %{plural_model}"
|
|
74
74
|
selection_toggle_explanation: "(Отметить всё / Снять выделение)"
|
|
75
|
-
link: "Создать"
|
|
76
75
|
action_label: "%{title} выбранное"
|
|
77
76
|
labels:
|
|
78
77
|
destroy: "Удалить"
|
|
@@ -82,7 +81,6 @@ ru:
|
|
|
82
81
|
author_type: "Тип автора"
|
|
83
82
|
body: "Текст"
|
|
84
83
|
author: "Автор"
|
|
85
|
-
title: "Комментарий"
|
|
86
84
|
add: "Добавить Комментарий"
|
|
87
85
|
delete: "Удалить Комментарий"
|
|
88
86
|
delete_confirmation: "Вы уверены, что хотите удалить этот комментарий?"
|
|
@@ -130,7 +128,7 @@ ru:
|
|
|
130
128
|
unsupported_browser:
|
|
131
129
|
headline: "Пожалуйста, обратите внимание, что Active Admin больше не поддерживает старые версии Internet Explorer начиная с версии IE 8"
|
|
132
130
|
recommendation: "Мы рекомендуем обновить версию вашего браузера (<a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, или <a href=\"https://mozilla.org/firefox/\">Firefox</a>)."
|
|
133
|
-
turn_off_compatibility_view: "Если вы используете IE 9 или новее, убедитесь, что <a href=\"
|
|
131
|
+
turn_off_compatibility_view: "Если вы используете IE 9 или новее, убедитесь, что <a href=\"https://support.microsoft.com/ru-ru/help/17471\">вы выключили опцию \"Просмотр в режиме совместимости\"</a>."
|
|
134
132
|
access_denied:
|
|
135
133
|
message: "Вы не авторизованы для выполнения данного действия."
|
|
136
134
|
index_list:
|
data/config/locales/sk.yml
CHANGED
|
@@ -65,7 +65,6 @@ sk:
|
|
|
65
65
|
few: "Úspešne zmazané %{count} %{plural_model}"
|
|
66
66
|
other: "Úspešne zmazaných %{count} %{plural_model}"
|
|
67
67
|
selection_toggle_explanation: "(Zmeniť výber)"
|
|
68
|
-
link: "Vytvoriť"
|
|
69
68
|
action_label: "%{title}"
|
|
70
69
|
labels:
|
|
71
70
|
destroy: "Vymazať"
|
|
@@ -74,7 +73,6 @@ sk:
|
|
|
74
73
|
author_type: "Typ autora"
|
|
75
74
|
body: "Telo"
|
|
76
75
|
author: "Autor"
|
|
77
|
-
title: "Komentár"
|
|
78
76
|
add: "Pridať komentár"
|
|
79
77
|
resource: "Zdroj"
|
|
80
78
|
no_comments_yet: "Žiadny komentár"
|
data/config/locales/sv-SE.yml
CHANGED
|
@@ -68,7 +68,6 @@
|
|
|
68
68
|
one: "Lyckades radera 1 %{model}"
|
|
69
69
|
other: "Lyckades radera %{count} %{plural_model}"
|
|
70
70
|
selection_toggle_explanation: "(Toggle Selection)"
|
|
71
|
-
link: "Skapa en"
|
|
72
71
|
action_label: "%{title} Markerad"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "Radera"
|
|
@@ -78,7 +77,6 @@
|
|
|
78
77
|
author_type: "Författar typ"
|
|
79
78
|
body: "Innehåll"
|
|
80
79
|
author: "Författare"
|
|
81
|
-
title: "Kommentar"
|
|
82
80
|
add: "Lägg till kommentar"
|
|
83
81
|
resource: "Resurs"
|
|
84
82
|
no_comments_yet: "Inga kommentarer än."
|
|
@@ -124,7 +122,7 @@
|
|
|
124
122
|
unsupported_browser:
|
|
125
123
|
headline: "Notera att ActiveAdmin inte längre stödjer Internet Explorer version 8 eller mindre."
|
|
126
124
|
recommendation: "Vi rekommenderar dig att uppgradera till den senaste versionen av <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, eller <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
127
|
-
turn_off_compatibility_view: "Om du använder IE 9 eller senare, se till att <a href=\"
|
|
125
|
+
turn_off_compatibility_view: "Om du använder IE 9 eller senare, se till att <a href=\"https://support.microsoft.com/sv-se/help/17471\">stäng av \"Compatibility View\"</a>."
|
|
128
126
|
access_denied:
|
|
129
127
|
message: "Du har inte rättighet att utföra denna åtgärd."
|
|
130
128
|
index_list:
|
data/config/locales/tr.yml
CHANGED
|
@@ -68,7 +68,6 @@ tr:
|
|
|
68
68
|
one: "1 %{model} başarıyla silindi"
|
|
69
69
|
other: "Toplam %{count} %{plural_model} başarıyla silindi"
|
|
70
70
|
selection_toggle_explanation: "(Seçimi Değiştir)"
|
|
71
|
-
link: "Yeni oluştur"
|
|
72
71
|
action_label: "Seçilenleri %{title}"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "Sil"
|
|
@@ -78,7 +77,6 @@ tr:
|
|
|
78
77
|
author_type: "Yazar Tipi"
|
|
79
78
|
body: "Ayrıntı"
|
|
80
79
|
author: "Yazar"
|
|
81
|
-
title: "Yorum"
|
|
82
80
|
add: "Yorum Ekle"
|
|
83
81
|
delete: "Yorumu Sil"
|
|
84
82
|
delete_confirmation: "Bu yorumları silmek istediğinizden emin misiniz?"
|
data/config/locales/uk.yml
CHANGED
|
@@ -72,7 +72,6 @@ uk:
|
|
|
72
72
|
many: "Успішно видалено: %{count} %{plural_model}"
|
|
73
73
|
other: "Успішно видалено: %{count} %{plural_model}"
|
|
74
74
|
selection_toggle_explanation: "(Скасувати все / Зняти виділення)"
|
|
75
|
-
link: "Створити"
|
|
76
75
|
action_label: "%{title} вибране"
|
|
77
76
|
labels:
|
|
78
77
|
destroy: "Видалити"
|
|
@@ -81,7 +80,6 @@ uk:
|
|
|
81
80
|
author_type: "Тип автора"
|
|
82
81
|
body: "Текст"
|
|
83
82
|
author: "Автор"
|
|
84
|
-
title: "Коментар"
|
|
85
83
|
add: "Додати Коментар"
|
|
86
84
|
resource: "Ресурс"
|
|
87
85
|
no_comments_yet: "Поки-що немає коментарів."
|
|
@@ -127,7 +125,7 @@ uk:
|
|
|
127
125
|
unsupported_browser:
|
|
128
126
|
headline: "Зверніть, будь-ласка, увагу, що ActiveAdmin більше не підтримує Internet Explorer 8 версії і нижче"
|
|
129
127
|
recommendation: "Ми рекомендуємо оновити версію вашого браузеру (<a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, або <a href=\"https://mozilla.org/firefox/\">Firefox</a>)."
|
|
130
|
-
turn_off_compatibility_view: "Якщо ви використовуєте IE 9 і вище, переконайтесь, що <a href=\"
|
|
128
|
+
turn_off_compatibility_view: "Якщо ви використовуєте IE 9 і вище, переконайтесь, що <a href=\"https://support.microsoft.com/uk-ua/help/17471\">ви вимкнули опцію \"Перегляд в режимі сумісності\"</a>."
|
|
131
129
|
access_denied:
|
|
132
130
|
message: "Ви не авторизовані для виконання даної дії."
|
|
133
131
|
index_list:
|
data/config/locales/vi.yml
CHANGED
|
@@ -62,14 +62,12 @@ vi:
|
|
|
62
62
|
one: "Đã xóa thành công 1 %{model}"
|
|
63
63
|
other: "Đã xóa thành công %{count} %{plural_model}"
|
|
64
64
|
selection_toggle_explanation: "(Thay đổi lựa chọn)"
|
|
65
|
-
link: "Tạo mới"
|
|
66
65
|
action_label: "%{title} được chọn"
|
|
67
66
|
labels:
|
|
68
67
|
destroy: "Xóa"
|
|
69
68
|
comments:
|
|
70
69
|
body: "Nội dung"
|
|
71
70
|
author: "Tác giả"
|
|
72
|
-
title: "Bình luận"
|
|
73
71
|
add: "Thêm bình luận"
|
|
74
72
|
resource: "Tài nguyên"
|
|
75
73
|
no_comments_yet: "Chưa có bình luận."
|
data/config/locales/zh-CN.yml
CHANGED
|
@@ -68,14 +68,12 @@
|
|
|
68
68
|
one: "成功删除 1 %{model}"
|
|
69
69
|
other: "成功删除 %{count} %{plural_model}"
|
|
70
70
|
selection_toggle_explanation: "(切换选择)"
|
|
71
|
-
link: "新建一个"
|
|
72
71
|
action_label: "%{title} 被选中"
|
|
73
72
|
labels:
|
|
74
73
|
destroy: "删除"
|
|
75
74
|
comments:
|
|
76
75
|
body: "内容"
|
|
77
76
|
author: "作者"
|
|
78
|
-
title: "评论"
|
|
79
77
|
add: "添加评论"
|
|
80
78
|
resource: "资源"
|
|
81
79
|
no_comments_yet: "暂时没有评论"
|