threddedDANIEL 0.14.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +744 -0
- data/app/assets/images/favicons/README.md +3 -0
- data/app/assets/images/favicons/amazon.png +0 -0
- data/app/assets/images/favicons/github.png +0 -0
- data/app/assets/images/favicons/google_branding/logo_calendar_128px.png +0 -0
- data/app/assets/images/favicons/google_branding/logo_docs_48px.png +0 -0
- data/app/assets/images/favicons/google_branding/logo_drive_48px.png +0 -0
- data/app/assets/images/favicons/google_branding/logo_forms_48px.png +0 -0
- data/app/assets/images/favicons/google_branding/logo_sheets_48px.png +0 -0
- data/app/assets/images/favicons/google_branding/logo_slides_48px.png +0 -0
- data/app/assets/images/favicons/stackexchange.png +0 -0
- data/app/assets/images/favicons/twitter.png +0 -0
- data/app/assets/images/favicons/wikipedia.png +0 -0
- data/app/assets/images/thredded/breadcrumb-chevron.svg +1 -0
- data/app/assets/images/thredded/follow.svg +1 -0
- data/app/assets/images/thredded/lock.svg +1 -0
- data/app/assets/images/thredded/moderation.svg +1 -0
- data/app/assets/images/thredded/private-messages.svg +1 -0
- data/app/assets/images/thredded/settings.svg +1 -0
- data/app/assets/images/thredded/three-dot-menu.svg +3 -0
- data/app/assets/images/thredded/unfollow.svg +1 -0
- data/app/assets/javascripts/thredded.es6 +2 -0
- data/app/assets/javascripts/thredded/components/currently_online.es6 +32 -0
- data/app/assets/javascripts/thredded/components/flash_messages.es6 +9 -0
- data/app/assets/javascripts/thredded/components/mention_autocompletion.es6 +40 -0
- data/app/assets/javascripts/thredded/components/post_form.es6 +37 -0
- data/app/assets/javascripts/thredded/components/preview_area.es6 +56 -0
- data/app/assets/javascripts/thredded/components/quote_post.es6 +49 -0
- data/app/assets/javascripts/thredded/components/time_stamps.es6 +25 -0
- data/app/assets/javascripts/thredded/components/topic_form.es6 +94 -0
- data/app/assets/javascripts/thredded/components/topics.es6 +46 -0
- data/app/assets/javascripts/thredded/components/turboforms.es6 +25 -0
- data/app/assets/javascripts/thredded/components/user_preferences_form.es6 +66 -0
- data/app/assets/javascripts/thredded/components/user_textcomplete.es6 +50 -0
- data/app/assets/javascripts/thredded/components/users_select.es6 +122 -0
- data/app/assets/javascripts/thredded/core/csrf_tokens.es6 +9 -0
- data/app/assets/javascripts/thredded/core/debounce.es6 +32 -0
- data/app/assets/javascripts/thredded/core/escape_html.es6 +7 -0
- data/app/assets/javascripts/thredded/core/hide_soft_keyboard.es6 +7 -0
- data/app/assets/javascripts/thredded/core/on_page_load.es6 +54 -0
- data/app/assets/javascripts/thredded/core/serialize_form.es6 +9 -0
- data/app/assets/javascripts/thredded/core/thredded.es6 +1 -0
- data/app/assets/javascripts/thredded/dependencies.js +8 -0
- data/app/assets/javascripts/thredded/dependencies/autosize.js +1 -0
- data/app/assets/javascripts/thredded/dependencies/textcomplete.js +1 -0
- data/app/assets/javascripts/thredded/dependencies/timeago.js +1 -0
- data/app/assets/javascripts/thredded/dependencies/ujs.js +1 -0
- data/app/assets/javascripts/thredded/thredded.es6 +2 -0
- data/app/assets/stylesheets/thredded.scss +3 -0
- data/app/assets/stylesheets/thredded/_base.scss +13 -0
- data/app/assets/stylesheets/thredded/_dependencies.scss +0 -0
- data/app/assets/stylesheets/thredded/_email.scss +51 -0
- data/app/assets/stylesheets/thredded/_thredded.scss +33 -0
- data/app/assets/stylesheets/thredded/base/_alerts.scss +44 -0
- data/app/assets/stylesheets/thredded/base/_buttons.scss +73 -0
- data/app/assets/stylesheets/thredded/base/_dropdown-menu.scss +83 -0
- data/app/assets/stylesheets/thredded/base/_forms.scss +84 -0
- data/app/assets/stylesheets/thredded/base/_grid.scss +58 -0
- data/app/assets/stylesheets/thredded/base/_lists.scss +31 -0
- data/app/assets/stylesheets/thredded/base/_nav.scss +67 -0
- data/app/assets/stylesheets/thredded/base/_tables.scss +17 -0
- data/app/assets/stylesheets/thredded/base/_typography.scss +72 -0
- data/app/assets/stylesheets/thredded/base/_variables.scss +141 -0
- data/app/assets/stylesheets/thredded/components/_alerts.scss +19 -0
- data/app/assets/stylesheets/thredded/components/_base.scss +25 -0
- data/app/assets/stylesheets/thredded/components/_currently-online.scss +54 -0
- data/app/assets/stylesheets/thredded/components/_empty.scss +11 -0
- data/app/assets/stylesheets/thredded/components/_flash-message.scss +19 -0
- data/app/assets/stylesheets/thredded/components/_following.scss +14 -0
- data/app/assets/stylesheets/thredded/components/_form-list.scss +39 -0
- data/app/assets/stylesheets/thredded/components/_icons.scss +3 -0
- data/app/assets/stylesheets/thredded/components/_main-section.scss +9 -0
- data/app/assets/stylesheets/thredded/components/_mention-autocomplete.scss +57 -0
- data/app/assets/stylesheets/thredded/components/_messageboard.scss +155 -0
- data/app/assets/stylesheets/thredded/components/_onebox.scss +275 -0
- data/app/assets/stylesheets/thredded/components/_pagination.scss +35 -0
- data/app/assets/stylesheets/thredded/components/_post-form.scss +27 -0
- data/app/assets/stylesheets/thredded/components/_post.scss +138 -0
- data/app/assets/stylesheets/thredded/components/_preferences.scss +19 -0
- data/app/assets/stylesheets/thredded/components/_preview_area.scss +11 -0
- data/app/assets/stylesheets/thredded/components/_topic-delete.scss +8 -0
- data/app/assets/stylesheets/thredded/components/_topic-header.scss +111 -0
- data/app/assets/stylesheets/thredded/components/_topics.scss +186 -0
- data/app/assets/stylesheets/thredded/layout/_main-container.scss +16 -0
- data/app/assets/stylesheets/thredded/layout/_main-navigation.scss +79 -0
- data/app/assets/stylesheets/thredded/layout/_moderation.scss +97 -0
- data/app/assets/stylesheets/thredded/layout/_navigation.scss +87 -0
- data/app/assets/stylesheets/thredded/layout/_search-navigation.scss +126 -0
- data/app/assets/stylesheets/thredded/layout/_user-navigation.scss +20 -0
- data/app/assets/stylesheets/thredded/layout/_user.scss +10 -0
- data/app/assets/stylesheets/thredded/utilities/_is-compact.scss +26 -0
- data/app/assets/stylesheets/thredded/utilities/_is-expanded.scss +16 -0
- data/app/commands/thredded/at_notification_extractor.rb +23 -0
- data/app/commands/thredded/autofollow_users.rb +62 -0
- data/app/commands/thredded/create_messageboard.rb +42 -0
- data/app/commands/thredded/mark_all_read.rb +22 -0
- data/app/commands/thredded/moderate_post.rb +48 -0
- data/app/commands/thredded/notify_following_users.rb +78 -0
- data/app/commands/thredded/notify_private_topic_users.rb +34 -0
- data/app/controllers/concerns/thredded/new_post_params.rb +21 -0
- data/app/controllers/concerns/thredded/new_private_post_params.rb +21 -0
- data/app/controllers/concerns/thredded/new_private_topic_params.rb +25 -0
- data/app/controllers/concerns/thredded/new_topic_params.rb +19 -0
- data/app/controllers/concerns/thredded/render_preview.rb +16 -0
- data/app/controllers/thredded/application_controller.rb +145 -0
- data/app/controllers/thredded/autocomplete_users_controller.rb +52 -0
- data/app/controllers/thredded/messageboard_groups_controller.rb +31 -0
- data/app/controllers/thredded/messageboards_controller.rb +53 -0
- data/app/controllers/thredded/moderation_controller.rb +103 -0
- data/app/controllers/thredded/post_permalinks_controller.rb +11 -0
- data/app/controllers/thredded/post_previews_controller.rb +29 -0
- data/app/controllers/thredded/posts_controller.rb +97 -0
- data/app/controllers/thredded/preferences_controller.rb +42 -0
- data/app/controllers/thredded/private_post_permalinks_controller.rb +12 -0
- data/app/controllers/thredded/private_post_previews_controller.rb +29 -0
- data/app/controllers/thredded/private_posts_controller.rb +96 -0
- data/app/controllers/thredded/private_topic_previews_controller.rb +15 -0
- data/app/controllers/thredded/private_topics_controller.rb +102 -0
- data/app/controllers/thredded/read_states_controller.rb +13 -0
- data/app/controllers/thredded/theme_previews_controller.rb +34 -0
- data/app/controllers/thredded/topic_previews_controller.rb +15 -0
- data/app/controllers/thredded/topics_controller.rb +205 -0
- data/app/forms/thredded/edit_topic_form.rb +51 -0
- data/app/forms/thredded/post_form.rb +54 -0
- data/app/forms/thredded/private_post_form.rb +50 -0
- data/app/forms/thredded/private_topic_form.rb +160 -0
- data/app/forms/thredded/topic_form.rb +95 -0
- data/app/forms/thredded/user_preferences_form.rb +110 -0
- data/app/helpers/thredded/application_helper.rb +129 -0
- data/app/helpers/thredded/nav_helper.rb +42 -0
- data/app/helpers/thredded/render_helper.rb +15 -0
- data/app/helpers/thredded/urls_helper.rb +134 -0
- data/app/jobs/thredded/activity_updater_job.rb +21 -0
- data/app/jobs/thredded/auto_follow_and_notify_job.rb +14 -0
- data/app/jobs/thredded/notify_private_topic_users_job.rb +12 -0
- data/app/mailer_previews/thredded/base_mailer_preview.rb +118 -0
- data/app/mailer_previews/thredded/post_mailer_preview.rb +13 -0
- data/app/mailer_previews/thredded/private_topic_mailer_preview.rb +13 -0
- data/app/mailers/thredded/base_mailer.rb +18 -0
- data/app/mailers/thredded/post_mailer.rb +21 -0
- data/app/mailers/thredded/private_topic_mailer.rb +21 -0
- data/app/models/concerns/thredded/content_moderation_state.rb +67 -0
- data/app/models/concerns/thredded/friendly_id_reserved_words_and_pagination.rb +17 -0
- data/app/models/concerns/thredded/moderation_state.rb +14 -0
- data/app/models/concerns/thredded/notifier_preference.rb +19 -0
- data/app/models/concerns/thredded/post_common.rb +76 -0
- data/app/models/concerns/thredded/search_parser.rb +41 -0
- data/app/models/concerns/thredded/topic_common.rb +94 -0
- data/app/models/concerns/thredded/topics_search.rb +67 -0
- data/app/models/concerns/thredded/user_topic_read_state_common.rb +42 -0
- data/app/models/thredded/category.rb +18 -0
- data/app/models/thredded/messageboard.rb +120 -0
- data/app/models/thredded/messageboard_group.rb +19 -0
- data/app/models/thredded/messageboard_notifications_for_followed_topics.rb +30 -0
- data/app/models/thredded/messageboard_user.rb +14 -0
- data/app/models/thredded/notifications_for_followed_topics.rb +25 -0
- data/app/models/thredded/notifications_for_private_topics.rb +22 -0
- data/app/models/thredded/null_user.rb +51 -0
- data/app/models/thredded/null_user_topic_read_state.rb +17 -0
- data/app/models/thredded/post.rb +77 -0
- data/app/models/thredded/post_moderation_record.rb +56 -0
- data/app/models/thredded/private_post.rb +63 -0
- data/app/models/thredded/private_topic.rb +89 -0
- data/app/models/thredded/private_user.rb +8 -0
- data/app/models/thredded/stats.rb +25 -0
- data/app/models/thredded/topic.rb +179 -0
- data/app/models/thredded/topic_category.rb +8 -0
- data/app/models/thredded/user_detail.rb +27 -0
- data/app/models/thredded/user_extender.rb +75 -0
- data/app/models/thredded/user_messageboard_preference.rb +45 -0
- data/app/models/thredded/user_permissions/admin/if_admin_column_true.rb +14 -0
- data/app/models/thredded/user_permissions/admin/none.rb +14 -0
- data/app/models/thredded/user_permissions/message/readers_of_writeable_boards.rb +15 -0
- data/app/models/thredded/user_permissions/moderate/if_moderator_column_true.rb +16 -0
- data/app/models/thredded/user_permissions/moderate/none.rb +16 -0
- data/app/models/thredded/user_permissions/read/all.rb +27 -0
- data/app/models/thredded/user_permissions/write/all.rb +16 -0
- data/app/models/thredded/user_permissions/write/none.rb +16 -0
- data/app/models/thredded/user_post_notification.rb +29 -0
- data/app/models/thredded/user_preference.rb +26 -0
- data/app/models/thredded/user_private_topic_read_state.rb +13 -0
- data/app/models/thredded/user_topic_follow.rb +34 -0
- data/app/models/thredded/user_topic_read_state.rb +13 -0
- data/app/notifiers/thredded/email_notifier.rb +25 -0
- data/app/policies/thredded/messageboard_group_policy.rb +16 -0
- data/app/policies/thredded/messageboard_policy.rb +49 -0
- data/app/policies/thredded/post_policy.rb +64 -0
- data/app/policies/thredded/private_post_policy.rb +38 -0
- data/app/policies/thredded/private_topic_policy.rb +24 -0
- data/app/policies/thredded/topic_policy.rb +49 -0
- data/app/view_hooks/thredded/all_view_hooks.rb +125 -0
- data/app/view_models/thredded/base_topic_view.rb +43 -0
- data/app/view_models/thredded/messageboard_group_view.rb +27 -0
- data/app/view_models/thredded/post_view.rb +89 -0
- data/app/view_models/thredded/posts_page_view.rb +27 -0
- data/app/view_models/thredded/private_topic_view.rb +20 -0
- data/app/view_models/thredded/private_topics_page_view.rb +31 -0
- data/app/view_models/thredded/topic_email_view.rb +18 -0
- data/app/view_models/thredded/topic_posts_page_view.rb +17 -0
- data/app/view_models/thredded/topic_view.rb +68 -0
- data/app/view_models/thredded/topics_page_view.rb +38 -0
- data/app/views/layouts/thredded/application.html.erb +18 -0
- data/app/views/thredded/categories/_category.html.erb +1 -0
- data/app/views/thredded/error_pages/forbidden.html.erb +6 -0
- data/app/views/thredded/error_pages/not_found.html.erb +6 -0
- data/app/views/thredded/kaminari/_first_page.html.erb +11 -0
- data/app/views/thredded/kaminari/_gap.html.erb +8 -0
- data/app/views/thredded/kaminari/_last_page.html.erb +11 -0
- data/app/views/thredded/kaminari/_next_page.html.erb +11 -0
- data/app/views/thredded/kaminari/_page.html.erb +12 -0
- data/app/views/thredded/kaminari/_paginator.html.erb +23 -0
- data/app/views/thredded/kaminari/_prev_page.html.erb +11 -0
- data/app/views/thredded/messageboard_groups/new.html.erb +28 -0
- data/app/views/thredded/messageboards/_form.html.erb +30 -0
- data/app/views/thredded/messageboards/_messageboard.html.erb +20 -0
- data/app/views/thredded/messageboards/_messageboard_meta.html.erb +13 -0
- data/app/views/thredded/messageboards/edit.html.erb +15 -0
- data/app/views/thredded/messageboards/index.html.erb +34 -0
- data/app/views/thredded/messageboards/new.html.erb +15 -0
- data/app/views/thredded/moderation/_nav.html.erb +19 -0
- data/app/views/thredded/moderation/_post.html.erb +19 -0
- data/app/views/thredded/moderation/_post_moderation_actions.html.erb +12 -0
- data/app/views/thredded/moderation/_post_moderation_record.html.erb +46 -0
- data/app/views/thredded/moderation/_user_moderation_state.html.erb +3 -0
- data/app/views/thredded/moderation/_user_post.html.erb +12 -0
- data/app/views/thredded/moderation/_users_search_form.html.erb +13 -0
- data/app/views/thredded/moderation/activity.html.erb +20 -0
- data/app/views/thredded/moderation/history.html.erb +13 -0
- data/app/views/thredded/moderation/pending.html.erb +24 -0
- data/app/views/thredded/moderation/user.html.erb +54 -0
- data/app/views/thredded/moderation/users.html.erb +41 -0
- data/app/views/thredded/post_mailer/post_notification.html.erb +26 -0
- data/app/views/thredded/post_mailer/post_notification.text.erb +14 -0
- data/app/views/thredded/post_previews/preview.html.erb +1 -0
- data/app/views/thredded/post_previews/update.html.erb +1 -0
- data/app/views/thredded/posts/_content.html.erb +1 -0
- data/app/views/thredded/posts/_form.html.erb +5 -0
- data/app/views/thredded/posts/_post.html.erb +13 -0
- data/app/views/thredded/posts/_user.html.erb +3 -0
- data/app/views/thredded/posts/edit.html.erb +16 -0
- data/app/views/thredded/posts/new.html.erb +15 -0
- data/app/views/thredded/posts_common/_actions.html.erb +28 -0
- data/app/views/thredded/posts_common/_content.html.erb +3 -0
- data/app/views/thredded/posts_common/_form.html.erb +22 -0
- data/app/views/thredded/posts_common/_header.html.erb +8 -0
- data/app/views/thredded/posts_common/_header_with_topic.html.erb +15 -0
- data/app/views/thredded/posts_common/_header_with_user_and_topic.html.erb +18 -0
- data/app/views/thredded/posts_common/actions/_delete.html.erb +4 -0
- data/app/views/thredded/posts_common/actions/_edit.html.erb +3 -0
- data/app/views/thredded/posts_common/actions/_mark_as_unread.html.erb +2 -0
- data/app/views/thredded/posts_common/actions/_quote.html.erb +4 -0
- data/app/views/thredded/posts_common/form/_after_content.html.erb +8 -0
- data/app/views/thredded/posts_common/form/_before_content.html.erb +8 -0
- data/app/views/thredded/posts_common/form/_content.html.erb +7 -0
- data/app/views/thredded/posts_common/form/_content_field.html.erb +8 -0
- data/app/views/thredded/posts_common/form/_preview_area.html.erb +16 -0
- data/app/views/thredded/preferences/_form.html.erb +95 -0
- data/app/views/thredded/preferences/_messageboards_nav.html.erb +8 -0
- data/app/views/thredded/preferences/_messageboards_nav_item.html.erb +2 -0
- data/app/views/thredded/preferences/edit.html.erb +20 -0
- data/app/views/thredded/private_post_previews/preview.html.erb +1 -0
- data/app/views/thredded/private_post_previews/update.html.erb +1 -0
- data/app/views/thredded/private_posts/_content.html.erb +1 -0
- data/app/views/thredded/private_posts/_form.html.erb +6 -0
- data/app/views/thredded/private_posts/_private_post.html.erb +6 -0
- data/app/views/thredded/private_posts/edit.html.erb +16 -0
- data/app/views/thredded/private_posts/new.html.erb +11 -0
- data/app/views/thredded/private_topic_mailer/message_notification.html.erb +26 -0
- data/app/views/thredded/private_topic_mailer/message_notification.text.erb +15 -0
- data/app/views/thredded/private_topic_previews/preview.html.erb +1 -0
- data/app/views/thredded/private_topics/_breadcrumbs.html.erb +4 -0
- data/app/views/thredded/private_topics/_form.html.erb +39 -0
- data/app/views/thredded/private_topics/_header.html.erb +17 -0
- data/app/views/thredded/private_topics/_no_private_topics.html.erb +6 -0
- data/app/views/thredded/private_topics/_private_topic.html.erb +23 -0
- data/app/views/thredded/private_topics/edit.html.erb +35 -0
- data/app/views/thredded/private_topics/header/_participant.html.erb +1 -0
- data/app/views/thredded/private_topics/index.html.erb +32 -0
- data/app/views/thredded/private_topics/new.html.erb +11 -0
- data/app/views/thredded/private_topics/private_topic/_participant.html.erb +1 -0
- data/app/views/thredded/private_topics/show.html.erb +28 -0
- data/app/views/thredded/search/_form.html.erb +13 -0
- data/app/views/thredded/shared/_breadcrumbs.html.erb +6 -0
- data/app/views/thredded/shared/_content_moderation_blocked_state.html.erb +8 -0
- data/app/views/thredded/shared/_currently_online.html.erb +6 -0
- data/app/views/thredded/shared/_flash_messages.html.erb +7 -0
- data/app/views/thredded/shared/_header.html.erb +3 -0
- data/app/views/thredded/shared/_nav.html.erb +19 -0
- data/app/views/thredded/shared/_page.html.erb +15 -0
- data/app/views/thredded/shared/currently_online/_header.html.erb +5 -0
- data/app/views/thredded/shared/currently_online/_user_list.html.erb +3 -0
- data/app/views/thredded/shared/currently_online/_user_list_item.html.erb +6 -0
- data/app/views/thredded/shared/nav/_moderation.html.erb +14 -0
- data/app/views/thredded/shared/nav/_notification_preferences.html.erb +8 -0
- data/app/views/thredded/shared/nav/_private_topics.html.erb +12 -0
- data/app/views/thredded/shared/nav/_standalone.html.erb +12 -0
- data/app/views/thredded/shared/nav/_standalone_profile.html.erb +3 -0
- data/app/views/thredded/shared/preview.html.erb +10 -0
- data/app/views/thredded/theme_previews/_section_title.html.erb +3 -0
- data/app/views/thredded/theme_previews/show.html.erb +99 -0
- data/app/views/thredded/topic_previews/preview.html.erb +1 -0
- data/app/views/thredded/topics/_followers.html.erb +12 -0
- data/app/views/thredded/topics/_form.html.erb +32 -0
- data/app/views/thredded/topics/_header.html.erb +32 -0
- data/app/views/thredded/topics/_sticky_topics_divider.html.erb +1 -0
- data/app/views/thredded/topics/_topic.html.erb +47 -0
- data/app/views/thredded/topics/_topic_form_admin_options.html.erb +12 -0
- data/app/views/thredded/topics/edit.html.erb +50 -0
- data/app/views/thredded/topics/index.html.erb +35 -0
- data/app/views/thredded/topics/new.html.erb +12 -0
- data/app/views/thredded/topics/search.html.erb +39 -0
- data/app/views/thredded/topics/show.html.erb +46 -0
- data/app/views/thredded/users/_link.html.erb +14 -0
- data/app/views/thredded/users/_post.html.erb +6 -0
- data/app/views/thredded/users/_posts.html.erb +7 -0
- data/bin/rails +6 -0
- data/config/i18n-tasks.yml +16 -0
- data/config/locales/de.yml +257 -0
- data/config/locales/en.yml +253 -0
- data/config/locales/es.yml +257 -0
- data/config/locales/fr.yml +255 -0
- data/config/locales/it.yml +257 -0
- data/config/locales/pl.yml +257 -0
- data/config/locales/pt-BR.yml +258 -0
- data/config/locales/ru.yml +255 -0
- data/config/locales/zh-CN.yml +246 -0
- data/config/routes.rb +87 -0
- data/db/migrate/20160329231848_create_thredded.rb +257 -0
- data/db/seeds.rb +4 -0
- data/db/upgrade_migrations/20160611094616_upgrade_v0_5_to_v0_6.rb +28 -0
- data/db/upgrade_migrations/20160723012349_upgrade_v0_6_to_v0_7.rb +46 -0
- data/db/upgrade_migrations/20161019150201_upgrade_v0_7_to_v0_8.rb +34 -0
- data/db/upgrade_migrations/20161113161801_upgrade_v0_8_to_v0_9.rb +60 -0
- data/db/upgrade_migrations/20170125033319_upgrade_v0_9_to_v0_10.rb +36 -0
- data/db/upgrade_migrations/20170312131417_upgrade_thredded_v0_10_to_v0_11.rb +23 -0
- data/db/upgrade_migrations/20170420163138_upgrade_thredded_v0_11_to_v0_12.rb +28 -0
- data/db/upgrade_migrations/20170811090735_upgrade_thredded_v0_13_to_v_014.rb +21 -0
- data/lib/generators/thredded/install/USAGE +8 -0
- data/lib/generators/thredded/install/install_generator.rb +20 -0
- data/lib/generators/thredded/install/templates/initializer.rb +160 -0
- data/lib/tasks/thredded_tasks.rake +14 -0
- data/lib/thredded.rb +190 -0
- data/lib/thredded/base_migration.rb +14 -0
- data/lib/thredded/base_notifier.rb +28 -0
- data/lib/thredded/collection_to_strings_with_cache_renderer.rb +86 -0
- data/lib/thredded/content_formatter.rb +129 -0
- data/lib/thredded/database_seeder.rb +290 -0
- data/lib/thredded/db_tools.rb +103 -0
- data/lib/thredded/email_transformer.rb +22 -0
- data/lib/thredded/email_transformer/base.rb +47 -0
- data/lib/thredded/email_transformer/onebox.rb +21 -0
- data/lib/thredded/engine.rb +28 -0
- data/lib/thredded/errors.rb +68 -0
- data/lib/thredded/formatting_demo_content.rb +30 -0
- data/lib/thredded/html_pipeline/at_mention_filter.rb +78 -0
- data/lib/thredded/html_pipeline/autolink_filter.rb +15 -0
- data/lib/thredded/html_pipeline/kramdown_filter.rb +39 -0
- data/lib/thredded/html_pipeline/onebox_filter.rb +143 -0
- data/lib/thredded/html_pipeline/wrap_iframes_filter.rb +13 -0
- data/lib/thredded/version.rb +5 -0
- data/lib/thredded/view_hooks/config.rb +37 -0
- data/lib/thredded/view_hooks/renderer.rb +30 -0
- data/vendor/assets/javascripts/autosize.min.js +6 -0
- data/vendor/assets/javascripts/textcomplete.min.js +2 -0
- metadata +1035 -0
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
---
|
|
2
|
+
fr:
|
|
3
|
+
thredded:
|
|
4
|
+
content_moderation_states:
|
|
5
|
+
content_blocked_notice: Bloqué
|
|
6
|
+
content_blocked_notice_with_record_html: Bloqué par %{moderator} %{time_ago}
|
|
7
|
+
email_notifier:
|
|
8
|
+
by_email: via email
|
|
9
|
+
emails:
|
|
10
|
+
message_notification:
|
|
11
|
+
html:
|
|
12
|
+
email_sent_reason_html: >-
|
|
13
|
+
Ce courriel vous a été envoyé parce que %{user} vous a inclus dans un sujet privé, "<a href="%{post_url}">%{topic_title}</a>".
|
|
14
|
+
post_lead_html: 'Un nouveau message de %{user} dans <a href="%{post_url}">"%{topic_title}"</a>:'
|
|
15
|
+
unsubscribe_instructions_html: :thredded.emails.post_notification.html.unsubscribe_instructions_html
|
|
16
|
+
subject: Un nouveau message de %{user} dans "%{topic_title}"
|
|
17
|
+
text:
|
|
18
|
+
email_sent_reason: |-
|
|
19
|
+
Ce courriel vous a été envoyé parce que %{user} vous a inclus
|
|
20
|
+
le sujet privé "%{topic_title}".
|
|
21
|
+
|
|
22
|
+
Allez ici pour voir la conversation:
|
|
23
|
+
%{post_url}
|
|
24
|
+
post_lead: 'Un nouveau message de %{user} dans "%{topic_title}":'
|
|
25
|
+
unsubscribe_instructions: :thredded.emails.post_notification.text.unsubscribe_instructions
|
|
26
|
+
post_notification:
|
|
27
|
+
html:
|
|
28
|
+
email_sent_reason_html: 'Ce courriel vous a été envoyé car vous suivez ce sujet: "<a href="%{post_url}">%{topic_title}</a>".'
|
|
29
|
+
post_lead_html: '%{user} a <a href="%{post_url}">déclaré dans "%{topic_title}"</a>:'
|
|
30
|
+
unsubscribe_instructions_html: Pour vous désabonner de ces courriels, mettez à jour vos <a href="%{preferences_url}">préférences</a>.
|
|
31
|
+
subject: Une nouvelle publication dans "%{topic_title}"
|
|
32
|
+
text:
|
|
33
|
+
email_sent_reason: |-
|
|
34
|
+
Ce courriel vous a été envoyé parce que vous suivez
|
|
35
|
+
le sujet "%{topic_title}".
|
|
36
|
+
|
|
37
|
+
Allez ici pour voir la conversation:
|
|
38
|
+
%{post_url}
|
|
39
|
+
post_lead: '%{user} a déclaré dans "%{topic_title}":'
|
|
40
|
+
unsubscribe_instructions: |-
|
|
41
|
+
Pour vous désabonner de ces courriels, mettez à jour vos préférences ici:
|
|
42
|
+
%{unsubscribe_url}
|
|
43
|
+
errors:
|
|
44
|
+
login_required: Veuillez vous connecter
|
|
45
|
+
not_authorized: Vous n'êtes pas autorisé à accéder à cette page.
|
|
46
|
+
private_topic_create_denied: Vous n'êtes pas autorisé à créer des sujets.
|
|
47
|
+
private_topic_not_found: Ce sujet privé n'existe pas.
|
|
48
|
+
form:
|
|
49
|
+
create_btn_submitting: Création en cours...
|
|
50
|
+
preview: Aperçu
|
|
51
|
+
update: Mise à jour
|
|
52
|
+
update_btn_submitting: Mise à jour en cours...
|
|
53
|
+
messageboard:
|
|
54
|
+
create: Créer une nouvelle catégorie
|
|
55
|
+
form:
|
|
56
|
+
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
57
|
+
description_label: Description
|
|
58
|
+
locked_label: Verrouillé
|
|
59
|
+
locked_notice: Ce message est verrouillé. Seuls les modérateurs peuvent créer de nouveaux sujets ici.
|
|
60
|
+
messageboard_group_id_label: Groupe de la catégorie
|
|
61
|
+
no_group: Pas de groupe
|
|
62
|
+
title_label: Nom
|
|
63
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
64
|
+
index:
|
|
65
|
+
page_title: Catégories
|
|
66
|
+
last_updated_by_html: Mise à jour %{time_ago} <cite>par %{user}</cite>
|
|
67
|
+
topics_and_posts_counts: "%{topics_count} sujets / %{posts_count} commentaires"
|
|
68
|
+
update: :thredded.form.update
|
|
69
|
+
updated_notice: La catégorie a été mise à jour
|
|
70
|
+
messageboard_first_topic:
|
|
71
|
+
content: |-
|
|
72
|
+
Il n'y a pas grand chose ici actuallement.
|
|
73
|
+
|
|
74
|
+
Ces forums sont propulsés par [Thredded](https://github.com/thredded/thredded) v%{thredded_version}.
|
|
75
|
+
Vous pouvez prendre contact avec l'équipe de Thredded via [le chat](https://gitter.im/thredded/thredded).
|
|
76
|
+
Merci de nous faire savoir que vous utilisez Thredded en envoyant un tweet à [@thredded](https://twitter.com/thredded)!
|
|
77
|
+
title: Welcome to your messageboard's very first thread
|
|
78
|
+
messageboard_group:
|
|
79
|
+
create: Créer un nouveau groupe de catégorie
|
|
80
|
+
form:
|
|
81
|
+
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
82
|
+
saved: Le Groupe %{name} a été créé
|
|
83
|
+
moderation:
|
|
84
|
+
approve_btn: Approuver
|
|
85
|
+
block_btn: Bloqué
|
|
86
|
+
moderation_state:
|
|
87
|
+
name: État de modération
|
|
88
|
+
pending:
|
|
89
|
+
empty:
|
|
90
|
+
content: Tous les commentaires ont été modérés.
|
|
91
|
+
title: Bien joué!
|
|
92
|
+
post_approved_html: Commentaire approuvé par %{moderator} %{time_ago}.
|
|
93
|
+
post_blocked_html: Commentaire bloqué par %{moderator} %{time_ago}.
|
|
94
|
+
post_deleted_notice: Ce commentaire a été effacé.
|
|
95
|
+
posts_content_changed_since_moderation_html: >-
|
|
96
|
+
Le <a href="%{post_url}">commentaire</a> a changé depuis qu'il a été modéré. La date de modération est affiché
|
|
97
|
+
en dessous.
|
|
98
|
+
search_users:
|
|
99
|
+
form_label: Rechercher des utilisateurs
|
|
100
|
+
form_placeholder: :thredded.moderation.search_users.form_label
|
|
101
|
+
no_results_message: Aucun utilisateur dont le nom commence par %{query}
|
|
102
|
+
results_message: Utilisateurs dont le nom commence par %{query}
|
|
103
|
+
user:
|
|
104
|
+
name: Utilisateur
|
|
105
|
+
nav:
|
|
106
|
+
all_messageboards: Toutes les catégories
|
|
107
|
+
edit_messageboard: Éditer la catégorie
|
|
108
|
+
edit_post: Éditer le commentaire
|
|
109
|
+
edit_private_topic: :thredded.nav.edit_topic
|
|
110
|
+
edit_topic: Éditer
|
|
111
|
+
mark_all_read: Marquer comme lu
|
|
112
|
+
moderation: Modération
|
|
113
|
+
moderation_activity: Activité
|
|
114
|
+
moderation_history: Historique
|
|
115
|
+
moderation_pending: En attente
|
|
116
|
+
moderation_users: Utilisateurs
|
|
117
|
+
private_topics: Messages privés
|
|
118
|
+
settings: Paramètres de notifications
|
|
119
|
+
null_user_name: Utilisateur effacé
|
|
120
|
+
posts:
|
|
121
|
+
delete: Supprimer le commentaire
|
|
122
|
+
delete_confirm: Êtes-vous sûr de vouloir effacer ce commentaire ?
|
|
123
|
+
deleted_notice: Votre commentaire a été effacé.
|
|
124
|
+
edit: :thredded.nav.edit_post
|
|
125
|
+
form:
|
|
126
|
+
content_label: Contenu
|
|
127
|
+
create_btn: Soumettre la réponse
|
|
128
|
+
create_btn_submitting: Soumission en cours...
|
|
129
|
+
title_label: Écrire un commentaire
|
|
130
|
+
update_btn: Mettre à jour le commentaire
|
|
131
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
132
|
+
pending_moderation_notice: Votre commentaire sera publié dès qu'il aura été validé par un modérateur.
|
|
133
|
+
quote_btn: Citer
|
|
134
|
+
preferences:
|
|
135
|
+
edit:
|
|
136
|
+
page_title: :thredded.nav.settings
|
|
137
|
+
form:
|
|
138
|
+
auto_follow_topics:
|
|
139
|
+
hint: Suivre automatiquement les nouveaux sujets. Changer ce paramètre affectera aussi toutes les catégories.
|
|
140
|
+
label: Suivre tout les nouveaux sujets
|
|
141
|
+
follow_topics_on_mention:
|
|
142
|
+
hint: 'Suivre un sujet lorsqu''on est mentionné par son nom (exemple: @marc)'
|
|
143
|
+
label: Suivre un sujet dans lequel vous êtes mentionné
|
|
144
|
+
messageboard_auto_follow_topics:
|
|
145
|
+
hint: >-
|
|
146
|
+
Suivre automatiquement tout les nouveaux sujets dans cette catégorie. Ce paramètre outrepasse le paramètre
|
|
147
|
+
relatif au dessus.
|
|
148
|
+
label: Suivre tout les nouveaux sujets
|
|
149
|
+
messageboard_follow_topics_on_mention:
|
|
150
|
+
hint: 'Quand quelqu''un mentionnera votre nom (exemple: @marc) dans cette catégorie, vous serez abonné
|
|
151
|
+
au sujet.'
|
|
152
|
+
label: :thredded.preferences.form.follow_topics_on_mention.label
|
|
153
|
+
messageboard_notifications_for_followed_topics:
|
|
154
|
+
label: :thredded.preferences.form.notifications_for_followed_topics.label
|
|
155
|
+
notifications_for_followed_topics:
|
|
156
|
+
label: Notifications pour les sujets suivis
|
|
157
|
+
notifications_for_private_topics:
|
|
158
|
+
label: Notifications pour les messages privés
|
|
159
|
+
submit_btn: Mettre à jour les paramètres
|
|
160
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
161
|
+
global_preferences_title: Paramètres globaux
|
|
162
|
+
messageboard_preferences_nav_title: Paramètre de la catégorie
|
|
163
|
+
messageboard_preferences_title_html: Paramètre pour <em>%{messageboard}</em>
|
|
164
|
+
updated_notice: Vos paramètres ont été mise à jour.
|
|
165
|
+
private_posts:
|
|
166
|
+
form:
|
|
167
|
+
content_label: Message
|
|
168
|
+
create_btn: Envoyer le message
|
|
169
|
+
create_btn_submitting: Message en cours d'envoi...
|
|
170
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
171
|
+
private_topics:
|
|
172
|
+
create: :thredded.private_topics.form.create_btn
|
|
173
|
+
edit: Éditer
|
|
174
|
+
errors:
|
|
175
|
+
user_ids_length: Spécifier au moins un autre utilisateur.
|
|
176
|
+
form:
|
|
177
|
+
content_label: :thredded.private_posts.form.content_label
|
|
178
|
+
create_btn: :thredded.private_posts.form.create_btn
|
|
179
|
+
create_btn_submitting: :thredded.private_posts.form.create_btn_submitting
|
|
180
|
+
title_label: :thredded.topics.form.title_label
|
|
181
|
+
title_placeholder_new: Écrire le sujet de cette conversation
|
|
182
|
+
title_placeholder_start: Commencer une nouvelle conversation
|
|
183
|
+
update_btn: Mettre à jour
|
|
184
|
+
update_btn_submitting: :thredded.private_posts.form.update_btn_submitting
|
|
185
|
+
users_label: Participants
|
|
186
|
+
users_placeholder: Sélectionner les utilisateurs qui participeront à cette conversation
|
|
187
|
+
no_private_topics:
|
|
188
|
+
create_btn: Commencer votre première conversation
|
|
189
|
+
title: Vous n'avez pas de messages privés.
|
|
190
|
+
updated_notice: Titre mise à jour
|
|
191
|
+
recent_activity: Activité récente
|
|
192
|
+
search:
|
|
193
|
+
form:
|
|
194
|
+
btn_submit: :thredded.search.form.label
|
|
195
|
+
label: Recherche
|
|
196
|
+
placeholder: Rechercher un sujet ou un commentaire
|
|
197
|
+
time_ago: il y a %{time}
|
|
198
|
+
topics:
|
|
199
|
+
create: :thredded.topics.form.create_btn
|
|
200
|
+
delete_confirm: Êtes-vous sûr de vouloir supprimer ce sujet ? Cette action est irréversible.
|
|
201
|
+
delete_topic: Supprimer le sujet
|
|
202
|
+
deleted_notice: Sujet supprimé
|
|
203
|
+
edit: Éditer le sujet
|
|
204
|
+
follow: Suivre le sujet
|
|
205
|
+
followed_by: 'Suivi par :'
|
|
206
|
+
followed_by_noone: Personne ne suit ce sujet
|
|
207
|
+
followed_notice: Vous suivez ce sujet
|
|
208
|
+
following:
|
|
209
|
+
auto: vous suivez ce sujet car la fonction de suivi automatique est activée.
|
|
210
|
+
manual: Vous suivez ce sujet.
|
|
211
|
+
mentioned: Vous suivez ce sujet car vous y avez été mentionné.
|
|
212
|
+
posted: Vous suivez ce sujet car vous y avez écris un commentaire.
|
|
213
|
+
form:
|
|
214
|
+
categories_placeholder: Catégories
|
|
215
|
+
content_label: :thredded.posts.form.content_label
|
|
216
|
+
create_btn: Créer un nouveau sujet
|
|
217
|
+
messageboard_label: Catégorie
|
|
218
|
+
title_label: Titre
|
|
219
|
+
title_placeholder: :thredded.topics.form.title_label
|
|
220
|
+
title_placeholder_start: Commencer un nouveau sujet
|
|
221
|
+
update_btn: Mettre à jour le sujet
|
|
222
|
+
locked:
|
|
223
|
+
label: Verrouillé
|
|
224
|
+
message: Ce sujet a été verrouillé par un modérateur.
|
|
225
|
+
mark_as_unread: Marquer comme non lu à partir d'ici
|
|
226
|
+
not_following: Vous ne suivez pas ce sujet.
|
|
227
|
+
search:
|
|
228
|
+
no_results_in_messageboard_message_html: Il n'y a aucun résultat pour votre recherche <q>%{query}</q> dans
|
|
229
|
+
%{messageboard}
|
|
230
|
+
no_results_message_html: Il n'y a aucun résultat pour votre recherche <q>%{query}</q>
|
|
231
|
+
page_title: Résultat de la recherche de sujet
|
|
232
|
+
results_in_messageboard_message_html: Recherche pour <q>%{query}</q> dans %{messageboard}
|
|
233
|
+
results_message_html: Recherche pour <q>%{query}</q>
|
|
234
|
+
search_in_all_messageboards_btn: Chercher partout
|
|
235
|
+
started_by_html: Démarré %{time_ago} par %{user}
|
|
236
|
+
sticky:
|
|
237
|
+
label: Épinglé
|
|
238
|
+
unfollow: Arrêter de suivre
|
|
239
|
+
unfollowed_notice: Vous ne suivez dorénavant plus ce sujet
|
|
240
|
+
updated_notice: Sujet mis à jour
|
|
241
|
+
users:
|
|
242
|
+
currently_online: En ce moment connecté
|
|
243
|
+
last_active_html: 'Actif pour la dernière fois : %{time_ago}'
|
|
244
|
+
posted_in_topic_html: Commenté dans %{topic_link}
|
|
245
|
+
posts_count:
|
|
246
|
+
one: Commenté une seule fois
|
|
247
|
+
other: Commenté %{count} fois
|
|
248
|
+
recent_activity: :thredded.recent_activity
|
|
249
|
+
started_topic_html: Démarré %{topic_link}
|
|
250
|
+
started_topics_count:
|
|
251
|
+
one: Démarré un sujet
|
|
252
|
+
other: Démarré %{count} sujets
|
|
253
|
+
user_posted_in_topic_html: "%{user_link} a commenté dans %{topic_link}"
|
|
254
|
+
user_since_html: Utilisateur depuis %{time_ago}
|
|
255
|
+
user_started_topic_html: "%{user_link} démarré %{topic_link}"
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
---
|
|
2
|
+
it:
|
|
3
|
+
thredded:
|
|
4
|
+
content_moderation_states:
|
|
5
|
+
content_blocked_notice: Bloccato
|
|
6
|
+
content_blocked_notice_with_record_html: Bloccato da %{moderator} %{time_ago}
|
|
7
|
+
email_notifier:
|
|
8
|
+
by_email: via email
|
|
9
|
+
emails:
|
|
10
|
+
message_notification:
|
|
11
|
+
html:
|
|
12
|
+
email_sent_reason_html: >-
|
|
13
|
+
Ti è stata spedita questa mail perché %{user} ti ha incluso in una discussione privata, “<a href="%{post_url}">%{topic_title}</a>”.
|
|
14
|
+
post_lead_html: 'Un nuovo messaggio da %{user} in <a href="%{post_url}">“%{topic_title}”</a>:'
|
|
15
|
+
unsubscribe_instructions_html: :thredded.emails.post_notification.html.unsubscribe_instructions_html
|
|
16
|
+
subject: Un nuovo messaggio di %{user} in “%{topic_title}”
|
|
17
|
+
text:
|
|
18
|
+
email_sent_reason: |-
|
|
19
|
+
Ti è stata spedita questa mail perché %{user} ti ha incluso nel discussione privata “%{topic_title}”.
|
|
20
|
+
|
|
21
|
+
Vai qui per vedere la conversazione:
|
|
22
|
+
%{post_url}
|
|
23
|
+
post_lead: 'Un nuovo messaggio di %{user} in “%{topic_title}”:'
|
|
24
|
+
unsubscribe_instructions: :thredded.emails.post_notification.text.unsubscribe_instructions
|
|
25
|
+
post_notification:
|
|
26
|
+
html:
|
|
27
|
+
email_sent_reason_html: >-
|
|
28
|
+
Questa email ti è stata spedita perché stai seguendo questa discussione: “<a href="%{post_url}">%{topic_title}</a>”.
|
|
29
|
+
post_lead_html: '%{user} <a href="%{post_url}">ha detto in “%{topic_title}”</a>:'
|
|
30
|
+
unsubscribe_instructions_html: Per non ricevere più queste email, aggiorna le tue <a href="%{preferences_url}">preferenze</a>.
|
|
31
|
+
subject: Un nuovo messaggio in “%{topic_title}”
|
|
32
|
+
text:
|
|
33
|
+
email_sent_reason: |-
|
|
34
|
+
Questa email ti è stata spedita perché stai seguendo
|
|
35
|
+
la discussione “%{topic_title}”.
|
|
36
|
+
|
|
37
|
+
Vai qui per vedere la conversazione:
|
|
38
|
+
%{post_url}
|
|
39
|
+
post_lead: "%{user} ha detto in “%{topic_title}”:"
|
|
40
|
+
unsubscribe_instructions: |-
|
|
41
|
+
Per non riceve più queste email, aggiorna qui le tue preferenze:
|
|
42
|
+
%{unsubscribe_url}
|
|
43
|
+
errors:
|
|
44
|
+
login_required: Per visualizzare questa pagina bisogna accedere tramite login.
|
|
45
|
+
not_authorized: Non sei autorizzato a vedere questa pagina.
|
|
46
|
+
private_topic_create_denied: Non sei autorizzato a creare discussioni private.
|
|
47
|
+
private_topic_not_found: Questa discussione privata non esiste.
|
|
48
|
+
form:
|
|
49
|
+
create_btn_submitting: Creazione in corso...
|
|
50
|
+
preview: Anteprima
|
|
51
|
+
update: Aggiorna
|
|
52
|
+
update_btn_submitting: Aggiornamento in corso...
|
|
53
|
+
messageboard:
|
|
54
|
+
create: Crea una nuova bacheca
|
|
55
|
+
form:
|
|
56
|
+
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
57
|
+
description_label: Descrizione
|
|
58
|
+
locked_label: Bloccato
|
|
59
|
+
locked_notice: Questa bacheca è bloccata. Solo i moderatori possono creare nuove discussioni qui.
|
|
60
|
+
messageboard_group_id_label: Gruppo bacheca
|
|
61
|
+
no_group: Nessun gruppo
|
|
62
|
+
title_label: Nome
|
|
63
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
64
|
+
index:
|
|
65
|
+
page_title: Bacheche
|
|
66
|
+
last_updated_by_html: Aggiornato %{time_ago} <cite>da %{user}</cite>
|
|
67
|
+
topics_and_posts_counts: "%{topics_count} discussioni / %{posts_count} messaggi"
|
|
68
|
+
update: :thredded.form.update
|
|
69
|
+
updated_notice: La bacheca è stata aggiornata
|
|
70
|
+
messageboard_first_topic:
|
|
71
|
+
content: |-
|
|
72
|
+
Non c'è molto qui, per ora.
|
|
73
|
+
|
|
74
|
+
Questi forum girano su [Thredded](https://github.com/thredded/thredded) v%{thredded_version}.
|
|
75
|
+
Puoi contattare il team di Thredded attraverso [la chat room di Thredded](https://gitter.im/thredded/thredded).
|
|
76
|
+
Per favore, facci sapere che stai usando Thredded con un tweet a [@thredded](https://twitter.com/thredded)!
|
|
77
|
+
title: Benvenuto nella prima discussione di questa bacheca
|
|
78
|
+
messageboard_group:
|
|
79
|
+
create: Crea un nuovo Gruppo di bacheche
|
|
80
|
+
form:
|
|
81
|
+
create_btn_submitting: :thredded.form.create_btn_submitting
|
|
82
|
+
saved: Creato il gruppo di bacheche %{name}
|
|
83
|
+
moderation:
|
|
84
|
+
approve_btn: Approva
|
|
85
|
+
block_btn: Blocca
|
|
86
|
+
moderation_state:
|
|
87
|
+
name: Stato di moderazione
|
|
88
|
+
pending:
|
|
89
|
+
empty:
|
|
90
|
+
content: Tutti i messaggi sono stati moderati.
|
|
91
|
+
title: Ottimo lavoro!
|
|
92
|
+
post_approved_html: Post approvato da %{moderator} %{time_ago}.
|
|
93
|
+
post_blocked_html: Post bloccato da %{moderator} %{time_ago}.
|
|
94
|
+
post_deleted_notice: Questo messaggio è stato cancellato.
|
|
95
|
+
posts_content_changed_since_moderation_html: >-
|
|
96
|
+
Il contenuto del <a href="%{post_url}">messaggio</a> è cambiato per via di una moderazione. Qua sotto il
|
|
97
|
+
contenuto al momento in cui è stato modificato.
|
|
98
|
+
search_users:
|
|
99
|
+
form_label: Cerca utenti
|
|
100
|
+
form_placeholder: :thredded.moderation.search_users.form_label
|
|
101
|
+
no_results_message: Nessun utente col nome che inizia per %{query}
|
|
102
|
+
results_message: Utenti col nome che inizia per %{query}
|
|
103
|
+
user:
|
|
104
|
+
name: Utente
|
|
105
|
+
nav:
|
|
106
|
+
all_messageboards: Tutte le bacheche
|
|
107
|
+
edit_messageboard: Modifica bacheca
|
|
108
|
+
edit_post: Modifica Post
|
|
109
|
+
edit_private_topic: :thredded.nav.edit_topic
|
|
110
|
+
edit_topic: Modifica
|
|
111
|
+
mark_all_read: Segna tutto come già letto
|
|
112
|
+
moderation: Moderazione
|
|
113
|
+
moderation_activity: Attività
|
|
114
|
+
moderation_history: Storia
|
|
115
|
+
moderation_pending: Da fare (pending)
|
|
116
|
+
moderation_users: Utenti
|
|
117
|
+
private_topics: Messaggi Privati
|
|
118
|
+
settings: Impostazioni Notifiche
|
|
119
|
+
null_user_name: Utente cancellato
|
|
120
|
+
posts:
|
|
121
|
+
delete: Cancella messaggio
|
|
122
|
+
delete_confirm: Sei sicuro di voler cancellare questo messaggio?
|
|
123
|
+
deleted_notice: Il tuo messaggio è stato cancellato.
|
|
124
|
+
edit: :thredded.nav.edit_post
|
|
125
|
+
form:
|
|
126
|
+
content_label: Contenuto
|
|
127
|
+
create_btn: Invia risposta
|
|
128
|
+
create_btn_submitting: Invio in corso...
|
|
129
|
+
title_label: Crea messaggio
|
|
130
|
+
update_btn: Modifica messaggio
|
|
131
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
132
|
+
pending_moderation_notice: Il tuo messaggio sarà pubblicato dopo essere stato controllato da un moderatore.
|
|
133
|
+
quote_btn: Citazione
|
|
134
|
+
preferences:
|
|
135
|
+
edit:
|
|
136
|
+
page_title: :thredded.nav.settings
|
|
137
|
+
form:
|
|
138
|
+
auto_follow_topics:
|
|
139
|
+
hint: >-
|
|
140
|
+
Segui automaticamente tutte le nuove discussioni. La modifica di questo parametro verrà applicata a
|
|
141
|
+
tutte le bacheche.
|
|
142
|
+
label: Segui tutte le nuove discussioni
|
|
143
|
+
follow_topics_on_mention:
|
|
144
|
+
hint: 'Quando qualcuno menziona il tuo nome utente (eg: @marco) seguirai automaticamente la discussione.'
|
|
145
|
+
label: Segui le discussioni in cui sei menzionato
|
|
146
|
+
messageboard_auto_follow_topics:
|
|
147
|
+
hint: >-
|
|
148
|
+
Segui automaticamente tutte le discussioni di questa bacheca. Questo non terrà conto delle rispettive
|
|
149
|
+
impostazioni di cui sopra.
|
|
150
|
+
label: Segui tutte le discussioni
|
|
151
|
+
messageboard_follow_topics_on_mention:
|
|
152
|
+
hint: >-
|
|
153
|
+
Quando qualcuno menziona il tuo nome utente (eg: @marco) in questa bacheca seguirai automaticamente
|
|
154
|
+
la discussione.
|
|
155
|
+
label: :thredded.preferences.form.follow_topics_on_mention.label
|
|
156
|
+
messageboard_notifications_for_followed_topics:
|
|
157
|
+
label: :thredded.preferences.form.notifications_for_followed_topics.label
|
|
158
|
+
notifications_for_followed_topics:
|
|
159
|
+
label: Notifiche per discussioni che stai seguendo
|
|
160
|
+
notifications_for_private_topics:
|
|
161
|
+
label: Notifiche per i messaggi privati
|
|
162
|
+
submit_btn: Aggiorna Impostazioni
|
|
163
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
164
|
+
global_preferences_title: Impostazioni Globali
|
|
165
|
+
messageboard_preferences_nav_title: Impostazioni Bacheca
|
|
166
|
+
messageboard_preferences_title_html: Impostazioni per <em>%{messageboard}</em>
|
|
167
|
+
updated_notice: Le tue impostazioni sono state aggiornate.
|
|
168
|
+
private_posts:
|
|
169
|
+
form:
|
|
170
|
+
content_label: Messaggio
|
|
171
|
+
create_btn: Invia messaggio
|
|
172
|
+
create_btn_submitting: Invio in corso...
|
|
173
|
+
update_btn_submitting: :thredded.form.update_btn_submitting
|
|
174
|
+
private_topics:
|
|
175
|
+
create: :thredded.private_topics.form.create_btn
|
|
176
|
+
edit: Modifica
|
|
177
|
+
errors:
|
|
178
|
+
user_ids_length: Prego specificare almeno un altro utente.
|
|
179
|
+
form:
|
|
180
|
+
content_label: :thredded.private_posts.form.content_label
|
|
181
|
+
create_btn: :thredded.private_posts.form.create_btn
|
|
182
|
+
create_btn_submitting: :thredded.private_posts.form.create_btn_submitting
|
|
183
|
+
title_label: :thredded.topics.form.title_label
|
|
184
|
+
title_placeholder_new: Scrivi l'oggetto di questa conversazione
|
|
185
|
+
title_placeholder_start: Inizia una nuova conversazione
|
|
186
|
+
update_btn: Aggiorna
|
|
187
|
+
update_btn_submitting: :thredded.private_posts.form.update_btn_submitting
|
|
188
|
+
users_label: Partecipanti
|
|
189
|
+
users_placeholder: Seleziona gli utenti per farli partecipare a questa conversazione
|
|
190
|
+
no_private_topics:
|
|
191
|
+
create_btn: Inizia la tua prima conversazione privata
|
|
192
|
+
title: Non hai nessun messaggio privato.
|
|
193
|
+
updated_notice: Titolo aggiornato
|
|
194
|
+
recent_activity: Attività recenti
|
|
195
|
+
search:
|
|
196
|
+
form:
|
|
197
|
+
btn_submit: :thredded.search.form.label
|
|
198
|
+
label: Cerca
|
|
199
|
+
placeholder: Cerca
|
|
200
|
+
time_ago: "%{time} fa"
|
|
201
|
+
topics:
|
|
202
|
+
create: :thredded.topics.form.create_btn
|
|
203
|
+
delete_confirm: Sei sicuro di voler cancellare questa discussione? Attenzione NON sarà possibile tornare indietro.
|
|
204
|
+
delete_topic: Cancella discussione
|
|
205
|
+
deleted_notice: Discussione cancellata
|
|
206
|
+
edit: Modifica discussione
|
|
207
|
+
follow: Segui questa discussione
|
|
208
|
+
followed_by: 'Seguita da:'
|
|
209
|
+
followed_by_noone: Nessuno sta seguendo questa discussione
|
|
210
|
+
followed_notice: Ora stai seguendo questa discussione
|
|
211
|
+
following:
|
|
212
|
+
auto: Stai seguendo perché hai attivato Segui in automatico.
|
|
213
|
+
manual: Stai seguendo questa discussione.
|
|
214
|
+
mentioned: Stai seguendo perché sei stato menzionato.
|
|
215
|
+
posted: Stai seguendo perché hai scritto un messaggio.
|
|
216
|
+
form:
|
|
217
|
+
categories_placeholder: Categorie
|
|
218
|
+
content_label: :thredded.posts.form.content_label
|
|
219
|
+
create_btn: Crea una nuova discussione
|
|
220
|
+
messageboard_label: Bacheca
|
|
221
|
+
title_label: Titolo
|
|
222
|
+
title_placeholder: :thredded.topics.form.title_label
|
|
223
|
+
title_placeholder_start: Inizia una Nuova Discussione
|
|
224
|
+
update_btn: Aggiorna Discussione
|
|
225
|
+
locked:
|
|
226
|
+
label: Bloccata
|
|
227
|
+
message: Questa discussione è stata bloccata da un moderatore.
|
|
228
|
+
mark_as_unread: Segna come non letto
|
|
229
|
+
not_following: Non stai seguendo questa discussione.
|
|
230
|
+
search:
|
|
231
|
+
no_results_in_messageboard_message_html: Nessun risultato trovato per le ricerca <q>%{query}</q> in %{messageboard}
|
|
232
|
+
no_results_message_html: Nessun risultato trovato per le ricerca <q>%{query}</q>
|
|
233
|
+
page_title: Risutati Ricerca Discussioni
|
|
234
|
+
results_in_messageboard_message_html: Risultati della ricerca per <q>%{query}</q> in %{messageboard}
|
|
235
|
+
results_message_html: Risultati della ricerca per <q>%{query}</q>
|
|
236
|
+
search_in_all_messageboards_btn: Cerca ovunque
|
|
237
|
+
started_by_html: Iniziata %{time_ago}, da %{user}
|
|
238
|
+
sticky:
|
|
239
|
+
label: Blocca in cima
|
|
240
|
+
unfollow: Non seguire più questa discussione
|
|
241
|
+
unfollowed_notice: Ora non stai più seguendo questa discussione
|
|
242
|
+
updated_notice: Discussione aggiornata
|
|
243
|
+
users:
|
|
244
|
+
currently_online: Attualmente connessi
|
|
245
|
+
last_active_html: Ultima attività %{time_ago}
|
|
246
|
+
posted_in_topic_html: Ha scritto in %{topic_link}
|
|
247
|
+
posts_count:
|
|
248
|
+
one: Ha commentato una volta
|
|
249
|
+
other: Ha commentato %{count} volte
|
|
250
|
+
recent_activity: :thredded.recent_activity
|
|
251
|
+
started_topic_html: Ha iniziato %{topic_link}
|
|
252
|
+
started_topics_count:
|
|
253
|
+
one: Ha iniziato una discussione
|
|
254
|
+
other: Ha iniziato %{count} discussioni
|
|
255
|
+
user_posted_in_topic_html: "%{user_link} ha commentato in %{topic_link}"
|
|
256
|
+
user_since_html: Utente da %{time_ago}
|
|
257
|
+
user_started_topic_html: "%{user_link} ha iniziato %{topic_link}"
|