elabs 4.0.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +9 -0
- data/.node-version +1 -1
- data/.rubocop.yml +4 -0
- data/.stylelintrc.yml +12 -2
- data/CHANGELOG.md +81 -12
- data/Gemfile +1 -1
- data/Gemfile.lock +96 -94
- data/README.md +2 -0
- data/ROADMAP.md +4 -2
- data/app/assets/config/elabs_manifest.js +2 -1
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.svg +1148 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff2 +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.svg +467 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff2 +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.svg +2231 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff2 +0 -0
- data/app/assets/fonts/elabs/OpenSans/Apache License.txt +201 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Bold.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Light.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Regular.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Semibold.ttf +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.eot +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.svg +51 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.ttf +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.woff +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.woff2 +0 -0
- data/app/assets/images/elabs/preview_placeholder.png +0 -0
- data/app/assets/images/elabs/preview_placeholder_nsfw.png +0 -0
- data/app/assets/javascripts/elabs/announcements.js +33 -0
- data/app/assets/javascripts/elabs/application.js.erb +17 -14
- data/app/assets/javascripts/elabs/forms.js +0 -1
- data/app/assets/javascripts/elabs/helpers-markdown.js +2 -2
- data/app/assets/javascripts/elabs/helpers.js +17 -0
- data/app/assets/javascripts/elabs/menu.js +5 -0
- data/app/assets/stylesheets/elabs/_fonts.scss +32 -0
- data/app/assets/stylesheets/elabs/_variables.scss +286 -5
- data/app/assets/stylesheets/elabs/app/components/_act.scss +83 -0
- data/app/assets/stylesheets/elabs/app/components/_announcement.scss +41 -0
- data/app/assets/stylesheets/elabs/app/components/_classifier_types.scss +43 -0
- data/app/assets/stylesheets/elabs/app/components/_comment.scss +29 -0
- data/app/assets/stylesheets/elabs/app/components/_content_relations.scss +53 -0
- data/app/assets/stylesheets/elabs/app/components/_content_statuses.scss +39 -0
- data/app/assets/stylesheets/elabs/app/components/_content_types.scss +41 -0
- data/app/assets/stylesheets/elabs/app/components/_git_cards.scss +122 -0
- data/app/assets/stylesheets/elabs/app/elements/_alerts.scss +3 -0
- data/app/assets/stylesheets/elabs/app/elements/_badges.scss +17 -0
- data/app/assets/stylesheets/elabs/app/elements/_buttons.scss +34 -0
- data/app/assets/stylesheets/elabs/app/elements/_dropdowns.scss +78 -0
- data/app/assets/stylesheets/elabs/app/elements/_empty.scss +31 -0
- data/app/assets/stylesheets/elabs/app/elements/_errors.scss +15 -0
- data/app/assets/stylesheets/elabs/app/elements/_filter_link.scss +23 -0
- data/app/assets/stylesheets/elabs/app/elements/_fixed_links.scss +19 -0
- data/app/assets/stylesheets/elabs/app/elements/_forms.scss +123 -0
- data/app/assets/stylesheets/elabs/app/elements/_icons.scss +74 -0
- data/app/assets/stylesheets/elabs/app/{_medias.scss → elements/_medias.scss} +2 -0
- data/app/assets/stylesheets/elabs/app/{_modals.scss → elements/_modals.scss} +8 -4
- data/app/assets/stylesheets/elabs/app/elements/_nsfw.scss +41 -0
- data/app/assets/stylesheets/elabs/app/{_pagination.scss → elements/_pagination.scss} +0 -0
- data/app/assets/stylesheets/elabs/app/{_tables.scss → elements/_tables.scss} +2 -2
- data/app/assets/stylesheets/elabs/app/elements/_tabs.scss +73 -0
- data/app/assets/stylesheets/elabs/app/helpers/_cards.scss +80 -0
- data/app/assets/stylesheets/elabs/app/helpers/_containers.scss +7 -0
- data/app/assets/stylesheets/elabs/app/helpers/_states.scss +3 -0
- data/app/assets/stylesheets/elabs/app/{_helpers.scss → helpers/_typo.scss} +6 -4
- data/app/assets/stylesheets/elabs/app/layouts/_acts.scss +25 -0
- data/app/assets/stylesheets/elabs/app/layouts/_classifiers.scss +32 -0
- data/app/assets/stylesheets/elabs/app/{_comments.scss → layouts/_comments.scss} +0 -2
- data/app/assets/stylesheets/elabs/app/layouts/_devise.scss +65 -0
- data/app/assets/stylesheets/elabs/app/layouts/_layout.scss +40 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page.scss +14 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_content.scss +13 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_footer.scss +20 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_header.scss +146 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_menu.scss +232 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_messages.scss +4 -0
- data/app/assets/stylesheets/elabs/app/layouts/_private_layout.scss +78 -0
- data/app/assets/stylesheets/elabs/app/{_typo.scss → layouts/_typo.scss} +3 -0
- data/app/assets/stylesheets/elabs/app/mixins/_classifier_card.scss +43 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content_card.scss +103 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content_full.scss +158 -0
- data/app/assets/stylesheets/elabs/app/mixins/{_content-inline.scss → _content_inline.scss} +0 -0
- data/app/assets/stylesheets/elabs/lib/_codemirror.scss +2 -2
- data/app/assets/stylesheets/elabs/{_colors.scss → lib/_colors_reference.scss} +0 -52
- data/app/assets/stylesheets/elabs/lib/_license_icons.scss +121 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fontawesome.scss +1 -1
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fonts.scss +18 -18
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +1 -1
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss_variables.scss +227 -0
- data/app/assets/stylesheets/elabs/style.scss +62 -57
- data/app/controllers/elabs/admin/admin_application_controller.rb +1 -1
- data/app/controllers/elabs/admin/announcements_controller.rb +71 -0
- data/app/controllers/elabs/concerns/elabs_controller.rb +3 -0
- data/app/controllers/elabs/content_application_controller.rb +4 -0
- data/app/controllers/elabs/elabs_public_controller.rb +15 -0
- data/app/controllers/elabs/languages_controller.rb +1 -5
- data/app/controllers/elabs/member/comments_controller.rb +42 -0
- data/app/controllers/elabs/member/member_application_controller.rb +1 -1
- data/app/controllers/elabs/reports_controller.rb +2 -0
- data/app/helpers/elabs/acts_helper.rb +7 -2
- data/app/helpers/elabs/application_helper.rb +8 -50
- data/app/helpers/elabs/content_filters_helper.rb +17 -24
- data/app/helpers/elabs/content_helper.rb +8 -35
- data/app/helpers/elabs/content_renderer_helper.rb +4 -112
- data/app/helpers/elabs/form_helper.rb +11 -11
- data/app/helpers/elabs/icons_helper.rb +63 -0
- data/app/helpers/elabs/{admin_content_helper.rb → links_admin_helper.rb} +1 -1
- data/app/helpers/elabs/links_helper.rb +58 -0
- data/app/helpers/elabs/{member_content_helper.rb → links_member_helper.rb} +2 -2
- data/app/helpers/elabs/notification_helper.rb +17 -3
- data/app/helpers/elabs/shortcodes_helper.rb +108 -0
- data/app/helpers/elabs/thumbnails_helper.rb +1 -1
- data/app/models/elabs/album.rb +14 -0
- data/app/models/elabs/announcement.rb +33 -0
- data/app/models/elabs/article.rb +14 -0
- data/app/models/elabs/comment.rb +10 -4
- data/app/models/elabs/note.rb +14 -0
- data/app/models/elabs/project.rb +12 -0
- data/app/models/elabs/report.rb +1 -0
- data/app/models/elabs/upload.rb +16 -0
- data/app/models/elabs/user.rb +2 -1
- data/app/views/elabs/acts/_filters.html.haml +3 -2
- data/app/views/elabs/acts/index.html.haml +2 -13
- data/app/views/elabs/admin/announcements/_announcement.json.jbuilder +10 -0
- data/app/views/elabs/admin/announcements/_form.html.haml +52 -0
- data/app/views/elabs/admin/announcements/edit.html.haml +3 -0
- data/app/views/elabs/admin/announcements/index.html.haml +28 -0
- data/app/views/elabs/admin/announcements/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/announcements/new.html.haml +3 -0
- data/app/views/elabs/admin/licenses/index.html.haml +2 -2
- data/app/views/elabs/admin/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/albums/_card_content.html.haml +8 -0
- data/app/views/elabs/albums/_filters.html.haml +5 -3
- data/app/views/elabs/albums/index.html.haml +1 -1
- data/app/views/elabs/albums/show.html.haml +38 -29
- data/app/views/elabs/articles/_filters.html.haml +5 -3
- data/app/views/elabs/articles/index.html.haml +1 -1
- data/app/views/elabs/articles/show.html.haml +33 -25
- data/app/views/elabs/auth/confirmations/new.html.haml +1 -1
- data/app/views/elabs/auth/passwords/edit.html.haml +1 -1
- data/app/views/elabs/auth/passwords/new.html.haml +1 -1
- data/app/views/elabs/auth/registrations/new.html.haml +7 -2
- data/app/views/elabs/auth/sessions/_new.html.haml +1 -1
- data/app/views/elabs/auth/unlocks/new.html.haml +1 -1
- data/app/views/elabs/comments/_comments.html.haml +29 -20
- data/app/views/elabs/comments/_form.html.haml +40 -36
- data/app/views/elabs/languages/_filters.html.haml +3 -5
- data/app/views/elabs/languages/index.html.haml +12 -13
- data/app/views/elabs/languages/show.html.haml +36 -31
- data/app/views/elabs/layouts/_announcements.html.haml +9 -0
- data/app/views/elabs/layouts/_content_associations.html.haml +89 -0
- data/app/views/elabs/layouts/_content_card.html.haml +41 -0
- data/app/views/elabs/layouts/_flash_messages.html.haml +4 -0
- data/app/views/elabs/layouts/_footer.html.haml +18 -10
- data/app/views/elabs/layouts/_form_honeypot.html.haml +12 -0
- data/app/views/elabs/layouts/_hidden_entry.html.haml +1 -1
- data/app/views/elabs/layouts/_hidden_entry_full.html.haml +4 -2
- data/app/views/elabs/layouts/_hidden_entry_inline.html.haml +1 -1
- data/app/views/elabs/layouts/_language_menu.html.haml +2 -2
- data/app/views/elabs/layouts/_menu.html.haml +58 -75
- data/app/views/elabs/layouts/_menu_admin.html.haml +40 -0
- data/app/views/elabs/layouts/_menu_member.html.haml +57 -0
- data/app/views/elabs/layouts/application.html.haml +24 -13
- data/app/views/elabs/layouts/application_admin.html.haml +33 -0
- data/app/views/elabs/layouts/application_member.html.haml +36 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_albums.html.haml +0 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_projects.html.haml +0 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_tags.html.haml +0 -0
- data/app/views/elabs/layouts/{_shortcode_infinite_loop.html.haml → shortcodes/_infinite_loop.html.haml} +1 -1
- data/app/views/elabs/layouts/{_shortcode_infinite_loop_inline.html.haml → shortcodes/_infinite_loop_inline.html.haml} +0 -0
- data/app/views/elabs/layouts/{_shortcode_missing_content.html.haml → shortcodes/_missing_content.html.haml} +1 -1
- data/app/views/elabs/layouts/{_shortcode_missing_content_inline.html.haml → shortcodes/_missing_content_inline.html.haml} +0 -0
- data/app/views/elabs/layouts/shortcodes/_open_to_see.html.haml +2 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_inline.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_user_card.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_group_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_inline.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_user_card.html.haml +1 -1
- data/app/views/elabs/layouts/shortcodes/widgets/vue/_all_widgets.html.haml +5 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_repo_card_vue.html.haml +8 -8
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_user_card_vue.html.haml +5 -5
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_group_card_vue.html.haml +5 -5
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_repo_card_vue.html.haml +8 -8
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_user_card_vue.html.haml +4 -4
- data/app/views/elabs/licenses/_filters.html.haml +3 -2
- data/app/views/elabs/licenses/index.html.haml +14 -12
- data/app/views/elabs/licenses/show.html.haml +40 -34
- data/app/views/elabs/member/albums/_form.html.haml +1 -43
- data/app/views/elabs/member/articles/_form.html.haml +1 -39
- data/app/views/elabs/member/layouts/_form_commons.html.haml +55 -0
- data/app/views/elabs/member/notes/_form.html.haml +1 -39
- data/app/views/elabs/member/preferences/edit.html.haml +1 -2
- data/app/views/elabs/member/projects/_form.html.haml +3 -38
- data/app/views/elabs/member/uploads/_form.html.haml +1 -42
- data/app/views/elabs/member/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/member/users/edit.html.haml +3 -4
- data/app/views/elabs/notes/_filters.html.haml +5 -3
- data/app/views/elabs/notes/index.html.haml +1 -1
- data/app/views/elabs/notes/show.html.haml +33 -25
- data/app/views/elabs/projects/_filters.html.haml +5 -3
- data/app/views/elabs/projects/index.html.haml +1 -1
- data/app/views/elabs/projects/show.html.haml +68 -62
- data/app/views/elabs/reports/_form.html.haml +2 -0
- data/app/views/elabs/tags/_filters.html.haml +3 -2
- data/app/views/elabs/tags/index.html.haml +11 -11
- data/app/views/elabs/tags/show.html.haml +31 -28
- data/app/views/elabs/uploads/_filters.html.haml +5 -3
- data/app/views/elabs/uploads/_preview.html.haml +5 -4
- data/app/views/elabs/uploads/_thumbnail.html.haml +9 -0
- data/app/views/elabs/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/uploads/index.html.haml +1 -1
- data/app/views/elabs/uploads/show.html.haml +45 -39
- data/app/views/elabs/users/_filters.html.haml +3 -2
- data/app/views/elabs/users/_user.html.haml +3 -3
- data/app/views/elabs/users/show.html.haml +48 -43
- data/config/routes.rb +13 -8
- data/db/migrate/20181025084232_add_archived_field_to_comments.rb +5 -0
- data/db/migrate/20181026071743_delete_comment_notifications.rb +5 -0
- data/db/migrate/20181030063505_create_announcements.rb +14 -0
- data/docs/CODEOWNERS +10 -0
- data/docs/migrating.md +16 -1
- data/docs/shortcodes_guide.md +51 -0
- data/lib/assets/javascripts/README-highlight.js.md +5 -5
- data/lib/assets/javascripts/highlight.js-9.13.1/highlight.pack.js +2 -0
- data/lib/assets/stylesheets/{highlight.js-9.12.0 → highlight.js-9.13.1}/styles/atelier-sulphurpool-light.css +0 -0
- data/lib/elabs.rb +8 -0
- data/lib/elabs/version.rb +1 -1
- data/lib/generators/elabs/{devise_views_generator.rb → devise_mailer_views_generator.rb} +2 -2
- data/lib/generators/elabs/images_generator.rb +24 -0
- data/lib/generators/elabs/required_assets_generator.rb +0 -2
- data/lib/generators/templates/elabs.rb +3 -0
- data/locale/app.pot +132 -19
- data/locale/en/app.edit.po +130 -17
- data/locale/en/app.po +130 -17
- data/locale/fr/app.edit.po +145 -28
- data/locale/fr/app.po +141 -27
- data/package.json +10 -12
- data/yarn.lock +885 -668
- metadata +136 -97
- data/app/assets/stylesheets/elabs/_icons.scss +0 -17
- data/app/assets/stylesheets/elabs/app/_acts.scss +0 -69
- data/app/assets/stylesheets/elabs/app/_alerts.scss +0 -3
- data/app/assets/stylesheets/elabs/app/_badges.scss +0 -11
- data/app/assets/stylesheets/elabs/app/_buttons.scss +0 -29
- data/app/assets/stylesheets/elabs/app/_content.scss +0 -25
- data/app/assets/stylesheets/elabs/app/_content_statuses.scss +0 -32
- data/app/assets/stylesheets/elabs/app/_content_uploads.scss +0 -39
- data/app/assets/stylesheets/elabs/app/_empty.scss +0 -19
- data/app/assets/stylesheets/elabs/app/_errors.scss +0 -9
- data/app/assets/stylesheets/elabs/app/_filter_links.scss +0 -27
- data/app/assets/stylesheets/elabs/app/_forms.scss +0 -74
- data/app/assets/stylesheets/elabs/app/_languages.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_layout.scss +0 -206
- data/app/assets/stylesheets/elabs/app/_licenses.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_link-to-top.scss +0 -8
- data/app/assets/stylesheets/elabs/app/_tabs.scss +0 -54
- data/app/assets/stylesheets/elabs/app/_tags.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_toolbars.scss +0 -3
- data/app/assets/stylesheets/elabs/app/_users.scss +0 -21
- data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +0 -13
- data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +0 -46
- data/app/assets/stylesheets/elabs/app/admin-members/_layout.scss +0 -17
- data/app/assets/stylesheets/elabs/app/areas/_devise.scss +0 -31
- data/app/assets/stylesheets/elabs/app/components/_cards.scss +0 -16
- data/app/assets/stylesheets/elabs/app/components/_container.scss +0 -4
- data/app/assets/stylesheets/elabs/app/mixins/_classifier-card.scss +0 -16
- data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +0 -72
- data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +0 -77
- data/app/assets/stylesheets/elabs/app/widgets/_git-cards.scss +0 -88
- data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +0 -1118
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +0 -239
- data/app/views/elabs/albums/_album.html.haml +0 -38
- data/app/views/elabs/articles/_article.html.haml +0 -30
- data/app/views/elabs/languages/_associations.html.haml +0 -61
- data/app/views/elabs/layouts/_shortcode_open_to_see.html.haml +0 -2
- data/app/views/elabs/layouts/admin_application.html.haml +0 -21
- data/app/views/elabs/layouts/member_application.html.haml +0 -24
- data/app/views/elabs/layouts/widgets/vue/_all_widgets.html.haml +0 -5
- data/app/views/elabs/licenses/_associations.html.haml +0 -61
- data/app/views/elabs/notes/_note.html.haml +0 -31
- data/app/views/elabs/projects/_associations.html.haml +0 -54
- data/app/views/elabs/projects/_project.html.haml +0 -29
- data/app/views/elabs/tags/_associations.html.haml +0 -61
- data/app/views/elabs/uploads/_upload.html.haml +0 -41
- data/app/views/elabs/users/_associations.html.haml +0 -61
- data/db/seeds.rb +0 -10
- data/db/seeds_development.rb +0 -21
- data/db/seeds_production.rb +0 -0
- data/lib/assets/javascripts/codemirror-5.39.2/addon/mode/overlay.js +0 -90
- data/lib/assets/javascripts/codemirror-5.39.2/lib/codemirror.js +0 -9684
- data/lib/assets/javascripts/codemirror-5.39.2/mode/clike/clike.js +0 -834
- data/lib/assets/javascripts/codemirror-5.39.2/mode/css/css.js +0 -832
- data/lib/assets/javascripts/codemirror-5.39.2/mode/gfm/gfm.js +0 -129
- data/lib/assets/javascripts/codemirror-5.39.2/mode/htmlmixed/htmlmixed.js +0 -152
- data/lib/assets/javascripts/codemirror-5.39.2/mode/javascript/javascript.js +0 -896
- data/lib/assets/javascripts/codemirror-5.39.2/mode/markdown/markdown.js +0 -882
- data/lib/assets/javascripts/codemirror-5.39.2/mode/meta.js +0 -217
- data/lib/assets/javascripts/codemirror-5.39.2/mode/xml/xml.js +0 -402
- data/lib/assets/javascripts/highlight.js-9.12.0/highlight.pack.js +0 -2
- data/lib/assets/stylesheets/codemirror-5.39.2/lib/codemirror.css +0 -346
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-dark.css +0 -38
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-light.css +0 -38
data/locale/en/app.edit.po
CHANGED
@@ -69,9 +69,6 @@ msgstr[1] ""
|
|
69
69
|
msgid "%<number>i characters minimum"
|
70
70
|
msgstr ""
|
71
71
|
|
72
|
-
msgid "%<s>s:"
|
73
|
-
msgstr ""
|
74
|
-
|
75
72
|
msgid "%<string>s has been %<event>s"
|
76
73
|
msgstr ""
|
77
74
|
|
@@ -138,7 +135,7 @@ msgstr ""
|
|
138
135
|
msgid "Admin"
|
139
136
|
msgstr ""
|
140
137
|
|
141
|
-
msgid "Administration
|
138
|
+
msgid "Administration"
|
142
139
|
msgstr ""
|
143
140
|
|
144
141
|
msgid "Album count"
|
@@ -168,6 +165,9 @@ msgstr ""
|
|
168
165
|
msgid "An error occured when fetching the repository data from Github."
|
169
166
|
msgstr ""
|
170
167
|
|
168
|
+
msgid "An error occurred during process"
|
169
|
+
msgstr ""
|
170
|
+
|
171
171
|
msgid "An error prevented the instructions from being sent:"
|
172
172
|
msgid_plural "%<nb>i errors prevented the instructions from being sent:"
|
173
173
|
msgstr[0] ""
|
@@ -178,6 +178,11 @@ msgid_plural "%<nb>i errors prevented this album from being saved:"
|
|
178
178
|
msgstr[0] ""
|
179
179
|
msgstr[1] ""
|
180
180
|
|
181
|
+
msgid "An error prevented this announcement from being saved:"
|
182
|
+
msgid_plural "%<nb>i errors prevented this announcement from being saved:"
|
183
|
+
msgstr[0] ""
|
184
|
+
msgstr[1] ""
|
185
|
+
|
181
186
|
msgid "An error prevented this article from being saved:"
|
182
187
|
msgid_plural "%<nb>i errors prevented this article from being saved:"
|
183
188
|
msgstr[0] ""
|
@@ -248,6 +253,18 @@ msgid_plural "%<nb>i errors prevented your report from being saved:"
|
|
248
253
|
msgstr[0] ""
|
249
254
|
msgstr[1] ""
|
250
255
|
|
256
|
+
msgid "Announcement was successfully created."
|
257
|
+
msgstr ""
|
258
|
+
|
259
|
+
msgid "Announcement was successfully destroyed."
|
260
|
+
msgstr ""
|
261
|
+
|
262
|
+
msgid "Announcement was successfully updated."
|
263
|
+
msgstr ""
|
264
|
+
|
265
|
+
msgid "Announcements"
|
266
|
+
msgstr ""
|
267
|
+
|
251
268
|
msgid "Application content record"
|
252
269
|
msgstr ""
|
253
270
|
|
@@ -320,6 +337,9 @@ msgstr ""
|
|
320
337
|
msgid "Bio"
|
321
338
|
msgstr ""
|
322
339
|
|
340
|
+
msgid "Body"
|
341
|
+
msgstr ""
|
342
|
+
|
323
343
|
msgid "By submitting this report, you agree to be recontacted by administrators."
|
324
344
|
msgstr ""
|
325
345
|
|
@@ -335,15 +355,42 @@ msgstr ""
|
|
335
355
|
msgid "Change your password"
|
336
356
|
msgstr ""
|
337
357
|
|
358
|
+
msgid "Choose day"
|
359
|
+
msgstr ""
|
360
|
+
|
361
|
+
msgid "Choose hour"
|
362
|
+
msgstr ""
|
363
|
+
|
364
|
+
msgid "Choose minutes"
|
365
|
+
msgstr ""
|
366
|
+
|
367
|
+
msgid "Choose month"
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
msgid "Choose year"
|
371
|
+
msgstr ""
|
372
|
+
|
373
|
+
msgid "Come back in a few days to give time to the author to review it."
|
374
|
+
msgstr ""
|
375
|
+
|
338
376
|
msgid "Come back later, content is being created, somewhere"
|
339
377
|
msgstr ""
|
340
378
|
|
341
379
|
msgid "Comment"
|
342
380
|
msgstr ""
|
343
381
|
|
382
|
+
msgid "Comment was successfully archived."
|
383
|
+
msgstr ""
|
384
|
+
|
344
385
|
msgid "Comment was successfully created."
|
345
386
|
msgstr ""
|
346
387
|
|
388
|
+
msgid "Comment was successfully created. Thank you Bishop."
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
msgid "Comment was successfully destroyed."
|
392
|
+
msgstr ""
|
393
|
+
|
347
394
|
msgid "Comments"
|
348
395
|
msgstr ""
|
349
396
|
|
@@ -404,10 +451,13 @@ msgstr ""
|
|
404
451
|
msgid "Didn't receive unlock instructions?"
|
405
452
|
msgstr ""
|
406
453
|
|
407
|
-
msgid "Display the full element to display this content
|
454
|
+
msgid "Display the full element to display this content…"
|
455
|
+
msgstr ""
|
456
|
+
|
457
|
+
msgid "Documentation"
|
408
458
|
msgstr ""
|
409
459
|
|
410
|
-
msgid "
|
460
|
+
msgid "Don't fill this field if you want this form to be saved."
|
411
461
|
msgstr ""
|
412
462
|
|
413
463
|
msgid "Download"
|
@@ -422,6 +472,9 @@ msgstr ""
|
|
422
472
|
msgid "Edit \"%<name>s\""
|
423
473
|
msgstr ""
|
424
474
|
|
475
|
+
msgid "Edit announcement"
|
476
|
+
msgstr ""
|
477
|
+
|
425
478
|
msgid "Editing album"
|
426
479
|
msgstr ""
|
427
480
|
|
@@ -449,6 +502,9 @@ msgstr ""
|
|
449
502
|
msgid "Email:"
|
450
503
|
msgstr ""
|
451
504
|
|
505
|
+
msgid "End at"
|
506
|
+
msgstr ""
|
507
|
+
|
452
508
|
msgid "Forgot your password?"
|
453
509
|
msgstr ""
|
454
510
|
|
@@ -461,13 +517,13 @@ msgstr ""
|
|
461
517
|
msgid "Gitlab responded with the following error:"
|
462
518
|
msgstr ""
|
463
519
|
|
464
|
-
msgid "
|
520
|
+
msgid "Global"
|
465
521
|
msgstr ""
|
466
522
|
|
467
|
-
msgid "
|
523
|
+
msgid "Hide NSFW"
|
468
524
|
msgstr ""
|
469
525
|
|
470
|
-
msgid "Home page
|
526
|
+
msgid "Home page"
|
471
527
|
msgstr ""
|
472
528
|
|
473
529
|
msgid "I agree to be recontacted"
|
@@ -485,6 +541,15 @@ msgstr ""
|
|
485
541
|
msgid "If this is not a minor modification, you can specify the changes here."
|
486
542
|
msgstr ""
|
487
543
|
|
544
|
+
msgid "If you want to display NSFW content, click on \"Show NSFW\" in the main menu."
|
545
|
+
msgstr ""
|
546
|
+
|
547
|
+
msgid "Important"
|
548
|
+
msgstr ""
|
549
|
+
|
550
|
+
msgid "Info"
|
551
|
+
msgstr ""
|
552
|
+
|
488
553
|
msgid "Infos"
|
489
554
|
msgstr ""
|
490
555
|
|
@@ -566,6 +631,9 @@ msgstr ""
|
|
566
631
|
msgid "Leave a comment"
|
567
632
|
msgstr ""
|
568
633
|
|
634
|
+
msgid "Level"
|
635
|
+
msgstr ""
|
636
|
+
|
569
637
|
msgid "License"
|
570
638
|
msgstr ""
|
571
639
|
|
@@ -647,9 +715,15 @@ msgstr ""
|
|
647
715
|
msgid "Member"
|
648
716
|
msgstr ""
|
649
717
|
|
718
|
+
msgid "Members"
|
719
|
+
msgstr ""
|
720
|
+
|
650
721
|
msgid "Mime type:"
|
651
722
|
msgstr ""
|
652
723
|
|
724
|
+
msgid "NSFW content"
|
725
|
+
msgstr ""
|
726
|
+
|
653
727
|
msgid "Name"
|
654
728
|
msgstr ""
|
655
729
|
|
@@ -677,6 +751,9 @@ msgstr ""
|
|
677
751
|
msgid "New album"
|
678
752
|
msgstr ""
|
679
753
|
|
754
|
+
msgid "New announcement"
|
755
|
+
msgstr ""
|
756
|
+
|
680
757
|
msgid "New article"
|
681
758
|
msgstr ""
|
682
759
|
|
@@ -734,6 +811,9 @@ msgstr ""
|
|
734
811
|
msgid "Notifications"
|
735
812
|
msgstr ""
|
736
813
|
|
814
|
+
msgid "Official documentation"
|
815
|
+
msgstr ""
|
816
|
+
|
737
817
|
msgid "Oh noes ! There is nothing here!"
|
738
818
|
msgstr ""
|
739
819
|
|
@@ -749,9 +829,6 @@ msgstr ""
|
|
749
829
|
msgid "Pass reset"
|
750
830
|
msgstr ""
|
751
831
|
|
752
|
-
msgid "Permalink"
|
753
|
-
msgstr ""
|
754
|
-
|
755
832
|
msgid "Posted on:"
|
756
833
|
msgstr ""
|
757
834
|
|
@@ -821,6 +898,9 @@ msgstr ""
|
|
821
898
|
msgid "Report was successfully created."
|
822
899
|
msgstr ""
|
823
900
|
|
901
|
+
msgid "Report was successfully created. Thank you Bishop."
|
902
|
+
msgstr ""
|
903
|
+
|
824
904
|
msgid "Report was successfully destroyed."
|
825
905
|
msgstr ""
|
826
906
|
|
@@ -851,6 +931,9 @@ msgstr ""
|
|
851
931
|
msgid "Resend unlock instructions"
|
852
932
|
msgstr ""
|
853
933
|
|
934
|
+
msgid "Robot area"
|
935
|
+
msgstr ""
|
936
|
+
|
854
937
|
msgid "Role"
|
855
938
|
msgstr ""
|
856
939
|
|
@@ -908,7 +991,13 @@ msgstr ""
|
|
908
991
|
msgid "Sorry, showing this may have unpredictable consequences"
|
909
992
|
msgstr ""
|
910
993
|
|
911
|
-
msgid "
|
994
|
+
msgid "Sort by…"
|
995
|
+
msgstr ""
|
996
|
+
|
997
|
+
msgid "Sources"
|
998
|
+
msgstr ""
|
999
|
+
|
1000
|
+
msgid "Start at"
|
912
1001
|
msgstr ""
|
913
1002
|
|
914
1003
|
msgid "Subscription date:"
|
@@ -956,10 +1045,13 @@ msgstr ""
|
|
956
1045
|
msgid "Tag|Uploads count"
|
957
1046
|
msgstr ""
|
958
1047
|
|
959
|
-
msgid "
|
1048
|
+
msgid "Target"
|
1049
|
+
msgstr ""
|
1050
|
+
|
1051
|
+
msgid "The author wanted to put something here, but it may create an infinite loop…"
|
960
1052
|
msgstr ""
|
961
1053
|
|
962
|
-
msgid "The author wanted to put something here, but it was not found
|
1054
|
+
msgid "The author wanted to put something here, but it was not found…"
|
963
1055
|
msgstr ""
|
964
1056
|
|
965
1057
|
msgid "The following formats will be viewable online; other will need a download: %<formats>s"
|
@@ -1022,10 +1114,10 @@ msgstr ""
|
|
1022
1114
|
msgid "User was successfully destroyed."
|
1023
1115
|
msgstr ""
|
1024
1116
|
|
1025
|
-
msgid "
|
1117
|
+
msgid "Username"
|
1026
1118
|
msgstr ""
|
1027
1119
|
|
1028
|
-
msgid "Username"
|
1120
|
+
msgid "Username can be upper/lower case ascii letters, digits, hyphens and underscores. Make it at least 4 characters. As in \"super_man\", \"super-woman\", \"uberCat01\""
|
1029
1121
|
msgstr ""
|
1030
1122
|
|
1031
1123
|
msgid "Username:"
|
@@ -1097,9 +1189,15 @@ msgstr ""
|
|
1097
1189
|
msgid "User|Username"
|
1098
1190
|
msgstr ""
|
1099
1191
|
|
1192
|
+
msgid "View"
|
1193
|
+
msgstr ""
|
1194
|
+
|
1100
1195
|
msgid "View online"
|
1101
1196
|
msgstr ""
|
1102
1197
|
|
1198
|
+
msgid "Warning"
|
1199
|
+
msgstr ""
|
1200
|
+
|
1103
1201
|
msgid "We can't display the repository infos. Github responded with the following error:"
|
1104
1202
|
msgstr ""
|
1105
1203
|
|
@@ -1112,6 +1210,15 @@ msgstr ""
|
|
1112
1210
|
msgid "Yes"
|
1113
1211
|
msgstr ""
|
1114
1212
|
|
1213
|
+
msgid "You"
|
1214
|
+
msgstr ""
|
1215
|
+
|
1216
|
+
msgid "You may want to use a real device to do administrative things. Content here will be a mess."
|
1217
|
+
msgstr ""
|
1218
|
+
|
1219
|
+
msgid "You may want to use a real device to manage things. Content here will be a mess."
|
1220
|
+
msgstr ""
|
1221
|
+
|
1115
1222
|
msgid "You want to react to this content or ask something to the author? Just leave a comment here!"
|
1116
1223
|
msgstr ""
|
1117
1224
|
|
@@ -1121,12 +1228,18 @@ msgstr ""
|
|
1121
1228
|
msgid "Your browser does not support the video tag."
|
1122
1229
|
msgstr ""
|
1123
1230
|
|
1231
|
+
msgid "Your content"
|
1232
|
+
msgstr ""
|
1233
|
+
|
1124
1234
|
msgid "Your infos were successfully saved"
|
1125
1235
|
msgstr ""
|
1126
1236
|
|
1127
1237
|
msgid "Your picture should be in \"png\" or \"jpg\", preferably a square of 512px."
|
1128
1238
|
msgstr ""
|
1129
1239
|
|
1240
|
+
msgid "by %<name>s"
|
1241
|
+
msgstr ""
|
1242
|
+
|
1130
1243
|
msgid "created"
|
1131
1244
|
msgstr ""
|
1132
1245
|
|
data/locale/en/app.po
CHANGED
@@ -69,9 +69,6 @@ msgstr[1] ""
|
|
69
69
|
msgid "%<number>i characters minimum"
|
70
70
|
msgstr ""
|
71
71
|
|
72
|
-
msgid "%<s>s:"
|
73
|
-
msgstr ""
|
74
|
-
|
75
72
|
msgid "%<string>s has been %<event>s"
|
76
73
|
msgstr ""
|
77
74
|
|
@@ -138,7 +135,7 @@ msgstr ""
|
|
138
135
|
msgid "Admin"
|
139
136
|
msgstr ""
|
140
137
|
|
141
|
-
msgid "Administration
|
138
|
+
msgid "Administration"
|
142
139
|
msgstr ""
|
143
140
|
|
144
141
|
msgid "Album count"
|
@@ -168,6 +165,9 @@ msgstr ""
|
|
168
165
|
msgid "An error occured when fetching the repository data from Github."
|
169
166
|
msgstr ""
|
170
167
|
|
168
|
+
msgid "An error occurred during process"
|
169
|
+
msgstr ""
|
170
|
+
|
171
171
|
msgid "An error prevented the instructions from being sent:"
|
172
172
|
msgid_plural "%<nb>i errors prevented the instructions from being sent:"
|
173
173
|
msgstr[0] ""
|
@@ -178,6 +178,11 @@ msgid_plural "%<nb>i errors prevented this album from being saved:"
|
|
178
178
|
msgstr[0] ""
|
179
179
|
msgstr[1] ""
|
180
180
|
|
181
|
+
msgid "An error prevented this announcement from being saved:"
|
182
|
+
msgid_plural "%<nb>i errors prevented this announcement from being saved:"
|
183
|
+
msgstr[0] ""
|
184
|
+
msgstr[1] ""
|
185
|
+
|
181
186
|
msgid "An error prevented this article from being saved:"
|
182
187
|
msgid_plural "%<nb>i errors prevented this article from being saved:"
|
183
188
|
msgstr[0] ""
|
@@ -248,6 +253,18 @@ msgid_plural "%<nb>i errors prevented your report from being saved:"
|
|
248
253
|
msgstr[0] ""
|
249
254
|
msgstr[1] ""
|
250
255
|
|
256
|
+
msgid "Announcement was successfully created."
|
257
|
+
msgstr ""
|
258
|
+
|
259
|
+
msgid "Announcement was successfully destroyed."
|
260
|
+
msgstr ""
|
261
|
+
|
262
|
+
msgid "Announcement was successfully updated."
|
263
|
+
msgstr ""
|
264
|
+
|
265
|
+
msgid "Announcements"
|
266
|
+
msgstr ""
|
267
|
+
|
251
268
|
msgid "Application content record"
|
252
269
|
msgstr ""
|
253
270
|
|
@@ -320,6 +337,9 @@ msgstr ""
|
|
320
337
|
msgid "Bio"
|
321
338
|
msgstr ""
|
322
339
|
|
340
|
+
msgid "Body"
|
341
|
+
msgstr ""
|
342
|
+
|
323
343
|
msgid "By submitting this report, you agree to be recontacted by administrators."
|
324
344
|
msgstr ""
|
325
345
|
|
@@ -335,15 +355,42 @@ msgstr ""
|
|
335
355
|
msgid "Change your password"
|
336
356
|
msgstr ""
|
337
357
|
|
358
|
+
msgid "Choose day"
|
359
|
+
msgstr ""
|
360
|
+
|
361
|
+
msgid "Choose hour"
|
362
|
+
msgstr ""
|
363
|
+
|
364
|
+
msgid "Choose minutes"
|
365
|
+
msgstr ""
|
366
|
+
|
367
|
+
msgid "Choose month"
|
368
|
+
msgstr ""
|
369
|
+
|
370
|
+
msgid "Choose year"
|
371
|
+
msgstr ""
|
372
|
+
|
373
|
+
msgid "Come back in a few days to give time to the author to review it."
|
374
|
+
msgstr ""
|
375
|
+
|
338
376
|
msgid "Come back later, content is being created, somewhere"
|
339
377
|
msgstr ""
|
340
378
|
|
341
379
|
msgid "Comment"
|
342
380
|
msgstr ""
|
343
381
|
|
382
|
+
msgid "Comment was successfully archived."
|
383
|
+
msgstr ""
|
384
|
+
|
344
385
|
msgid "Comment was successfully created."
|
345
386
|
msgstr ""
|
346
387
|
|
388
|
+
msgid "Comment was successfully created. Thank you Bishop."
|
389
|
+
msgstr ""
|
390
|
+
|
391
|
+
msgid "Comment was successfully destroyed."
|
392
|
+
msgstr ""
|
393
|
+
|
347
394
|
msgid "Comments"
|
348
395
|
msgstr ""
|
349
396
|
|
@@ -404,10 +451,13 @@ msgstr ""
|
|
404
451
|
msgid "Didn't receive unlock instructions?"
|
405
452
|
msgstr ""
|
406
453
|
|
407
|
-
msgid "Display the full element to display this content
|
454
|
+
msgid "Display the full element to display this content…"
|
455
|
+
msgstr ""
|
456
|
+
|
457
|
+
msgid "Documentation"
|
408
458
|
msgstr ""
|
409
459
|
|
410
|
-
msgid "
|
460
|
+
msgid "Don't fill this field if you want this form to be saved."
|
411
461
|
msgstr ""
|
412
462
|
|
413
463
|
msgid "Download"
|
@@ -422,6 +472,9 @@ msgstr ""
|
|
422
472
|
msgid "Edit \"%<name>s\""
|
423
473
|
msgstr ""
|
424
474
|
|
475
|
+
msgid "Edit announcement"
|
476
|
+
msgstr ""
|
477
|
+
|
425
478
|
msgid "Editing album"
|
426
479
|
msgstr ""
|
427
480
|
|
@@ -449,6 +502,9 @@ msgstr ""
|
|
449
502
|
msgid "Email:"
|
450
503
|
msgstr ""
|
451
504
|
|
505
|
+
msgid "End at"
|
506
|
+
msgstr ""
|
507
|
+
|
452
508
|
msgid "Forgot your password?"
|
453
509
|
msgstr ""
|
454
510
|
|
@@ -461,13 +517,13 @@ msgstr ""
|
|
461
517
|
msgid "Gitlab responded with the following error:"
|
462
518
|
msgstr ""
|
463
519
|
|
464
|
-
msgid "
|
520
|
+
msgid "Global"
|
465
521
|
msgstr ""
|
466
522
|
|
467
|
-
msgid "
|
523
|
+
msgid "Hide NSFW"
|
468
524
|
msgstr ""
|
469
525
|
|
470
|
-
msgid "Home page
|
526
|
+
msgid "Home page"
|
471
527
|
msgstr ""
|
472
528
|
|
473
529
|
msgid "I agree to be recontacted"
|
@@ -485,6 +541,15 @@ msgstr ""
|
|
485
541
|
msgid "If this is not a minor modification, you can specify the changes here."
|
486
542
|
msgstr ""
|
487
543
|
|
544
|
+
msgid "If you want to display NSFW content, click on \"Show NSFW\" in the main menu."
|
545
|
+
msgstr ""
|
546
|
+
|
547
|
+
msgid "Important"
|
548
|
+
msgstr ""
|
549
|
+
|
550
|
+
msgid "Info"
|
551
|
+
msgstr ""
|
552
|
+
|
488
553
|
msgid "Infos"
|
489
554
|
msgstr ""
|
490
555
|
|
@@ -566,6 +631,9 @@ msgstr ""
|
|
566
631
|
msgid "Leave a comment"
|
567
632
|
msgstr ""
|
568
633
|
|
634
|
+
msgid "Level"
|
635
|
+
msgstr ""
|
636
|
+
|
569
637
|
msgid "License"
|
570
638
|
msgstr ""
|
571
639
|
|
@@ -647,9 +715,15 @@ msgstr ""
|
|
647
715
|
msgid "Member"
|
648
716
|
msgstr ""
|
649
717
|
|
718
|
+
msgid "Members"
|
719
|
+
msgstr ""
|
720
|
+
|
650
721
|
msgid "Mime type:"
|
651
722
|
msgstr ""
|
652
723
|
|
724
|
+
msgid "NSFW content"
|
725
|
+
msgstr ""
|
726
|
+
|
653
727
|
msgid "Name"
|
654
728
|
msgstr ""
|
655
729
|
|
@@ -677,6 +751,9 @@ msgstr ""
|
|
677
751
|
msgid "New album"
|
678
752
|
msgstr ""
|
679
753
|
|
754
|
+
msgid "New announcement"
|
755
|
+
msgstr ""
|
756
|
+
|
680
757
|
msgid "New article"
|
681
758
|
msgstr ""
|
682
759
|
|
@@ -734,6 +811,9 @@ msgstr ""
|
|
734
811
|
msgid "Notifications"
|
735
812
|
msgstr ""
|
736
813
|
|
814
|
+
msgid "Official documentation"
|
815
|
+
msgstr ""
|
816
|
+
|
737
817
|
msgid "Oh noes ! There is nothing here!"
|
738
818
|
msgstr ""
|
739
819
|
|
@@ -749,9 +829,6 @@ msgstr ""
|
|
749
829
|
msgid "Pass reset"
|
750
830
|
msgstr ""
|
751
831
|
|
752
|
-
msgid "Permalink"
|
753
|
-
msgstr ""
|
754
|
-
|
755
832
|
msgid "Posted on:"
|
756
833
|
msgstr ""
|
757
834
|
|
@@ -821,6 +898,9 @@ msgstr ""
|
|
821
898
|
msgid "Report was successfully created."
|
822
899
|
msgstr ""
|
823
900
|
|
901
|
+
msgid "Report was successfully created. Thank you Bishop."
|
902
|
+
msgstr ""
|
903
|
+
|
824
904
|
msgid "Report was successfully destroyed."
|
825
905
|
msgstr ""
|
826
906
|
|
@@ -851,6 +931,9 @@ msgstr ""
|
|
851
931
|
msgid "Resend unlock instructions"
|
852
932
|
msgstr ""
|
853
933
|
|
934
|
+
msgid "Robot area"
|
935
|
+
msgstr ""
|
936
|
+
|
854
937
|
msgid "Role"
|
855
938
|
msgstr ""
|
856
939
|
|
@@ -908,7 +991,13 @@ msgstr ""
|
|
908
991
|
msgid "Sorry, showing this may have unpredictable consequences"
|
909
992
|
msgstr ""
|
910
993
|
|
911
|
-
msgid "
|
994
|
+
msgid "Sort by…"
|
995
|
+
msgstr ""
|
996
|
+
|
997
|
+
msgid "Sources"
|
998
|
+
msgstr ""
|
999
|
+
|
1000
|
+
msgid "Start at"
|
912
1001
|
msgstr ""
|
913
1002
|
|
914
1003
|
msgid "Subscription date:"
|
@@ -956,10 +1045,13 @@ msgstr ""
|
|
956
1045
|
msgid "Tag|Uploads count"
|
957
1046
|
msgstr ""
|
958
1047
|
|
959
|
-
msgid "
|
1048
|
+
msgid "Target"
|
1049
|
+
msgstr ""
|
1050
|
+
|
1051
|
+
msgid "The author wanted to put something here, but it may create an infinite loop…"
|
960
1052
|
msgstr ""
|
961
1053
|
|
962
|
-
msgid "The author wanted to put something here, but it was not found
|
1054
|
+
msgid "The author wanted to put something here, but it was not found…"
|
963
1055
|
msgstr ""
|
964
1056
|
|
965
1057
|
msgid "The following formats will be viewable online; other will need a download: %<formats>s"
|
@@ -1022,10 +1114,10 @@ msgstr ""
|
|
1022
1114
|
msgid "User was successfully destroyed."
|
1023
1115
|
msgstr ""
|
1024
1116
|
|
1025
|
-
msgid "
|
1117
|
+
msgid "Username"
|
1026
1118
|
msgstr ""
|
1027
1119
|
|
1028
|
-
msgid "Username"
|
1120
|
+
msgid "Username can be upper/lower case ascii letters, digits, hyphens and underscores. Make it at least 4 characters. As in \"super_man\", \"super-woman\", \"uberCat01\""
|
1029
1121
|
msgstr ""
|
1030
1122
|
|
1031
1123
|
msgid "Username:"
|
@@ -1097,9 +1189,15 @@ msgstr ""
|
|
1097
1189
|
msgid "User|Username"
|
1098
1190
|
msgstr ""
|
1099
1191
|
|
1192
|
+
msgid "View"
|
1193
|
+
msgstr ""
|
1194
|
+
|
1100
1195
|
msgid "View online"
|
1101
1196
|
msgstr ""
|
1102
1197
|
|
1198
|
+
msgid "Warning"
|
1199
|
+
msgstr ""
|
1200
|
+
|
1103
1201
|
msgid "We can't display the repository infos. Github responded with the following error:"
|
1104
1202
|
msgstr ""
|
1105
1203
|
|
@@ -1112,6 +1210,15 @@ msgstr ""
|
|
1112
1210
|
msgid "Yes"
|
1113
1211
|
msgstr ""
|
1114
1212
|
|
1213
|
+
msgid "You"
|
1214
|
+
msgstr ""
|
1215
|
+
|
1216
|
+
msgid "You may want to use a real device to do administrative things. Content here will be a mess."
|
1217
|
+
msgstr ""
|
1218
|
+
|
1219
|
+
msgid "You may want to use a real device to manage things. Content here will be a mess."
|
1220
|
+
msgstr ""
|
1221
|
+
|
1115
1222
|
msgid "You want to react to this content or ask something to the author? Just leave a comment here!"
|
1116
1223
|
msgstr ""
|
1117
1224
|
|
@@ -1121,12 +1228,18 @@ msgstr ""
|
|
1121
1228
|
msgid "Your browser does not support the video tag."
|
1122
1229
|
msgstr ""
|
1123
1230
|
|
1231
|
+
msgid "Your content"
|
1232
|
+
msgstr ""
|
1233
|
+
|
1124
1234
|
msgid "Your infos were successfully saved"
|
1125
1235
|
msgstr ""
|
1126
1236
|
|
1127
1237
|
msgid "Your picture should be in \"png\" or \"jpg\", preferably a square of 512px."
|
1128
1238
|
msgstr ""
|
1129
1239
|
|
1240
|
+
msgid "by %<name>s"
|
1241
|
+
msgstr ""
|
1242
|
+
|
1130
1243
|
msgid "created"
|
1131
1244
|
msgstr ""
|
1132
1245
|
|