pageflow-sitemap 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (184) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +25 -0
  3. data/.jshintrc +18 -0
  4. data/Gemfile +24 -0
  5. data/LICENSE.md +20 -0
  6. data/README.md +47 -0
  7. data/Rakefile +32 -0
  8. data/app/assets/images/pageflow/sitemap/.keep +0 -0
  9. data/app/assets/javascripts/pageflow/sitemap/.keep +0 -0
  10. data/app/assets/javascripts/pageflow/sitemap/editor/controllers/abstract_controller.js +68 -0
  11. data/app/assets/javascripts/pageflow/sitemap/editor/controllers/editor_mode_controller.js +301 -0
  12. data/app/assets/javascripts/pageflow/sitemap/editor/controllers/fragment_parser.js +31 -0
  13. data/app/assets/javascripts/pageflow/sitemap/editor/controllers/selection_mode_controller.js +37 -0
  14. data/app/assets/javascripts/pageflow/sitemap/editor/controllers/selection_navigator.js +43 -0
  15. data/app/assets/javascripts/pageflow/sitemap/editor/d3/behaviors/mouse_wheel.js +43 -0
  16. data/app/assets/javascripts/pageflow/sitemap/editor/d3/behaviors/multi_drag.js +73 -0
  17. data/app/assets/javascripts/pageflow/sitemap/editor/d3/behaviors/scroll_and_zoom.js +286 -0
  18. data/app/assets/javascripts/pageflow/sitemap/editor/d3/behaviors/selection_rect.js +104 -0
  19. data/app/assets/javascripts/pageflow/sitemap/editor/d3/behaviors/tooltip_target.js +24 -0
  20. data/app/assets/javascripts/pageflow/sitemap/editor/d3/graph_view.js +277 -0
  21. data/app/assets/javascripts/pageflow/sitemap/editor/d3/layout/chapter_collision.js +33 -0
  22. data/app/assets/javascripts/pageflow/sitemap/editor/d3/layout/collision.js +116 -0
  23. data/app/assets/javascripts/pageflow/sitemap/editor/d3/layout/dragging_decorator.js +58 -0
  24. data/app/assets/javascripts/pageflow/sitemap/editor/d3/layout/grid.js +238 -0
  25. data/app/assets/javascripts/pageflow/sitemap/editor/d3/layout/link_dragging_decorator.js +42 -0
  26. data/app/assets/javascripts/pageflow/sitemap/editor/d3/layout.js +94 -0
  27. data/app/assets/javascripts/pageflow/sitemap/editor/d3/options.js +25 -0
  28. data/app/assets/javascripts/pageflow/sitemap/editor/d3/paths/follow_path.js +36 -0
  29. data/app/assets/javascripts/pageflow/sitemap/editor/d3/paths/linkpath.js +64 -0
  30. data/app/assets/javascripts/pageflow/sitemap/editor/d3/paths/successor_path.js +49 -0
  31. data/app/assets/javascripts/pageflow/sitemap/editor/d3/utils.js +33 -0
  32. data/app/assets/javascripts/pageflow/sitemap/editor/d3/view_model.js +202 -0
  33. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/add_button_view.js +28 -0
  34. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/chapter_placeholders_view.js +22 -0
  35. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/chapters_view.js +89 -0
  36. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/group_view.js +104 -0
  37. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/page_links_view.js +7 -0
  38. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/pages_view.js +112 -0
  39. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/selectable_links_view.js +104 -0
  40. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/storylines_view.js +86 -0
  41. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/successor_links_view.js +7 -0
  42. data/app/assets/javascripts/pageflow/sitemap/editor/d3/views/text_label_view.js +45 -0
  43. data/app/assets/javascripts/pageflow/sitemap/editor/d3.js +20 -0
  44. data/app/assets/javascripts/pageflow/sitemap/editor/feature.js +126 -0
  45. data/app/assets/javascripts/pageflow/sitemap/editor/models/selection.js +41 -0
  46. data/app/assets/javascripts/pageflow/sitemap/editor/templates/scroll_bar.jst.ejs +2 -0
  47. data/app/assets/javascripts/pageflow/sitemap/editor/templates/sitemap.jst.ejs +85 -0
  48. data/app/assets/javascripts/pageflow/sitemap/editor/views/scroll_bar_view.js +130 -0
  49. data/app/assets/javascripts/pageflow/sitemap/editor/views/scroll_pane_view.js +73 -0
  50. data/app/assets/javascripts/pageflow/sitemap/editor/views/sitemap_view.js +137 -0
  51. data/app/assets/javascripts/pageflow/sitemap/editor.js +14 -0
  52. data/app/assets/javascripts/pageflow/sitemap/feature.js +3 -0
  53. data/app/assets/javascripts/pageflow/sitemap/scroll_navigator.js +112 -0
  54. data/app/assets/javascripts/pageflow/sitemap.js +5 -0
  55. data/app/assets/stylesheets/pageflow/sitemap/.keep +0 -0
  56. data/app/assets/stylesheets/pageflow/sitemap/editor/add_button.scss +29 -0
  57. data/app/assets/stylesheets/pageflow/sitemap/editor/chapter_placeholders.scss +14 -0
  58. data/app/assets/stylesheets/pageflow/sitemap/editor/chapters.scss +62 -0
  59. data/app/assets/stylesheets/pageflow/sitemap/editor/page_links.scss +19 -0
  60. data/app/assets/stylesheets/pageflow/sitemap/editor/pages.scss +78 -0
  61. data/app/assets/stylesheets/pageflow/sitemap/editor/scroll_bar.css.scss +33 -0
  62. data/app/assets/stylesheets/pageflow/sitemap/editor/scroll_pane.scss +15 -0
  63. data/app/assets/stylesheets/pageflow/sitemap/editor/selectable_links.scss +88 -0
  64. data/app/assets/stylesheets/pageflow/sitemap/editor/selection_rect.scss +12 -0
  65. data/app/assets/stylesheets/pageflow/sitemap/editor/storylines.scss +59 -0
  66. data/app/assets/stylesheets/pageflow/sitemap/editor/successor_links.scss +42 -0
  67. data/app/assets/stylesheets/pageflow/sitemap/editor/text_label.scss +23 -0
  68. data/app/assets/stylesheets/pageflow/sitemap/editor/toolbar.css.scss +45 -0
  69. data/app/assets/stylesheets/pageflow/sitemap/editor.css.scss +96 -0
  70. data/config/locales/de.yml +16 -0
  71. data/config/locales/en.yml +48 -0
  72. data/config/locales/new/help_button.de.yml +7 -0
  73. data/config/locales/new/help_button.en.yml +7 -0
  74. data/config/locales/new/tooltips.de.yml +11 -0
  75. data/config/locales/new/tooltips.en.yml +11 -0
  76. data/config/routes.rb +7 -0
  77. data/config/spring.rb +1 -0
  78. data/exec/rails +12 -0
  79. data/exec/spring +18 -0
  80. data/exec/teaspoon +17 -0
  81. data/lib/pageflow/sitemap/engine.rb +10 -0
  82. data/lib/pageflow/sitemap/plugin.rb +11 -0
  83. data/lib/pageflow/sitemap/version.rb +5 -0
  84. data/lib/pageflow-sitemap.rb +9 -0
  85. data/pageflow-sitemap.gemspec +29 -0
  86. data/spec/d/r/.gitignore +16 -0
  87. data/spec/d/r/README.rdoc +28 -0
  88. data/spec/d/r/Rakefile +6 -0
  89. data/spec/d/r/app/admin/dashboard.rb +33 -0
  90. data/spec/d/r/app/assets/images/.keep +0 -0
  91. data/spec/d/r/app/assets/javascripts/active_admin.js.coffee +2 -0
  92. data/spec/d/r/app/assets/javascripts/application.js +16 -0
  93. data/spec/d/r/app/assets/javascripts/pageflow/application.js +1 -0
  94. data/spec/d/r/app/assets/javascripts/pageflow/editor.js +4 -0
  95. data/spec/d/r/app/assets/stylesheets/active_admin.css.scss +18 -0
  96. data/spec/d/r/app/assets/stylesheets/application.css +13 -0
  97. data/spec/d/r/app/assets/stylesheets/pageflow/application.css.scss +1 -0
  98. data/spec/d/r/app/assets/stylesheets/pageflow/editor.css.scss +1 -0
  99. data/spec/d/r/app/controllers/application_controller.rb +5 -0
  100. data/spec/d/r/app/controllers/concerns/.keep +0 -0
  101. data/spec/d/r/app/helpers/application_helper.rb +2 -0
  102. data/spec/d/r/app/mailers/.keep +0 -0
  103. data/spec/d/r/app/models/.keep +0 -0
  104. data/spec/d/r/app/models/ability.rb +12 -0
  105. data/spec/d/r/app/models/concerns/.keep +0 -0
  106. data/spec/d/r/app/models/user.rb +9 -0
  107. data/spec/d/r/app/views/layouts/application.html.erb +14 -0
  108. data/spec/d/r/bin/bundle +3 -0
  109. data/spec/d/r/bin/rails +4 -0
  110. data/spec/d/r/bin/rake +4 -0
  111. data/spec/d/r/config/application.rb +31 -0
  112. data/spec/d/r/config/boot.rb +4 -0
  113. data/spec/d/r/config/database.yml +39 -0
  114. data/spec/d/r/config/environment.rb +5 -0
  115. data/spec/d/r/config/environments/development.rb +29 -0
  116. data/spec/d/r/config/environments/production.rb +80 -0
  117. data/spec/d/r/config/environments/test.rb +37 -0
  118. data/spec/d/r/config/initializers/active_admin.rb +225 -0
  119. data/spec/d/r/config/initializers/backtrace_silencers.rb +7 -0
  120. data/spec/d/r/config/initializers/devise.rb +252 -0
  121. data/spec/d/r/config/initializers/devise_async.rb +6 -0
  122. data/spec/d/r/config/initializers/filter_parameter_logging.rb +4 -0
  123. data/spec/d/r/config/initializers/friendly_id.rb +88 -0
  124. data/spec/d/r/config/initializers/inflections.rb +16 -0
  125. data/spec/d/r/config/initializers/mime_types.rb +5 -0
  126. data/spec/d/r/config/initializers/pageflow.rb +76 -0
  127. data/spec/d/r/config/initializers/resque.rb +4 -0
  128. data/spec/d/r/config/initializers/resque_enqueue_after_commit_patch.rb +25 -0
  129. data/spec/d/r/config/initializers/resque_logger.rb +16 -0
  130. data/spec/d/r/config/initializers/resque_mailer.rb +4 -0
  131. data/spec/d/r/config/initializers/secret_token.rb +12 -0
  132. data/spec/d/r/config/initializers/session_store.rb +3 -0
  133. data/spec/d/r/config/initializers/wrap_parameters.rb +14 -0
  134. data/spec/d/r/config/locales/devise.en.yml +59 -0
  135. data/spec/d/r/config/locales/en.yml +23 -0
  136. data/spec/d/r/config/routes.rb +59 -0
  137. data/spec/d/r/config.ru +4 -0
  138. data/spec/d/r/db/migrate/00000000000000_create_test_hosted_file.rb +7 -0
  139. data/spec/d/r/db/migrate/00000000000001_create_test_revision_component.rb +10 -0
  140. data/spec/d/r/db/migrate/20150209101518_create_active_admin_comments.rb +19 -0
  141. data/spec/d/r/db/migrate/20150209101524_devise_create_users.rb +46 -0
  142. data/spec/d/r/db/migrate/20150209101530_create_friendly_id_slugs.rb +15 -0
  143. data/spec/d/r/db/migrate/20150209101540_setup_schema.pageflow.rb +208 -0
  144. data/spec/d/r/db/migrate/20150209101541_add_attributes_to_users.pageflow.rb +16 -0
  145. data/spec/d/r/db/migrate/20150209101542_create_themings.pageflow.rb +16 -0
  146. data/spec/d/r/db/migrate/20150209101543_create_themings_for_existing_accounts.pageflow.rb +27 -0
  147. data/spec/d/r/db/migrate/20150209101544_change_theme_references_to_theming_references.pageflow.rb +46 -0
  148. data/spec/d/r/db/migrate/20150209101545_remove_attributes_from_themes.pageflow.rb +11 -0
  149. data/spec/d/r/db/migrate/20150209101546_create_accounts_themes_join_table.pageflow.rb +9 -0
  150. data/spec/d/r/db/migrate/20150209101547_move_cname_from_account_to_theming.pageflow.rb +22 -0
  151. data/spec/d/r/db/migrate/20150209101548_drop_themes.pageflow.rb +15 -0
  152. data/spec/d/r/db/migrate/20150209101549_add_confirmed_by_to_encoded_files.pageflow.rb +7 -0
  153. data/spec/d/r/db/migrate/20150209101550_add_home_url_attributes_to_themings_and_revisions.pageflow.rb +10 -0
  154. data/spec/d/r/db/migrate/20150209101551_create_widgets.pageflow.rb +12 -0
  155. data/spec/d/r/db/migrate/20150209101552_add_emphasize_chapter_beginning_to_revisions.pageflow.rb +6 -0
  156. data/spec/d/r/db/migrate/20150209101553_add_emphasize_new_pages_to_revisions.pageflow.rb +6 -0
  157. data/spec/d/r/db/migrate/20150209101554_add_sharing_image_to_revisions.pageflow.rb +8 -0
  158. data/spec/d/r/db/schema.rb +316 -0
  159. data/spec/d/r/db/seeds.rb +30 -0
  160. data/spec/d/r/lib/assets/.keep +0 -0
  161. data/spec/d/r/lib/tasks/.keep +0 -0
  162. data/spec/d/r/lib/tasks/resque.rake +7 -0
  163. data/spec/d/r/public/404.html +58 -0
  164. data/spec/d/r/public/422.html +58 -0
  165. data/spec/d/r/public/500.html +57 -0
  166. data/spec/d/r/public/favicon.ico +0 -0
  167. data/spec/d/r/public/javascripts/translations.js +2 -0
  168. data/spec/d/r/public/robots.txt +5 -0
  169. data/spec/d/r/vendor/assets/javascripts/.keep +0 -0
  170. data/spec/d/r/vendor/assets/stylesheets/.keep +0 -0
  171. data/spec/javascripts/.jshintrc +26 -0
  172. data/spec/javascripts/pageflow/sitemap/editor/controllers/selection_navigator_spec.js +52 -0
  173. data/spec/javascripts/pageflow/sitemap/editor/d3/layout/collision_spec.js +99 -0
  174. data/spec/javascripts/pageflow/sitemap/editor/d3/layout/dragging_decorator_spec.js +114 -0
  175. data/spec/javascripts/pageflow/sitemap/editor/d3/layout/grid_spec.js +183 -0
  176. data/spec/javascripts/pageflow/sitemap/editor/d3/layout_spec.js +31 -0
  177. data/spec/javascripts/pageflow/sitemap/editor/d3/view_model_spec.js +56 -0
  178. data/spec/javascripts/pageflow/sitemap/editor/models/selection_spec.js +62 -0
  179. data/spec/javascripts/pageflow/sitemap/scroll_navigator_spec.js +5 -0
  180. data/spec/javascripts/spec_helper.js +13 -0
  181. data/spec/javascripts/support/factories.js +81 -0
  182. data/spec/teaspoon_env.rb +182 -0
  183. data/vendor/assets/javascripts/d3.v3.js +9215 -0
  184. metadata +379 -0
@@ -0,0 +1,2 @@
1
+ var I18n = I18n || {};
2
+ I18n.translations = {"en":{"date":{"formats":{"default":"%Y-%m-%d","short":"%b %d","long":"%B %d, %Y"},"day_names":["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],"abbr_day_names":["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],"month_names":[null,"January","February","March","April","May","June","July","August","September","October","November","December"],"abbr_month_names":[null,"Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"order":["year","month","day"]},"time":{"formats":{"default":"%a, %d %b %Y %H:%M:%S %z","short":"%d %b %H:%M","long":"%B %d, %Y %H:%M"},"am":"am","pm":"pm"},"support":{"array":{"words_connector":", ","two_words_connector":" and ","last_word_connector":", and "}},"number":{"format":{"separator":".","delimiter":",","precision":3,"significant":false,"strip_insignificant_zeros":false},"currency":{"format":{"format":"%u%n","unit":"$","separator":".","delimiter":",","precision":2,"significant":false,"strip_insignificant_zeros":false}},"percentage":{"format":{"delimiter":"","format":"%n%"}},"precision":{"format":{"delimiter":""}},"human":{"format":{"delimiter":"","precision":3,"significant":true,"strip_insignificant_zeros":true},"storage_units":{"format":"%n %u","units":{"byte":{"one":"Byte","other":"Bytes"},"kb":"KB","mb":"MB","gb":"GB","tb":"TB"}},"decimal_units":{"format":"%n %u","units":{"unit":"","thousand":"Thousand","million":"Million","billion":"Billion","trillion":"Trillion","quadrillion":"Quadrillion"}}}},"errors":{"format":"%{attribute} %{message}","messages":{"inclusion":"is not included in the list","exclusion":"is reserved","invalid":"is invalid","confirmation":"doesn't match %{attribute}","accepted":"must be accepted","empty":"can't be empty","blank":"can't be blank","present":"must be blank","too_long":"is too long (maximum is %{count} characters)","too_short":"is too short (minimum is %{count} characters)","wrong_length":"is the wrong length (should be %{count} characters)","not_a_number":"is not a number","not_an_integer":"must be an integer","greater_than":"must be greater than %{count}","greater_than_or_equal_to":"must be greater than or equal to %{count}","equal_to":"must be equal to %{count}","less_than":"must be less than %{count}","less_than_or_equal_to":"must be less than or equal to %{count}","other_than":"must be other than %{count}","odd":"must be odd","even":"must be even","taken":"has already been taken","already_confirmed":"was already confirmed, please try signing in","confirmation_period_expired":"needs to be confirmed within %{period}, please request a new one","expired":"has expired, please request a new one","not_found":"not found","not_locked":"was not locked","not_saved":{"one":"1 error prohibited this %{resource} from being saved:","other":"%{count} errors prohibited this %{resource} from being saved:"},"in_between":"must be in between %{min} and %{max}"}},"activerecord":{"errors":{"messages":{"record_invalid":"Validation failed: %{errors}","restrict_dependent_destroy":{"one":"Cannot delete record because a dependent %{record} exists","many":"Cannot delete record because dependent %{record} exist"},"invalid":"is invalid","invalid_event":"cannot transition when %{state}","invalid_transition":"cannot transition via \"%{event}\""}}},"datetime":{"distance_in_words":{"half_a_minute":"half a minute","less_than_x_seconds":{"one":"less than 1 second","other":"less than %{count} seconds"},"x_seconds":{"one":"1 second","other":"%{count} seconds"},"less_than_x_minutes":{"one":"less than a minute","other":"less than %{count} minutes"},"x_minutes":{"one":"1 minute","other":"%{count} minutes"},"about_x_hours":{"one":"about 1 hour","other":"about %{count} hours"},"x_days":{"one":"1 day","other":"%{count} days"},"about_x_months":{"one":"about 1 month","other":"about %{count} months"},"x_months":{"one":"1 month","other":"%{count} months"},"about_x_years":{"one":"about 1 year","other":"about %{count} years"},"over_x_years":{"one":"over 1 year","other":"over %{count} years"},"almost_x_years":{"one":"almost 1 year","other":"almost %{count} years"}},"prompts":{"year":"Year","month":"Month","day":"Day","hour":"Hour","minute":"Minute","second":"Seconds"}},"helpers":{"select":{"prompt":"Please select"},"submit":{"create":"Create %{model}","update":"Update %{model}","submit":"Save %{model}"},"page_entries_info":{"one_page":{"display_entries":{"zero":"No %{entry_name} found","one":"Displaying \u003Cb\u003E1\u003C/b\u003E %{entry_name}","other":"Displaying \u003Cb\u003Eall %{count}\u003C/b\u003E %{entry_name}"}},"more_pages":{"display_entries":"Displaying %{entry_name} \u003Cb\u003E%{first}\u0026nbsp;-\u0026nbsp;%{last}\u003C/b\u003E of \u003Cb\u003E%{total}\u003C/b\u003E in total"}}},"ransack":{"search":"search","predicate":"predicate","and":"and","or":"or","any":"any","all":"all","combinator":"combinator","attribute":"attribute","value":"value","condition":"condition","sort":"sort","asc":"ascending","desc":"descending","predicates":{"eq":"equals","eq_any":"equals any","eq_all":"equals all","not_eq":"not equal to","not_eq_any":"not equal to any","not_eq_all":"not equal to all","matches":"matches","matches_any":"matches any","matches_all":"matches all","does_not_match":"doesn't match","does_not_match_any":"doesn't match any","does_not_match_all":"doesn't match all","lt":"less than","lt_any":"less than any","lt_all":"less than all","lteq":"less than or equal to","lteq_any":"less than or equal to any","lteq_all":"less than or equal to all","gt":"greater than","gt_any":"greater than any","gt_all":"greater than all","gteq":"greater than or equal to","gteq_any":"greater than or equal to any","gteq_all":"greater than or equal to all","in":"in","in_any":"in any","in_all":"in all","not_in":"not in","not_in_any":"not in any","not_in_all":"not in all","cont":"contains","cont_any":"contains any","cont_all":"contains all","not_cont":"doesn't contain","not_cont_any":"doesn't contain any","not_cont_all":"doesn't contain all","start":"starts with","start_any":"starts with any","start_all":"starts with all","not_start":"doesn't start with","not_start_any":"doesn't start with any","not_start_all":"doesn't start with all","end":"ends with","end_any":"ends with any","end_all":"ends with all","not_end":"doesn't end with","not_end_any":"doesn't end with any","not_end_all":"doesn't end with all","true":"is true","false":"is false","present":"is present","blank":"is blank","null":"is null","not_null":"is not null"}},"flash":{"actions":{"create":{"notice":"%{resource_name} was successfully created."},"update":{"notice":"%{resource_name} was successfully updated."},"destroy":{"notice":"%{resource_name} was successfully destroyed.","alert":"%{resource_name} could not be destroyed."}}},"unauthorized":"You are not authorized to access this page.","devise":{"confirmations":{"confirmed":"Your account was successfully confirmed. You are now signed in.","send_instructions":"You will receive an email with instructions about how to confirm your account in a few minutes.","send_paranoid_instructions":"If your email address exists in our database, you will receive an email with instructions about how to confirm your account in a few minutes."},"failure":{"already_authenticated":"You are already signed in.","inactive":"Your account was not activated yet.","invalid":"Invalid email or password.","invalid_token":"Invalid authentication token.","locked":"Your account is locked.","not_found_in_database":"Invalid email or password.","timeout":"Your session expired, please sign in again to continue.","unauthenticated":"You need to sign in or sign up before continuing.","unconfirmed":"You have to confirm your account before continuing."},"mailer":{"confirmation_instructions":{"subject":"Confirmation instructions"},"reset_password_instructions":{"subject":"Reset password instructions"},"unlock_instructions":{"subject":"Unlock Instructions"}},"omniauth_callbacks":{"failure":"Could not authenticate you from %{kind} because \"%{reason}\".","success":"Successfully authenticated from %{kind} account."},"passwords":{"no_token":"You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided.","send_instructions":"You will receive an email with instructions about how to reset your password in a few minutes.","send_paranoid_instructions":"If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.","updated":"Your password was changed successfully. You are now signed in.","updated_not_active":"Your password was changed successfully."},"registrations":{"destroyed":"Bye! Your account was successfully cancelled. We hope to see you again soon.","signed_up":"Welcome! You have signed up successfully.","signed_up_but_inactive":"You have signed up successfully. However, we could not sign you in because your account is not yet activated.","signed_up_but_locked":"You have signed up successfully. However, we could not sign you in because your account is locked.","signed_up_but_unconfirmed":"A message with a confirmation link has been sent to your email address. Please open the link to activate your account.","update_needs_confirmation":"You updated your account successfully, but we need to verify your new email address. Please check your email and click on the confirm link to finalize confirming your new email address.","updated":"You updated your account successfully."},"sessions":{"signed_in":"Signed in successfully.","signed_out":"Signed out successfully."},"unlocks":{"send_instructions":"You will receive an email with instructions about how to unlock your account in a few minutes.","send_paranoid_instructions":"If your account exists, you will receive an email with instructions about how to unlock it in a few minutes.","unlocked":"Your account has been unlocked successfully. Please sign in to continue."}},"activemodel":{"errors":{"messages":{"invalid":"is invalid","invalid_event":"cannot transition when %{state}","invalid_transition":"cannot transition via \"%{event}\""}}},"views":{"pagination":{"first":"\u0026laquo; First","last":"Last \u0026raquo;","previous":"\u0026lsaquo; Prev","next":"Next \u0026rsaquo;","truncate":"\u0026hellip;"}},"active_admin":{"dashboard":"Dashboard","dashboard_welcome":{"welcome":"Welcome to Active Admin. This is the default dashboard page.","call_to_action":"To add dashboard sections, checkout 'app/admin/dashboard.rb'"},"view":"View","edit":"Edit","delete":"Delete","delete_confirmation":"Are you sure you want to delete this?","new_model":"New %{model}","create_model":"New %{model}","edit_model":"Edit %{model}","update_model":"Edit %{model}","delete_model":"Delete %{model}","details":"%{model} Details","cancel":"Cancel","empty":"Empty","previous":"Previous","next":"Next","download":"Download:","has_many_new":"Add New %{model}","has_many_delete":"Delete","has_many_remove":"Remove","filters":{"buttons":{"filter":"Filter","clear":"Clear Filters"},"predicates":{"contains":"Contains","equals":"Equals","starts_with":"Starts with","ends_with":"Ends with","greater_than":"Greater than","less_than":"Less than"}},"main_content":"Please implement %{model}#main_content to display content.","logout":"Logout","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filters"},"pagination":{"empty":"No %{model} found","one":"Displaying \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Displaying \u003Cb\u003Eall %{n}\u003C/b\u003E %{model}","multiple":"Displaying %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E of \u003Cb\u003E%{total}\u003C/b\u003E in total","multiple_without_total":"Displaying %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"entry","other":"entries"}},"any":"Any","blank_slate":{"content":"There are no %{resource_name} yet.","link":"Create one"},"batch_actions":{"button_label":"Batch Actions","delete_confirmation":"Are you sure you want to delete these %{plural_model}? You won't be able to undo this.","succesfully_destroyed":{"one":"Successfully destroyed 1 %{model}","other":"Successfully destroyed %{count} %{plural_model}"},"selection_toggle_explanation":"(Toggle Selection)","link":"Create one","action_label":"%{title} Selected","labels":{"destroy":"Delete"}},"comments":{"resource_type":"Resource Type","author_type":"Author Type","body":"Body","author":"Author","title":"Comment","add":"Add Comment","resource":"Resource","no_comments_yet":"No comments yet.","title_content":"Comments (%{count})","errors":{"empty_text":"Comment wasn't saved, text was empty."}},"devise":{"login":{"title":"Login","remember_me":"Remember me","submit":"Login"},"reset_password":{"title":"Forgot your password?","submit":"Reset My Password"},"change_password":{"title":"Change your password","submit":"Change my password"},"unlock":{"title":"Resend unlock instructions","submit":"Resend unlock instructions"},"links":{"sign_in":"Sign in","forgot_your_password":"Forgot your password?","sign_in_with_omniauth_provider":"Sign in with %{provider}"}},"access_denied":{"message":"You are not authorized to perform this action."},"index_list":{"table":"Table","block":"List","grid":"Grid","blog":"Blog"}},"hello":"Hello world"},"es":{"ransack":{"search":"buscar","predicate":"predicado","and":"y","or":"o","any":"cualquier","all":"todos","combinator":"combinado","attribute":"atributo","value":"valor","condition":"condición","sort":"ordernar","asc":"ascendente","desc":"descendente","predicates":{"eq":"es igual a","eq_any":"es igual a cualquier","eq_all":"es igual a todos","not_eq":"no es igual a","not_eq_any":"no es igual a cualquier","not_eq_all":"no es iguala todos","matches":"coincidir","matches_any":"coincidir a cualquier","matches_all":"coincidir a todos","does_not_match":"no coincide","does_not_match_any":"no coincide con ninguna","does_not_match_all":"no coincide con todos","lt":"menor que","lt_any":"menor que cualquier","lt_all":"menor o igual a","lteq":"menor que o igual a","lteq_any":"menor o igual a cualquier","lteq_all":"menor o igual a todos","gt":"mayor que","gt_any":"mayor que cualquier","gt_all":"mayor que todos","gteq":"mayor que o igual a","gteq_any":"mayor que o igual a cualquier","gteq_all":"mayor que o igual a todos","in":"en","in_any":"en cualquier","in_all":"en todos","not_in":"no en","not_in_any":"no en cualquier","not_in_all":"no en todos","cont":"contiene","cont_any":"contiene cualquier","cont_all":"contiene todos","not_cont":"no contiene","not_cont_any":"no contiene ninguna","not_cont_all":"no contiene toda","start":"comienza con","start_any":"comienza con cualquier","start_all":"comienza con toda","not_start":"no inicia con","not_start_any":"no comienza con cualquier","not_start_all":"no inicia con toda","end":"termina con","end_any":"termina con cualquier","end_all":"termina con todo","not_end":"no termina con","not_end_any":"no termina con cualquier","not_end_all":"no termina con todo","true":"es verdadero","false":"es falso","present":"es presente","blank":"está en blanco","null":"es nula","not_null":"no es nula"}},"active_admin":{"dashboard":"Inicio","dashboard_welcome":{"welcome":"Bienvenido a Active Admin. Esta es la página de inicio predeterminada.","call_to_action":"Para agregar secciones edite 'app/admin/dashboard.rb'"},"view":"Ver","edit":"Editar","delete":"Eliminar","delete_confirmation":"¿Está seguro de que quiere eliminar esto?","new_model":"Añadir %{model}","create_model":"Añadir %{model}","edit_model":"Editar %{model}","update_model":"Editar %{model}","delete_model":"Eliminar %{model}","details":"Detalles de %{model}","cancel":"Cancelar","empty":"Vacío","previous":"Anterior","next":"Siguiente","download":"Descargar:","has_many_new":"Agregar Añadir %{model}","has_many_delete":"Eliminar","has_many_remove":"Quitar","filters":{"buttons":{"filter":"Filtrar","clear":"Quitar Filtros"},"predicates":{"contains":"Contiene","equals":"Igual a","starts_with":"Empieza con","ends_with":"Termina con","greater_than":"Mayor que","less_than":"Menor que"}},"main_content":"Por favor implemente %{model}#main_content para mostrar contenido.","logout":"Salir","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtros"},"pagination":{"empty":"No se han encontrado %{model}","one":"Mostrando \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Mostrando \u003Cb\u003Eun total de %{n}\u003C/b\u003E %{model}","multiple":"Mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E de un total de \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E"},"blank_slate":{"content":"No hay %{resource_name} aún.","link":"Añadir","entry":{"one":"registro","other":"registros"}},"any":"Cualquiera","batch_actions":{"button_label":"Acciones en masa","delete_confirmation":"Eliminar %{plural_model}: ¿Está seguro? No podrá deshacer esta acción.","succesfully_destroyed":{"one":"Se ha destruido 1 %{model} con éxito","other":"Se han destruido %{count} %{plural_model} con éxito"},"selection_toggle_explanation":"(Cambiar selección)","link":"Añadir","action_label":"%{title} seleccionado","labels":{"destroy":"Borrar"}},"comments":{"body":"Cuerpo","author":"Autor","title":"Comentario","add":"Comentar","resource":"Recurso","no_comments_yet":"Aún sin comentarios.","title_content":"Comentarios (%{count})","errors":{"empty_text":"El comentario no fue guardado, el texto estaba vacío."}},"devise":{"login":{"title":"iniciar sesión","remember_me":"Recordarme","submit":"iniciar sesión"},"reset_password":{"title":"¿Olvidó su contraseña?","submit":"Restablecer mi contraseña"},"change_password":{"title":"Cambie su contraseña","submit":"Cambiar mi contraseña"},"links":{"sign_in":"registrarse","forgot_your_password":"¿Olvidó su contraseña?","sign_in_with_omniauth_provider":"Conéctate con %{provider}"}}},"views":{"pagination":{"truncate":"...","first":"Inicio","previous":"Anterior","next":"Siguiente","last":"Último"}},"formtastic":{"true":"Sí","false":"No","create":"Guardar %{model}","update":"Guardar %{model}","submit":"Aceptar","cancel":"Cancelar","reset":"Restablecer %{model}","required":"requerido"}},"nl":{"ransack":{"search":"zoeken","predicate":"eigenschap","and":"en","or":"of","any":"enig","all":"alle","combinator":"combinator","attribute":"attribuut","value":"waarde","condition":"conditie","sort":"sorteren","asc":"oplopend","desc":"aflopend","predicates":{"eq":"gelijk","eq_any":"gelijk enig","eq_all":"gelijk alle","not_eq":"niet gelijk aan","not_eq_any":"niet gelijk aan enig","not_eq_all":"niet gelijk aan alle","matches":"evenaart","matches_any":"evenaart enig","matches_all":"evenaart alle","does_not_match":"evenaart niet","does_not_match_any":"evenaart niet voor enig","does_not_match_all":"evenaart niet voor alle","lt":"kleiner dan","lt_any":"kleiner dan enig","lt_all":"kleiner dan alle","lteq":"kleiner dan of gelijk aan","lteq_any":"kleiner dan of gelijk aan enig","lteq_all":"kleiner dan of gelijk aan alle","gt":"groter dan","gt_any":"groter dan enig","gt_all":"groter dan alle","gteq":"groter dan or equal to","gteq_any":"groter dan or equal to enig","gteq_all":"groter dan or equal to alle","in":"in","in_any":"in enig","in_all":"in alle","not_in":"niet in","not_in_any":"niet in enig","not_in_all":"niet in alle","cont":"bevat","cont_any":"bevat enig","cont_all":"bevat alle","not_cont":"bevat niet","not_cont_any":"bevat niet enig","not_cont_all":"bevat niet alle","start":"start met","start_any":"start met enig","start_all":"start met alle","not_start":"start niet met","not_start_any":"start niet met enig","not_start_all":"start niet met alle","end":"eindigt met","end_any":"eindigt met enig","end_all":"eindigt met alle","not_end":"eindigt niet met","not_end_any":"eindigt niet met enig","not_end_all":"eindigt niet met alle","true":"is waar","false":"is niet waar","present":"is present","blank":"is afwezig","null":"is null","not_null":"is niet null"}},"active_admin":{"dashboard":"Dashboard","dashboard_welcome":{"welcome":"Welkom bij Active Admin. Dit is de standaard dashboard pagina","call_to_action":"Pas je eigen dashboard aan in het bestand 'app/admin/dashboard.rb'"},"view":"Bekijk","edit":"Wijzig","delete":"Verwijder","delete_confirmation":"Weet je zeker dat je dit item wilt verwijderen?","new_model":"Nieuwe %{model}","create_model":"Nieuwe %{model}","edit_model":"Wijzig %{model}","update_model":"Wijzig %{model}","delete_model":"Verwijder %{model}","details":"%{model} details","cancel":"Annuleren","empty":"Leeg","previous":"Vorige","next":"Volgende","download":"Download","has_many_new":"Voeg nieuwe %{model} toe","has_many_delete":"Verwijderen","has_many_remove":"Verwijderen","filters":{"buttons":{"filter":"Filter","clear":"Maak Filters Ongedaan"},"predicates":{"contains":"Bevat","equals":"Gelijk aan","starts_with":"Begint met","ends_with":"Eindigt op","greater_than":"Groter dan","less_than":"Kleiner dan"}},"main_content":"Implementeer %{model}#main_content om de content weer te geven.","logout":"Uitloggen","powered_by":"Mogelijk gemaakt door %{active_admin} %{version}","sidebars":{"filters":"Filters"},"pagination":{"empty":"Geen %{model} gevonden","one":"Geeft \u003Cb\u003E1\u003C/b\u003E %{model} weer","one_page":"Geeft \u003Cb\u003E%{n}\u003C/b\u003E %{model} weer","multiple":"Geeft %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E van de \u003Cb\u003E%{total}\u003C/b\u003E weer","multiple_without_total":"Geeft %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"entry","other":"entries"}},"any":"Alle","blank_slate":{"content":"Er zijn geen %{resource_name} gevonden.","link":"Maak aan"},"batch_actions":{"button_label":"Batch acties","delete_confirmation":"Weet je zeker dat je deze %{plural_model} wilt verwijderen? Er is geen undo.","succesfully_destroyed":{"one":"1 %{model} verwijderd.","other":"%{count} %{plural_model} verwijderd."},"selection_toggle_explanation":"(Toggle selectie)","link":"Maak aan","action_label":"%{title} geselecteerde","labels":{"destroy":"Verwijder"}},"comments":{"body":"Tekst","author":"Auteur","title":"Reactie","add":"Voeg commentaar toe","resource":"Resource","no_comments_yet":"Nog geen reacties.","title_content":"Reacties (%{count})","errors":{"empty_text":"De reactie is niet opgeslagen, de tekst was leeg."}},"devise":{"login":{"title":"inloggen","remember_me":"Onthoud mij","submit":"inloggen"},"reset_password":{"title":"Wachtwoord vergeten?","submit":"Reset mijn wachtwoord vergeten"},"change_password":{"title":"Wijzig uw wachtwoord","submit":"Mijn wachtwoord wijzigen"},"links":{"sign_in":"Meld u aan","forgot_your_password":"Wachtwoord vergeten?","sign_in_with_omniauth_provider":"Log in met %{provider}"}}}},"ro":{"ransack":{"search":"caută","predicate":"predicat","and":"și","or":"sau","any":"oricare","all":"toate","combinator":"combinator","attribute":"atribut","value":"valoare","condition":"condiție","sort":"sortează","asc":"crescător","desc":"descrescător","predicates":{"eq":"egal cu","eq_any":"egal cu unul din","eq_all":"egal cu toate","not_eq":"diferit de","not_eq_any":"diferit de toate","not_eq_all":"nu este egal cu toate","matches":"corespunde","matches_any":"corespunde cu unul din","matches_all":"corespunde cu toate","does_not_match":"nu corespunde","does_not_match_any":"nu corespunde cu nici un","does_not_match_all":"nu corespunde cu toate","lt":"mai mic de","lt_any":"mai mic decât cel puțin unul din","lt_all":"mai mic decât toate","lteq":"mai mic sau egal decât","lteq_any":"mai mic sau egal decât cel puțin unul din","lteq_all":"mai mic sau egal decât toate","gt":"mai mare de","gt_any":"mai mare decât cel puțin unul din","gt_all":"mai mare decât toate","gteq":"mai mare sau egal decât","gteq_any":"mai mare sau egal decât cel puțin unul din","gteq_all":"mai mare sau egal decât toate","in":"inclus în","in_any":"inclus într-unul din","in_all":"inclus în toate","not_in":"nu este inclus în","not_in_any":"nu este inclus într-unul din","not_in_all":"nu este inclus în toate","cont":"conține","cont_any":"conține unul din","cont_all":"conține toate","not_cont":"nu conține","not_cont_any":"nu conține unul din","not_cont_all":"nu conține toate","start":"începe cu","start_any":"începe cu unul din","start_all":"începe cu toate","not_start":"nu începe","not_start_any":"nu începe cu unul din","not_start_all":"nu începe cu toate","end":"se termină cu","end_any":"se termină cu unul din","end_all":"se termină cu toate","not_end":"nu se termină cu","not_end_any":"nu se termină cu unul din","not_end_all":"nu se termină cu toate","true":"este adevărat","false":"este fals","present":"este prezent","blank":"este gol","null":"este nul","not_null":"nu este nul"}},"active_admin":{"dashboard":"Pagina Principala","dashboard_welcome":{"welcome":"Bine ati venit pe Active Admin. Aceasta este pagina principala.","call_to_action":"Pentru a adauga sectiuni, vedeti 'app/admin/dashboard.rb'"},"view":"Vizualizati","edit":"Modificati","delete":"Stergeti","delete_confirmation":"Sigur vreti sa stergeti?","new_model":"Un nou %{model}","create_model":"Un nou %{model}","edit_model":"Modificati %{model}","update_model":"Modificati %{model}","delete_model":"Stergeti %{model}","details":"Detalii %{model}","cancel":"Renuntati","empty":"Gol","previous":"Inapoi","next":"Inainte","download":"Descarcati:","has_many_new":"Adaugati un nou %{model}","has_many_delete":"Stergeti","has_many_remove":"Scoate","filters":{"buttons":{"filter":"Cautati","clear":"Stergeti filtrele"},"predicates":{"contains":"Conține","equals":"Egal Cu","starts_with":"începe cu","ends_with":"se termină cu","greater_than":"Mai Mare Decat","less_than":"Mai Mic Decat"}},"main_content":"Va rugam sa implementati %{model}#main_content pentru a afisa continut.","logout":"Iesire","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtre"},"pagination":{"empty":"Nu am gasit nici un %{model}","one":"Afisare \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Sunt afisate \u003Cb\u003Etoate %{n}\u003C/b\u003E inregistrarile","multiple":"Sunt afisate \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E din \u003Cb\u003E%{total}\u003C/b\u003E inregistrari","multiple_without_total":"Sunt afisate \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"inregistrare","other":"inregistrari"}},"any":"Oricare","blank_slate":{"content":"Momentan nu exista %{resource_name}.","link":"Creati un"},"batch_actions":{"button_label":"Grupare Actiuni","delete_confirmation":"Sunteti sigur ca doriti sa stergeti aceste %{plural_model}?","succesfully_destroyed":{"one":"1 %{model} sters","few":"%{count} %{plural_model} sterse","other":"%{count} %{plural_model} sterse"},"selection_toggle_explanation":"(Modifica Selectia)","link":"Creati unul","action_label":"%{title} Selectat","labels":{"destroy":"Sterge"}},"comments":{"body":"Text","author":"Autor","title":"Comentariu","add":"Adaugati comentariu","resource":"Resursa","no_comments_yet":"Nu exista comentarii.","title_content":"Comentarii (%{count})","errors":{"empty_text":"Comentariul nu a fost salvat, textul lipseste."}},"devise":{"login":{"title":"Autentificare","remember_me":"Tine-ma minte","submit":"Autentificare"},"reset_password":{"title":"Ați uitat parola?","submit":"Reseta parola"},"change_password":{"title":"Schimbați parola","submit":"Schimbă parola"},"unlock":{"title":"Retrimite instrucțiunile de deblocare","submit":"Retrimite instrucțiunile de deblocare"},"links":{"sign_in":"Autentificare","forgot_your_password":"Ați uitat parola?","sign_in_with_omniauth_provider":"Conectați-vă cu %{provider}"}}}},"hu":{"ransack":{"search":"keresés","predicate":"állítás","and":"és","or":"vagy","any":"bármely","all":"mindegyik","combinator":"combinator","attribute":"attribute","value":"érték","condition":"feltétel","sort":"rendezés","asc":"növekvő","desc":"csökkenő","predicates":{"eq":"egyenlő","eq_any":"bármelyikkel egyenlő","eq_all":"minddel egyenlő","not_eq":"nem egyenlő","not_eq_any":"nem egyenlő bármelyikkel","not_eq_all":"nem egyenlő egyikkel sem","matches":"egyezik","matches_any":"bármelyikkel egyezik","matches_all":"minddel egyezik","does_not_match":"nem egyezik","does_not_match_any":"nem egyezik semelyikkel","does_not_match_all":"nem egyezik az összessel","lt":"kisebb, mint","lt_any":"bármelyiknél kisebb","lt_all":"mindegyiknél kisebb","lteq":"kisebb vagy egyenlő, mint","lteq_any":"bármelyiknél kisebb vagy egyenlő","lteq_all":"mindegyiknél kisebb vagy egyenlő","gt":"nagyobb, mint","gt_any":"bármelyiknél nagyobb","gt_all":"mindegyiknél nagyobb","gteq":"nagyobb vagy egyenlő, mint","gteq_any":"bármelyiknél nagyobb vagy egyenlő","gteq_all":"mindegyiknél nagyobb vagy egyenlő","in":"értéke","in_any":"értéke bármelyik","in_all":"értéke mindegyik","not_in":"nem ez az értéke","not_in_any":"értéke egyik sem","not_in_all":"értéke nem ezek az elemek","cont":"tartalmazza","cont_any":"bármelyiket tartalmazza","cont_all":"mindet tartalmazza","not_cont":"nem tartalmazza","not_cont_any":"egyiket sem tartalmazza","not_cont_all":"nem tartalmazza mindet","start":"így kezdődik","start_any":"bármelyikkel kezdődik","start_all":"ezekkel kezdődik","not_start":"nem így kezdődik","not_start_any":"nem ezek egyikével kezdődik","not_start_all":"nem ezekkel kezdődik","end":"így végződik","end_any":"bármelyikkel végződik","end_all":"ezekkel végződik","not_end":"nem úgy végződik","not_end_any":"nem ezek egyikével végződik","not_end_all":"nem ezekkel végződik","true":"igaz","false":"hamis","present":"létezik","blank":"üres","null":"null","not_null":"nem null"}},"active_admin":{"dashboard":"Vezérlőpult","dashboard_welcome":{"welcome":"Üdvözöljük az Active Admin felületén. Ez a vezérlőpult kezdőlapja","call_to_action":"Elemek hozzáadásához nézze meg a 'app/admin/dashboard.rb' fájlt"},"view":"Megtekintés","edit":"Szerkesztés","delete":"Törlés","delete_confirmation":"Biztosan törli ezt az elemet?","new_model":"Új %{model}","create_model":"%{model} létrehozása","edit_model":"%{model} módosítása","update_model":"%{model} módosítása","delete_model":"%{model} törlése","details":"%{model} részletei","cancel":"Mégsem","empty":"Üres","previous":"Előző","next":"Következő","download":"Letöltés:","has_many_new":"Új %{model} hozzáadása","has_many_delete":"Törlés","has_many_remove":"Eltávolít","filters":{"buttons":{"filter":"Szűrés","clear":"Feltételek törlése"},"predicates":{"contains":"Tartalmazza","equals":"Pontosan","starts_with":"kezdődik","ends_with":"végződik","greater_than":"Nagyobb, mint","less_than":"Kisebb, mint"}},"main_content":"Kérem, implementálja a %{model}#main_content metódust a tartalom megjelenítéséhez.","logout":"Kilépés","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Szűrők"},"pagination":{"empty":"Nincs több %{model}","one":"\u003Cb\u003EEgy\u003C/b\u003E %{model} megjelenítése","one_page":"\u003Cb\u003EAz összes (%{n} db)\u003C/b\u003E %{model} megjelenítése","multiple":"%{model} listájának megjelenítése, \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E/\u003Cb\u003E%{total}\u003C/b\u003E ","multiple_without_total":"%{model} listájának megjelenítése, \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E ","entry":{"one":"elem","other":"elem"}},"any":"Összes","blank_slate":{"content":"Még nincs létrehozva %{resource_name}.","link":"Létrehozás most"},"batch_actions":{"button_label":"Tömeges műveletek","delete_confirmation":"Biztosan törli ezeket a %{plural_model}? Később nem lehet visszavonni.","succesfully_destroyed":{"one":"1 %{model} sikeresen törölve","other":"%{count} %{plural_model} sikeresen törölve"},"selection_toggle_explanation":"(Kijelölés megfordítása)","link":"Létrehozás","action_label":"%{title} kiválasztva","labels":{"destroy":"Törlés"}},"comments":{"body":"Törzs","author":"Szerző","title":"Hozzászólás","add":"Új hozzászólás","resource":"Erőforrás","no_comments_yet":"Nincsenek hozzászólások.","title_content":"%{count} hozzászólás","errors":{"empty_text":"A hozzászólás nem lett mentve, a törzs nem lehet üres."}},"devise":{"login":{"title":"Bejelentkezés","remember_me":"Emlékezz rám","submit":"Belépés"},"reset_password":{"title":"Elfelejtette a jelszavát?","submit":"Visszaállítása a jelszót"},"change_password":{"title":"A jelszó módosítása","submit":"Jelszó módosítása"},"unlock":{"title":"Újraküldés unlock utasítások","submit":"Újraküldés unlock utasítások"},"links":{"sign_in":"Bejelentkezés","forgot_your_password":"Elfelejtette a jelszavát?","sign_in_with_omniauth_provider":"Jelentkezzen be a %{provider}"}}}},"zh":{"ransack":{"search":"搜索","predicate":"基于(predicate)","and":"并且","or":"或者","any":"任意","all":"所有","combinator":"条件组合(combinator)","attribute":"属性","value":"数值","condition":"条件","sort":"排序","asc":"升序","desc":"降序","predicates":{"eq":"等于","eq_any":"等于任意值","eq_all":"等于所有值","not_eq":"不等于","not_eq_any":"不等于任意值","not_eq_all":"不等于所有值","matches":"符合","matches_any":"符合任意条件","matches_all":"符合所有条件","does_not_match":"不符合","does_not_match_any":"符合任意条件","does_not_match_all":"不符合所有条件","lt":"小于","lt_any":"小于任意一个值","lt_all":"小于所有值","lteq":"小于等于","lteq_any":"小于等于任意一个值","lteq_all":"小于等于所有值","gt":"大于","gt_any":"大于任意一个值","gt_all":"大于所有值","gteq":"大于等于","gteq_any":"大于等于任意一个值","gteq_all":"大于等于所有值","in":"被包含","in_any":"被任意值包含","in_all":"被所有值包含","not_in":"不被包含","not_in_any":"不被任意值包含","not_in_all":"不被所有值包含","cont":"包含","cont_any":"包含任意一个值","cont_all":"包含所有值","not_cont":"不包含","not_cont_any":"不包含任意一个值","not_cont_all":"不包含所有值","start":"以改值开始","start_any":"以任意一个值开始","start_all":"以所有值开始","not_start":"不以改值开始","not_start_any":"不以任意一个值开始","not_start_all":"不以所有值开始","end":"以改值结尾","end_any":"以任意一个值结尾","end_all":"以所有值结尾","not_end":"不以改值结尾","not_end_any":"不以任意一个值结尾","not_end_all":"不以所有值结尾","true":"等于true","false":"等于false","present":"有值","blank":"为空","null":"是null","not_null":"不是null"}}},"cs":{"ransack":{"search":"vyhledávání","predicate":"predikát","and":"a","or":"nebo","any":"kteroukoliv","all":"každou","combinator":"kombinátor","attribute":"atribut","value":"hodnota","condition":"podmínka","sort":"řazení","asc":"vzestupné","desc":"sestupné","predicates":{"eq":"rovno","eq_any":"rovno kterékoliv","eq_all":"rovno všem","not_eq":"nerovno","not_eq_any":"nerovno kterékoliv","not_eq_all":"nerovno všem","matches":"odpovídá","matches_any":"odpovídá kterékoliv","matches_all":"odpovídá všem","does_not_match":"neodpovídá","does_not_match_any":"neodpovídá kterékoliv","does_not_match_all":"neodpovídá všem","lt":"menší než","lt_any":"menší než kterákoliv","lt_all":"menší než všechny","lteq":"menší nebo rovno než","lteq_any":"menší nebo rovno než kterákoliv","lteq_all":"menší nebo rovno než všechny","gt":"větší než","gt_any":"větší než kterákoliv","gt_all":"větší než všechny","gteq":"větší nebo rovno než","gteq_any":"větší nebo rovno než kterákoliv","gteq_all":"větší nebo rovno než všechny","in":"v","in_any":"v kterékoliv","in_all":"ve všech","not_in":"není v","not_in_any":"není v kterékoliv","not_in_all":"není ve všech","cont":"obsahuje","cont_any":"obsahuje kterékoliv","cont_all":"obsahuje všechny","not_cont":"neobsahuje","not_cont_any":"neobsahuje kteroukoliv","not_cont_all":"neobsahuje všechny","start":"začíná s","start_any":"začíná s kteroukoliv","start_all":"začíná se všemi","not_start":"nezačíná s","not_start_any":"nezačíná s kteroukoliv","not_start_all":"nezačíná se všemi","end":"končí s","end_any":"končí s kteroukoliv","end_all":"končí se všemi","not_end":"nekončí s","not_end_any":"nekončí s kteroukoliv","not_end_all":"nekončí se všemi","true":"je pravdivé","false":"není pravdivé","present":"je vyplněné","blank":"je prázdné","null":"je null","not_null":"není null"}},"active_admin":{"dashboard":"Úvod","dashboard_welcome":{"welcome":"Vítejte v Active Admin. Toto je nástěnka.","call_to_action":"Pro přidání sekcí nástěnky se podívejte do 'app/admin/dashboard.rb'"},"view":"Zobrazit","edit":"Upravit","delete":"Smazat","delete_confirmation":"Jste si jistí, že chcete tuto položku smazat?","new_model":"Vytvořit","create_model":"Vytvořit %{model}","edit_model":"Upravit","update_model":"Upravit %{model}","delete_model":"Smazat","details":"Detaily","cancel":"Zrušit","empty":"Prázdné","previous":"Předešlé","next":"Následující","download":"Stáhnout:","has_many_new":"Přidat nový","has_many_delete":"Odstranit","has_many_remove":"Odstranit","filters":{"buttons":{"filter":"Filtrovat","clear":"Vyčistit filtry"},"predicates":{"contains":"Obsahuje","equals":"Přesně","starts_with":"Začíná se","ends_with":"Končí","greater_than":"Větší než","less_than":"Menší než"}},"main_content":"Prosím implementujte %{model}#main_content pro zobrazení obsahu.","logout":"Odhlášení","powered_by":"%{active_admin} %{version}","sidebars":{"filters":"Filtry"},"pagination":{"empty":"Nenalezen.","one":"Zobrazena \u003Cb\u003E1\u003C/b\u003E položka","one_page":"Počet zobrazených položek %{n}","multiple":"\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E z \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"položka","few":"položky","other":"položky"}},"any":"Kterákoliv","blank_slate":{"content":"Zatím zde není žádný obsah.","link":"Vytvořit"},"batch_actions":{"button_label":"Hromadné akce","delete_confirmation":"Jste si jisti, že chcete odstranit tyto %{plural_model}?","succesfully_destroyed":{"one":"Úspěšně smazán %{model}","few":"Úspěšně smazány %{count} %{plural_model}","other":"Úspěšně smazáno %{count} %{plural_model}"},"selection_toggle_explanation":"(Změnit výběr)","link":"Vytvořit","action_label":"%{title}","labels":{"destroy":"Vymazat"}},"comments":{"body":"Tělo","author":"Autor","title":"Komentář","add":"Přidat komentář","resource":"Zdroj","no_comments_yet":"Žádný komentář","title_content":"Komentáře administrátorů (%{count})","errors":{"empty_text":"Komentář nebyl uložen, je prázdný."}},"devise":{"login":{"title":"Přihlášení","remember_me":"Zapamatovat si mě","submit":"Přihlásit"},"reset_password":{"title":"Zapomněli jste heslo?","submit":"Obnovit heslo"},"change_password":{"title":"Změnit heslo","submit":"Změnit své heslo"},"links":{"sign_in":"Přihlásit se","forgot_your_password":"Zapomněli jste heslo?","sign_in_with_omniauth_provider":"Přihlásit se %{provider}"}}}},"fr":{"ransack":{"search":"recherche","predicate":"prédicat","and":"et","or":"ou","any":"au moins un","all":"tous","combinator":"combinateur","attribute":"attribut","value":"valeur","condition":"condition","sort":"tri","asc":"ascendant","desc":"descendant","predicates":{"eq":"égal à","eq_any":"égal à au moins un","eq_all":"égal à tous","not_eq":"différent de","not_eq_any":"différent d'au moins un","not_eq_all":"différent de tous","matches":"correspond à","matches_any":"correspond à au moins un","matches_all":"correspond à tous","does_not_match":"ne correspond pas à","does_not_match_any":"ne correspond pas à au moins un","does_not_match_all":"ne correspond à aucun","lt":"inférieur à","lt_any":"inférieur à au moins un","lt_all":"inférieur à tous","lteq":"inférieur ou égal à","lteq_any":"inférieur ou égal à au moins un","lteq_all":"inférieur ou égal à tous","gt":"supérieur à","gt_any":"supérieur à au moins un","gt_all":"supérieur à tous","gteq":"supérieur ou égal à","gteq_any":"supérieur ou égal à au moins un","gteq_all":"supérieur ou égal à tous","in":"inclus dans","in_any":"inclus dans au moins un","in_all":"inclus dans tous","not_in":"non inclus dans","not_in_any":"non inclus dans au moins un","not_in_all":"non inclus dans tous","cont":"contient","cont_any":"contient au moins un","cont_all":"contient tous","not_cont":"ne contient pas","not_cont_any":"ne contient pas au moins un","not_cont_all":"ne contient pas tous","start":"commence par","start_any":"commence par au moins un","start_all":"commence par tous","not_start":"ne commence pas par","not_start_any":"ne commence pas par au moins un","not_start_all":"ne commence pas par tous","end":"finit par","end_any":"finit par au moins un","end_all":"finit par tous","not_end":"ne finit pas par","not_end_any":"ne finit pas par au moins un","not_end_all":"ne finit pas par tous","true":"est vrai","false":"est faux","present":"est présent","blank":"est blanc","null":"est null","not_null":"n'est pas null"}},"active_admin":{"dashboard":"Tableau de Bord","dashboard_welcome":{"welcome":"Bienvenue dans Active Admin. Ceci est la page par défaut.","call_to_action":"Pour ajouter des sections au tableau de bord, consultez 'app/admin/dashboard.rb'"},"view":"Voir","edit":"Modifier","delete":"Supprimer","delete_confirmation":"Êtes-vous certain de vouloir supprimer ceci ?","new_model":"Nouveau %{model}","create_model":"Nouveau %{model}","edit_model":"Modifier %{model}","update_model":"Modifier %{model}","delete_model":"Supprimer %{model}","details":"Détails de %{model}","cancel":"Annuler","empty":"Vide","previous":"Précédent","next":"Suivant","download":"Télécharger:","has_many_new":"Ajouter un nouveau %{model}","has_many_delete":"Supprimer","has_many_remove":"Enlever","filters":{"buttons":{"filter":"Filtrer","clear":"Supprimer les filtres"},"predicates":{"contains":"Contient","equals":"Egal à","starts_with":"Commence par","ends_with":"Se termine par","greater_than":"Plus grand que","less_than":"Plus petit que"}},"main_content":"Veuillez implémenter %{model}#main_content pour afficher le contenu.","logout":"Déconnexion","powered_by":"Propulsé par %{active_admin} %{version}","sidebars":{"filters":"Filtres"},"pagination":{"empty":"Aucun %{model} trouvé","one":"Affichage de \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Affichage de \u003Cb\u003Etous les %{n}\u003C/b\u003E %{model}","multiple":"Affichage de %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E sur un total de \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Affichage de %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"entrée","other":"entrées"}},"any":"N'importe lequel","blank_slate":{"content":"Il n'y a pas encore de %{resource_name}.","link":"Créez en un"},"batch_actions":{"button_label":"Actions groupées","delete_confirmation":"Êtes-vous sur de vouloir supprimer ces %{plural_model}? Cette action est irréversible.","succesfully_destroyed":{"one":"1 %{model} supprimé","other":"%{count} %{plural_model} supprimés"},"selection_toggle_explanation":"(Inverser la sélection)","link":"Créer un","action_label":"%{title} les éléments sélectionnés","labels":{"destroy":"Supprimer"}},"comments":{"body":"Corps","author":"Auteur","title":"Commentaire","add":"Ajouter un commentaire","resource":"Ressource","no_comments_yet":"Aucun commentaire actuellement","title_content":"Commentaires (%{count})","errors":{"empty_text":"Le commentaire n'a pas été enregistré puisque le texte était vide."}},"devise":{"login":{"title":"login","remember_me":"Se souvenir de moi","submit":"login"},"reset_password":{"title":"Vous avez oublié votre mot de passe?","submit":"Réinitialiser mon mot de passe"},"change_password":{"title":"Changez votre mot de passe","submit":"Changer mon mot de passe"},"links":{"sign_in":"Connectez-vous","forgot_your_password":"Vous avez oublié votre mot de passe?","sign_in_with_omniauth_provider":"Connectez-vous avec %{provider}"}}}},"de":{"editor":{"blank_entry":{"header":"Dies ist ein leerer Pageflow","intro":"Pageflows bestehen aus Kapiteln und Seiten. In der Seitenleiste rechts findest Du die Gliederung.","create_chapter":"Klicke jetzt auf \u003Cem\u003ENeues Kapitel\u003C/em\u003E, um ein erstes Kapitel zu erstellen.","create_page":"Klicke dann auf \u003Cem\u003ENeue Seite\u003C/em\u003E, um dem Kapitel eine erste Seite hinzuzufügen.","edit_page":"Klicke auf eine Seite, um ihren Inhalt zu bearbeiten.","outro":"Hier siehst Du dann eine Vorschau deines Pageflows."},"quotas":{"loading":"Bitte warten..."},"configuration_editor":{"tabs":{"general":"Allgemein","files":"Dateien","options":"Optionen","links":"Verweise","widgets":"Erscheinungsbild","social":"Social"}},"files":{"tabs":{"image_files":"Bilder","video_files":"Videos","audio_files":"Audios"},"stages":{"uploading":{"pending":"Noch nicht hochgeladen.","active":"Wird hochgeladen.","finished":"Erfolgreich hochgeladen.","failed":"Fehler beim hochladen."},"uploading_to_s3":{"pending":"Noch nicht zu S3 übertragen.","active":"Wird zu S3 übertragen.","finished":"Erfolgreich zu S3 übertragen.","failed":"Fehler beim übertragen zu S3."},"fetching_meta_data":{"pending":"Metadaten noch nicht abgerufen.","active":"Metadaten werden abgerufen.","finished":"Metadaten erfolgreich abgerufen.","failed":"Fehler beim Abrufen der Metadaten."},"encoding":{"pending":"Noch nicht encodiert.","action_required":"Bestätigung erforderlich.","active":"Encoding läuft.","finished":"Erfolgreich encodiert.","failed":"Fehler beim Encoding."},"processing":{"pending":"Noch nicht verarbeitet.","active":"Verarbeitung läuft.","finished":"Erfolgreich verarbeitet.","failed":"Fehler beim Verarbeiten."}}},"inline_help":{"pageflow/page":{"invert":"Dunkle Schrift und helle Schattierung anzeigen.","gradient_opacity":"Wählen Sie die Intensität des Farbverlaufs so, dass ein ausreichender Kontrast zwischen Text und Hintegrund gewährleistet ist.","description":"Dieser Text wird auf der Übersichtseite angezeigt, wenn Sie den Mauszeiger über dem Vorschaubild einer Seite platzieren.","additional_title":"Die Infobox wird über den Steuerelementen zum Starten und Stoppen der Wiedegabe angezeigt.","text":"Dieser ist der Textbereich der Seite.","thumbnail_image_id":"Dieses Bild wird in der Navigationsleiste und anderen Verweisen auf die Seite gezeigt.","mobile_poster_image_id":"Dieses Bild wird in der Mobilvariante der Seite als Posterbild gezeigt."},"pageflow/entry":{"title":"Vom Browser angezeigter Titel der Seite.","summary":"Zusammenfassung die an Soziale Netzwerke weitergeben wird.","credits":"Text wird zusammen mit dem Impressumsverweis angezeigt.","manual_start":"Besucher muss den Start des Beitrags durch einen Klick bestätigen.","home_button_enabled":"Link zu einer Übersichtsseite anzeigen.","home_button_enabled_disabled":"Diese Funktion steht in diesem Theme nicht zur Verfügung.","emphasize_chapter_beginning":"Die erste Seite eines jeden Kapitels wird hervorgehoben.","emphasize_new_pages":"Seit dem letzten Besuch neu hinzugefügte Seiten werden besonders gekennzeichnet.","home_url":"URL der Übersichtseite. Leer lassen, um Standard zu übernehmen.","home_url_disabled":"Diese Funktion steht in diesem Theme nicht zur Verfügung."},"pageflow/chapter":{"title":"Wird auf der Übersichtsseite angezeigt."}}},"formtastic":{"yes":"Ja","no":"Nein","create":"%{model} speichern","update":"%{model} speichern","submit":"%{model} speichern","cancel":"Abbrechen","reset":"%{model} zurücksetzen","required":"erforderlich"},"invalid_transition":"Der gewünschte Status Wechsel ist nicht erlaubt.","unauthorized":"Sie sind nicht berechtigt diese Seite anzuzeigen.","errors":{"messages":{"expired":"ist abgelaufen, bitte neu anfordern","not_found":"nicht gefunden","already_confirmed":"wurde bereits bestätigt","not_locked":"ist nicht gesperrt","not_saved":{"one":"Registrierung kann nicht abgeschlossen werden. Ein Fehler.","other":"Registrierung kann nicht abgeschlossen werden. %{count} Fehler."},"accepted":"muss akzeptiert werden","blank":"muss ausgefüllt werden","confirmation":"stimmt nicht mit der Bestätigung überein","empty":"muss ausgefüllt werden","equal_to":"muss genau %{count} sein","even":"muss gerade sein","exclusion":"ist nicht verfügbar","greater_than":"muss größer als %{count} sein","greater_than_or_equal_to":"muss größer oder gleich %{count} sein","inclusion":"ist kein gültiger Wert","invalid":"ist nicht gültig","invalid_date":"ist kein gültiges Datum","less_than":"muss kleiner als %{count} sein","less_than_or_equal_to":"muss kleiner oder gleich %{count} sein","not_a_number":"ist keine Zahl","not_an_integer":"muss ganzzahlig sein","odd":"muss ungerade sein","record_invalid":"Gültigkeitsprüfung ist fehlgeschlagen: %{errors}","taken":"ist bereits vergeben","too_long":"ist zu lang (nicht mehr als %{count} Zeichen)","too_short":"ist zu kurz (nicht weniger als %{count} Zeichen)","wrong_length":"hat die falsche Länge (muss genau %{count} Zeichen haben)","readonly":"ist schreibgeschützt"},"format":"%{attribute} %{message}","template":{"body":"Bitte überprüfen Sie die folgenden Felder:","header":{"one":"Konnte %{model} nicht speichern: ein Fehler.","other":"Konnte %{model} nicht speichern: %{count} Fehler."}}},"devise":{"failure":{"already_authenticated":"Du bist bereits angemeldet.","unauthenticated":"Du musst dich anmelden oder registrieren, bevor du fortfahren kannst.","unconfirmed":"Du musst deinen Account bestätigen, bevor du eigenes Bildmaterial hochladen oder andere Bilder und Videos bewerten kannst.","locked":"Dein Account ist für einige Minuten gesperrt, da das Passwort zu oft falsch eingegeben wurde.","invalid":"Ungültige Anmeldedaten. Bitte überprüfe, ob du dich beim Passwort oder Benutzernamen vertippt hast.","invalid_token":"Der Anmelde-Token ist ungültig.","timeout":"Deine Sitzung ist abgelaufen, bitte melde Dich erneut an.","inactive":"Dein Account ist nicht aktiv.","not_found_in_database":"Es wurde kein Benutzer mit diesen Anmeldedaten gefunden.","admin_user":{"invalid":"Benutzername oder Kennwort nicht korrekt.","unauthenticated":"Bitte melden Sie sich als Administrator an."}},"sessions":{"signed_in":"Erfolgreich angemeldet.","signed_out":"Erfolgreich abgemeldet.","new":{"sign_in_with_facebook":"Mit Facebook anmelden","sign_in_with_google":"Mit Google anmelden"},"admin_user":{"signed_in":"Erfolgreich als Administrator angemeldet."}},"passwords":{"send_instructions":"Du erhältst in Kürze eine E-Mail mit der Anleitung, wie das Passwort zurückgesetzt werden kann.","updated":"Dein Passwort wurde geändert. Du bist jetzt angemeldet.","updated_not_active":"Dein Passwort wurde geändert.","send_paranoid_instructions":"Wenn Deine E-Mail-Adresse in unserer Datenbank existiert, erhältst du in Kürze eine E-Mail mit der Anleitung, wie das Passwort zurückgesetzt werden kann."},"confirmations":{"send_instructions":"Du erhältst in wenigen Minuten eine E-Mail, mit der du deine Registrierung bestätigen kannst.","send_paranoid_instructions":"Falls deine E-Mail-Adresse in unserer Datenbank existiert, erhältst du in Kürze eine E-Mail mit der du die Registrierung bestätigen kannst.","confirmed":"Vielen Dank für die Bestätigung deiner E-Mail-Adresse."},"registrations":{"signed_up":"Du hast dich erfolgreich registriert und bist nun angemeldet.","signed_up_but_unconfirmed":"Du hast dich erfolgreich registriert. Wir konnten dich aber noch nicht anmelden, da dein Account noch nicht bestätigt ist. Du erhältst in Kürze eine E-Mail mit der Anleitung, wie du deinen Account freischalten kannst.","signed_up_but_inactive":"Du hast dich erfolgreich registriert. Wir konnten dich aber noch nicht anmelden, da dein Account inaktiv ist.","signed_up_but_locked":"Du hast dich erfolgreich registriert. Wir konnten dich aber noch nicht anmelden, da dein Account gesperrt ist.","updated":"Deine Daten wurden aktualisiert.","update_needs_confirmation":"Deine Daten wurden aktualisiert, aber du musst deine neue E-Mail-Adresse bestätigen. Du erhältst in wenigen Minuten eine E-Mail, mit der du die Änderung deiner E-Mail-Adresse abschließen kannst.","destroyed":"Dein Account wurde gelöscht.","new":{"registration":"Registrierung","submit":"Daten speichern","sign_up_with_facebook":"Mit Facebook anmelden","sign_up_with_google":"Mit Google anmelden","cancel_oauth_sign_up":"Abbrechen"},"edit":{"userdata":"Benutzerdaten","change_password":"Passwort ändern","delete_account":"Account löschen","are_you_sure":"Bist du sicher?","submit":"Daten speichern"}},"unlocks":{"send_instructions":"Du erhältst in Kürze eine E-Mail mit der Anleitung, wie du deinen Account entsperren kannst.","unlocked":"Dein Account wurde entsperrt. Du bist jetzt angemeldet.","send_paranoid_instructions":"Falls deine E-Mail-Adresse in unserer Datenbank existiert, erhältst du in wenigen Minuten eine E-Mail mit der Anleitung, wie du deinen Account entsperren kannst."},"omniauth_callbacks":{"success":"Du hast dich erfolgreich mit deinem %{kind}-Account angemeldet.","failure":"Du kannst nicht mit deinem %{kind}-Account angemeldet werden, weil \"%{reason}\"."},"mailer":{"reset_password_instructions":{"subject":"Anleitung um dein Passwort zurückzusetzen"},"unlock_instructions":{"subject":"Anleitung um deinen Account freizuschalten"}},"oauth_providers":{"google_oauth2":"Google","facebook":"Facebook"}},"active_admin":{"dashboard":"Übersicht","dashboard_welcome":{"welcome":"Willkommen in Active Admin. Dies ist die Standard-Übersichtsseite.","call_to_action":"Siehe 'app/admin/dashboards.rb', um Übersichts-Bereiche hinzuzufügen."},"view":"Anzeigen","edit":"Bearbeiten","delete":"Löschen","undelete":"Wiederherstellen","delete_confirmation":"Wollen Sie dieses Element wirklich löschen?","new_model":"%{model} erstellen","create_model":"%{model} erstellen","edit_model":"%{model} bearbeiten","delete_model":"%{model} löschen","details":"%{model} Details","cancel":"Abbrechen","empty":"Leer","previous":"Zurück","next":"Weiter","download":"Herunterladen:","has_many_new":"%{model} hinzufügen","has_many_delete":"Löschen","filter":"Filtern","clear_filters":"Filter entfernen","search_field":"Durchsuche %{field}","equal_to":"Gleich","greater_than":"Größer als","less_than":"Kleiner als","main_content":"Bitte implementieren Sie %{model}#main_content, um Inhalte anzuzeigen.","logout":"Abmelden","sidebars":{"filters":"Filter","folders":"Ordner"},"pagination":{"empty":"Keine %{model} gefunden","one":"Zeige \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Zeige \u003Cb\u003Ealle %{n}\u003C/b\u003E %{model}","multiple":"Zeige %{model} \u003Cb\u003E%{from}\u0026nbsp;–\u0026nbsp;%{to}\u003C/b\u003E von \u003Cb\u003E%{total}\u003C/b\u003E","entry":{"one":"Eintrag","other":"Einträge"},"multiple_without_total":"Zeige %{model} \u003Cb\u003E%{from}\u0026nbsp;–\u0026nbsp;%{to}\u003C/b\u003E"},"any":"Alle","blank_slate":{"content":"Es gibt noch keine %{resource_name}.","link":"Erstellen"},"comments":{"body":"Inhalt","author":"Autor","title":"Kommentar","resource":"Resource","add":"Kommentar hinzufügen","no_comments_yet":"Es gibt noch keine Kommentare.","title_content":"Kommentare (%{count})","errors":{"empty_text":"Der Kommentar wurde nicht gespeichert, da der Text fehlt."},"resource_type":"Res­sour­cen-Typ","author_type":"Autor-Typ"},"devise":{"login":{"title":"Login","remember_me":"erinnere dich an mich","submit":"Login"},"reset_password":{"title":"Passwort vergessen?","submit":"Mein Passwort zurücksetzen"},"change_password":{"title":"Ändern Sie Ihr Passwort","submit":"Mein Passwort ändern"},"links":{"sign_in":"Anmeldung","forgot_your_password":"Passwort vergessen?","sign_in_with_omniauth_provider":"Anmeldung mit %{provider}"}},"scopes":{"frozen":"Alle","publications":"Nur Veröffentlichungen","publications_and_user_snapshots":"Nur Veröffentlichungen/Sicherungen"},"access_denied":{"message":"Sie sind nicht berechtigt diese Seite anzuzeigen."},"update_model":"%{model} bearbeiten","has_many_remove":"Entfernen","filters":{"buttons":{"filter":"Filtern","clear":"Filter entfernen"},"predicates":{"contains":"Enthält","equals":"Gleich","starts_with":"Beginnt mit","ends_with":"Endet mit","greater_than":"Größer als","less_than":"Kleiner als"}},"powered_by":"Powered by %{active_admin} %{version}","batch_actions":{"button_label":"Stapelverarbeitung","delete_confirmation":"Sind Sie sicher dass sie diese %{plural_model} löschen wollen? Dies kann nicht rückgängig gemacht werden","succesfully_destroyed":{"one":"Erfolgreich 1 %{model} gelöscht","other":"Erfolgreich %{count} %{plural_model} gelöscht"},"selection_toggle_explanation":"(Auswahl umschalten)","link":"erstellen","action_label":"%{title} ausgewählte","labels":{"destroy":"Lösche"}}},"activerecord":{"attributes":{"admin_user":{"id":"ID","email":"E-Mail","encrypted_Password":"Verschlüsseltes Passwort","reset_password_token":"Passwort Reset Token","reset_password_sent_at":"Passwort Reset Anweisungen gesendet am","remember_created_at":"Passwort merken seit","sign_in_count":"Anzahl Logins","current_sign_in_at":"Aktuell angemeldet seit","last_sign_in_at":"Letzter Login am","current_sign_in_ip":"Aktuelle IP-Adresse","last_sign_in_ip":"Letzte IP-Adresse","created_at":"Erstellt am","updated_at":"Aktualisiert am"},"pageflow/account":{"name":"Name","default_file_rights":"Standard Urheber","default_theming":"Standard Theming","landing_page_name":"Einstiegsseite","created_at":"Erstellt am"},"user":{"email":"E-Mail-Adresse","unconfirmed_email":"Noch nicht bestätigte E-Mail-Adresse","full_name":"Name","first_name":"Vorname","last_name":"Nachname","current_password":"Aktuelles Passwort","password":"Passwort","password_confirmation":"Passwort wiederholen","created_at":"Registriert seit","last_sign_in_at":"Zuletzt angemeldet am","current_sign_in_at":"Aktuell angemeldet seit","sign_in_count":"# Anmeldungen","suspended?":"Gesperrt","admin?":"Administrator","admin":"Administrator","entry":"Beitrag","membership":"Mitgliedschaft","role":"Rolle","account":"Konto"},"pageflow/entry":{"title":"Titel","summary":"Zusammenfassung","credits":"Credits","created_at":"Erstellt am","updated_at":"Geändert am","published?":"Veröffentlichungstatus","url":"Permalink","account":"Konto","manual_start":"Multimedia Hinweis vor dem Start anzeigen","home_url":"Home-Button URL","home_button_enabled":"Home-Button anzeigen","emphasize_chapter_beginning":"Kapitelanfang hervorheben","emphasize_new_pages":"Neue Seiten hervorheben","share_image_id":"Social Sharing Bild"},"pageflow/folder":{"account":"Konto","name":"Name"},"pageflow/membership":{"user":"Redakteur","entry":"Beitrag"},"pageflow/revision":{"created_at":"Erstellt am","updated_at":"Geändert am","published_at":"Publiziert am","published_until":"Publiziert bis","creator":"Erstellt von","frozen_at":"Stand vom","created_with":"Erstellt durch"},"pageflow/chapter":{"title":"Titel"},"pageflow/page":{"template":"Seitentyp","text":"Text","tagline":"Tagline","title":"Titel","subtitle":"Untertitel","description":"Beschreibung für Übersicht","additional_title":"Titel für Infobox","additional_description":"Beschreibung für Infobox","gradient_opacity":"Intensität der Abblendung","invert":"Farben invertieren","transition":"Übergangseffekt","display_in_navigation":"In Navigationsleiste anzeigen","allow_full_screen":"Vollbild Anzeige erlauben","autoplay":"Automatische Wiedergabe","background_image_id":"Hintergrundbild","thumbnail_image_id":"Thumbnail","background_video_id":"Hintergrundvideo","video_file_id":"Video","audio_file_id":"Audio","poster_image_id":"Posterbild","mobile_poster_image_id":"Posterbild (mobil)","linked_page_ids":"Seiten verknüpfen","linked_pages_layout":"Hervorgehobenes Element","hide_title":"Titel ausblenden","text_position":"Textposition"},"pageflow/image_file":{"dimensions":"Maße"},"pageflow/video_file":{"format":"Format","dimensions":"Maße","duration":"Länge"},"pageflow/audio_file":{"format":"Format","duration":"Länge"},"pageflow/theming":{"cname":"CNAME","theme_name":"Theme","imprint_link_label":"Impressum-Link Text","imprint_link_url":"Impressum-Link URL","copyright_link_label":"Copyright-Link Text","copyright_link_url":"Copyright-Link URL","home_url":"Redirect URL","home_button_enabled_by_default":"Home-Button in neuen Beiträgen anzeigen"}},"models":{"admin_user":{"one":"Administrator","other":"Administratoren"},"revision":{"one":"Revision","other":"Revisionen"},"user":{"one":"Nutzer","other":"Nutzer"},"pageflow/account":{"one":"Konto","other":"Konten"},"pageflow/membership":{"one":"Mitgliedschaft","other":"Mitgliedschaften"},"pageflow/entry":{"one":"Beitrag","other":"Beiträge"},"pageflow/folder":{"one":"Ordner","other":"Ordner"},"pageflow/revision":{"one":"Revision","other":"Revisionen"},"pageflow/theming":{"one":"Theming","other":"Themings"},"account":{"one":"Konto","other":"Konten"},"membership":{"one":"Mitgliedschaft","other":"Mitgliedschaften"},"entry":{"one":"Beitrag","other":"Beiträge"},"folder":{"one":"Ordner","other":"Ordner"},"theming":{"one":"Theming","other":"Themings"}},"errors":{"messages":{"validation":"muss mindestens 5 Zeichen lang sein und eine Ziffer beinhalten.","accepted":"muss akzeptiert werden","blank":"muss ausgefüllt werden","confirmation":"stimmt nicht mit der Bestätigung überein","empty":"muss ausgefüllt werden","equal_to":"muss genau %{count} sein","even":"muss gerade sein","exclusion":"ist nicht verfügbar","greater_than":"muss größer als %{count} sein","greater_than_or_equal_to":"muss größer oder gleich %{count} sein","inclusion":"ist kein gültiger Wert","invalid":"ist nicht gültig","invalid_date":"ist kein gültiges Datum","less_than":"muss kleiner als %{count} sein","less_than_or_equal_to":"muss kleiner oder gleich %{count} sein","not_a_number":"ist keine Zahl","not_an_integer":"muss ganzzahlig sein","odd":"muss ungerade sein","record_invalid":"Gültigkeitsprüfung ist fehlgeschlagen: %{errors}","taken":"ist bereits vergeben","too_long":"ist zu lang (nicht mehr als %{count} Zeichen)","too_short":"ist zu kurz (nicht weniger als %{count} Zeichen)","wrong_length":"hat die falsche Länge (muss genau %{count} Zeichen haben)"}},"values":{"pageflow/page":{"template":{"background_image":"Hintergrund-Bild","background_video":"Hintergrund-Video","video":"Video","audio":"Audio","audio_loop":"Hintergrund-Audio","internal_links":"Seiten-Verweise"},"transition":{"scroll":"Scrollen","fade":"Überblenden"},"linked_pages_layout":{"default":"(Kein)","hero_top_left":"Links oben","hero_top_right":"Rechts oben"},"text_position":{"left":"Links","right":"Rechts"}}}},"views":{"pagination":{"truncate":"...","first":"|\u003C","previous":"\u003C\u003C","next":"\u003E\u003E","last":"\u003E|"}},"pageflow":{"editor":{"background_positioning":{"title":"Bildauschnitt anpassen","help":"Stellen Sie ein, welcher Teil des Bildes beim Zuschneiden sichtbar bleiben soll.","preview_title":"Vorschau","previews":{"banner":"Banner","ratio16to9":"16:9 Landscape","ratio4to3":"4:3 Landscape","ratio16to9Portrait":"16:9 Portrait","ratio4to3Portrait":"4:3 Portrait"}},"errors":{"unknown":"Ein unbekannter Fehler ist aufgetreten.","UnmatchedUploadError":"Der Dateityp wird nicht unterstützt."}},"audio":{"open":"Audio anhören"},"ui":{"select_input_view":{"placeholder":"Standard (%{text})","blank":"(Kein)"}},"widgets":{"none":"(Kein)","roles":{"navigation":"Navigationsleiste","mobile_navigation":"Mobile Navigation","analytics":"Zählpixel"},"type_names":{"default_navigation":"Navigationsleiste mit Thumbnails","default_mobile_navigation":"Navigationsmenü mit Thumbnails"},"share_menu":{"entry":"Diesen Beitrag","current_page":"Diese Seite"}},"user_mailer":{"invitation":{"subject":"Ihre Pageflow Einladung"}},"admin":{"resource_tabs":{"members":"Mitglieder","revisions":"Revisionen","entries":"Beiträge","users":"Benutzer"}}},"quotas":{"exhausted":"Quota verbraucht."},"admin":{"themings":{"cname_hint":"Verwendet für Social Network Sharing.","show":"Anzeigen","remove_logo":"Logo entfernen","name":"%{account_name}"},"users":{"delete_me":{"warning_html":"Geben Sie Ihr aktuelles Passwort ein, um zu bestätigen, dass Ihr Benutzerkonto wirklich löschen möchten. \u003Cb\u003EAlle Ihre Daten gehen dabei verloren. Der Vorgang kann nicht rückgangig gemacht werden.\u003C/b\u003E","delete_label":"Benutzerkonto löschen","cancel_label":"Nein, mein Benutzerkonto nicht löschen"},"me":{"change_password_hint":"Freilassen um bisheriges Passwort beizubehalten.","delete_account_hint":"Sie möchten die Anwendung nicht mehr nutzen?","delete_account":"Benutzerkonto löschen","updated":"Ihr Profil wurde aktualisiert.","deleted":"Ihr Benutzerkonto wurde gelöscht."},"invite_user":"Benutzer einladen","edit":"Bearbeiten","email_invitation_hint":"Dem Benutzer wird eine E-Mail mit Anweisungen zum Festelegen eines Passworts gesendet.","resend_invitation":"Einladung erneut verschicken","resent_invitation":"Der Benutzer wurde erneut per E-Mail eingeladen.","suspend":"Sperren","suspended":"Der Benutzer wurde gesperrt. Er kann sich nun nicht mehr anmelden.","unsuspend":"Entsperren","unsuspended":"Der Benutzer wurde entsperrt. Er kann sich nun wieder anmelden.","delete":"Löschen","confirm_delete":"Soll der Benutzer wirklich gelöscht werden. Alle persönlichen Daten des Benutzers gehen verloren. Dieser Vorgang kann nicht rückgangig gemacht werden.","deleted":"Der Benutzer wurde gelöscht.","role_hint":{"admin":"Konto Administratoren können Benutzer und Beiträge des eigenen Kontos verwalten. System Admisitratoren haben Vollzugriff auf alle Konten.","other":"Konto Administratoren können Benutzer und Beiträge verwalten."},"add_entry":"Eintrag hinzufügen","add":"Benutzer hinzufügen","empty":"Keine Beiträge assoziiert. Fügen Sie dem ausgewählten Benutzer Beiträge hinzu.","none":"Sie haben keine Beiträge.","roles":{"editor":"Redakteur","account_manager":"Konto Administrator","admin":"System Administrator"}},"folders":{"all":"Alle","edit":"Bearbeiten","destroy":"Löschen","confirm_destroy":"Ordner wirklick löschen? Beiträge bleiben erhalten."},"accounts":{"no_members":"Keine Benutzer","no_entries":"Keine Beiträge"},"revisions":{"published_until_hint":"Freilassen, um Beitrag ungebrenzt zu veröffentlichen."},"entries":{"entries":"Beiträge","title_hint":"Dieses Feld bestimmt die URL, unter der der Beitrag öffentlich erreichbar ist.","editor":"Editor","remove":"Entfernen","edit":"Bearbeiten","depublish":"Beitrag depublizieren","confirm_depublish":"Soll der Beitrag wirklich depubliziert werden?","show":"Anzeigen","restore":"Wiederherstellen","confirm_restore":"Soll der Beitrag wirklich auf den Stand dieser Revision zurückgesetzt werden? Vor dem Zurücksetzen wird eine automatische Sicherung des aktuellen Standes erstellt.","show_public":"Öffentlich","preview":"Vorschau","members":"Redakteure","no_members":"Es sind keine Redakteure zugeordnet.","no_revisions":"Bisher keine Revisionen","edit_revision":"Ändern","revision_created_with":{"publish":"Veröffentlichung","restore":"Auto-Sicherung","auto":"Auto-Sicherung","user":"Sicherung"},"revision_created_with_hint":{"publish":"Dieser Stand des Beitrags wurde veröffentlicht","restore":"Dieser Stand wurde gesichert bevor eine älteren Revision des Beitrags wiederhergestellt wurde","auto":"Dieser Stand wurde automatisch gesichert","user":"Dieser Stand wurde durch einen Benutzer gesichert"},"published_revision_legend":"Aktuell Veröffentlichter Stand","snapshot":"Aktuellen Stand sichern","published_until":"Veröffentlicht bis %{published_until}","published_forever":"Veröffentlicht","forever":"(unbegrenzt)","not_published":"Nicht veröffentlicht","add_folder":"Ordner hinzufügen","edit_config":"Konfiguration ändern","remove_logo":"Logo löschen"}},"date":{"abbr_day_names":["So","Mo","Di","Mi","Do","Fr","Sa"],"abbr_month_names":[null,"Jan","Feb","Mär","Apr","Mai","Jun","Jul","Aug","Sep","Okt","Nov","Dez"],"day_names":["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"],"formats":{"default":"%d.%m.%Y","long":"%e. %B %Y","short":"%e. %b"},"month_names":[null,"Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],"order":["day","month","year"]},"datetime":{"distance_in_words":{"about_x_hours":{"one":"etwa eine Stunde","other":"etwa %{count} Stunden"},"about_x_months":{"one":"etwa ein Monat","other":"etwa %{count} Monate"},"about_x_years":{"one":"etwa ein Jahr","other":"etwa %{count} Jahre"},"almost_x_years":{"one":"fast ein Jahr","other":"fast %{count} Jahre"},"half_a_minute":"eine halbe Minute","less_than_x_minutes":{"one":"weniger als eine Minute","other":"weniger als %{count} Minuten"},"less_than_x_seconds":{"one":"weniger als eine Sekunde","other":"weniger als %{count} Sekunden"},"over_x_years":{"one":"mehr als ein Jahr","other":"mehr als %{count} Jahre"},"x_days":{"one":"ein Tag","other":"%{count} Tage"},"x_minutes":{"one":"eine Minute","other":"%{count} Minuten"},"x_months":{"one":"ein Monat","other":"%{count} Monate"},"x_seconds":{"one":"eine Sekunde","other":"%{count} Sekunden"}},"prompts":{"day":"Tag","hour":"Stunden","minute":"Minuten","month":"Monat","second":"Sekunden","year":"Jahr"}},"helpers":{"select":{"prompt":"Bitte wählen"},"submit":{"create":"%{model} erstellen","submit":"%{model} speichern","update":"%{model} aktualisieren"}},"number":{"currency":{"format":{"delimiter":".","format":"%n %u","precision":2,"separator":",","significant":false,"strip_insignificant_zeros":false,"unit":"€"}},"format":{"delimiter":".","precision":2,"separator":",","significant":false,"strip_insignificant_zeros":false},"human":{"decimal_units":{"format":"%n %u","units":{"billion":{"one":"Milliarde","other":"Milliarden"},"million":"Millionen","quadrillion":{"one":"Billiarde","other":"Billiarden"},"thousand":"Tausend","trillion":"Billionen","unit":""}},"format":{"delimiter":"","precision":1,"significant":true,"strip_insignificant_zeros":true},"storage_units":{"format":"%n %u","units":{"byte":{"one":"Byte","other":"Bytes"},"gb":"GB","kb":"KB","mb":"MB","tb":"TB"}}},"percentage":{"format":{"delimiter":""}},"precision":{"format":{"delimiter":""}}},"support":{"array":{"last_word_connector":" und ","two_words_connector":" und ","words_connector":", "}},"time":{"am":"vormittags","formats":{"default":"%d.%m.%Y, %H:%M","long":"%d.%m.%Y, %H:%M","short":"%d. %B %Y, %H:%M Uhr","date":"%d.%m.%Y"},"pm":"nachmittags"},"edit_locks":{"required":"Die Aktion kann nicht durchgeführt werden, da der Beitrag gerade in einem Editor geöffnet ist.","required_but_held_by_other_user":"Die Aktion kann nicht durchgeführt werden, da der Beitrag gerade von einem anderen Benutzer bearbeitet wird.","break_action":{"aquire":"Stattdessen hier bearbeiten","other":"Hier weiterarbeiten"},"errors":{"held_by_other_user_error":{"aquire_html":"\u003Cp\u003EDieser Beitrag wird im Moment von \u003Cstrong\u003E%{user_name}\u003C/strong\u003E bearbeitet. Klicken Sie auf 'Stattdessen hier bearbeiten', um die Bearbeitung durch den anderen Benutzers abzubrechen.\u003C/p\u003E","other_html":"\u003Cp\u003E\u003Cstrong\u003E%{user_name}\u003C/strong\u003E hat ihre Bearbeitung abgebrochen. Laden Sie die Seite neu und klicken Sie auf 'Stattdessen hier bearbeiten', um den aktuellen Stand des Beitrags zu sehen.\u003C/p\u003E\u003Cp\u003EWenn Sie die Bearbeitung hier fortsetzen, gehen möglicherweise Änderungen des anderen Benutzers verloren.\u003C/p\u003E"},"held_by_other_session_error":{"aquire_html":"\u003Cp\u003ESie haben diesen Beitrag in einem anderen Fenster geöffnet.\u003C/p\u003E","other_html":"\u003Cp\u003ESie haben diesen Beitrag in einem anderen Fenster geöffnet. Laden Sie die Seite neu und klicken Sie auf 'Stattdessen hier bearbeiten', um den akutellen Stand des Beitrags zu sehen.\u003C/p\u003E\u003Cp\u003EWenn Sie die Bearbeitung hier fortsetzen, gehen möglicherweise Änderungen verloren.\u003C/p\u003E"},"not_held_error":{"other_html":"\u003Cp\u003EDie Bearbeitung des Beitrags wurde außerhalb dieses Editor beendet. Laden Sie die Seite neu, um den akutellen Stand des Beitrags zu sehen.\u003C/p\u003E\u003Cp\u003EWenn Sie die Bearbeitung hier fortsetzen, gehen möglicherweise Änderungen verloren.\u003C/p\u003E"}}},"sitemap":"Sitemap"},"bg":{"active_admin":{"dashboard":"Табло","dashboard_welcome":{"welcome":"Добре дошли в Active Admin. Това е таблото по подразбиране.","call_to_action":"За да добавите секции, редактирайте 'app/admin/dashboard.rb'"},"view":"Преглед","edit":"Редакция","delete":"Изтриване","delete_confirmation":"Сигурни ли сте, че искате да изтриете това?","new_model":"Създаване на %{model}","create_model":"Създаване на %{model}","edit_model":"Редакция на %{model}","update_model":"Обновяване на %{model}","delete_model":"Изтриване на %{model}","details":"%{model} детайли","cancel":"Отказ","empty":"Празно","previous":"Предишно","next":"Следващо","download":"Изтегляне:","has_many_new":"Добавяне на %{model}","has_many_delete":"Изтриване","has_many_remove":"Премахване","filters":{"buttons":{"filter":"Филтриране","clear":"Изчистване"},"predicates":{"contains":"съдържа","equals":"равно на","starts_with":"Започва с","ends_with":"Завършва с","greater_than":"по-голямо от","less_than":"по-малко от"}},"main_content":"Добавете %{model}#main_content за да видите съдържание.","logout":"Изход","powered_by":"Задвижва се от %{active_admin} %{version}","sidebars":{"filters":"Филтри"},"pagination":{"empty":"Не са намерени %{model}","one":"Показване на \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Показване на \u003Cb\u003Eвсички %{n}\u003C/b\u003E %{model}","multiple":"Показване %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E от общо \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Показване %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"запис","other":"записи"}},"any":"Без значение","blank_slate":{"content":"Все още няма добавени %{resource_name}.","link":"Създаване"},"batch_actions":{"button_label":"Масови действия","delete_confirmation":"Сигурни ли сте, че искате да изтриете тези %{plural_model}? Това действие не може да бъде върнато назад.","succesfully_destroyed":{"one":"Успешно изтриване на 1 %{model}","other":"Успешно изтриване на %{count} %{plural_model}"},"selection_toggle_explanation":"(Инвертиране на маркирането)","link":"Създаване","action_label":"%{title} избран","labels":{"destroy":"Изтриване"}},"comments":{"resource_type":"Тип ресурс","author_type":"Тип автор","body":"Текст","author":"Автор","title":"Коментар","add":"Добавяне на коментар","resource":"Ресурс","no_comments_yet":"Все още няма коментари.","title_content":"Коментари (%{count})","errors":{"empty_text":"Коментарът с празен текст не беше запазен."}},"devise":{"login":{"title":"Вход","remember_me":"Запомни ме","submit":"Вход"},"reset_password":{"title":"Забравена парола?","submit":"Изпращане на нова парола"},"change_password":{"title":"Промяна на моята парола","submit":"Промяна на паролата"},"unlock":{"title":"Изпрати отново инструкциите за отключване","submit":"Изпрати инструкциите повторно"},"links":{"sign_in":"Вход","forgot_your_password":"Забравена парола?","sign_in_with_omniauth_provider":"Вход с %{provider}"}},"access_denied":{"message":"Нямате права да извършите това действие."},"index_list":{"table":"Таблица","block":"Списък","grid":"Грид","blog":"Блог"}}},"ca":{"active_admin":{"dashboard":"Tauler","dashboard_welcome":{"welcome":"Benvingut a Active Admin. Aquest és el tauler per defecte.","call_to_action":"Mira l'arxiu 'app/admin/dashboard.rb' per afegir seccions al tauler"},"view":"Mostra","edit":"Edita","delete":"Elimina","delete_confirmation":"Segur que vols eliminar-ho?","new_model":"Crear %{model}","edit_model":"Editar %{model}","delete_model":"eliminar %{model}","details":"Detalls de %{model}","cancel":"Cancel·lar","empty":"Buit","previous":"Anterior","next":"Següent","download":"Descarregar:","has_many_new":"Afegir %{model}","has_many_delete":"Eliminar","has_many_remove":"Treure","filters":{"buttons":{"filter":"Filtrar","clear":"Treure filtres"},"predicates":{"contains":"Conté","equals":"Igual a","starts_with":"Comença amb","ends_with":"Acaba amb","greater_than":"Més gran que","less_than":"Més petit que"}},"main_content":"Implementa %{model}#main_content per mostrar contingut.","logout":"Desconnecta't","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtres"},"pagination":{"empty":"No hi ha %{model}","one":"S'està mostrant \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"S'estan mostrant \u003Cb\u003Etots %{n}\u003C/b\u003E %{model}","multiple":"S'estan mostrant %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E de \u003Cb\u003E%{total}\u003C/b\u003E en total","multiple_without_total":"S'estan mostrant %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"entrada","other":"entrades"}},"any":"Qualsevol","blank_slate":{"content":"Encara no hi ha cap %{resource_name}.","link":"Crea'n un/a"},"batch_actions":{"button_label":"les accions per lots","delete_confirmation":"¿Està segur que desitja eliminar aquests %{plural_model}? Vostè no serà capaç de desfer això.","succesfully_destroyed":{"one":"Va destruir amb èxit 1 %{model}","other":"Va destruir amb èxit %{count} %{plural_model}"},"selection_toggle_explanation":"(Selecció de Canviar)","link":"crear una","action_label":"%{title} seleccionat","labels":{"destroy":"esborrar"}},"comments":{"body":"Cos","author":"autor","title":"comentari","add":"Afegeix comentari","resource":"Recurs","no_comments_yet":"No hi ha comentaris","title_content":"comentaris (%{count})","errors":{"empty_text":"El comentari no es va salvar, el text estava buida."}},"devise":{"login":{"title":"iniciar sessió","remember_me":"Recordar","submit":"iniciar sessió"},"reset_password":{"title":"Heu perdut la contrasenya?","submit":"Restablir la contrasenya"},"change_password":{"title":"Canvieu la contrasenya","submit":"Canviar la contrasenya"},"unlock":{"title":"Reenvia instruccions per a desbloquejar","submit":"Reenvia instruccions per a desbloquejar"},"links":{"sign_in":"Registrar","forgot_your_password":"Heu perdut la contrasenya?","sign_in_with_omniauth_provider":"Connecta't amb %{provider}"}},"access_denied":{"message":"No esta autoritzat a realitzar aquesta acció."},"index_list":{"table":"Taula","block":"Llista","grid":"Graella","blog":"Bloc"}}},"da":{"active_admin":{"dashboard":"Kontrolpanel","dashboard_welcome":{"welcome":"Velkommen til Active Admin. Dette er standardoversigtssiden.","call_to_action":"Rediger 'app/admin/dashboard.rb' for at tilføje nye elementer til oversigtssiden."},"view":"Vis","edit":"Rediger","delete":"Slet","delete_confirmation":"Er du sikker på at du ønsker at slette?","new_model":"Ny(t) %{model}","create_model":"Opret %{model}","edit_model":"Rediger %{model}","update_model":"Opdater %{model}","delete_model":"Slet %{model}","details":"%{model} detaljer","cancel":"Fortryd","empty":"Tom","previous":"Forrige","next":"Næste","download":"Download:","has_many_new":"Tilføj ny(t) %{model}","has_many_delete":"Slet","has_many_remove":"Fjern","filters":{"buttons":{"filter":"Filtrer","clear":"Ryd filtre"},"predicates":{"contains":"Indeholder","equals":"lig","starts_with":"Begynder med","ends_with":"Slutter med","greater_than":"større end","less_than":"mindre end"}},"main_content":"Implementer venligst %{model}#main_content for at vise noget indhold.","logout":"Log ud","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtre"},"pagination":{"empty":"Ingen %{model} fundet","one":"Viser \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Viser \u003Cb\u003Ealle %{n}\u003C/b\u003E %{model}","multiple":"Viser %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E af \u003Cb\u003E%{total}\u003C/b\u003E i alt","multiple_without_total":"Viser %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"post","other":"poster"}},"any":"Alle","blank_slate":{"content":"Der er ingen %{resource_name} endnu.","link":"Opret"},"batch_actions":{"button_label":"Batch Handlinger","delete_confirmation":"Er du sikker på du vil slette disse %{plural_model}? Du vil ikke være i stand til at fortryde dette.","succesfully_destroyed":{"one":"Vellykket ødelagt 1 %{model}","other":"Vellykket ødelagt %{count} %{plural_model}"},"selection_toggle_explanation":"(Skift Selection)","link":"Opret en","action_label":"%{title} Valgte","labels":{"destroy":"Slet"}},"comments":{"resource_type":"resource type","author_type":"forfatter type","body":"krop","author":"forfatter","title":"Kommentar","add":"Tilføj Kommentar","resource":"Resource","no_comments_yet":"Ingen kommentarer endnu.","title_content":"Kommentarer (%{count})","errors":{"empty_text":"Kommentar blev ikke gemt, tekst var tom."}},"devise":{"login":{"title":"Login","remember_me":"Husk mig","submit":"Login"},"reset_password":{"title":"Glemt din adgangskode?","submit":"Nulstille min adgangskode"},"change_password":{"title":"Skift din adgangskode","submit":"Skift min adgangskode"},"unlock":{"title":"Send oplåsnings instruktioner igen","submit":"Send oplåsnings instruktioner igen"},"links":{"sign_in":"Log ind","forgot_your_password":"Glemt din adgangskode?","sign_in_with_omniauth_provider":"Log ind med %{provider}"}},"access_denied":{"message":"Du har ikke rettigheder til at udføre denne handling."},"index_list":{"table":"Tabel","block":"Liste","grid":"Gitter","blog":"Blog"}}},"de-CH":{"active_admin":{"dashboard":"Übersicht","dashboard_welcome":{"welcome":"Willkommen in Active Admin. Dies ist die Standard-Übersichtsseite.","call_to_action":"Siehe 'app/admin/dashboards.rb', um Übersichts-Bereiche hinzuzufügen."},"view":"Anzeigen","edit":"Bearbeiten","delete":"Löschen","delete_confirmation":"Wollen Sie dieses Element wirklich löschen?","new_model":"%{model} erstellen","create_model":"%{model} erstellen","edit_model":"%{model} bearbeiten","update_model":"%{model} bearbeiten","delete_model":"%{model} löschen","details":"%{model} Details","cancel":"Abbrechen","empty":"Leer","previous":"Zurück","next":"Weiter","download":"Herunterladen:","has_many_new":"%{model} hinzufügen","has_many_delete":"Löschen","has_many_remove":"Entfernen","filters":{"buttons":{"filter":"Filtern","clear":"Filter entfernen"},"predicates":{"contains":"Enthält","equals":"Gleich","starts_with":"Beginnt mit","ends_with":"Endet mit","greater_than":"Grösser als","less_than":"Kleiner als"}},"main_content":"Bitte implementieren Sie %{model}#main_content, um Inhalte anzuzeigen.","logout":"Abmelden","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filter"},"pagination":{"empty":"Keine %{model} gefunden","one":"Zeige \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Zeige \u003Cb\u003Ealle %{n}\u003C/b\u003E %{model}","multiple":"Zeige %{model} \u003Cb\u003E%{from}\u0026nbsp;–\u0026nbsp;%{to}\u003C/b\u003E von \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Zeige %{model} \u003Cb\u003E%{from}\u0026nbsp;–\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"Eintrag","other":"Einträge"}},"any":"Alle","blank_slate":{"content":"Es gibt noch keine %{resource_name}.","link":"Erstellen"},"batch_actions":{"button_label":"Stapelverarbeitung","delete_confirmation":"Sind Sie sicher dass sie diese %{plural_model} löschen wollen? Dies kann nicht rückgängig gemacht werden","succesfully_destroyed":{"one":"Erfolgreich 1 %{model} gelöscht","other":"Erfolgreich %{count} %{plural_model} gelöscht"},"selection_toggle_explanation":"(Auswahl umschalten)","link":"erstellen","action_label":"%{title} ausgewählte","labels":{"destroy":"Lösche"}},"comments":{"body":"Inhalt","author":"Autor","title":"Kommentar","resource":"Resource","add":"Kommentar hinzufügen","no_comments_yet":"Es gibt noch keine Kommentare.","title_content":"Kommentare (%{count})","errors":{"empty_text":"Der Kommentar wurde nicht gespeichert, da der Text fehlt."}},"devise":{"login":{"title":"Login","remember_me":"erinnere dich an mich","submit":"Login"},"reset_password":{"title":"Passwort vergessen?","submit":"Mein Passwort zurücksetzen"},"change_password":{"title":"Ändern Sie Ihr Passwort","submit":"Mein Passwort ändern"},"links":{"sign_in":"Anmeldung","forgot_your_password":"Passwort vergessen?","sign_in_with_omniauth_provider":"Anmeldung mit %{provider}"}}},"activerecord":{"attributes":{"admin_user":{"id":"ID","email":"E-Mail","encrypted_Password":"Verschlüsseltes Passwort","reset_password_token":"Passwort-Reset-Token","reset_password_sent_at":"Passwort-Reset-Anweisungen gesendet am","remember_created_at":"Passwort merken seit","sign_in_count":"Anzahl Logins","current_sign_in_at":"Aktuell angemeldet seit","last_sign_in_at":"Letzter Login am","current_sign_in_ip":"Aktuelle IP-Adresse","last_sign_in_ip":"Letzte IP-Adresse","created_at":"Erstellt am","updated_at":"Aktualisiert am"}},"models":{"admin_user":{"one":"Administrator","other":"Administratoren"}}},"devise":{"failure":{"admin_user":{"invalid":"Benutzername oder Kennwort nicht korrekt.","unauthenticated":"Bitte melden Sie sich als Administrator an."}},"sessions":{"admin_user":{"signed_in":"Erfolgreich als Administrator angemeldet."}}}},"en-GB":{"active_admin":{"dashboard":"Dashboard","dashboard_welcome":{"welcome":"Welcome to Active Admin. This is the default dashboard page.","call_to_action":"To add dashboard sections, checkout 'app/admin/dashboards.rb'"},"view":"View","edit":"Edit","delete":"Delete","delete_confirmation":"Are you sure you want to delete this?","new_model":"New %{model}","create_model":"New %{model}","edit_model":"Edit %{model}","update_model":"Edit %{model}","delete_model":"Delete %{model}","details":"%{model} Details","cancel":"Cancel","empty":"Empty","previous":"Previous","next":"Next","download":"Download:","has_many_new":"Add New %{model}","has_many_delete":"Delete","has_many_remove":"Remove","filters":{"buttons":{"filter":"Filter","clear":"Clear Filters"},"predicates":{"contains":"Contains","equals":"Equals","starts_with":"Starts with","ends_with":"Ends with","greater_than":"Greater than","less_than":"Less than"}},"main_content":"Please implement %{model}#main_content to display content.","logout":"Logout","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filters"},"pagination":{"empty":"No %{model} found","one":"Displaying \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Displaying \u003Cb\u003Eall %{n}\u003C/b\u003E %{model}","multiple":"Displaying %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E of \u003Cb\u003E%{total}\u003C/b\u003E in total","multiple_without_total":"Displaying %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"entry","other":"entries"}},"any":"Any","blank_slate":{"content":"There are no %{resource_name} yet.","link":"Create one"},"batch_actions":{"button_label":"Batch Actions","delete_confirmation":"Are you sure you want to delete these %{plural_model}? You won't be able to undo this.","succesfully_destroyed":{"one":"Successfully destroyed 1 %{model}","other":"Successfully destroyed %{count} %{plural_model}"},"selection_toggle_explanation":"(Toggle Selection)","link":"Create one","action_label":"%{title} Selected","labels":{"destroy":"Delete"}},"comments":{"body":"Body","author":"Author","title":"Comment","add":"Add Comment","resource":"Resource","no_comments_yet":"No comments yet.","title_content":"Comments (%{count})","errors":{"empty_text":"Comment wasn't saved, text was empty."}},"devise":{"login":{"title":"Login","remember_me":"Remember me","submit":"Login"},"reset_password":{"title":"Forgot your password?","submit":"Reset My Password"},"change_password":{"title":"Change your password","submit":"Change my password"},"links":{"sign_in":"Sign in","forgot_your_password":"Forgot your password?","sign_in_with_omniauth_provider":"Sign in with %{provider}"}}}},"es_MX":{"active_admin":{"dashboard":"Inicio","dashboard_welcome":{"welcome":"Bienvenido a Active Admin. Esta es la página de inicio predeterminada.","call_to_action":"Para agregar secciones edite 'app/admin/dashboard.rb'"},"view":"Ver","edit":"Editar","delete":"Eliminar","delete_confirmation":"¿Está seguro de que quiere eliminar esto?","new_model":"Añadir %{model}","create_model":"Añadir %{model}","edit_model":"Editar %{model}","update_model":"Editar %{model}","delete_model":"Eliminar %{model}","details":"Detalles de %{model}","cancel":"Cancelar","empty":"Vacío","previous":"Anterior","next":"Siguiente","download":"Descargar:","has_many_new":"Agregar Añadir %{model}","has_many_delete":"Eliminar","has_many_remove":"Quitar","filters":{"buttons":{"filter":"Filtrar","clear":"Quitar Filtros"},"predicates":{"contains":"Contiene","equals":"Igual a","starts_with":"Empieza con","ends_with":"Termina con","greater_than":"Mayor que","less_than":"Menor que"}},"main_content":"Por favor implemente %{model}#main_content para mostrar contenido.","logout":"Salir","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtros"},"pagination":{"empty":"No se han encontrado %{model}","one":"Mostrando \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Mostrando \u003Cb\u003Eun total de %{n}\u003C/b\u003E %{model}","multiple":"Mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E de un total de \u003Cb\u003E%{total}\u003C/b\u003E"},"blank_slate":{"content":"No hay %{resource_name} aún.","link":"Añadir","entry":{"one":"registro","other":"registros"}},"any":"Cualquiera","batch_actions":{"button_label":"Acciones en masa","delete_confirmation":"Eliminar %{plural_model}: ¿Está seguro? No podrá deshacer esta acción.","succesfully_destroyed":{"one":"Se ha destruido 1 %{model} con éxito","other":"Se han destruido %{count} %{plural_model} con éxito"},"selection_toggle_explanation":"(Cambiar selección)","link":"Añadir","action_label":"%{title} seleccionado","labels":{"destroy":"Borrar"}},"comments":{"body":"Cuerpo","author":"Autor","title":"Comentario","add":"Comentar","resource":"Recurso","no_comments_yet":"Aún sin comentarios.","title_content":"Comentarios (%{count})","errors":{"empty_text":"El comentario no fue guardado, el texto estaba vacío."}},"devise":{"login":{"title":"iniciar sesión","remember_me":"Recordarme","submit":"iniciar sesión"},"reset_password":{"title":"¿Olvidó su contraseña?","submit":"Restablecer mi contraseña"},"change_password":{"title":"Cambie su contraseña","submit":"Cambiar mi contraseña"},"links":{"sign_in":"registrarse","forgot_your_password":"¿Olvidó su contraseña?","sign_in_with_omniauth_provider":"Conéctate con %{provider}"}}},"views":{"pagination":{"truncate":"...","first":"Inicio","previous":"Anterior","next":"Siguiente","last":"Último"}},"formtastic":{"true":"Sí","false":"No","create":"Guardar %{model}","update":"Guardar %{model}","submit":"Aceptar","cancel":"Cancelar","reset":"Restablecer %{model}","required":"requerido"}},"he":{"active_admin":{"dashboard":"פנל ניהול","dashboard_welcome":{"welcome":"ברוכים הבאים לאקטיב אדמין. זהו פנל הניהול","call_to_action":"כדי להוסיף אזורים בפנל הניהול, אנא בדוק את, 'app/admin/dashboard.rb'"},"view":"צפייה","edit":"עריכה","delete":"מחיקה","delete_confirmation":"האם אתה בטוח שאתה רוצה למחוק את זה?","new_model":"%{model} חדש","create_model":"יצירת %{model} חדש","edit_model":"ערוך %{model}","update_model":"עדכון %{model}","delete_model":"מחיקת %{model}","details":"פרטים על %{model}","cancel":"ביטול","empty":"ריק","previous":"הקודם","next":"הבא","download":"הורד:","has_many_new":"הוספת %{model} חדש","has_many_delete":"מחיקה","has_many_remove":"להסיר","filters":{"buttons":{"filter":"סינון","clear":"איפוס שדות"},"predicates":{"contains":"מכיל","equals":"שווה ל","starts_with":"מתחיל עם","ends_with":"מסתיים ב","greater_than":"גדול מ","less_than":"פחות מ"}},"main_content":"Please implement %{model}#main_content to display content.","logout":"התנתקות","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"סינון"},"pagination":{"empty":"אין %{model} בנמצא","one":"מציג \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"הצגת \u003Cb\u003Eכל %{n}\u003C/b\u003E %{model}","multiple":"מציג %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E מתוך \u003Cb\u003E%{total}\u003C/b\u003E בסך הכל","multiple_without_total":"מציג %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"רשומה בודדה","other":"רשומות"}},"any":"Any","blank_slate":{"content":"כרגע אין עוד אף %{resource_name}.","link":"צור אחד"},"batch_actions":{"button_label":"פעולות מרובות","delete_confirmation":"האם הנך בטוח שאתה רוצה למרוח את %{plural_model}? לא תוכל לבטל את המחיקה.","succesfully_destroyed":{"one":"1 %{model} נמחק בהצלחה","few":"%{count} %{plural_model} נמחק בהצלחה","many":"%{count} %{plural_model} נמחק בהצלחה","other":"%{count} %{plural_model} נמחק בהצלחה"},"selection_toggle_explanation":"(שינוי בחירה)","link":"צור","action_label":"%{title} נבחר","labels":{"destroy":"מחק"}},"comments":{"body":"תוכן","author":"נוצר ע\"י","title":"תגובה","add":"הוסף תגובה","resource":"Resource","no_comments_yet":"אין עדיין תגובות.","title_content":"תגובות (%{count})","errors":{"empty_text":"התגובה לא נשמרה, שדה התוכן ריק."}},"devise":{"login":{"title":"כניסה","remember_me":"זכור אותי","submit":"הכנס"},"reset_password":{"title":"שכחת סיסמא?","submit":"אפס את הסיסמא שלי"},"change_password":{"title":"שנה את הסיסמא שלך","submit":"שנה את הסיסמא שלי"},"links":{"sign_in":"כניסה","forgot_your_password":"שכחת את הסיסמא שלך?","sign_in_with_omniauth_provider":"%{provider} היכנס עם"}}}},"hr":{"active_admin":{"dashboard":"Upravljačka ploča","dashboard_welcome":{"welcome":"Dobrodošli u Active Admin. Ovo je početna upravljačka ploča.","call_to_action":"Da bi ste dodali nove odjeljke na upravljačku ploču, pogledajte 'app/admin/dashboard.rb'"},"view":"Pregledaj","edit":"Uredi","delete":"Obriši","delete_confirmation":"Jeste li sigurni da želite ovo obrisati?","new_model":"Novi %{model}","create_model":"Izradi %{model}","edit_model":"Uredi %{model}","update_model":"Spremi %{model}","delete_model":"Obriši %{model}","details":"%{model} detalji","cancel":"Odustani","empty":"Prazno","previous":"Prijašnji","next":"Slijedeći","download":"Spremi na računalo:","has_many_new":"Dodaj novi %{model}","has_many_delete":"Obriši","has_many_remove":"Ukloniti","filters":{"buttons":{"filter":"Filtriraj","clear":"Očisti filtere"},"predicates":{"contains":"Sadrži","equals":"Jednako","starts_with":"počinje s","ends_with":"Završava sa","greater_than":"Veće Od","less_than":"Manje Od"}},"main_content":"Molim Vas, implementirajte %{model}#main_content da bi ste prikazali sadržaj.","logout":"Odjavi se","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtriranje"},"pagination":{"empty":"Nije pronađen niti jedan %{model}.","one":"Prikazan \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Prikazano \u003Cb\u003Esvih %{n}\u003C/b\u003E %{model}","multiple":"Prikazani %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E od ukupno \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Prikazani %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"zapis","few":"zapisa","many":"zapisa","other":"zapisa"}},"any":"Bilo koji","blank_slate":{"content":"Još uvijek ne postoji niti jedan zapis tipa %{resource_name}.","link":"Izradi jedan"},"batch_actions":{"button_label":"Grupne akcije","delete_confirmation":"Jeste li sigurni da želite obrisati %{plural_model}? Obrisano nije moguće poništiti.","succesfully_destroyed":{"one":"Uspješno je obrisan 1 %{model}","few":"Uspješno su obrisana %{count} %{plural_model}","many":"Uspješno je obrisano %{count} %{plural_model}","other":"Uspješno je obrisano %{count} %{plural_model}"},"selection_toggle_explanation":"(Izmjeni odabir)","link":"Izradi jedan","action_label":"%{title} označene","labels":{"destroy":"Obriši"}},"comments":{"body":"Sadržaj","author":"Autor","title":"Komentar","add":"Dodaj komentar","resource":"Resource","no_comments_yet":"Još nema komentara.","title_content":"Komentari (%{count})","errors":{"empty_text":"Komentar nije spremljen, sadržaj je prazan."}},"devise":{"login":{"title":"Prijava","remember_me":"Zapamti me","submit":"Prijavi se"},"reset_password":{"title":"Zaboravljena lozinka?","submit":"Resetiraj lozinku"},"change_password":{"title":"Izmjena lozinke","submit":"Izmjeni lozinku"},"links":{"sign_in":"Prijavi se","forgot_your_password":"Zaboravljena lozinka?","sign_in_with_omniauth_provider":"Prijavite se za %{provider}"}}}},"it":{"active_admin":{"dashboard":"Dashboard","dashboard_welcome":{"welcome":"Benvenuti in Active Admin. Questa è la pagina dashboard di default.","call_to_action":"Per aggiungere sezioni alla dashboard controlla il file 'app/admin/dashboard.rb'"},"view":"Mostra","edit":"Modifica","delete":"Rimuovi","delete_confirmation":"Sei sicuro di volerlo rimuovere?","new_model":"Aggiungi %{model}","create_model":"Aggiungi %{model}","edit_model":"Modifica %{model}","update_model":"Modifica %{model}","delete_model":"Rimuovi %{model}","details":"Dettagli %{model}","cancel":"Annulla","empty":"Vuoto","previous":"Precedente","next":"Prossimo","download":"Scarica:","has_many_new":"Aggiungi nuovo/a %{model}","has_many_delete":"Rimuovi","has_many_remove":"Rimuovi","filters":{"buttons":{"filter":"Filtra","clear":"Rimuovi filtri"},"predicates":{"contains":"Contiene","equals":"Uguale a","starts_with":"Inizia con","ends_with":"Finisce con","greater_than":"Maggiore di","less_than":"Minore di"}},"main_content":"Devi implemetare %{model}#main_content per mostrarne il contenuto.","logout":"Esci","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtri"},"pagination":{"empty":"Nessun %{model} trovato","one":"Sto mostrando \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Sto mostrando \u003Cb\u003E%{n}\u003C/b\u003E %{model}. Lista completa.","multiple":"Sto mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E di \u003Cb\u003E%{total}\u003C/b\u003E in totale","multiple_without_total":"Sto mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"voce","other":"voci"}},"any":"Qualsiasi","blank_slate":{"content":"Non sono presenti %{resource_name}","link":"Crea nuovo/a"},"batch_actions":{"button_label":"Azioni multiple","delete_confirmation":"Sei sicuro di volere cancellare %{plural_model}? Non sarà possibile annulare questa modifica.","succesfully_destroyed":{"one":"Eliminato con successo 1 %{model}","other":"Eliminati con successo %{count} %{plural_model}"},"selection_toggle_explanation":"(Toggle Selection)","link":"Crea uno","action_label":"%{title} Selezionati","labels":{"destroy":"Elimina"}},"comments":{"body":"Corpo","author":"Autore","title":"Commento","add":"Aggiungi Commento","resource":"Risorsa","no_comments_yet":"Nessun commento.","title_content":"Commenti (%{count})","errors":{"empty_text":"Il commento non può essere salvato, il testo è vuoto."}},"devise":{"login":{"title":"Entra","remember_me":"Ricordami","submit":"Entra"},"reset_password":{"title":"Dimenticato la password?","submit":"Reimposta la tua password"},"change_password":{"title":"Cambia la tua password","submit":"Cambia la mia password"},"links":{"sign_in":"Entra","forgot_your_password":"Dimenticato la password?","sign_in_with_omniauth_provider":"Collegati a %{provider}"}}}},"ja":{"active_admin":{"dashboard":"ダッシュボード","dashboard_welcome":{"welcome":"Active Admin へようこそ。ダッシュボードの初期ページを表示しています。","call_to_action":"ダッシュボードに項目を追加するために 'app/admin/dashboard.rb' を編集してください。"},"view":"閲覧","edit":"編集","delete":"削除","delete_confirmation":"本当に削除しますか?","new_model":"%{model} を作成する","create_model":"%{model} を作成する","edit_model":"%{model} を編集する","update_model":"%{model} を更新する","delete_model":"%{model} を削除する","details":"%{model} の詳細","cancel":"取り消す","empty":"空","previous":"前","next":"次","download":"ダウンロード:","has_many_new":"新規に %{model} を追加する","has_many_delete":"削除する","has_many_remove":"削除する","filters":{"buttons":{"filter":"絞り込む","clear":"条件を削除する"},"predicates":{"contains":"含まれています","equals":"等しい","starts_with":"で始まる","ends_with":"で終わる","greater_than":"より大きい","less_than":"より小さい"}},"main_content":"内容を表示するために %{model}#main_content を実装してください。","logout":"ログアウト","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"検索条件"},"pagination":{"empty":"%{model} は見つかりませんでした","one":"\u003Cb\u003E1\u003C/b\u003E 件の %{model} を表示しています","one_page":"\u003Cb\u003E全 %{n}\u003C/b\u003E 件の %{model} を表示しています","multiple":"全 \u003Cb\u003E%{total}\u003C/b\u003E 件中 \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E 件の %{model} を表示しています","multiple_without_total":"\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E 件の %{model} を表示しています","entry":"レコード"},"any":"任意","blank_slate":{"content":"%{resource_name} はまだありません。","link":"作成する"},"batch_actions":{"button_label":"一括操作","delete_confirmation":"%{plural_model} を削除してもよろしいですか? この操作は取り消すことができません。","succesfully_destroyed":{"one":"1件の %{model} を削除しました","other":"%{count}件の %{plural_model} を削除しました"},"selection_toggle_explanation":"(選択)","link":"作成する","action_label":"選択した行を%{title}","labels":{"destroy":"削除する"}},"comments":{"body":"本文","author":"作成者","title":"コメント","add":"コメントを追加","resource":"リソース","no_comments_yet":"コメントはまだありません。","title_content":"コメント (%{count})","errors":{"empty_text":"テキストが空のため、コメントは保存されませんでした。"}},"devise":{"login":{"title":"ログイン","remember_me":"次回から自動的にログイン","submit":"ログイン"},"reset_password":{"title":"パスワードをお忘れですか?","submit":"パスワードをリセットする"},"change_password":{"title":"パスワードを変更する","submit":"パスワードを変更する"},"links":{"sign_in":"サインイン","forgot_your_password":"パスワードをお忘れですか?","sign_in_with_omniauth_provider":"%{provider}のアカウントを使ってログイン"}}}},"ko":{"active_admin":{"dashboard":"대시보드","dashboard_welcome":{"welcome":"Active Admin 에 오신 것을 환영합니다. 이것은 디폴트 대시보드 페이지 입니다.","call_to_action":"대시보드에 섹션을 추가하시려면 'app/admin/dashboard.rb' 소스를 확인해 주세요."},"view":"보기","edit":"수정","delete":"삭제","delete_confirmation":"정말로 삭제 하시겠습니까?","new_model":"새 %{model}","edit_model":"%{model} 수정","delete_model":"%{model} 삭제","details":"%{model} 상세보기","cancel":"취소","empty":"비었음","previous":"이전","next":"다음","download":"다운로드:","has_many_new":"%{model} 추가","has_many_delete":"삭제","has_many_remove":"삭제","filters":{"buttons":{"filter":"필터","clear":"필터 초기화"},"predicates":{"contains":"포함","equals":"같다","starts_with":"로 시작","ends_with":"로 종료","greater_than":"크다","less_than":"작다"}},"main_content":"내용을 보시려면 %{model}#main_content 를 구현해 주시기 바랍니다.","logout":"로그아웃","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"필터 목록"},"pagination":{"empty":"%{model} 이/가 없습니다.","one":"\u003Cb\u003E1\u003C/b\u003E %{model} 표시중","one_page":"\u003Cb\u003E전체 %{n}\u003C/b\u003E %{model} 표시중","multiple":"전체 \u003Cb\u003E%{total}\u003C/b\u003E 중 \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E %{model} 표시중","multiple_without_total":"중 \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E %{model} 표시중"},"any":"어떤","blank_slate":{"content":"아직 %{resource_name} 이/가 없습니다.","link":"만들기"},"batch_actions":{"button_label":"배치 작업","delete_confirmation":"당신은 이들을 삭제하시겠습니까 %{plural_model}? 당신은 이것을 취소할 수 없습니다.","succesfully_destroyed":{"one":"성공적으로 파괴 1 %{model}","other":"성공적으로 파괴 %{count} %{plural_model}"},"selection_toggle_explanation":"(전환 선택)","link":"만들기 한","action_label":"%{title} 선택된","labels":{"destroy":"삭제"}},"comments":{"body":"몸","author":"저자","title":"논평","add":"코멘트를 추가","resource":"자원","no_comments_yet":"아직 코멘트가 없습니다.","title_content":"댓글 (%{count})","errors":{"empty_text":"댓글이 저장되지 않았습니다, ​​텍스트가 비어 있었어."}},"devise":{"login":{"title":"로그인","remember_me":"내 계정 정보 기억","submit":"로그인"},"reset_password":{"title":"비밀 번호를 잊으 셨나요?","submit":"비밀 번호를 재설정"},"change_password":{"title":"비밀 번호를 변경","submit":"내 비밀 번호 변경"},"links":{"sign_in":"로그인","forgot_your_password":"비밀 번호를 잊으 셨나요?","sign_in_with_omniauth_provider":"%{provider} 으로 로그인"}}}},"lt":{"active_admin":{"dashboard":"Valdymo skydelis","dashboard_welcome":{"welcome":"Sveiki atvykę į Active Admin. Tai yra numatytasis valdymo skydelis.","call_to_action":"Norėdami pridėti skydelyje skyrius, žiūrėkite app/admin/dashboard.rb"},"view":"Žiūrėti","edit":"Redaguoti","delete":"Šalinti","delete_confirmation":"Ar jūs tikrai norite tai pašalinti?","new_model":"Naujas %{model}","create_model":"Naujas %{model}","edit_model":"Redaguoti %{model}","update_model":"Redaguoti %{model}","delete_model":"Pašalinti %{model}","details":"%{model} Informacija","cancel":"Atšaukti","empty":"Tuščia","previous":"Atgal","next":"Toliau","download":"Atsisiųsti","has_many_new":"Pridėti naują %{model}","has_many_delete":"Šalinti","has_many_remove":"Pašalinti","filters":{"buttons":{"filter":"Filtras","clear":"Išvalyti filtrus"},"predicates":{"contains":"Sudėtyje yra","equals":"lygus","starts_with":"Prasideda nuo","ends_with":"Baigiasi","greater_than":"didesnis nei","less_than":"mažiau nei"}},"main_content":"Prašome realizuoti %{model}#main_content turiniui vaizduoti.","logout":"Išeiti","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtrai"},"pagination":{"empty":"%{model} nerastas","one":"Rodoma \u003CB\u003E 1 \u003C/ b\u003E %{model}","one_page":"Rodoma \u003Cb\u003Evisi %{n} \u003C/ b\u003E %{model}","multiple":"Rodomi %{model} \u003Cb\u003E%{iš}\u0026nbsp;-\u0026nbsp;%{to} \u003C/ b\u003E iš\u003Cb\u003E%{total} \u003C/ b\u003E iš viso","multiple_without_total":"Rodomi %{model} \u003Cb\u003E%{iš}\u0026nbsp;-\u0026nbsp;%{to} \u003C/ b\u003E ","entry":{"one":"įrašas","other":"įrašai"}},"any":"Bet kokia","blank_slate":{"content":"Nėra %{resource_name}.","link":"Sukurti"},"batch_actions":{"button_label":"Veiksmai su pažymėtais","delete_confirmation":"Ar jūs tikrai norite pašalinti šiuos %{plural_model}? Pašalinus negalėsite atstatyti?","succesfully_destroyed":{"one":"Sėkmingai pašalintas 1 %{model}","few":"Sėkmingai pašalinti %{count} %{plural_model}","other":"Sėkmingai pašalinti %{count} %{plural_model}"},"selection_toggle_explanation":"(Žymėti)","link":"Sukurti","action_label":"%{title} Pasirinkta","labels":{"destroy":"Šalinti"}},"comments":{"body":"Kūno","author":"Autorius","title":"Komentaras","add":"Pridėti komentarą","resource":"Išteklių","no_comments_yet":"Dar nėra komentarų.","title_content":"Komentarai (%{count})","errors":{"empty_text":"komentaras neišsaugotas, tekstas buvo tuščias."}},"devise":{"login":{"title":"Prisijungti","remember_me":"Prisimink mane","submit":"Prisijungti"},"reset_password":{"title":"Pamiršote slaptažodį?","submit":"Vėl nustatykite savo slaptažodį"},"change_password":{"title":"Keisti slaptažodį","submit":"Keisti slaptažodį"},"links":{"sign_in":"Prisijungti","forgot_your_password":"Pamiršote slaptažodį?","sign_in_with_omniauth_provider":"Prisijunkite su %{provider}"}}}},"lv":{"active_admin":{"dashboard":"Panelis","dashboard_welcome":{"welcome":"Laipni lūgti Active Admin.","call_to_action":"Izmantojiet 'app/admin/dashboard.rb', lai pievienotu sadaļas panelim."},"view":"Apskatīt","edit":"Labot","delete":"Dzēst","delete_confirmation":"Vai Tu tiešām vēlies dzēst?","new_model":"Pievienot '%{model}' ierakstu","create_model":"Pievienot '%{model}' ierakstu","edit_model":"Labot '%{model}' ierakstu","update_model":"Labot '%{model}' ierakstu","delete_model":"Dzēst '%{model}' ierakstu","details":"Apraksts","cancel":"Atcelt","empty":"Tukšs","previous":"Iepriekšējā","next":"Nākošā","download":"Lejuplādēt:","has_many_new":"Pievienot jaunu '%{model}' ierakstu","has_many_delete":"Dzēst","has_many_remove":"Noņemt","filters":{"buttons":{"filter":"Filtrēt","clear":"Novākt filtrus"},"predicates":{"contains":"Satur","equals":"Vienāds ar","starts_with":"Sākas ar","ends_with":"Beidzas ar","greater_than":"Lielāks par","less_than":"Mazāks par"}},"main_content":"Lūdzu implementēt %{model}#main_content, lai rādītos saturs.","logout":"Iziet","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtri"},"pagination":{"empty":"Nav ierakstu","one":"\u003Cb\u003E1\u003C/b\u003E ieraksts","one_page":"\u003Cb\u003E%{n}\u003C/b\u003E ieraksti","multiple":"\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E ieraksti no \u003Cb\u003E%{total}\u003C/b\u003E kopā","multiple_without_total":"\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"ieraksts","other":"ieraksti"}},"any":"Jebkurš","blank_slate":{"content":"Sadaļā '%{resource_name}' nav neviena ieraksta.","link":"Izveidot jaunu"},"batch_actions":{"button_label":"Batch Actions","delete_confirmation":"Are you sure you want to delete these %{plural_model}? You won't be able to undo this.","succesfully_destroyed":{"one":"Successfully destroyed 1 %{model}","other":"Successfully destroyed %{count} %{plural_model}"},"selection_toggle_explanation":"(Toggle Selection)","link":"Create one","action_label":"%{title} Selected","labels":{"destroy":"Delete"}},"comments":{"body":"Saturs","author":"Autors","title":"Komentārs","add":"Pievienot komentāru","resource":"Resurss","no_comments_yet":"Nav neviena komentāra.","title_content":"Komentāri (%{count})","errors":{"empty_text":"Komentārs netika saglabāts - nekas nav ierakstīts"}},"devise":{"login":{"title":"Ielogojaties","remember_me":"atcerēties mani","submit":"Ielogojaties"},"reset_password":{"title":"Aizmirsāt savu paroli?","submit":"Atjaunotu savu paroli"},"change_password":{"title":"Nomainīt paroli","submit":"Nomainīt savu paroli"},"links":{"sign_in":"pierakstīties","forgot_your_password":"Aizmirsāt savu paroli?","sign_in_with_omniauth_provider":"Pierakstieties ar %{provider}"}}}},"no-NB":{"active_admin":{"dashboard":"Oversikt","dashboard_welcome":{"welcome":"Velkommen til Active Admin. Dette er standardoversiktssiden.","call_to_action":"Rediger 'app/admin/dashboard.rb' for at legge til elementer i oversikten."},"view":"Vis","edit":"Rediger","delete":"Slett","delete_confirmation":"Er du sikker på at du vil slette denne?","new_model":"Ny %{model}","edit_model":"Rediger %{model}","delete_model":"Slett %{model}","details":"%{model} Detaljer","cancel":"Avbryt","empty":"Tom","previous":"Forrige","next":"Neste","download":"Last ned:","has_many_new":"Legg til ny %{model}","has_many_delete":"Slett","has_many_remove":"Fjern","filters":{"buttons":{"filter":"Filter","clear":"Fjern filter"},"predicates":{"contains":"Inneholder","equals":"Er lik","starts_with":"Starter med","ends_with":"Slutter med","greater_than":"Større enn","less_than":"Mindre enn"}},"main_content":"Please implement %{model}#main_content to display content.","logout":"Logg ut","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtere"},"pagination":{"empty":"Fannt ingen %{model}","one":"Viser \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Viser \u003Cb\u003Ealle %{n}\u003C/b\u003E %{model}","multiple":"Viser %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E av \u003Cb\u003E%{total}\u003C/b\u003E totalt","multiple_without_total":"Viser %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E"},"any":"Noen","blank_slate":{"content":"Her er det ingen %{resource_name} enda.","link":"Opprett en"},"batch_actions":{"button_label":"Batch Actions","delete_confirmation":"Are you sure you want to delete these %{plural_model}? You won't be able to undo this.","succesfully_destroyed":{"one":"Successfully destroyed 1 %{model}","other":"Successfully destroyed %{count} %{plural_model}"},"selection_toggle_explanation":"(Toggle Selection)","link":"Create one","action_label":"%{title} Selected","labels":{"destroy":"Delete"}},"comments":{"body":"Body","author":"Author","title":"Comment","add":"Add Comment","resource":"Resource","no_comments_yet":"No comments yet.","title_content":"Comments (%{count})","errors":{"empty_text":"Comment wasn't saved, text was empty."}},"devise":{"login":{"title":"Logg inn","remember_me":"Husk meg","submit":"Logg inn"},"reset_password":{"title":"Glemt passord?","submit":"Tilbakestille passordet mitt"},"change_password":{"title":"Endre passordet","submit":"Endre mitt passord"},"links":{"sign_in":"Logg inn","forgot_your_password":"Glemt passord?","sign_in_with_omniauth_provider":"Logg på med %{provider}"}}}},"pl":{"active_admin":{"dashboard":"Pulpit","dashboard_welcome":{"welcome":"Witaj w Active Adminie. To jest domyślny pulpit.","call_to_action":"Aby dodać sekcje do pulpitu, sprawdź 'app/admin/dashboard.rb'"},"view":"Podgląd","edit":"Edytuj","delete":"Usuń","delete_confirmation":"Jesteś pewien, że chcesz to usunąć?","new_model":"Nowy %{model}","create_model":"Nowy %{model}","edit_model":"Edytuj %{model}","update_model":"Edytuj %{model}","delete_model":"Usuń %{model}","details":"Detale %{model}","cancel":"Anuluj","empty":"Pusty","previous":"Poprzednia","next":"Następna","download":"Pobierz:","has_many_new":"Dodaj nowy %{model}","has_many_delete":"Usuń","has_many_remove":"Usuń","filters":{"buttons":{"filter":"Filtruj","clear":"Wyczyść Filtry"},"predicates":{"contains":"Zawiera","equals":"Równe","starts_with":"Zaczyna się","ends_with":"Kończy się","greater_than":"Większe niż","less_than":"Mniejsze niż"}},"main_content":"Zaimplementuj %{model}#main_content aby wyświetlić treść.","logout":"Wyloguj","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtry"},"pagination":{"empty":"Nie znaleziono %{model}","one":"Wyświetlanie \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Wyświetlanie \u003Cb\u003Ewszystkich %{n}\u003C/b\u003E %{model}","multiple":"Wyświetlanie %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E z \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Wyświetlanie %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E"},"any":"Jakikolwiek","blank_slate":{"content":"Nie ma jeszcze zasobu %{resource_name}.","link":"Utwórz go"},"batch_actions":{"button_label":"Akcje na partiach","delete_confirmation":"Czy na pewno chcesz usunąć te %{plural_model}? Nie będziesz miał możliwości cofnięcia tego.","succesfully_destroyed":{"one":"Poprawnie usunięto 1 %{model}","other":"Poprawnie usunięto %{count} %{plural_model}","many":"Poprawnie usunięto %{count} %{plural_model}","few":"Poprawnie usunięto %{count} %{plural_model}"},"selection_toggle_explanation":"(Przełącz zaznaczenie)","link":"Utwórz jeden","action_label":"%{title} zaznaczone","labels":{"destroy":"Usuń"}},"comments":{"body":"Treść","author":"Autor","title":"Komentarz","add":"Dodaj komentarz","resource":"Zasób","no_comments_yet":"Nie ma jeszcze komentarzy.","title_content":"Komentarze (%{count})","errors":{"empty_text":"Komentarz nie został zapisany, zawartość była pusta."}},"devise":{"login":{"title":"Logowanie","remember_me":"Zapamiętaj mnie","submit":"Zaloguj się"},"reset_password":{"title":"Nie pamiętasz hasła?","submit":"Zresetować hasło"},"change_password":{"title":"Zmień hasło","submit":"Zmień hasło"},"links":{"sign_in":"Zaloguj się","forgot_your_password":"Nie pamiętasz hasła?","sign_in_with_omniauth_provider":"Zaloguj się z %{provider}"}}},"formtastic":{"actions":{"update":"Aktualizuj %{model}","create":"Utwórz %{model}"}}},"pt-BR":{"active_admin":{"dashboard":"Painel Administrativo","dashboard_welcome":{"welcome":"Bem vindo ao Active Admin. Esta é a página de painéis padrão.","call_to_action":"Para adicionar seções ao painel, verifique 'app/admin/dashboard.rb'"},"view":"Visualizar","edit":"Editar","delete":"Remover","delete_confirmation":"Você tem certeza que deseja remover este item?","new_model":"Novo(a) %{model}","create_model":"Novo(a) %{model}","edit_model":"Editar %{model}","update_model":"Atualizar %{model}","delete_model":"Remover %{model}","details":"Detalhes do(a) %{model}","cancel":"Cancelar","empty":"Vazio","previous":"Anterior","next":"Próximo","download":"Baixar:","has_many_new":"Adicionar Novo(a) %{model}","has_many_delete":"Remover","has_many_remove":"Remover","filters":{"buttons":{"filter":"Filtrar","clear":"Limpar Filtros"},"predicates":{"contains":"Contém","equals":"Igual A","starts_with":"Começa com","ends_with":"Termina com","greater_than":"Maior Que","less_than":"Menor Que"}},"main_content":"Por favor implemente %{model}#main_content para exibir conteúdo.","logout":"Sair","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtros"},"pagination":{"empty":"Nenhum(a) %{model} encontrado(a)","one":"Exibindo \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Exibindo \u003Cb\u003Etodos(as) os(as) %{n}\u003C/b\u003E %{model}","multiple":"Exibindo %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E de um total de \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Exibindo %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"registro","other":"registros"}},"any":"Qualquer","blank_slate":{"content":"Não existem %{resource_name} ainda.","link":"Novo"},"batch_actions":{"button_label":"Ações em lote","delete_confirmation":"Tem certeza que deseja excluir estes %{plural_model}? Não é possível desfazer esta ação.","succesfully_destroyed":{"one":"Excluiu com sucesso 1 %{model}","other":"Excluiu com sucesso %{count} %{plural_model}"},"selection_toggle_explanation":"(Alternar Seleção)","link":"Novo","action_label":"%{title} Selecionado","labels":{"destroy":"Excluído"}},"comments":{"body":"Conteúdo","author":"Autor","title":"Comentário","add":"Adicionar Comentário","resource":"Objeto","no_comments_yet":"Nenhum comentário.","title_content":"Comentários: %{count}","errors":{"empty_text":"O comentário não foi salvo porque o texto estava vazio."}},"devise":{"login":{"title":"Conta","remember_me":"Lembrar da senha","submit":"Entrar"},"reset_password":{"title":"Esqueceu sua senha?","submit":"Reinicie minha senha"},"change_password":{"title":"Troque sua senha","submit":"Troque minha senha"},"links":{"sign_in":"Entrar","forgot_your_password":"Esqueceu sua senha?","sign_in_with_omniauth_provider":"Entre com o %{provider}"}}}},"pt-PT":{"active_admin":{"dashboard":"Painel de Administração","dashboard_welcome":{"welcome":"Bem-vindo ao Active Admin. Esta é a página padrão.","call_to_action":"Se pretende adicionar seções ao painel, consulte 'app/admin/dashboard.rb'"},"view":"Visualizar","edit":"Editar","delete":"Remover","delete_confirmation":"Não tem a certeza de que deseja remover este ítem?","new_model":"Novo(a) %{model}","create_model":"Novo(a) %{model}","edit_model":"Editar %{model}","update_model":"Atualizar %{model}","delete_model":"Remover %{model}","details":"Detalhes do(a) %{model}","cancel":"Cancelar","empty":"Vazio","previous":"Anterior","next":"Próximo","download":"Baixar:","has_many_new":"Adicionar Novo(a) %{model}","has_many_delete":"Remover","has_many_remove":"Remover","filters":{"buttons":{"filter":"Filtrar","clear":"Limpar Filtros"},"predicates":{"contains":"Contém","equals":"Igual A","starts_with":"Começa com","ends_with":"Termina com","greater_than":"Maior Que","less_than":"Menor Que"}},"main_content":"Por favor implemente %{model}#main_content para mostrar o conteúdo.","logout":"Sair","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtros"},"pagination":{"empty":"Nenhum(a) %{model} encontrado(a)","one":"Mostrando \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Mostrando \u003Cb\u003Etodos(as) os(as) %{n}\u003C/b\u003E %{model}","multiple":"Mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E de um total de \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Mostrando %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"registro","other":"registros"}},"any":"Qualquer","blank_slate":{"content":"Ainda não existem %{resource_name}.","link":"Novo"},"batch_actions":{"button_label":"Ações em quantidade","delete_confirmation":"Tem a certeza de que deseja excluir estes %{plural_model}? Não é possível voltar atrás.","succesfully_destroyed":{"one":"Excluiu com sucesso 1 %{model}","other":"Excluiu com sucesso %{count} %{plural_model}"},"selection_toggle_explanation":"(Alternar Seleção)","link":"Novo","action_label":"%{title} Selecionado","labels":{"destroy":"Excluído"}},"comments":{"body":"Conteúdo","author":"Autor","title":"Comentário","add":"Adicionar Comentário","resource":"Objeto","no_comments_yet":"Nenhum comentário.","title_content":"Comentários: %{count}","errors":{"empty_text":"O comentário não foi guardado porque o texto estava vazio."}},"devise":{"login":{"title":"Conta","remember_me":"Lembrar-me","submit":"Entrar"},"reset_password":{"title":"Esqueceu-de da sua senha?","submit":"Reiniciar a minha senha"},"change_password":{"title":"Troque a sua senha","submit":"Trocar a minha senha"},"links":{"sign_in":"Entrar","forgot_your_password":"Esqueceu-se da sua senha?","sign_in_with_omniauth_provider":"Entre com o %{provider}"}}}},"ru":{"active_admin":{"dashboard":"Панель управления","dashboard_welcome":{"welcome":"Добро пожаловать в Active Admin. Это стандартная страница управления сайтом.","call_to_action":"Чтобы добавить сюда что-нибудь загляните в 'app/admin/dashboard.rb'"},"view":"Открыть","edit":"Изменить","delete":"Удалить","delete_confirmation":"Вы уверены, что хотите удалить это?","new_model":"Создать %{model}","create_model":"Создать %{model}","edit_model":"Изменить %{model}","update_model":"Изменить %{model}","delete_model":"Удалить %{model}","details":"%{model} подробнее","cancel":"Отмена","empty":"Пусто","previous":"Пред.","next":"След.","download":"Загрузка:","has_many_new":"Добавить %{model}","has_many_delete":"Убрать","has_many_remove":"Удалить","filters":{"buttons":{"filter":"Фильтровать","clear":"Очистить"},"predicates":{"contains":"Содержит","equals":"=","starts_with":"Начинается с","ends_with":"Заканчивается","greater_than":"больше","less_than":"меньше"}},"main_content":"Создайте %{model}#main_content для отображения содержимого.","logout":"Выйти","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Фильтры"},"pagination":{"empty":"%{model} не найдено","one":"Результат: \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Результат: \u003Cb\u003E%{n}\u003C/b\u003E %{model}","multiple":"Результат: %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E из \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Результат: %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"запись","other":"записей"}},"any":"Любой","blank_slate":{"content":"Пока нет %{resource_name}.","link":"Создать"},"batch_actions":{"button_label":"Групповые операции","delete_confirmation":"Вы уверены, что хотите удалить %{plural_model}? Вы не сможете это отменить.","succesfully_destroyed":{"one":"Успешно удалено: 1 %{model}","few":"Успешно удалено: %{count} %{plural_model}","many":"Успешно удалено: %{count} %{plural_model}","other":"Успешно удалено: %{count} %{plural_model}"},"selection_toggle_explanation":"(Отметить всё / Снять выделение)","link":"Создать","action_label":"%{title} выбранное","labels":{"destroy":"Удалить"}},"comments":{"resource_type":"Тип ресурса","author_type":"Тип автора","body":"Текст","author":"Автор","title":"Комментарий","add":"Добавить Комментарий","resource":"Ресурс","no_comments_yet":"Пока нет комментариев.","title_content":"Комментарии (%{count})","errors":{"empty_text":"Комментарий не сохранен, текст не должен быть пустым."}},"devise":{"login":{"title":"Войти","remember_me":"Запомнить меня","submit":"Войти"},"reset_password":{"title":"Забыли пароль?","submit":"Сбросить пароль"},"change_password":{"title":"Изменение пароля","submit":"Изменение пароля"},"unlock":{"title":"Повторно отправить инструкции по разблокировке","submit":"Повторно отправить инструкции по разблокировке"},"links":{"sign_in":"Войти","forgot_your_password":"Забыли пароль?","sign_in_with_omniauth_provider":"Войти с помощью %{provider}"}},"access_denied":{"message":"Вы не авторизованы для выполнения данного действия."},"index_list":{"table":"Таблица","block":"Список","grid":"Сетка","blog":"Блог"}}},"sv-SE":{"active_admin":{"dashboard":"Skrivbord","dashboard_welcome":{"welcome":"Välkommen till Active Admin. Detta är ditt standardskrivbord.","call_to_action":"För att lägga till sektioner, gör en checkout på 'app/admin/dashboard.rb'"},"view":"Visa","edit":"Editera","delete":"Ta bort","delete_confirmation":"Är du säker att du vill ta bort denna?","new_model":"Ny %{model}","create_model":"Ny %{model}","edit_model":"Editera %{model}","update_model":"Editera %{model}","delete_model":"Ta bort %{model}","details":"Detaljvy för %{model}","cancel":"Avbryt","empty":"Tom","previous":"Föregående","next":"Nästa","download":"Ladda ner:","has_many_new":"Skapa en ny %{model}","has_many_delete":"Ta bort","has_many_remove":"Ta bort","filters":{"buttons":{"filter":"Filter","clear":"Töm dina filters"},"predicates":{"contains":"Innehåller","equals":"Lika med","starts_with":"Börjar med","ends_with":"Slutar med","greater_than":"Större än","less_than":"Mindre än"}},"main_content":"Implementera %{model}#main_content för att kunna visa något.","logout":"Logga ut","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filter"},"pagination":{"empty":"Ingen %{model} funnen","one":"Visar \u003Cb\u003E1\u003C/b\u003E utav %{model}","one_page":"Visar \u003Cb\u003Ealla %{n}\u003C/b\u003E utav %{model}","multiple":"Visar %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E av \u003Cb\u003E%{total}\u003C/b\u003E totalt","multiple_without_total":"Visar %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"inlägg","other":"inlägg"}},"any":"Någon","blank_slate":{"content":"Finns ingen %{resource_name} än.","link":"Skapa en"},"batch_actions":{"button_label":"Batch Behandling","delete_confirmation":"Är du säker på att du vill radera dessa %{plural_model}? Du kan inte ångra detta.","succesfully_destroyed":{"one":"Lyckades radera 1 %{model}","other":"Lyckades radera %{count} %{plural_model}"},"selection_toggle_explanation":"(Toggle Selection)","link":"Skapa en","action_label":"%{title} Markerad","labels":{"destroy":"Radera"}},"comments":{"body":"Innehåll","author":"Författare","title":"Kommentar","add":"Lägg till kommentar","resource":"Resurs","no_comments_yet":"Inga kommentarer än.","title_content":"Kommentarer (%{count})","errors":{"empty_text":"Kommentaren sparades inte, måste innehålla text."}},"devise":{"login":{"title":"inloggning","remember_me":"Kom ihåg mig","submit":"inloggning"},"reset_password":{"title":"Glömt ditt lösenord?","submit":"Återställa mitt lösenord"},"change_password":{"title":"Ändra ditt lösenord","submit":"Ändra mitt lösenord"},"links":{"sign_in":"Logga in","forgot_your_password":"Glömt ditt lösenord?","sign_in_with_omniauth_provider":"Logga in med %{provider}"}}}},"tr":{"active_admin":{"dashboard":"Kontrol Paneli","dashboard_welcome":{"welcome":"Active Admin'e Hoşgeldiniz. Burası öntanımlı Kontrol Paneli sayfasıdır.","call_to_action":"Kontrol Paneline bölümler eklemek için 'app/admin/dashboard.rb' dosyasına bakabilirsin."},"view":"Görüntüle","edit":"Değiştir","delete":"Sil","delete_confirmation":"Bu kaydı silmek istediğine emin misin?","new_model":"Yeni %{model}","create_model":"Yeni %{model}","edit_model":"%{model} modelini düzenle","update_model":"%{model} modelini düzenle","delete_model":"%{model} modelini sil","details":"%{model} ayrıntıları","cancel":"İptal","empty":"Boş","previous":"Önceki","next":"Sonraki","download":"İndir:","has_many_new":"Yeni %{model} kaydı ekle","has_many_delete":"Sil","has_many_remove":"Çıkarmak","filters":{"buttons":{"filter":"Filtrele","clear":"Filtreleri Temizle"},"predicates":{"contains":"içerir","equals":"Eşittir","starts_with":"ile başlar","ends_with":"ile biter","greater_than":"Büyükse","less_than":"Küçükse"}},"main_content":"İçeriği görüntülemek için lütfen %{model}#main_content metodunu ekleyin.","logout":"Oturumu Sonlandır","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Filtreler"},"pagination":{"empty":"%{model} boş","one":"\u003Cb\u003E1\u003C/b\u003E %{model} kaydı görüntüleniyor","one_page":"\u003Cb\u003E%{n}\u003C/b\u003E kayıt %{model} modelinde görüntüleniyor","multiple":"%{model} toplam %{total} kayıt bulundu. \u003Cb\u003E%{from} ile %{to} arası\u003C/b\u003E arası görüntüleniyor","multiple_without_total":"%{model}. \u003Cb\u003E%{from} ile %{to} arası\u003C/b\u003E arası görüntüleniyor","entry":{"one":"Girdi","other":"Girdiler"}},"any":"Herhangi","blank_slate":{"content":"Herhangi bir %{resource_name} kaydı bulunamadı","link":"Bir tane oluşturun"},"batch_actions":{"button_label":"Toplu işlemler","delete_confirmation":"%{plural_model} kayıtlarını silmek istediğinize emin misiniz? Dikkat bu işlemin geri dönüşü yoktur!","succesfully_destroyed":{"one":"1 %{model} kaydı başarıyla silindi.","other":"Toplam %{count} kayıt %{plural_model} modelinden silindi"},"selection_toggle_explanation":"Seçimi Değiştir","link":"Ekle","action_label":"%{title} Seçildi","labels":{"destroy":"Sil"}},"comments":{"body":"Ayrıntı","author":"Yazar","title":"Yorum","add":"Yorum Ekle","resource":"Kaynak","no_comments_yet":"Henüz Yorum Yok","title_content":"Yorumlar (%{count})","errors":{"empty_text":"Yorum boş olarak kaydedilemez."}},"devise":{"login":{"title":"Oturum aç","remember_me":"Beni Hatırla","submit":"Gönder"},"reset_password":{"title":"Şifreni mi unuttun?","submit":"Şifremi sıfırla"},"change_password":{"title":"Şifrenizi değiştirin","submit":"Şifremi değiştir"},"links":{"sign_in":"Oturum aç","forgot_your_password":"Şifreni mi unuttun?","sign_in_with_omniauth_provider":"%{provider} ile giriş yapın"}}}},"uk":{"active_admin":{"dashboard":"Панель керування","dashboard_welcome":{"welcome":"Ласкаво просимо в Active Admin. Це стандартна сторінка керування сайтом.","call_to_action":"Щоб додати сюди що-небудь загляніть в 'app/admin/dashboard.rb'"},"view":"Переглянути","edit":"Змінити","delete":"Видалити","delete_confirmation":"Ви впевнені, що хочете це видалити?","new_model":"Створити %{model}","create_model":"Створити %{model}","edit_model":"Змінити %{model}","update_model":"Змінити %{model}","delete_model":"Видалити %{model}","details":"%{model} детальніше","cancel":"Відміна","empty":"Пусто","previous":"Поперед.","next":"Наст.","download":"Завантаження:","has_many_new":"Додати %{model}","has_many_delete":"Прибрати","has_many_remove":"Видалити","filter":"Фільтрувати","clear_filters":"Очистити","contains":"Містить","starts_with":"Починається з","ends_with":"Закінчується","equal_to":"=","greater_than":"більше","less_than":"менше","main_content":"Створіть %{model}#main_content для відображення вмісту.","logout":"Вийти","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Фільтри"},"pagination":{"empty":"%{model} не знайдено","one":"Результат: \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Результат: \u003Cb\u003E%{n}\u003C/b\u003E %{model}","multiple":"Результат: %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E з \u003Cb\u003E%{total}\u003C/b\u003E","multiple_without_total":"Результат: %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E","entry":{"one":"запис","other":"записів"}},"any":"Будь-який","blank_slate":{"content":"Покищо немає %{resource_name}.","link":"Створити"},"batch_actions":{"button_label":"Групові операції","delete_confirmation":"Ви впевнені, що хочете видалити %{plural_model}? Ви не зможете це відмінити.","succesfully_destroyed":{"one":"Успішно видалено: 1 %{model}","few":"Успішно видалено: %{count} %{plural_model}","many":"Успішно видалено: %{count} %{plural_model}","other":"Успішно видалено: %{count} %{plural_model}"},"selection_toggle_explanation":"(Відмінити все / Зняти виділення)","link":"Створити","action_label":"%{title} вибране","labels":{"destroy":"Видалити"}},"comments":{"resource_type":"Тип ресурса","author_type":"Тип автора","body":"Текст","author":"Автор","title":"Коментар","add":"Додати Коментар","resource":"Ресурс","no_comments_yet":"Покищо немає коментарів.","title_content":"Коментарі (%{count})","errors":{"empty_text":"Коментар не збережено, текст не повинен бути пустим."}},"devise":{"login":{"title":"Вхід","remember_me":"Запам'ятати мене","submit":"Увійти"},"reset_password":{"title":"Забули пароль?","submit":"Скинути пароль"},"change_password":{"title":"Зміна паролю","submit":"Змінити пароль"},"unlock":{"title":"Відправити повторно інструкції з розблокування","submit":"Відправити повторно інструкції з розблокування"},"links":{"sign_in":"Увійти","forgot_your_password":"Забули пароль?","sign_in_with_omniauth_provider":"Увійти з допомогою %{provider}"}},"access_denied":{"message":"Ви не авторизовані для виконання даної дії."},"index_list":{"table":"Таблиця","block":"Список","grid":"Сітка","blog":"Блог"}}},"vi":{"active_admin":{"dashboard":"Dashboard","dashboard_welcome":{"welcome":"Chào mừng bạn đến với Active Admin. Đây là trang Dashboard mặc định.","call_to_action":"Để thêm phần phần cho trang Dashboar hãy chỉnh sửa 'app/admin/dashboard.rb'"},"view":"Xem","edit":"Chỉnh sửa","delete":"Xóa","delete_confirmation":"Bạn có chắc chắn rằng mình muốn xóa cái này?","new_model":"Tạo mới %{model}","create_model":"Tạo mới %{model}","edit_model":"Chỉnh sửa %{model}","update_model":"Chỉnh sửa %{model}","delete_model":"Xóa %{model}","details":"%{model} Chi tiết","cancel":"Hủy","empty":"Trống","previous":"Trước","next":"Tiếp","download":"Download:","has_many_new":"Thêm mới %{model}","has_many_delete":"Xóa","has_many_remove":"Hủy bỏ","filters":{"buttons":{"filter":"Lọc","clear":"Xóa dữ liệu lọc"},"predicates":{"contains":"Thông tin","equals":"Bằng","starts_with":"Bắt đầu với","ends_with":"Kết thúc với việc","greater_than":"Lớn hơn","less_than":"Nhỏ hơn"}},"main_content":"Xin bổ sung %{model}#main_content để hiển thị nội dung.","logout":"Đăng xuất","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"Bộ Lọc"},"pagination":{"empty":"Không có %{model} nào được tìm thấy","one":"Đang hiển thị \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"Đang hiển thị \u003Cb\u003Etất cả %{n}\u003C/b\u003E %{model}","multiple":"Đang hiển thị %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E of \u003Cb\u003E%{total}\u003C/b\u003E trong tất cả.","multiple_without_total":"Đang hiển thị %{model} \u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E.","entry":{"one":"entry","other":"entries"}},"any":"Bất kỳ","blank_slate":{"content":"Chưa có %{resource_name}.","link":"Tạo mới"},"batch_actions":{"button_label":"Hành động hàng loạt","delete_confirmation":"Bạn có chắc chắn muốn xóa những %{plural_model}? Bạn sẽ không thể lấy lại được dữ liệu.","succesfully_destroyed":{"one":"Đã xóa thành công 1 %{model}","other":"Đã xóa thành công %{count} %{plural_model}"},"selection_toggle_explanation":"(Thay đổi lựa chọn)","link":"Tạo mới","action_label":"%{title} được chọn","labels":{"destroy":"Xóa"}},"comments":{"body":"Nội dung","author":"Tác giả","title":"Bình luận","add":"Thêm bình luận","resource":"Tài nguyên","no_comments_yet":"Chưa có bình luận.","title_content":"Bình luận (%{count})","errors":{"empty_text":"Lời bình luận chưa được lưu, vì nội dung còn trống."}},"devise":{"login":{"title":"Đăng nhập","remember_me":"Ghi nhớ tôi","submit":"Đăng nhập"},"reset_password":{"title":"Quên mật khẩu của bạn?","submit":"Thiết lập lại mật khẩu của tôi"},"change_password":{"title":"Thay đổi mật khẩu của bạn","submit":"Thay đổi mật khẩu của tôi"},"links":{"sign_in":"Đăng nhập","forgot_your_password":"Quên mật khẩu của bạn?","sign_in_with_omniauth_provider":"Đăng nhập với %{provider}"}}}},"zh-CN":{"active_admin":{"dashboard":"控制面板","dashboard_welcome":{"welcome":"欢迎使用Active Admin. 这是默认的控制面板页.","call_to_action":"若要添加新的面板内容, 请修改 'app/admin/dashboard.rb'"},"view":"查看","edit":"编辑","delete":"删除","delete_confirmation":"确定删除?","new_model":"新建%{model}","create_model":"新建%{model}","edit_model":"编辑%{model}","update_model":"编辑%{model}","delete_model":"删除%{model}","details":"%{model}详情","cancel":"取消","empty":"清空","previous":"上一个","next":"下一个","download":"下载:","has_many_new":"新建一个%{model}","has_many_delete":"删除","has_many_remove":"清除","filters":{"buttons":{"filter":"过滤","clear":"清除条件"},"predicates":{"contains":"包含","equals":"等于","starts_with":"开头","ends_with":"完与","greater_than":"大于","less_than":"小于"}},"main_content":"请执行 %{model}#main_content 来显示内容.","logout":"退出","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"所有条件"},"pagination":{"empty":"暂时没有%{model}","one":"显示 \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"显示 \u003Cb\u003E所有 %{n}\u003C/b\u003E %{model}","multiple":"显示所有 \u003Cb\u003E%{total}\u003C/b\u003E %{model}中的\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E 条","multiple_without_total":"%{model}中的\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E 条","entry":{"one":"条目","other":"条目"}},"any":"任何","blank_slate":{"content":"暂时还没有%{resource_name}.","link":"新建一个"},"batch_actions":{"button_label":"批处理","delete_confirmation":"你确定要删除所有%{plural_model}? 如果执行,将不可恢复.","succesfully_destroyed":{"one":"成功删除 1 %{model}","other":"成功删除 %{count} %{plural_model}"},"selection_toggle_explanation":"(切换选择)","link":"新建一个","action_label":"%{title} 被选中","labels":{"destroy":"删除"}},"comments":{"body":"内容","author":"作者","title":"评论","add":"添加评论","resource":"资源","no_comments_yet":"暂时没有评论","title_content":"(%{count})条评论","errors":{"empty_text":"评论保存失败,内空不能为空."}},"devise":{"login":{"title":"登录","remember_me":"记住我","submit":"登录"},"reset_password":{"title":"忘记密码?","submit":"重置密码"},"change_password":{"title":"更改您的密码","submit":"更改我的密码"},"links":{"sign_in":"登录","forgot_your_password":"忘记密码?","sign_in_with_omniauth_provider":"登入%{provider}"}}}},"zh-TW":{"active_admin":{"dashboard":"儀表板","dashboard_welcome":{"welcome":"歡迎來到 Active Admin 這是預設的儀表板頁面。","call_to_action":"要新增儀表板內容,請查看 'app/admin/dashboard.rb'"},"view":"檢視","edit":"編輯","delete":"刪除","delete_confirmation":"你確定要刪除嗎?","new_model":"新增 %{model}","create_model":"新增 %{model}","edit_model":"編輯 %{model}","update_model":"編輯 %{model}","delete_model":"刪除 %{model}","details":"%{model} 明細","cancel":"取消","empty":"空的","previous":"前一個","next":"下一個","download":"下載:","has_many_new":"增加新的 %{model}","has_many_delete":"刪除","has_many_remove":"清除","filters":{"buttons":{"filter":"篩選","clear":"清除篩選條件"},"predicates":{"contains":"包含","equals":"等於","starts_with":"开头","ends_with":"完与","greater_than":"大於","less_than":"小於"}},"main_content":"請編寫 %{model}#main_content 以顯示內容。","logout":"登出","powered_by":"Powered by %{active_admin} %{version}","sidebars":{"filters":"篩選條件"},"pagination":{"empty":"找不到 %{model} ","one":"顯示 \u003Cb\u003E1\u003C/b\u003E %{model}","one_page":"顯示 \u003Cb\u003E全部 %{n}\u003C/b\u003E %{model}","multiple":"總計 \u003Cb\u003E%{total}\u003C/b\u003E 顯示 %{model} 中\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E 筆","multiple_without_total":"顯示 %{model} 中\u003Cb\u003E%{from}\u0026nbsp;-\u0026nbsp;%{to}\u003C/b\u003E 筆","entry":{"one":"筆","other":"筆"}},"any":"任何","blank_slate":{"content":"尚無 %{resource_name}","link":"建立一筆"},"batch_actions":{"button_label":"批次作業","delete_confirmation":"您確定要刪除這些 %{plural_model} 嗎?此動作無法復原。","succesfully_destroyed":{"one":"成功刪除 1 %{model}","other":"成功刪除 %{count} %{plural_model}"},"selection_toggle_explanation":"(切換選取)","link":"建立一個","action_label":"%{title} 已選取","labels":{"destroy":"刪除"}},"comments":{"body":"內文","author":"作者","title":"評論","add":"新增評論","resource":"資源","no_comments_yet":"尚無評論","title_content":"(%{count}) 則評論","errors":{"empty_text":"評論儲存失敗,不允許空白的內容。"}},"devise":{"login":{"title":"登錄","remember_me":"記住我","submit":"登錄"},"reset_password":{"title":"忘記密碼?","submit":"重置密碼"},"change_password":{"title":"更改您的密碼","submit":"更改我的密碼"},"links":{"sign_in":"登錄","forgot_your_password":"忘記密碼?","sign_in_with_omniauth_provider":"登入%{provider}"}}}}};
@@ -0,0 +1,5 @@
1
+ # See http://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
2
+ #
3
+ # To ban all spiders from the entire site uncomment the next two lines:
4
+ # User-agent: *
5
+ # Disallow: /
File without changes
File without changes
@@ -0,0 +1,26 @@
1
+ {
2
+ "browser": true,
3
+ "undef": true,
4
+ "immed": true,
5
+ "trailing": true,
6
+ "expr": true,
7
+ "globals": {
8
+ "jQuery": true,
9
+ "Backbone": true,
10
+ "_": true,
11
+ "I18n": true,
12
+ "pageflow": true,
13
+
14
+ "chai": true,
15
+ "sinon": true,
16
+ "support": true,
17
+
18
+ "describe": true,
19
+ "it": true,
20
+ "before": true,
21
+ "after": true,
22
+ "beforeEach": true,
23
+ "afterEach": true,
24
+ "expect": true
25
+ }
26
+ }