elabs 2.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.eslintrc.yml +26 -0
- data/.gitignore +49 -0
- data/.gitlab-ci.yml +93 -0
- data/.haml-lint.yml +4 -0
- data/.node-version +1 -0
- data/.rspec +1 -0
- data/.rubocop.yml +59 -0
- data/.ruby-version +1 -0
- data/.simplecov +5 -0
- data/.stylelintrc.yml +218 -0
- data/CHANGELOG.md +273 -0
- data/CODE_OF_CONDUCT.md +78 -0
- data/Gemfile +75 -0
- data/Gemfile.lock +376 -0
- data/LICENSE +21 -0
- data/LICENSES.md +6 -0
- data/README.md +41 -0
- data/ROADMAP.md +61 -0
- data/Rakefile +32 -0
- data/app/assets/config/elabs_manifest.js +3 -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/application.js +27 -0
- data/app/assets/javascripts/elabs/helpers-codemirror.js +29 -0
- data/app/assets/javascripts/elabs/helpers-markdown.js +42 -0
- data/app/assets/javascripts/elabs/helpers.js +17 -0
- data/app/assets/javascripts/elabs/modals.js +19 -0
- data/app/assets/javascripts/elabs/tabs.js +32 -0
- data/app/assets/stylesheets/elabs/_colors.scss +345 -0
- data/app/assets/stylesheets/elabs/_icons.scss +9 -0
- data/app/assets/stylesheets/elabs/_variables.scss +13 -0
- data/app/assets/stylesheets/elabs/app/_acts.scss +58 -0
- data/app/assets/stylesheets/elabs/app/_alerts.scss +3 -0
- data/app/assets/stylesheets/elabs/app/_buttons.scss +21 -0
- data/app/assets/stylesheets/elabs/app/_comments.scss +1 -0
- data/app/assets/stylesheets/elabs/app/_content.scss +10 -0
- data/app/assets/stylesheets/elabs/app/_content_uploads.scss +39 -0
- data/app/assets/stylesheets/elabs/app/_empty.scss +19 -0
- data/app/assets/stylesheets/elabs/app/_errors.scss +9 -0
- data/app/assets/stylesheets/elabs/app/_filter_links.scss +27 -0
- data/app/assets/stylesheets/elabs/app/_forms.scss +69 -0
- data/app/assets/stylesheets/elabs/app/_helpers.scss +3 -0
- data/app/assets/stylesheets/elabs/app/_languages.scss +6 -0
- data/app/assets/stylesheets/elabs/app/_layout.scss +194 -0
- data/app/assets/stylesheets/elabs/app/_licenses.scss +6 -0
- data/app/assets/stylesheets/elabs/app/_link-to-top.scss +8 -0
- data/app/assets/stylesheets/elabs/app/_medias.scss +12 -0
- data/app/assets/stylesheets/elabs/app/_modals.scss +53 -0
- data/app/assets/stylesheets/elabs/app/_nsfw.scss +5 -0
- data/app/assets/stylesheets/elabs/app/_pagination.scss +16 -0
- data/app/assets/stylesheets/elabs/app/_tabs.scss +54 -0
- data/app/assets/stylesheets/elabs/app/_tags.scss +6 -0
- data/app/assets/stylesheets/elabs/app/_toolbars.scss +3 -0
- data/app/assets/stylesheets/elabs/app/_users.scss +6 -0
- data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +6 -0
- data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +70 -0
- data/app/assets/stylesheets/elabs/app/admin-members/_layout.scss +17 -0
- data/app/assets/stylesheets/elabs/app/areas/_devise.scss +31 -0
- data/app/assets/stylesheets/elabs/app/components/_cards.scss +16 -0
- data/app/assets/stylesheets/elabs/app/components/_container.scss +4 -0
- data/app/assets/stylesheets/elabs/app/mixins/_classifier-card.scss +16 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +58 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +39 -0
- data/app/assets/stylesheets/elabs/app/mixins/_icon.scss +9 -0
- data/app/assets/stylesheets/elabs/application.css +14 -0
- data/app/assets/stylesheets/elabs/lib/_codemirror.scss +26 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fontawesome.scss +38 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fonts.scss +42 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +1118 -0
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +230 -0
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +59 -0
- data/app/assets/stylesheets/elabs/style.scss +72 -0
- data/app/controllers/elabs/acts_controller.rb +12 -0
- data/app/controllers/elabs/admin/admin_application_controller.rb +19 -0
- data/app/controllers/elabs/admin/admin_content_application_controller.rb +66 -0
- data/app/controllers/elabs/admin/albums_controller.rb +10 -0
- data/app/controllers/elabs/admin/articles_controller.rb +10 -0
- data/app/controllers/elabs/admin/languages_controller.rb +77 -0
- data/app/controllers/elabs/admin/licenses_controller.rb +77 -0
- data/app/controllers/elabs/admin/notes_controller.rb +10 -0
- data/app/controllers/elabs/admin/projects_controller.rb +10 -0
- data/app/controllers/elabs/admin/reports_controller.rb +34 -0
- data/app/controllers/elabs/admin/tags_controller.rb +56 -0
- data/app/controllers/elabs/admin/uploads_controller.rb +10 -0
- data/app/controllers/elabs/admin/users_controller.rb +43 -0
- data/app/controllers/elabs/albums_controller.rb +26 -0
- data/app/controllers/elabs/articles_controller.rb +25 -0
- data/app/controllers/elabs/auth/callbacks_controller.rb +38 -0
- data/app/controllers/elabs/auth/confirmations_controller.rb +43 -0
- data/app/controllers/elabs/auth/passwords_controller.rb +47 -0
- data/app/controllers/elabs/auth/registrations_controller.rb +70 -0
- data/app/controllers/elabs/auth/sessions_controller.rb +36 -0
- data/app/controllers/elabs/auth/unlocks_controller.rb +38 -0
- data/app/controllers/elabs/concerns/elabs_controller.rb +18 -0
- data/app/controllers/elabs/concerns/localizable.rb +11 -0
- data/app/controllers/elabs/concerns/reportable.rb +17 -0
- data/app/controllers/elabs/content_application_controller.rb +45 -0
- data/app/controllers/elabs/elabs_application_controller.rb +95 -0
- data/app/controllers/elabs/languages_controller.rb +36 -0
- data/app/controllers/elabs/licenses_controller.rb +31 -0
- data/app/controllers/elabs/member/albums_controller.rb +11 -0
- data/app/controllers/elabs/member/articles_controller.rb +11 -0
- data/app/controllers/elabs/member/member_application_controller.rb +12 -0
- data/app/controllers/elabs/member/member_content_application_controller.rb +128 -0
- data/app/controllers/elabs/member/notes_controller.rb +11 -0
- data/app/controllers/elabs/member/preferences_controller.rb +36 -0
- data/app/controllers/elabs/member/projects_controller.rb +11 -0
- data/app/controllers/elabs/member/uploads_controller.rb +11 -0
- data/app/controllers/elabs/member/users_controller.rb +28 -0
- data/app/controllers/elabs/notes_controller.rb +25 -0
- data/app/controllers/elabs/projects_controller.rb +30 -0
- data/app/controllers/elabs/reports_controller.rb +36 -0
- data/app/controllers/elabs/tags_controller.rb +36 -0
- data/app/controllers/elabs/uploads_controller.rb +24 -0
- data/app/controllers/elabs/users_controller.rb +36 -0
- data/app/helpers/elabs/acts_helper.rb +22 -0
- data/app/helpers/elabs/admin_content_helper.rb +54 -0
- data/app/helpers/elabs/application_helper.rb +54 -0
- data/app/helpers/elabs/content_filters_helper.rb +97 -0
- data/app/helpers/elabs/content_renderer_helper.rb +13 -0
- data/app/helpers/elabs/member_content_helper.rb +47 -0
- data/app/helpers/elabs/thumbnails_helper.rb +28 -0
- data/app/helpers/elabs/time_helper.rb +19 -0
- data/app/helpers/elabs/uploads_helper.rb +19 -0
- data/app/jobs/elabs/application_job.rb +4 -0
- data/app/mailers/elabs/application_mailer.rb +6 -0
- data/app/models/elabs/act.rb +7 -0
- data/app/models/elabs/album.rb +24 -0
- data/app/models/elabs/albums_tag.rb +21 -0
- data/app/models/elabs/albums_upload.rb +21 -0
- data/app/models/elabs/application_content_record.rb +10 -0
- data/app/models/elabs/application_record.rb +5 -0
- data/app/models/elabs/article.rb +23 -0
- data/app/models/elabs/articles_tag.rb +21 -0
- data/app/models/elabs/comment.rb +12 -0
- data/app/models/elabs/concerns/actable_entity.rb +52 -0
- data/app/models/elabs/concerns/content_entity.rb +70 -0
- data/app/models/elabs/concerns/countable_entity.rb +81 -0
- data/app/models/elabs/concerns/taggable.rb +33 -0
- data/app/models/elabs/language.rb +17 -0
- data/app/models/elabs/license.rb +15 -0
- data/app/models/elabs/note.rb +21 -0
- data/app/models/elabs/notes_tag.rb +21 -0
- data/app/models/elabs/preference.rb +9 -0
- data/app/models/elabs/project.rb +25 -0
- data/app/models/elabs/projects_album.rb +21 -0
- data/app/models/elabs/projects_article.rb +21 -0
- data/app/models/elabs/projects_note.rb +21 -0
- data/app/models/elabs/projects_tag.rb +21 -0
- data/app/models/elabs/projects_upload.rb +21 -0
- data/app/models/elabs/report.rb +11 -0
- data/app/models/elabs/tag.rb +18 -0
- data/app/models/elabs/upload.rb +28 -0
- data/app/models/elabs/uploads_tag.rb +21 -0
- data/app/models/elabs/user.rb +30 -0
- data/app/validators/elabs/associated_author_validator.rb +11 -0
- data/app/views/elabs/acts/_act.json.jbuilder +2 -0
- data/app/views/elabs/acts/_filters.html.haml +3 -0
- data/app/views/elabs/acts/index.html.haml +27 -0
- data/app/views/elabs/acts/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/albums/_album.json.jbuilder +2 -0
- data/app/views/elabs/admin/albums/index.html.haml +43 -0
- data/app/views/elabs/admin/albums/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/articles/_article.json.jbuilder +2 -0
- data/app/views/elabs/admin/articles/index.html.haml +41 -0
- data/app/views/elabs/admin/articles/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/languages/_form.html.haml +18 -0
- data/app/views/elabs/admin/languages/_language.json.jbuilder +2 -0
- data/app/views/elabs/admin/languages/edit.html.haml +6 -0
- data/app/views/elabs/admin/languages/index.html.haml +34 -0
- data/app/views/elabs/admin/languages/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/languages/new.html.haml +3 -0
- data/app/views/elabs/admin/licenses/_form.html.haml +25 -0
- data/app/views/elabs/admin/licenses/_license.json.jbuilder +2 -0
- data/app/views/elabs/admin/licenses/edit.html.haml +6 -0
- data/app/views/elabs/admin/licenses/index.html.haml +42 -0
- data/app/views/elabs/admin/licenses/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/licenses/new.html.haml +3 -0
- data/app/views/elabs/admin/notes/_note.json.jbuilder +2 -0
- data/app/views/elabs/admin/notes/index.html.haml +40 -0
- data/app/views/elabs/admin/notes/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/projects/_project.json.jbuilder +2 -0
- data/app/views/elabs/admin/projects/index.html.haml +45 -0
- data/app/views/elabs/admin/projects/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/reports/index.html.haml +27 -0
- data/app/views/elabs/admin/reports/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/tags/_form.html.haml +17 -0
- data/app/views/elabs/admin/tags/_tag.json.jbuilder +2 -0
- data/app/views/elabs/admin/tags/edit.html.haml +6 -0
- data/app/views/elabs/admin/tags/index.html.haml +27 -0
- data/app/views/elabs/admin/tags/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/uploads/_upload.json.jbuilder +2 -0
- data/app/views/elabs/admin/uploads/index.html.haml +45 -0
- data/app/views/elabs/admin/uploads/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/users/_admin_user.json.jbuilder +2 -0
- data/app/views/elabs/admin/users/index.html.haml +33 -0
- data/app/views/elabs/admin/users/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/users/show.html.haml +26 -0
- data/app/views/elabs/admin/users/show.json.jbuilder +1 -0
- data/app/views/elabs/albums/_album.html.haml +38 -0
- data/app/views/elabs/albums/_album.json.jbuilder +2 -0
- data/app/views/elabs/albums/_filters.html.haml +8 -0
- data/app/views/elabs/albums/index.html.haml +9 -0
- data/app/views/elabs/albums/index.json.jbuilder +1 -0
- data/app/views/elabs/albums/show.html.haml +60 -0
- data/app/views/elabs/albums/show.json.jbuilder +1 -0
- data/app/views/elabs/articles/_article.html.haml +30 -0
- data/app/views/elabs/articles/_article.json.jbuilder +2 -0
- data/app/views/elabs/articles/_filters.html.haml +8 -0
- data/app/views/elabs/articles/index.html.haml +9 -0
- data/app/views/elabs/articles/index.json.jbuilder +1 -0
- data/app/views/elabs/articles/show.html.haml +45 -0
- data/app/views/elabs/articles/show.json.jbuilder +1 -0
- data/app/views/elabs/auth/confirmations/new.html.haml +26 -0
- data/app/views/elabs/auth/passwords/edit.html.haml +31 -0
- data/app/views/elabs/auth/passwords/new.html.haml +23 -0
- data/app/views/elabs/auth/registrations/edit.html.haml +48 -0
- data/app/views/elabs/auth/registrations/new.html.haml +34 -0
- data/app/views/elabs/auth/sessions/_new.html.haml +15 -0
- data/app/views/elabs/auth/sessions/new.html.haml +8 -0
- data/app/views/elabs/auth/shared/_links.html.haml +16 -0
- data/app/views/elabs/auth/unlocks/new.html.haml +23 -0
- data/app/views/elabs/comments/_comment.json.jbuilder +2 -0
- data/app/views/elabs/comments/_comments.html.haml +21 -0
- data/app/views/elabs/comments/_form.html.haml +31 -0
- data/app/views/elabs/languages/_associations.html.haml +51 -0
- data/app/views/elabs/languages/_filters.html.haml +6 -0
- data/app/views/elabs/languages/_language.json.jbuilder +2 -0
- data/app/views/elabs/languages/index.html.haml +33 -0
- data/app/views/elabs/languages/index.json.jbuilder +1 -0
- data/app/views/elabs/languages/show.html.haml +38 -0
- data/app/views/elabs/languages/show.json.jbuilder +1 -0
- data/app/views/elabs/layouts/_empty.html.haml +3 -0
- data/app/views/elabs/layouts/_footer.html.haml +6 -0
- data/app/views/elabs/layouts/_hidden_entry.html.haml +6 -0
- data/app/views/elabs/layouts/_hidden_entry_full.html.haml +6 -0
- data/app/views/elabs/layouts/_language_menu.html.haml +2 -0
- data/app/views/elabs/layouts/_menu.html.haml +72 -0
- data/app/views/elabs/layouts/admin_application.html.haml +21 -0
- data/app/views/elabs/layouts/application.html.haml +37 -0
- data/app/views/elabs/layouts/lists/_albums.html.haml +10 -0
- data/app/views/elabs/layouts/lists/_projects.html.haml +10 -0
- data/app/views/elabs/layouts/lists/_tags.html.haml +9 -0
- data/app/views/elabs/layouts/mailer.html.haml +8 -0
- data/app/views/elabs/layouts/mailer.text.haml +1 -0
- data/app/views/elabs/layouts/member_application.html.haml +21 -0
- data/app/views/elabs/licenses/_associations.html.haml +51 -0
- data/app/views/elabs/licenses/_filters.html.haml +3 -0
- data/app/views/elabs/licenses/_license.json.jbuilder +2 -0
- data/app/views/elabs/licenses/index.html.haml +27 -0
- data/app/views/elabs/licenses/index.json.jbuilder +1 -0
- data/app/views/elabs/licenses/show.html.haml +44 -0
- data/app/views/elabs/licenses/show.json.jbuilder +1 -0
- data/app/views/elabs/member/albums/_album.json.jbuilder +2 -0
- data/app/views/elabs/member/albums/_form.html.haml +64 -0
- data/app/views/elabs/member/albums/edit.html.haml +6 -0
- data/app/views/elabs/member/albums/index.html.haml +49 -0
- data/app/views/elabs/member/albums/index.json.jbuilder +1 -0
- data/app/views/elabs/member/albums/new.html.haml +3 -0
- data/app/views/elabs/member/articles/_article.json.jbuilder +2 -0
- data/app/views/elabs/member/articles/_form.html.haml +70 -0
- data/app/views/elabs/member/articles/edit.html.haml +6 -0
- data/app/views/elabs/member/articles/index.html.haml +47 -0
- data/app/views/elabs/member/articles/index.json.jbuilder +1 -0
- data/app/views/elabs/member/articles/new.html.haml +3 -0
- data/app/views/elabs/member/layouts/_empty.html.haml +4 -0
- data/app/views/elabs/member/layouts/_markdown-preview.html.haml +8 -0
- data/app/views/elabs/member/notes/_form.html.haml +54 -0
- data/app/views/elabs/member/notes/_note.json.jbuilder +2 -0
- data/app/views/elabs/member/notes/edit.html.haml +6 -0
- data/app/views/elabs/member/notes/index.html.haml +47 -0
- data/app/views/elabs/member/notes/index.json.jbuilder +1 -0
- data/app/views/elabs/member/notes/new.html.haml +3 -0
- data/app/views/elabs/member/preferences/_form.html.haml +20 -0
- data/app/views/elabs/member/preferences/edit.html.haml +3 -0
- data/app/views/elabs/member/projects/_form.html.haml +71 -0
- data/app/views/elabs/member/projects/_project.json.jbuilder +2 -0
- data/app/views/elabs/member/projects/edit.html.haml +6 -0
- data/app/views/elabs/member/projects/index.html.haml +53 -0
- data/app/views/elabs/member/projects/index.json.jbuilder +1 -0
- data/app/views/elabs/member/projects/new.html.haml +3 -0
- data/app/views/elabs/member/uploads/_form.html.haml +67 -0
- data/app/views/elabs/member/uploads/_upload.json.jbuilder +2 -0
- data/app/views/elabs/member/uploads/edit.html.haml +6 -0
- data/app/views/elabs/member/uploads/index.html.haml +61 -0
- data/app/views/elabs/member/uploads/index.json.jbuilder +1 -0
- data/app/views/elabs/member/uploads/new.html.haml +3 -0
- data/app/views/elabs/member/users/_form.html.haml +38 -0
- data/app/views/elabs/notes/_filters.html.haml +7 -0
- data/app/views/elabs/notes/_note.html.haml +31 -0
- data/app/views/elabs/notes/_note.json.jbuilder +2 -0
- data/app/views/elabs/notes/index.html.haml +9 -0
- data/app/views/elabs/notes/index.json.jbuilder +1 -0
- data/app/views/elabs/notes/show.html.haml +44 -0
- data/app/views/elabs/notes/show.json.jbuilder +1 -0
- data/app/views/elabs/projects/_associations.html.haml +46 -0
- data/app/views/elabs/projects/_filters.html.haml +8 -0
- data/app/views/elabs/projects/_project.html.haml +29 -0
- data/app/views/elabs/projects/index.html.haml +9 -0
- data/app/views/elabs/projects/index.json.jbuilder +1 -0
- data/app/views/elabs/projects/show.html.haml +71 -0
- data/app/views/elabs/projects/show.json.jbuilder +1 -0
- data/app/views/elabs/reports/_form.html.haml +29 -0
- data/app/views/elabs/tags/_associations.html.haml +51 -0
- data/app/views/elabs/tags/_filters.html.haml +3 -0
- data/app/views/elabs/tags/_tag.json.jbuilder +2 -0
- data/app/views/elabs/tags/index.html.haml +26 -0
- data/app/views/elabs/tags/index.json.jbuilder +1 -0
- data/app/views/elabs/tags/show.html.haml +34 -0
- data/app/views/elabs/tags/show.json.jbuilder +1 -0
- data/app/views/elabs/uploads/_filters.html.haml +7 -0
- data/app/views/elabs/uploads/_player.html.haml +10 -0
- data/app/views/elabs/uploads/_preview.html.haml +17 -0
- data/app/views/elabs/uploads/_upload.html.haml +41 -0
- data/app/views/elabs/uploads/_upload.json.jbuilder +2 -0
- data/app/views/elabs/uploads/index.html.haml +9 -0
- data/app/views/elabs/uploads/index.json.jbuilder +1 -0
- data/app/views/elabs/uploads/show.html.haml +58 -0
- data/app/views/elabs/uploads/show.json.jbuilder +1 -0
- data/app/views/elabs/users/_associations.html.haml +51 -0
- data/app/views/elabs/users/_filters.html.haml +4 -0
- data/app/views/elabs/users/_user.html.haml +31 -0
- data/app/views/elabs/users/_user.json.jbuilder +2 -0
- data/app/views/elabs/users/index.html.haml +7 -0
- data/app/views/elabs/users/index.json.jbuilder +1 -0
- data/app/views/elabs/users/show.html.haml +48 -0
- data/app/views/elabs/users/show.json.jbuilder +1 -0
- data/bin/rails +14 -0
- data/config.ru +5 -0
- data/config/brakeman.ignore +124 -0
- data/config/brakeman.yml +3 -0
- data/config/cucumber.yml +9 -0
- data/config/routes.rb +116 -0
- data/db/migrate/20180813000000_devise_update_users.rb +15 -0
- data/db/migrate/20180813000001_create_languages.rb +16 -0
- data/db/migrate/20180813000002_create_tags.rb +14 -0
- data/db/migrate/20180813000004_create_licenses.rb +17 -0
- data/db/migrate/20180813000005_create_reports.rb +15 -0
- data/db/migrate/20180813000006_create_comments.rb +15 -0
- data/db/migrate/20180813000007_create_acts.rb +10 -0
- data/db/migrate/20180813000008_create_preferences.rb +13 -0
- data/db/migrate/20180813000009_create_active_storage_tables.active_storage.rb +26 -0
- data/db/migrate/20180813000010_create_albums.rb +23 -0
- data/db/migrate/20180813000011_create_articles.rb +23 -0
- data/db/migrate/20180813000012_create_notes.rb +21 -0
- data/db/migrate/20180813000013_create_uploads.rb +26 -0
- data/db/migrate/20180813000014_create_projects.rb +44 -0
- data/db/seeds.rb +10 -0
- data/db/seeds_development.rb +21 -0
- data/db/seeds_production.rb +0 -0
- data/docs/contributing.md +52 -0
- data/docs/cucumber_terms.md +9 -0
- data/docs/migrating.md +4 -0
- data/docs/overriding.md +20 -0
- data/docs/setup.md +136 -0
- data/docs/tips.md +13 -0
- data/elabs.gemspec +25 -0
- data/lib/assets/javascripts/README-highlight.js.md +39 -0
- data/lib/assets/javascripts/codemirror-5.39.2/addon/mode/overlay.js +90 -0
- data/lib/assets/javascripts/codemirror-5.39.2/lib/codemirror.js +9684 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/clike/clike.js +834 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/css/css.js +832 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/gfm/gfm.js +129 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/htmlmixed/htmlmixed.js +152 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/javascript/javascript.js +896 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/markdown/markdown.js +882 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/meta.js +217 -0
- data/lib/assets/javascripts/codemirror-5.39.2/mode/xml/xml.js +402 -0
- data/lib/assets/javascripts/highlight.js-9.12.0/highlight.pack.js +2 -0
- data/lib/assets/javascripts/markdown-it-8.4.2.min.js +1 -0
- data/lib/assets/stylesheets/codemirror-5.39.2/lib/codemirror.css +346 -0
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-dark.css +38 -0
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-light.css +38 -0
- data/lib/assets/stylesheets/highlight.js-9.12.0/styles/atelier-sulphurpool-light.css +69 -0
- data/lib/elabs.rb +41 -0
- data/lib/elabs/engine.rb +5 -0
- data/lib/elabs/version.rb +3 -0
- data/lib/generators/elabs/assets_generator.rb +36 -0
- data/lib/generators/elabs/devise_views_generator.rb +24 -0
- data/lib/generators/elabs/install_generator.rb +26 -0
- data/lib/generators/elabs/required_assets_generator.rb +26 -0
- data/lib/generators/elabs/views_generator.rb +25 -0
- data/lib/generators/templates/elabs.rb +25 -0
- data/lib/generators/templates/fast_gettext.rb +3 -0
- data/lib/tasks/.keep +0 -0
- data/lib/tasks/cucumber.rake +75 -0
- data/lib/tasks/elabs_tasks.rake +4 -0
- data/lib/tasks/factory_bot.rake +14 -0
- data/lib/tasks/wipe.rake +31 -0
- data/locale/app.pot +1124 -0
- data/locale/devise_strings.rb +88 -0
- data/locale/en/app.edit.po +1123 -0
- data/locale/en/app.po +1123 -0
- data/locale/en/app.po.time_stamp +0 -0
- data/locale/fr/app.edit.po +1126 -0
- data/locale/fr/app.po +1125 -0
- data/locale/fr/app.po.time_stamp +0 -0
- data/locale/model_attributes.rb +85 -0
- data/package.json +22 -0
- data/script/cucumber +10 -0
- data/tmp/pids/.keep +0 -0
- data/yarn.lock +2759 -0
- metadata +463 -0
data/locale/en/app.po
ADDED
@@ -0,0 +1,1123 @@
|
|
1
|
+
# English translations for app package.
|
2
|
+
# Copyright (C) 2018 THE PACKAGE'S COPYRIGHT HOLDER
|
3
|
+
# This file is distributed under the same license as the app package.
|
4
|
+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2018.
|
5
|
+
#
|
6
|
+
msgid ""
|
7
|
+
msgstr ""
|
8
|
+
"Project-Id-Version: app 1.0.0\n"
|
9
|
+
"Report-Msgid-Bugs-To: \n"
|
10
|
+
"PO-Revision-Date: 2018-06-11 21:11+0200\n"
|
11
|
+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
12
|
+
"Language-Team: English\n"
|
13
|
+
"Language: en\n"
|
14
|
+
"MIME-Version: 1.0\n"
|
15
|
+
"Content-Type: text/plain; charset=UTF-8\n"
|
16
|
+
"Content-Transfer-Encoding: 8bit\n"
|
17
|
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
18
|
+
"\n"
|
19
|
+
|
20
|
+
msgid "%<icon>s %<text>s"
|
21
|
+
msgstr ""
|
22
|
+
|
23
|
+
msgid "%<model_name>s was successfully created."
|
24
|
+
msgstr ""
|
25
|
+
|
26
|
+
msgid "%<model_name>s was successfully destroyed."
|
27
|
+
msgstr ""
|
28
|
+
|
29
|
+
msgid "%<model_name>s was successfully locked."
|
30
|
+
msgstr ""
|
31
|
+
|
32
|
+
msgid "%<model_name>s was successfully published."
|
33
|
+
msgstr ""
|
34
|
+
|
35
|
+
msgid "%<model_name>s was successfully removed from publication."
|
36
|
+
msgstr ""
|
37
|
+
|
38
|
+
msgid "%<model_name>s was successfully unlocked."
|
39
|
+
msgstr ""
|
40
|
+
|
41
|
+
msgid "%<model_name>s was successfully updated."
|
42
|
+
msgstr ""
|
43
|
+
|
44
|
+
msgid "%<nb>i album"
|
45
|
+
msgid_plural "%<nb>i albums"
|
46
|
+
msgstr[0] ""
|
47
|
+
msgstr[1] ""
|
48
|
+
|
49
|
+
msgid "%<nb>i article"
|
50
|
+
msgid_plural "%<nb>i articles"
|
51
|
+
msgstr[0] ""
|
52
|
+
msgstr[1] ""
|
53
|
+
|
54
|
+
msgid "%<nb>i note"
|
55
|
+
msgid_plural "%<nb>i notes"
|
56
|
+
msgstr[0] ""
|
57
|
+
msgstr[1] ""
|
58
|
+
|
59
|
+
msgid "%<nb>i project"
|
60
|
+
msgid_plural "%<nb>i projects"
|
61
|
+
msgstr[0] ""
|
62
|
+
msgstr[1] ""
|
63
|
+
|
64
|
+
msgid "%<nb>i upload"
|
65
|
+
msgid_plural "%<nb>i uploads"
|
66
|
+
msgstr[0] ""
|
67
|
+
msgstr[1] ""
|
68
|
+
|
69
|
+
msgid "%<number>i characters minimum"
|
70
|
+
msgstr ""
|
71
|
+
|
72
|
+
msgid "%<s>s:"
|
73
|
+
msgstr ""
|
74
|
+
|
75
|
+
msgid "%<string>s has been %<event>s"
|
76
|
+
msgstr ""
|
77
|
+
|
78
|
+
msgid "%<text>s %<icon>s"
|
79
|
+
msgstr ""
|
80
|
+
|
81
|
+
msgid "%I:%M %p"
|
82
|
+
msgstr ""
|
83
|
+
|
84
|
+
msgid "%Y-%m-%d"
|
85
|
+
msgstr ""
|
86
|
+
|
87
|
+
msgid "(leave blank if you don't want to change it)"
|
88
|
+
msgstr ""
|
89
|
+
|
90
|
+
msgid "(we need your current password to confirm the following changes)"
|
91
|
+
msgstr ""
|
92
|
+
|
93
|
+
msgid "A note"
|
94
|
+
msgstr ""
|
95
|
+
|
96
|
+
msgid "About"
|
97
|
+
msgstr ""
|
98
|
+
|
99
|
+
msgid "Account"
|
100
|
+
msgstr ""
|
101
|
+
|
102
|
+
msgid "Act"
|
103
|
+
msgstr ""
|
104
|
+
|
105
|
+
msgid "Act|Content type"
|
106
|
+
msgstr ""
|
107
|
+
|
108
|
+
msgid "Act|Event"
|
109
|
+
msgstr ""
|
110
|
+
|
111
|
+
msgid "Admin"
|
112
|
+
msgstr ""
|
113
|
+
|
114
|
+
msgid "Administration:"
|
115
|
+
msgstr ""
|
116
|
+
|
117
|
+
msgid "Album count"
|
118
|
+
msgstr ""
|
119
|
+
|
120
|
+
msgid "Albums"
|
121
|
+
msgstr ""
|
122
|
+
|
123
|
+
msgid "Albums:"
|
124
|
+
msgstr ""
|
125
|
+
|
126
|
+
msgid "Allow contact"
|
127
|
+
msgstr ""
|
128
|
+
|
129
|
+
msgid "An error prevented the instructions from being sent:"
|
130
|
+
msgid_plural "%<nb>i errors prevented the instructions from being sent:"
|
131
|
+
msgstr[0] ""
|
132
|
+
msgstr[1] ""
|
133
|
+
|
134
|
+
msgid "An error prevented this album from being saved:"
|
135
|
+
msgid_plural "%<nb>i errors prevented this album from being saved:"
|
136
|
+
msgstr[0] ""
|
137
|
+
msgstr[1] ""
|
138
|
+
|
139
|
+
msgid "An error prevented this article from being saved:"
|
140
|
+
msgid_plural "%<nb>i errors prevented this article from being saved:"
|
141
|
+
msgstr[0] ""
|
142
|
+
msgstr[1] ""
|
143
|
+
|
144
|
+
msgid "An error prevented this language from being saved:"
|
145
|
+
msgid_plural "%<nb>i errors prevented this language from being saved:"
|
146
|
+
msgstr[0] ""
|
147
|
+
msgstr[1] ""
|
148
|
+
|
149
|
+
msgid "An error prevented this license from being saved:"
|
150
|
+
msgid_plural "%<nb>i errors prevented this license from being saved:"
|
151
|
+
msgstr[0] ""
|
152
|
+
msgstr[1] ""
|
153
|
+
|
154
|
+
msgid "An error prevented this note from being saved:"
|
155
|
+
msgid_plural "%<nb>i errors prevented this note from being saved:"
|
156
|
+
msgstr[0] ""
|
157
|
+
msgstr[1] ""
|
158
|
+
|
159
|
+
msgid "An error prevented this project from being saved:"
|
160
|
+
msgid_plural "%<nb>i errors prevented this project from being saved:"
|
161
|
+
msgstr[0] ""
|
162
|
+
msgstr[1] ""
|
163
|
+
|
164
|
+
msgid "An error prevented this tag from being saved:"
|
165
|
+
msgid_plural "%<nb>i errors prevented this tag from being saved:"
|
166
|
+
msgstr[0] ""
|
167
|
+
msgstr[1] ""
|
168
|
+
|
169
|
+
msgid "An error prevented this upload from being saved:"
|
170
|
+
msgid_plural "%<nb>i errors prevented this upload from being saved:"
|
171
|
+
msgstr[0] ""
|
172
|
+
msgstr[1] ""
|
173
|
+
|
174
|
+
msgid "An error prevented your account from being created:"
|
175
|
+
msgid_plural "%<nb>i errors prevented your account from being created:"
|
176
|
+
msgstr[0] ""
|
177
|
+
msgstr[1] ""
|
178
|
+
|
179
|
+
msgid "An error prevented your account from being updated:"
|
180
|
+
msgid_plural "%<nb>i errors prevented your account from being updated:"
|
181
|
+
msgstr[0] ""
|
182
|
+
msgstr[1] ""
|
183
|
+
|
184
|
+
msgid "An error prevented your comment from being saved:"
|
185
|
+
msgid_plural "%<nb>i errors prevented your comment from being saved:"
|
186
|
+
msgstr[0] ""
|
187
|
+
msgstr[1] ""
|
188
|
+
|
189
|
+
msgid "An error prevented your password from being changed:"
|
190
|
+
msgid_plural "%<nb>i errors prevented your password from being changed:"
|
191
|
+
msgstr[0] ""
|
192
|
+
msgstr[1] ""
|
193
|
+
|
194
|
+
msgid "An error prevented your preferences from being saved:"
|
195
|
+
msgid_plural "%<nb>i errors prevented your preferences from being saved:"
|
196
|
+
msgstr[0] ""
|
197
|
+
msgstr[1] ""
|
198
|
+
|
199
|
+
msgid "An error prevented your report from being saved:"
|
200
|
+
msgid_plural "%<nb>i errors prevented your report from being saved:"
|
201
|
+
msgstr[0] ""
|
202
|
+
msgstr[1] ""
|
203
|
+
|
204
|
+
msgid "Application content record"
|
205
|
+
msgstr ""
|
206
|
+
|
207
|
+
msgid "ApplicationContentRecord|Albums count"
|
208
|
+
msgstr ""
|
209
|
+
|
210
|
+
msgid "ApplicationContentRecord|Articles count"
|
211
|
+
msgstr ""
|
212
|
+
|
213
|
+
msgid "ApplicationContentRecord|Content"
|
214
|
+
msgstr ""
|
215
|
+
|
216
|
+
msgid "ApplicationContentRecord|Description"
|
217
|
+
msgstr ""
|
218
|
+
|
219
|
+
msgid "ApplicationContentRecord|Excerpt"
|
220
|
+
msgstr ""
|
221
|
+
|
222
|
+
msgid "ApplicationContentRecord|Hidden in history"
|
223
|
+
msgstr ""
|
224
|
+
|
225
|
+
msgid "ApplicationContentRecord|Locked"
|
226
|
+
msgstr ""
|
227
|
+
|
228
|
+
msgid "ApplicationContentRecord|Main url"
|
229
|
+
msgstr ""
|
230
|
+
|
231
|
+
msgid "ApplicationContentRecord|Name"
|
232
|
+
msgstr ""
|
233
|
+
|
234
|
+
msgid "ApplicationContentRecord|Notes count"
|
235
|
+
msgstr ""
|
236
|
+
|
237
|
+
msgid "ApplicationContentRecord|Published"
|
238
|
+
msgstr ""
|
239
|
+
|
240
|
+
msgid "ApplicationContentRecord|Published at"
|
241
|
+
msgstr ""
|
242
|
+
|
243
|
+
msgid "ApplicationContentRecord|Sfw"
|
244
|
+
msgstr ""
|
245
|
+
|
246
|
+
msgid "ApplicationContentRecord|Short description"
|
247
|
+
msgstr ""
|
248
|
+
|
249
|
+
msgid "ApplicationContentRecord|Title"
|
250
|
+
msgstr ""
|
251
|
+
|
252
|
+
msgid "ApplicationContentRecord|Uploads count"
|
253
|
+
msgstr ""
|
254
|
+
|
255
|
+
msgid "Are you sure?"
|
256
|
+
msgstr ""
|
257
|
+
|
258
|
+
msgid "Article count"
|
259
|
+
msgstr ""
|
260
|
+
|
261
|
+
msgid "Articles"
|
262
|
+
msgstr ""
|
263
|
+
|
264
|
+
msgid "Articles:"
|
265
|
+
msgstr ""
|
266
|
+
|
267
|
+
msgid "Author:"
|
268
|
+
msgstr ""
|
269
|
+
|
270
|
+
msgid "Authors"
|
271
|
+
msgstr ""
|
272
|
+
|
273
|
+
msgid "Bio"
|
274
|
+
msgstr ""
|
275
|
+
|
276
|
+
msgid "By submitting this comment, you agree to be recontacted by the author."
|
277
|
+
msgstr ""
|
278
|
+
|
279
|
+
msgid "By submitting this report, you agree to be recontacted by administrators."
|
280
|
+
msgstr ""
|
281
|
+
|
282
|
+
msgid "Cancel my account"
|
283
|
+
msgstr ""
|
284
|
+
|
285
|
+
msgid "Cancelling your account will delete all the content you created, with no possibility to restore it. This is definitive."
|
286
|
+
msgstr ""
|
287
|
+
|
288
|
+
msgid "Change my password"
|
289
|
+
msgstr ""
|
290
|
+
|
291
|
+
msgid "Change your password"
|
292
|
+
msgstr ""
|
293
|
+
|
294
|
+
msgid "Come back later, content is being created, somewhere"
|
295
|
+
msgstr ""
|
296
|
+
|
297
|
+
msgid "Comment"
|
298
|
+
msgstr ""
|
299
|
+
|
300
|
+
msgid "Comment was successfully created."
|
301
|
+
msgstr ""
|
302
|
+
|
303
|
+
msgid "Comments"
|
304
|
+
msgstr ""
|
305
|
+
|
306
|
+
msgid "Comment|Allow contact"
|
307
|
+
msgstr ""
|
308
|
+
|
309
|
+
msgid "Comment|Comment"
|
310
|
+
msgstr ""
|
311
|
+
|
312
|
+
msgid "Comment|Content type"
|
313
|
+
msgstr ""
|
314
|
+
|
315
|
+
msgid "Comment|Deleted"
|
316
|
+
msgstr ""
|
317
|
+
|
318
|
+
msgid "Comment|Email"
|
319
|
+
msgstr ""
|
320
|
+
|
321
|
+
msgid "Comment|Name"
|
322
|
+
msgstr ""
|
323
|
+
|
324
|
+
msgid "Confirm new password"
|
325
|
+
msgstr ""
|
326
|
+
|
327
|
+
msgid "Confirmation"
|
328
|
+
msgstr ""
|
329
|
+
|
330
|
+
msgid "Content"
|
331
|
+
msgstr ""
|
332
|
+
|
333
|
+
msgid "Content not displayed"
|
334
|
+
msgstr ""
|
335
|
+
|
336
|
+
msgid "Create some content"
|
337
|
+
msgstr ""
|
338
|
+
|
339
|
+
msgid "Created at"
|
340
|
+
msgstr ""
|
341
|
+
|
342
|
+
msgid "Currently waiting confirmation for: %<email>s"
|
343
|
+
msgstr ""
|
344
|
+
|
345
|
+
msgid "Date"
|
346
|
+
msgstr ""
|
347
|
+
|
348
|
+
msgid "Destroy"
|
349
|
+
msgstr ""
|
350
|
+
|
351
|
+
msgid "Didn't receive confirmation instructions?"
|
352
|
+
msgstr ""
|
353
|
+
|
354
|
+
msgid "Didn't receive unlock instructions?"
|
355
|
+
msgstr ""
|
356
|
+
|
357
|
+
msgid "Download"
|
358
|
+
msgstr ""
|
359
|
+
|
360
|
+
msgid "Edit"
|
361
|
+
msgstr ""
|
362
|
+
|
363
|
+
msgid "Edit \"%<language>s\""
|
364
|
+
msgstr ""
|
365
|
+
|
366
|
+
msgid "Edit \"%<name>s\""
|
367
|
+
msgstr ""
|
368
|
+
|
369
|
+
msgid "Editing album"
|
370
|
+
msgstr ""
|
371
|
+
|
372
|
+
msgid "Editing article"
|
373
|
+
msgstr ""
|
374
|
+
|
375
|
+
msgid "Editing license"
|
376
|
+
msgstr ""
|
377
|
+
|
378
|
+
msgid "Editing note"
|
379
|
+
msgstr ""
|
380
|
+
|
381
|
+
msgid "Editing preferences"
|
382
|
+
msgstr ""
|
383
|
+
|
384
|
+
msgid "Editing project"
|
385
|
+
msgstr ""
|
386
|
+
|
387
|
+
msgid "Editing upload"
|
388
|
+
msgstr ""
|
389
|
+
|
390
|
+
msgid "Email"
|
391
|
+
msgstr ""
|
392
|
+
|
393
|
+
msgid "Email:"
|
394
|
+
msgstr ""
|
395
|
+
|
396
|
+
msgid "Forgot your password?"
|
397
|
+
msgstr ""
|
398
|
+
|
399
|
+
msgid "Hide NSFW"
|
400
|
+
msgstr ""
|
401
|
+
|
402
|
+
msgid "Home page"
|
403
|
+
msgstr ""
|
404
|
+
|
405
|
+
msgid "ISO 639-1 code"
|
406
|
+
msgstr ""
|
407
|
+
|
408
|
+
msgid "ISO 639-1 code:"
|
409
|
+
msgstr ""
|
410
|
+
|
411
|
+
msgid "Icon"
|
412
|
+
msgstr ""
|
413
|
+
|
414
|
+
msgid "Icon:"
|
415
|
+
msgstr ""
|
416
|
+
|
417
|
+
msgid "Insc. date"
|
418
|
+
msgstr ""
|
419
|
+
|
420
|
+
msgid "Is SFW:"
|
421
|
+
msgstr ""
|
422
|
+
|
423
|
+
msgid "Javascript seems to be disabled."
|
424
|
+
msgstr ""
|
425
|
+
|
426
|
+
msgid "Language"
|
427
|
+
msgstr ""
|
428
|
+
|
429
|
+
msgid "Language was successfully created."
|
430
|
+
msgstr ""
|
431
|
+
|
432
|
+
msgid "Language was successfully destroyed."
|
433
|
+
msgstr ""
|
434
|
+
|
435
|
+
msgid "Language was successfully updated."
|
436
|
+
msgstr ""
|
437
|
+
|
438
|
+
msgid "Language:"
|
439
|
+
msgstr ""
|
440
|
+
|
441
|
+
msgid "Languages"
|
442
|
+
msgstr ""
|
443
|
+
|
444
|
+
msgid "Language|Albums count"
|
445
|
+
msgstr ""
|
446
|
+
|
447
|
+
msgid "Language|Articles count"
|
448
|
+
msgstr ""
|
449
|
+
|
450
|
+
msgid "Language|Iso639 1"
|
451
|
+
msgstr ""
|
452
|
+
|
453
|
+
msgid "Language|Name"
|
454
|
+
msgstr ""
|
455
|
+
|
456
|
+
msgid "Language|Notes count"
|
457
|
+
msgstr ""
|
458
|
+
|
459
|
+
msgid "Language|Projects count"
|
460
|
+
msgstr ""
|
461
|
+
|
462
|
+
msgid "Language|Uploads count"
|
463
|
+
msgstr ""
|
464
|
+
|
465
|
+
msgid "Last %<amount>i albums:"
|
466
|
+
msgstr ""
|
467
|
+
|
468
|
+
msgid "Last %<amount>i articles:"
|
469
|
+
msgstr ""
|
470
|
+
|
471
|
+
msgid "Last %<amount>i notes:"
|
472
|
+
msgstr ""
|
473
|
+
|
474
|
+
msgid "Last %<amount>i projects:"
|
475
|
+
msgstr ""
|
476
|
+
|
477
|
+
msgid "Last %<amount>i uploads:"
|
478
|
+
msgstr ""
|
479
|
+
|
480
|
+
msgid "Last events"
|
481
|
+
msgstr ""
|
482
|
+
|
483
|
+
msgid "Leave a comment"
|
484
|
+
msgstr ""
|
485
|
+
|
486
|
+
msgid "License"
|
487
|
+
msgstr ""
|
488
|
+
|
489
|
+
msgid "License was successfully created."
|
490
|
+
msgstr ""
|
491
|
+
|
492
|
+
msgid "License was successfully destroyed."
|
493
|
+
msgstr ""
|
494
|
+
|
495
|
+
msgid "License was successfully updated."
|
496
|
+
msgstr ""
|
497
|
+
|
498
|
+
msgid "License:"
|
499
|
+
msgstr ""
|
500
|
+
|
501
|
+
msgid "Licenses"
|
502
|
+
msgstr ""
|
503
|
+
|
504
|
+
msgid "License|Albums count"
|
505
|
+
msgstr ""
|
506
|
+
|
507
|
+
msgid "License|Articles count"
|
508
|
+
msgstr ""
|
509
|
+
|
510
|
+
msgid "License|Icon"
|
511
|
+
msgstr ""
|
512
|
+
|
513
|
+
msgid "License|Name"
|
514
|
+
msgstr ""
|
515
|
+
|
516
|
+
msgid "License|Notes count"
|
517
|
+
msgstr ""
|
518
|
+
|
519
|
+
msgid "License|Projects count"
|
520
|
+
msgstr ""
|
521
|
+
|
522
|
+
msgid "License|Tldr url"
|
523
|
+
msgstr ""
|
524
|
+
|
525
|
+
msgid "License|Uploads count"
|
526
|
+
msgstr ""
|
527
|
+
|
528
|
+
msgid "License|Url"
|
529
|
+
msgstr ""
|
530
|
+
|
531
|
+
msgid "List of comma-separated tags"
|
532
|
+
msgstr ""
|
533
|
+
|
534
|
+
msgid "Listing reports"
|
535
|
+
msgstr ""
|
536
|
+
|
537
|
+
msgid "Lock"
|
538
|
+
msgstr ""
|
539
|
+
|
540
|
+
msgid "Lock."
|
541
|
+
msgstr ""
|
542
|
+
|
543
|
+
msgid "Log in"
|
544
|
+
msgstr ""
|
545
|
+
|
546
|
+
msgid "Log out"
|
547
|
+
msgstr ""
|
548
|
+
|
549
|
+
msgid "Login"
|
550
|
+
msgstr ""
|
551
|
+
|
552
|
+
msgid "Main url"
|
553
|
+
msgstr ""
|
554
|
+
|
555
|
+
msgid "Main url:"
|
556
|
+
msgstr ""
|
557
|
+
|
558
|
+
msgid "Markdown supported. %<preview_button>s"
|
559
|
+
msgstr ""
|
560
|
+
|
561
|
+
msgid "Member"
|
562
|
+
msgstr ""
|
563
|
+
|
564
|
+
msgid "Name"
|
565
|
+
msgstr ""
|
566
|
+
|
567
|
+
msgid "New Album"
|
568
|
+
msgstr ""
|
569
|
+
|
570
|
+
msgid "New Article"
|
571
|
+
msgstr ""
|
572
|
+
|
573
|
+
msgid "New Language"
|
574
|
+
msgstr ""
|
575
|
+
|
576
|
+
msgid "New License"
|
577
|
+
msgstr ""
|
578
|
+
|
579
|
+
msgid "New Note"
|
580
|
+
msgstr ""
|
581
|
+
|
582
|
+
msgid "New Project"
|
583
|
+
msgstr ""
|
584
|
+
|
585
|
+
msgid "New Upload"
|
586
|
+
msgstr ""
|
587
|
+
|
588
|
+
msgid "New album"
|
589
|
+
msgstr ""
|
590
|
+
|
591
|
+
msgid "New article"
|
592
|
+
msgstr ""
|
593
|
+
|
594
|
+
msgid "New language"
|
595
|
+
msgstr ""
|
596
|
+
|
597
|
+
msgid "New license"
|
598
|
+
msgstr ""
|
599
|
+
|
600
|
+
msgid "New note"
|
601
|
+
msgstr ""
|
602
|
+
|
603
|
+
msgid "New password"
|
604
|
+
msgstr ""
|
605
|
+
|
606
|
+
msgid "New project"
|
607
|
+
msgstr ""
|
608
|
+
|
609
|
+
msgid "New upload"
|
610
|
+
msgstr ""
|
611
|
+
|
612
|
+
msgid "No comment has been left"
|
613
|
+
msgstr ""
|
614
|
+
|
615
|
+
msgid "No tags"
|
616
|
+
msgstr ""
|
617
|
+
|
618
|
+
msgid "Not in a project"
|
619
|
+
msgstr ""
|
620
|
+
|
621
|
+
msgid "Not in an album"
|
622
|
+
msgstr ""
|
623
|
+
|
624
|
+
msgid "Note count"
|
625
|
+
msgstr ""
|
626
|
+
|
627
|
+
msgid "Notes"
|
628
|
+
msgstr ""
|
629
|
+
|
630
|
+
msgid "Notes:"
|
631
|
+
msgstr ""
|
632
|
+
|
633
|
+
msgid "Oh noes ! There is nothing here!"
|
634
|
+
msgstr ""
|
635
|
+
|
636
|
+
msgid "Only NSFW"
|
637
|
+
msgstr ""
|
638
|
+
|
639
|
+
msgid "Only SFW"
|
640
|
+
msgstr ""
|
641
|
+
|
642
|
+
msgid "Permalink"
|
643
|
+
msgstr ""
|
644
|
+
|
645
|
+
msgid "Posted on:"
|
646
|
+
msgstr ""
|
647
|
+
|
648
|
+
msgid "Preference"
|
649
|
+
msgstr ""
|
650
|
+
|
651
|
+
msgid "Preference was successfully updated."
|
652
|
+
msgstr ""
|
653
|
+
|
654
|
+
msgid "Preferences"
|
655
|
+
msgstr ""
|
656
|
+
|
657
|
+
msgid "Preference|Locale"
|
658
|
+
msgstr ""
|
659
|
+
|
660
|
+
msgid "Preference|Show nsfw"
|
661
|
+
msgstr ""
|
662
|
+
|
663
|
+
msgid "Preview"
|
664
|
+
msgstr ""
|
665
|
+
|
666
|
+
msgid "Project count"
|
667
|
+
msgstr ""
|
668
|
+
|
669
|
+
msgid "Projects"
|
670
|
+
msgstr ""
|
671
|
+
|
672
|
+
msgid "Projects:"
|
673
|
+
msgstr ""
|
674
|
+
|
675
|
+
msgid "Pub."
|
676
|
+
msgstr ""
|
677
|
+
|
678
|
+
msgid "Pub. date"
|
679
|
+
msgstr ""
|
680
|
+
|
681
|
+
msgid "Publish"
|
682
|
+
msgstr ""
|
683
|
+
|
684
|
+
msgid "Published at"
|
685
|
+
msgstr ""
|
686
|
+
|
687
|
+
msgid "Published at:"
|
688
|
+
msgstr ""
|
689
|
+
|
690
|
+
msgid "Real name"
|
691
|
+
msgstr ""
|
692
|
+
|
693
|
+
msgid "Real name:"
|
694
|
+
msgstr ""
|
695
|
+
|
696
|
+
msgid "Reason"
|
697
|
+
msgstr ""
|
698
|
+
|
699
|
+
msgid "Report"
|
700
|
+
msgstr ""
|
701
|
+
|
702
|
+
msgid "Report this page"
|
703
|
+
msgstr ""
|
704
|
+
|
705
|
+
msgid "Report was successfully created."
|
706
|
+
msgstr ""
|
707
|
+
|
708
|
+
msgid "Report was successfully destroyed."
|
709
|
+
msgstr ""
|
710
|
+
|
711
|
+
msgid "Report will be posted as \"%<name>s\""
|
712
|
+
msgstr ""
|
713
|
+
|
714
|
+
msgid "Reports"
|
715
|
+
msgstr ""
|
716
|
+
|
717
|
+
msgid "Report|Allow contact"
|
718
|
+
msgstr ""
|
719
|
+
|
720
|
+
msgid "Report|Email"
|
721
|
+
msgstr ""
|
722
|
+
|
723
|
+
msgid "Report|Name"
|
724
|
+
msgstr ""
|
725
|
+
|
726
|
+
msgid "Report|Reason"
|
727
|
+
msgstr ""
|
728
|
+
|
729
|
+
msgid "Report|Url"
|
730
|
+
msgstr ""
|
731
|
+
|
732
|
+
msgid "Resend confirmation instructions"
|
733
|
+
msgstr ""
|
734
|
+
|
735
|
+
msgid "Resend unlock instructions"
|
736
|
+
msgstr ""
|
737
|
+
|
738
|
+
msgid "Role"
|
739
|
+
msgstr ""
|
740
|
+
|
741
|
+
msgid "Role:"
|
742
|
+
msgstr ""
|
743
|
+
|
744
|
+
msgid "SFW"
|
745
|
+
msgstr ""
|
746
|
+
|
747
|
+
msgid "SFW:"
|
748
|
+
msgstr ""
|
749
|
+
|
750
|
+
msgid "Save"
|
751
|
+
msgstr ""
|
752
|
+
|
753
|
+
msgid "Send me reset password instructions"
|
754
|
+
msgstr ""
|
755
|
+
|
756
|
+
msgid "Sensitive changes"
|
757
|
+
msgstr ""
|
758
|
+
|
759
|
+
msgid "Show"
|
760
|
+
msgstr ""
|
761
|
+
|
762
|
+
msgid "Show NSFW"
|
763
|
+
msgstr ""
|
764
|
+
|
765
|
+
msgid "Show all"
|
766
|
+
msgstr ""
|
767
|
+
|
768
|
+
msgid "Show online"
|
769
|
+
msgstr ""
|
770
|
+
|
771
|
+
msgid "Sign in with %<provider>s"
|
772
|
+
msgstr ""
|
773
|
+
|
774
|
+
msgid "Sign up"
|
775
|
+
msgstr ""
|
776
|
+
|
777
|
+
msgid "Since"
|
778
|
+
msgstr ""
|
779
|
+
|
780
|
+
msgid "Since:"
|
781
|
+
msgstr ""
|
782
|
+
|
783
|
+
msgid "Skip hist."
|
784
|
+
msgstr ""
|
785
|
+
|
786
|
+
msgid "Subscription date"
|
787
|
+
msgstr ""
|
788
|
+
|
789
|
+
msgid "Subscription date:"
|
790
|
+
msgstr ""
|
791
|
+
|
792
|
+
msgid "TL; DR"
|
793
|
+
msgstr ""
|
794
|
+
|
795
|
+
msgid "TL;DR URL"
|
796
|
+
msgstr ""
|
797
|
+
|
798
|
+
msgid "Tag"
|
799
|
+
msgstr ""
|
800
|
+
|
801
|
+
msgid "Tag was successfully destroyed."
|
802
|
+
msgstr ""
|
803
|
+
|
804
|
+
msgid "Tag was successfully updated."
|
805
|
+
msgstr ""
|
806
|
+
|
807
|
+
msgid "Tags"
|
808
|
+
msgstr ""
|
809
|
+
|
810
|
+
msgid "Tags list"
|
811
|
+
msgstr ""
|
812
|
+
|
813
|
+
msgid "Tags:"
|
814
|
+
msgstr ""
|
815
|
+
|
816
|
+
msgid "Tag|Albums count"
|
817
|
+
msgstr ""
|
818
|
+
|
819
|
+
msgid "Tag|Articles count"
|
820
|
+
msgstr ""
|
821
|
+
|
822
|
+
msgid "Tag|Name"
|
823
|
+
msgstr ""
|
824
|
+
|
825
|
+
msgid "Tag|Notes count"
|
826
|
+
msgstr ""
|
827
|
+
|
828
|
+
msgid "Tag|Projects count"
|
829
|
+
msgstr ""
|
830
|
+
|
831
|
+
msgid "Tag|Uploads count"
|
832
|
+
msgstr ""
|
833
|
+
|
834
|
+
msgid "The following formats will be viewable online; other will need a download: %<formats>s"
|
835
|
+
msgstr ""
|
836
|
+
|
837
|
+
msgid "This %<model>s is not yours"
|
838
|
+
msgstr ""
|
839
|
+
|
840
|
+
msgid "This comment will be posted as \"%<name>s\""
|
841
|
+
msgstr ""
|
842
|
+
|
843
|
+
msgid "This content might not be appropriate for every situation."
|
844
|
+
msgstr ""
|
845
|
+
|
846
|
+
msgid "This content needs review and have been retired for now."
|
847
|
+
msgstr ""
|
848
|
+
|
849
|
+
msgid "This space is empty"
|
850
|
+
msgstr ""
|
851
|
+
|
852
|
+
msgid "Title"
|
853
|
+
msgstr ""
|
854
|
+
|
855
|
+
msgid "URL"
|
856
|
+
msgstr ""
|
857
|
+
|
858
|
+
msgid "Unlock"
|
859
|
+
msgstr ""
|
860
|
+
|
861
|
+
msgid "Unpublish"
|
862
|
+
msgstr ""
|
863
|
+
|
864
|
+
msgid "Upd. date"
|
865
|
+
msgstr ""
|
866
|
+
|
867
|
+
msgid "Updated at:"
|
868
|
+
msgstr ""
|
869
|
+
|
870
|
+
msgid "Upload count"
|
871
|
+
msgstr ""
|
872
|
+
|
873
|
+
msgid "Uploads"
|
874
|
+
msgstr ""
|
875
|
+
|
876
|
+
msgid "Uploads:"
|
877
|
+
msgstr ""
|
878
|
+
|
879
|
+
msgid "User"
|
880
|
+
msgstr ""
|
881
|
+
|
882
|
+
msgid "User was successfully destroyed."
|
883
|
+
msgstr ""
|
884
|
+
|
885
|
+
msgid "User:"
|
886
|
+
msgstr ""
|
887
|
+
|
888
|
+
msgid "Username"
|
889
|
+
msgstr ""
|
890
|
+
|
891
|
+
msgid "Username:"
|
892
|
+
msgstr ""
|
893
|
+
|
894
|
+
msgid "Users"
|
895
|
+
msgstr ""
|
896
|
+
|
897
|
+
msgid "User|Albums count"
|
898
|
+
msgstr ""
|
899
|
+
|
900
|
+
msgid "User|Articles count"
|
901
|
+
msgstr ""
|
902
|
+
|
903
|
+
msgid "User|Biography"
|
904
|
+
msgstr ""
|
905
|
+
|
906
|
+
msgid "User|Confirmation sent at"
|
907
|
+
msgstr ""
|
908
|
+
|
909
|
+
msgid "User|Confirmation token"
|
910
|
+
msgstr ""
|
911
|
+
|
912
|
+
msgid "User|Confirmed at"
|
913
|
+
msgstr ""
|
914
|
+
|
915
|
+
msgid "User|Email"
|
916
|
+
msgstr ""
|
917
|
+
|
918
|
+
msgid "User|Encrypted password"
|
919
|
+
msgstr ""
|
920
|
+
|
921
|
+
msgid "User|Failed attempts"
|
922
|
+
msgstr ""
|
923
|
+
|
924
|
+
msgid "User|Locked at"
|
925
|
+
msgstr ""
|
926
|
+
|
927
|
+
msgid "User|Notes count"
|
928
|
+
msgstr ""
|
929
|
+
|
930
|
+
msgid "User|Projects count"
|
931
|
+
msgstr ""
|
932
|
+
|
933
|
+
msgid "User|Real name"
|
934
|
+
msgstr ""
|
935
|
+
|
936
|
+
msgid "User|Remember created at"
|
937
|
+
msgstr ""
|
938
|
+
|
939
|
+
msgid "User|Reset password sent at"
|
940
|
+
msgstr ""
|
941
|
+
|
942
|
+
msgid "User|Reset password token"
|
943
|
+
msgstr ""
|
944
|
+
|
945
|
+
msgid "User|Role"
|
946
|
+
msgstr ""
|
947
|
+
|
948
|
+
msgid "User|Unconfirmed email"
|
949
|
+
msgstr ""
|
950
|
+
|
951
|
+
msgid "User|Unlock token"
|
952
|
+
msgstr ""
|
953
|
+
|
954
|
+
msgid "User|Uploads count"
|
955
|
+
msgstr ""
|
956
|
+
|
957
|
+
msgid "User|Username"
|
958
|
+
msgstr ""
|
959
|
+
|
960
|
+
msgid "View online"
|
961
|
+
msgstr ""
|
962
|
+
|
963
|
+
msgid "With content only"
|
964
|
+
msgstr ""
|
965
|
+
|
966
|
+
msgid "Your browser does not support the audio tag."
|
967
|
+
msgstr ""
|
968
|
+
|
969
|
+
msgid "Your browser does not support the video tag."
|
970
|
+
msgstr ""
|
971
|
+
|
972
|
+
msgid "Your infos were successfully saved"
|
973
|
+
msgstr ""
|
974
|
+
|
975
|
+
msgid "created"
|
976
|
+
msgstr ""
|
977
|
+
|
978
|
+
msgid "devise.confirmations.confirmed"
|
979
|
+
msgstr "Your email address has been successfully confirmed."
|
980
|
+
|
981
|
+
msgid "devise.confirmations.send_instructions"
|
982
|
+
msgstr "You will receive an email with instructions for how to confirm your email address in a few minutes."
|
983
|
+
|
984
|
+
msgid "devise.confirmations.send_paranoid_instructions"
|
985
|
+
msgstr "If your email address exists in our database, you will receive an email with instructions for how to confirm your email address in a few minutes."
|
986
|
+
|
987
|
+
msgid "devise.failure.already_authenticated"
|
988
|
+
msgstr "You are already signed in. !!!!"
|
989
|
+
|
990
|
+
msgid "devise.failure.inactive"
|
991
|
+
msgstr "Your account is not activated yet."
|
992
|
+
|
993
|
+
msgid "devise.failure.invalid"
|
994
|
+
msgstr "Invalid %{authentication_keys} or password."
|
995
|
+
|
996
|
+
msgid "devise.failure.last_attempt"
|
997
|
+
msgstr "Your account is locked."
|
998
|
+
|
999
|
+
msgid "devise.failure.locked"
|
1000
|
+
msgstr "You have one more attempt before your account is locked."
|
1001
|
+
|
1002
|
+
msgid "devise.failure.not_found_in_database"
|
1003
|
+
msgstr "Invalid %{authentication_keys} or password."
|
1004
|
+
|
1005
|
+
msgid "devise.failure.timeout"
|
1006
|
+
msgstr "Your session expired. Please sign in again to continue."
|
1007
|
+
|
1008
|
+
msgid "devise.failure.unauthenticated"
|
1009
|
+
msgstr "You need to sign in or sign up before continuing."
|
1010
|
+
|
1011
|
+
msgid "devise.failure.unconfirmed"
|
1012
|
+
msgstr "You have to confirm your email address before continuing."
|
1013
|
+
|
1014
|
+
msgid "devise.mailer.confirmation_instructions.subject"
|
1015
|
+
msgstr "Confirmation instructions"
|
1016
|
+
|
1017
|
+
msgid "devise.mailer.email_changed.subject"
|
1018
|
+
msgstr "Reset password instructions"
|
1019
|
+
|
1020
|
+
msgid "devise.mailer.password_change.subject"
|
1021
|
+
msgstr "Unlock instructions"
|
1022
|
+
|
1023
|
+
msgid "devise.mailer.reset_password_instructions.subject"
|
1024
|
+
msgstr "Email Changed"
|
1025
|
+
|
1026
|
+
msgid "devise.mailer.unlock_instructions.subject"
|
1027
|
+
msgstr "Password Changed"
|
1028
|
+
|
1029
|
+
msgid "devise.omniauth_callbacks.failure"
|
1030
|
+
msgstr "Could not authenticate you from %{kind} because \"%{reason}\"."
|
1031
|
+
|
1032
|
+
msgid "devise.omniauth_callbacks.success"
|
1033
|
+
msgstr "Successfully authenticated from %{kind} account."
|
1034
|
+
|
1035
|
+
msgid "devise.passwords.no_token"
|
1036
|
+
msgstr "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."
|
1037
|
+
|
1038
|
+
msgid "devise.passwords.send_instructions"
|
1039
|
+
msgstr "You will receive an email with instructions on how to reset your password in a few minutes."
|
1040
|
+
|
1041
|
+
msgid "devise.passwords.send_paranoid_instructions"
|
1042
|
+
msgstr "If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes."
|
1043
|
+
|
1044
|
+
msgid "devise.passwords.updated"
|
1045
|
+
msgstr "Your password has been changed successfully. You are now signed in."
|
1046
|
+
|
1047
|
+
msgid "devise.passwords.updated_not_active"
|
1048
|
+
msgstr "Your password has been changed successfully."
|
1049
|
+
|
1050
|
+
msgid "devise.registrations.destroyed"
|
1051
|
+
msgstr "Bye! Your account has been successfully cancelled. We hope to see you again soon."
|
1052
|
+
|
1053
|
+
msgid "devise.registrations.signed_up"
|
1054
|
+
msgstr "Welcome! You have signed up successfully."
|
1055
|
+
|
1056
|
+
msgid "devise.registrations.signed_up_but_inactive"
|
1057
|
+
msgstr "You have signed up successfully. However, we could not sign you in because your account is not yet activated."
|
1058
|
+
|
1059
|
+
msgid "devise.registrations.signed_up_but_locked"
|
1060
|
+
msgstr "You have signed up successfully. However, we could not sign you in because your account is locked."
|
1061
|
+
|
1062
|
+
msgid "devise.registrations.signed_up_but_unconfirmed"
|
1063
|
+
msgstr "A message with a confirmation link has been sent to your email address. Please follow the link to activate your account."
|
1064
|
+
|
1065
|
+
msgid "devise.registrations.update_needs_confirmation"
|
1066
|
+
msgstr "You updated your account successfully, but we need to verify your new email address. Please check your email and follow the confirm link to confirm your new email address."
|
1067
|
+
|
1068
|
+
msgid "devise.registrations.updated"
|
1069
|
+
msgstr "Your account has been updated successfully."
|
1070
|
+
|
1071
|
+
msgid "devise.sessions.already_signed_out"
|
1072
|
+
msgstr "Signed in successfully."
|
1073
|
+
|
1074
|
+
msgid "devise.sessions.signed_in"
|
1075
|
+
msgstr "Signed in successfully."
|
1076
|
+
|
1077
|
+
msgid "devise.sessions.signed_out"
|
1078
|
+
msgstr "Signed out successfully."
|
1079
|
+
|
1080
|
+
msgid "devise.unlocks.send_instructions"
|
1081
|
+
msgstr "You will receive an email with instructions for how to unlock your account in a few minutes."
|
1082
|
+
|
1083
|
+
msgid "devise.unlocks.send_paranoid_instructions"
|
1084
|
+
msgstr "If your account exists, you will receive an email with instructions for how to unlock it in a few minutes."
|
1085
|
+
|
1086
|
+
msgid "devise.unlocks.unlocked"
|
1087
|
+
msgstr "Your account has been unlocked successfully. Please sign in to continue."
|
1088
|
+
|
1089
|
+
msgid "errors.messages.already_confirmed"
|
1090
|
+
msgstr "was already confirmed, please try signing in"
|
1091
|
+
|
1092
|
+
msgid "errors.messages.confirmation_period_expired"
|
1093
|
+
msgstr "needs to be confirmed within %{period}, please request a new one"
|
1094
|
+
|
1095
|
+
msgid "errors.messages.expired"
|
1096
|
+
msgstr "has expired, please request a new one"
|
1097
|
+
|
1098
|
+
msgid "errors.messages.not_found"
|
1099
|
+
msgstr "not found"
|
1100
|
+
|
1101
|
+
msgid "errors.messages.not_locked"
|
1102
|
+
msgstr "was not locked"
|
1103
|
+
|
1104
|
+
msgid "errors.messages.not_saved.one"
|
1105
|
+
msgstr "1 error prohibited this %{resource} from being saved:"
|
1106
|
+
|
1107
|
+
msgid "errors.messages.not_saved.other"
|
1108
|
+
msgstr "%{count} errors prohibited this %{resource} from being saved:"
|
1109
|
+
|
1110
|
+
msgid "locked"
|
1111
|
+
msgstr ""
|
1112
|
+
|
1113
|
+
msgid "published"
|
1114
|
+
msgstr ""
|
1115
|
+
|
1116
|
+
msgid "removed from publication"
|
1117
|
+
msgstr ""
|
1118
|
+
|
1119
|
+
msgid "unlocked"
|
1120
|
+
msgstr ""
|
1121
|
+
|
1122
|
+
msgid "updated"
|
1123
|
+
msgstr ""
|