elabs 3.0.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +89 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +7 -2
- data/README.md +24 -17
- data/ROADMAP.md +8 -7
- data/app/assets/javascripts/elabs/application.js.erb +42 -0
- data/app/assets/javascripts/elabs/forms.js +10 -0
- data/app/assets/javascripts/elabs/helpers-markdown.js +11 -33
- data/app/assets/javascripts/elabs/helpers.js +28 -0
- data/app/assets/javascripts/elabs/hljs.js +4 -0
- data/app/assets/stylesheets/elabs/_colors.scss +5 -0
- data/app/assets/stylesheets/elabs/_fixes.scss +6 -0
- data/app/assets/stylesheets/elabs/_icons.scss +4 -0
- data/app/assets/stylesheets/elabs/app/_acts.scss +11 -0
- data/app/assets/stylesheets/elabs/app/_buttons.scss +8 -0
- data/app/assets/stylesheets/elabs/app/_comments.scss +10 -1
- data/app/assets/stylesheets/elabs/app/_content.scss +15 -0
- data/app/assets/stylesheets/elabs/app/_content_statuses.scss +32 -0
- data/app/assets/stylesheets/elabs/app/_forms.scss +5 -0
- data/app/assets/stylesheets/elabs/app/_helpers.scss +10 -0
- data/app/assets/stylesheets/elabs/app/_layout.scss +4 -0
- data/app/assets/stylesheets/elabs/app/_modals.scss +4 -0
- data/app/assets/stylesheets/elabs/app/_tables.scss +31 -0
- data/app/assets/stylesheets/elabs/app/_typo.scss +14 -0
- data/app/assets/stylesheets/elabs/app/_users.scss +14 -6
- data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +8 -1
- data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +1 -26
- data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +11 -1
- data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +26 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content-inline.scss +7 -0
- data/app/assets/stylesheets/elabs/app/widgets/_git-cards.scss +88 -0
- data/app/assets/stylesheets/elabs/lib/_hljs.scss +5 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +11 -11
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +10 -2
- data/app/assets/stylesheets/elabs/style.scss +11 -1
- data/app/controllers/elabs/admin/admin_application_controller.rb +1 -1
- data/app/controllers/elabs/admin/admin_content_application_controller.rb +2 -2
- data/app/controllers/elabs/admin/languages_controller.rb +1 -1
- data/app/controllers/elabs/admin/licenses_controller.rb +1 -1
- data/app/controllers/elabs/admin/tags_controller.rb +1 -1
- data/app/controllers/elabs/admin/users_controller.rb +1 -1
- data/app/controllers/elabs/albums_controller.rb +1 -1
- data/app/controllers/elabs/articles_controller.rb +1 -1
- data/app/controllers/elabs/content_application_controller.rb +2 -1
- data/app/controllers/elabs/elabs_public_controller.rb +28 -8
- data/app/controllers/elabs/languages_controller.rb +1 -1
- data/app/controllers/elabs/licenses_controller.rb +1 -1
- data/app/controllers/elabs/member/albums_controller.rb +1 -1
- data/app/controllers/elabs/member/articles_controller.rb +1 -1
- data/app/controllers/elabs/member/markdown_previewer_controller.rb +11 -0
- data/app/controllers/elabs/member/member_content_application_controller.rb +2 -2
- data/app/controllers/elabs/member/notes_controller.rb +1 -1
- data/app/controllers/elabs/member/projects_controller.rb +1 -1
- data/app/controllers/elabs/member/uploads_controller.rb +1 -1
- data/app/controllers/elabs/notes_controller.rb +1 -1
- data/app/controllers/elabs/projects_controller.rb +1 -1
- data/app/controllers/elabs/tags_controller.rb +1 -6
- data/app/controllers/elabs/uploads_controller.rb +1 -1
- data/app/controllers/elabs/users_controller.rb +1 -1
- data/app/helpers/elabs/acts_helper.rb +2 -2
- data/app/helpers/elabs/application_helper.rb +30 -3
- data/app/helpers/elabs/content_helper.rb +9 -3
- data/app/helpers/elabs/content_renderer_helper.rb +118 -8
- data/app/helpers/elabs/rss_helper.rb +9 -0
- data/app/helpers/elabs/thumbnails_helper.rb +24 -19
- data/app/helpers/elabs/time_helper.rb +7 -1
- data/app/models/elabs/album.rb +2 -0
- data/app/models/elabs/application_content_record.rb +3 -0
- data/app/models/elabs/article.rb +2 -0
- data/app/models/elabs/concerns/actable_entity.rb +17 -2
- data/app/models/elabs/concerns/content_entity.rb +2 -2
- data/app/models/elabs/concerns/sluggable.rb +40 -0
- data/app/models/elabs/language.rb +8 -0
- data/app/models/elabs/license.rb +5 -0
- data/app/models/elabs/note.rb +2 -0
- data/app/models/elabs/project.rb +3 -0
- data/app/models/elabs/tag.rb +5 -0
- data/app/models/elabs/upload.rb +2 -0
- data/app/models/elabs/user.rb +10 -2
- data/app/views/elabs/acts/_act.rss.builder +22 -0
- data/app/views/elabs/acts/index.html.haml +5 -1
- data/app/views/elabs/acts/index.rss.builder +15 -0
- data/app/views/elabs/admin/albums/index.html.haml +4 -4
- data/app/views/elabs/admin/articles/index.html.haml +4 -4
- data/app/views/elabs/admin/languages/_form.html.haml +2 -1
- data/app/views/elabs/admin/licenses/_form.html.haml +2 -1
- data/app/views/elabs/admin/notes/index.html.haml +5 -5
- data/app/views/elabs/admin/projects/index.html.haml +4 -4
- data/app/views/elabs/admin/reports/index.html.haml +2 -2
- data/app/views/elabs/admin/tags/_form.html.haml +2 -1
- data/app/views/elabs/admin/uploads/index.html.haml +4 -4
- data/app/views/elabs/admin/users/index.html.haml +3 -3
- data/app/views/elabs/admin/users/show.html.haml +2 -2
- data/app/views/elabs/albums/_album.html.haml +1 -1
- data/app/views/elabs/albums/_album.rss.builder +7 -0
- data/app/views/elabs/albums/_album_inline.html.haml +8 -0
- data/app/views/elabs/albums/index.rss.builder +14 -0
- data/app/views/elabs/albums/show.html.haml +3 -3
- data/app/views/elabs/articles/_article.html.haml +1 -1
- data/app/views/elabs/articles/_article.rss.builder +7 -0
- data/app/views/elabs/articles/_article_inline.html.haml +8 -0
- data/app/views/elabs/articles/index.rss.builder +14 -0
- data/app/views/elabs/articles/show.html.haml +4 -4
- data/app/views/elabs/comments/_comments.html.haml +4 -3
- data/app/views/elabs/comments/_form.html.haml +18 -6
- data/app/views/elabs/languages/_associations.html.haml +15 -5
- data/app/views/elabs/layouts/_footer.html.haml +8 -1
- data/app/views/elabs/layouts/_hidden_entry.html.haml +4 -4
- data/app/views/elabs/layouts/_hidden_entry_full.html.haml +4 -4
- data/app/views/elabs/layouts/_hidden_entry_inline.html.haml +6 -0
- data/app/views/elabs/layouts/_shortcode_infinite_loop.html.haml +2 -0
- data/app/views/elabs/layouts/_shortcode_infinite_loop_inline.html.haml +2 -0
- data/app/views/elabs/layouts/_shortcode_missing_content.html.haml +2 -0
- data/app/views/elabs/layouts/_shortcode_missing_content_inline.html.haml +2 -0
- data/app/views/elabs/layouts/_shortcode_open_to_see.html.haml +2 -0
- data/app/views/elabs/layouts/admin_application.html.haml +2 -2
- data/app/views/elabs/layouts/application.html.haml +11 -3
- data/app/views/elabs/layouts/member_application.html.haml +5 -2
- data/app/views/elabs/layouts/widgets/_github_repo_card.html.haml +12 -0
- data/app/views/elabs/layouts/widgets/_github_repo_inline.html.haml +8 -0
- data/app/views/elabs/layouts/widgets/_github_user_card.html.haml +7 -0
- data/app/views/elabs/layouts/widgets/_gitlab_group_card.html.haml +11 -0
- data/app/views/elabs/layouts/widgets/_gitlab_repo_card.html.haml +12 -0
- data/app/views/elabs/layouts/widgets/_gitlab_repo_inline.html.haml +8 -0
- data/app/views/elabs/layouts/widgets/_gitlab_user_card.html.haml +11 -0
- data/app/views/elabs/layouts/widgets/vue/_all_widgets.html.haml +5 -0
- data/app/views/elabs/layouts/widgets/vue/_github_repo_card_vue.html.haml +72 -0
- data/app/views/elabs/layouts/widgets/vue/_github_user_card_vue.html.haml +64 -0
- data/app/views/elabs/layouts/widgets/vue/_gitlab_group_card_vue.html.haml +64 -0
- data/app/views/elabs/layouts/widgets/vue/_gitlab_repo_card_vue.html.haml +69 -0
- data/app/views/elabs/layouts/widgets/vue/_gitlab_user_card_vue.html.haml +99 -0
- data/app/views/elabs/licenses/_associations.html.haml +15 -5
- data/app/views/elabs/licenses/show.json.jbuilder +1 -1
- data/app/views/elabs/member/albums/_form.html.haml +12 -1
- data/app/views/elabs/member/albums/index.html.haml +4 -4
- data/app/views/elabs/member/articles/_form.html.haml +12 -1
- data/app/views/elabs/member/articles/index.html.haml +4 -4
- data/app/views/elabs/member/markdown_previewer/preview.json.jbuilder +2 -0
- data/app/views/elabs/member/notes/_form.html.haml +12 -1
- data/app/views/elabs/member/notes/index.html.haml +4 -4
- data/app/views/elabs/member/notifications/index.html.haml +1 -1
- data/app/views/elabs/member/preferences/_form.html.haml +2 -1
- data/app/views/elabs/member/projects/_form.html.haml +18 -2
- data/app/views/elabs/member/projects/_project.json.jbuilder +2 -0
- data/app/views/elabs/member/projects/index.html.haml +4 -4
- data/app/views/elabs/member/uploads/_form.html.haml +12 -1
- data/app/views/elabs/member/uploads/index.html.haml +6 -9
- data/app/views/elabs/member/users/_form.html.haml +2 -1
- data/app/views/elabs/notes/_note.html.haml +2 -2
- data/app/views/elabs/notes/_note.rss.builder +7 -0
- data/app/views/elabs/notes/_note_inline.haml +8 -0
- data/app/views/elabs/notes/index.rss.builder +14 -0
- data/app/views/elabs/notes/show.html.haml +3 -3
- data/app/views/elabs/projects/_associations.html.haml +12 -4
- data/app/views/elabs/projects/_project.html.haml +1 -1
- data/app/views/elabs/projects/_project.json.jbuilder +2 -0
- data/app/views/elabs/projects/_project.rss.builder +7 -0
- data/app/views/elabs/projects/_project_inline.html.haml +9 -0
- data/app/views/elabs/projects/index.rss.builder +14 -0
- data/app/views/elabs/projects/show.html.haml +20 -9
- data/app/views/elabs/reports/_form.html.haml +2 -1
- data/app/views/elabs/tags/_associations.html.haml +15 -5
- data/app/views/elabs/tags/index.html.haml +2 -0
- data/app/views/elabs/uploads/_preview.html.haml +1 -6
- data/app/views/elabs/uploads/_upload.rss.builder +7 -0
- data/app/views/elabs/uploads/_upload_inline.html.haml +8 -0
- data/app/views/elabs/uploads/index.rss.builder +14 -0
- data/app/views/elabs/uploads/show.html.haml +7 -8
- data/app/views/elabs/users/_associations.html.haml +15 -5
- data/app/views/elabs/users/_user.html.haml +24 -18
- data/app/views/elabs/users/_user_inline.html.haml +7 -0
- data/app/views/elabs/users/show.html.haml +2 -2
- data/config/brakeman.ignore +13 -111
- data/config/locales/en.yml +6 -0
- data/config/locales/fr.yml +6 -0
- data/config/routes.rb +30 -28
- data/db/migrate/20180917133442_add_urls_to_projects.rb +6 -0
- data/db/migrate/20181005105642_add_reason_to_acts.rb +5 -0
- data/db/migrate/20181006073541_add_slugs.rb +39 -0
- data/docs/migrating.md +51 -0
- data/docs/setup.md +1 -0
- data/lib/elabs.rb +5 -0
- data/lib/elabs/version.rb +1 -1
- data/lib/generators/elabs/install_generator.rb +1 -0
- data/lib/generators/elabs/views_generator.rb +0 -1
- data/lib/generators/templates/elabs.rb +4 -0
- data/lib/generators/templates/user_model.rb +6 -0
- data/locale/app.pot +129 -9
- data/locale/en/app.edit.po +127 -7
- data/locale/en/app.po +127 -7
- data/locale/fr/app.edit.po +130 -10
- data/locale/fr/app.po +129 -9
- metadata +59 -5
- data/app/assets/javascripts/elabs/application.js +0 -27
- data/app/assets/stylesheets/elabs/app/_nsfw.scss +0 -5
- data/lib/assets/javascripts/markdown-it-8.4.2.min.js +0 -1
data/locale/en/app.po
CHANGED
|
@@ -108,6 +108,9 @@ msgstr ""
|
|
|
108
108
|
msgid "(we need your current password to confirm the following changes)"
|
|
109
109
|
msgstr ""
|
|
110
110
|
|
|
111
|
+
msgid "@%<user>s on %<link>s"
|
|
112
|
+
msgstr ""
|
|
113
|
+
|
|
111
114
|
msgid "A note"
|
|
112
115
|
msgstr ""
|
|
113
116
|
|
|
@@ -123,6 +126,9 @@ msgstr ""
|
|
|
123
126
|
msgid "Active"
|
|
124
127
|
msgstr ""
|
|
125
128
|
|
|
129
|
+
msgid "Activity"
|
|
130
|
+
msgstr ""
|
|
131
|
+
|
|
126
132
|
msgid "Act|Content type"
|
|
127
133
|
msgstr ""
|
|
128
134
|
|
|
@@ -144,9 +150,24 @@ msgstr ""
|
|
|
144
150
|
msgid "Albums:"
|
|
145
151
|
msgstr ""
|
|
146
152
|
|
|
153
|
+
msgid "All the information you give will only be visible to the author. We don't share anything with anyone."
|
|
154
|
+
msgstr ""
|
|
155
|
+
|
|
147
156
|
msgid "Allow contact"
|
|
148
157
|
msgstr ""
|
|
149
158
|
|
|
159
|
+
msgid "An error occured when fetching a Gitlab group."
|
|
160
|
+
msgstr ""
|
|
161
|
+
|
|
162
|
+
msgid "An error occured when fetching a Gitlab repository."
|
|
163
|
+
msgstr ""
|
|
164
|
+
|
|
165
|
+
msgid "An error occured when fetching a Gitlab user."
|
|
166
|
+
msgstr ""
|
|
167
|
+
|
|
168
|
+
msgid "An error occured when fetching the repository data from Github."
|
|
169
|
+
msgstr ""
|
|
170
|
+
|
|
150
171
|
msgid "An error prevented the instructions from being sent:"
|
|
151
172
|
msgid_plural "%<nb>i errors prevented the instructions from being sent:"
|
|
152
173
|
msgstr[0] ""
|
|
@@ -299,9 +320,6 @@ msgstr ""
|
|
|
299
320
|
msgid "Bio"
|
|
300
321
|
msgstr ""
|
|
301
322
|
|
|
302
|
-
msgid "By submitting this comment, you agree to be recontacted by the author."
|
|
303
|
-
msgstr ""
|
|
304
|
-
|
|
305
323
|
msgid "By submitting this report, you agree to be recontacted by administrators."
|
|
306
324
|
msgstr ""
|
|
307
325
|
|
|
@@ -359,6 +377,9 @@ msgstr ""
|
|
|
359
377
|
msgid "Content not displayed"
|
|
360
378
|
msgstr ""
|
|
361
379
|
|
|
380
|
+
msgid "Content not found"
|
|
381
|
+
msgstr ""
|
|
382
|
+
|
|
362
383
|
msgid "Create some content"
|
|
363
384
|
msgstr ""
|
|
364
385
|
|
|
@@ -383,6 +404,12 @@ msgstr ""
|
|
|
383
404
|
msgid "Didn't receive unlock instructions?"
|
|
384
405
|
msgstr ""
|
|
385
406
|
|
|
407
|
+
msgid "Display the full element to display this content..."
|
|
408
|
+
msgstr ""
|
|
409
|
+
|
|
410
|
+
msgid "Documentation:"
|
|
411
|
+
msgstr ""
|
|
412
|
+
|
|
386
413
|
msgid "Download"
|
|
387
414
|
msgstr ""
|
|
388
415
|
|
|
@@ -425,12 +452,27 @@ msgstr ""
|
|
|
425
452
|
msgid "Forgot your password?"
|
|
426
453
|
msgstr ""
|
|
427
454
|
|
|
455
|
+
msgid "Fork:"
|
|
456
|
+
msgstr ""
|
|
457
|
+
|
|
458
|
+
msgid "Forks:"
|
|
459
|
+
msgstr ""
|
|
460
|
+
|
|
461
|
+
msgid "Gitlab responded with the following error:"
|
|
462
|
+
msgstr ""
|
|
463
|
+
|
|
428
464
|
msgid "Hide NSFW"
|
|
429
465
|
msgstr ""
|
|
430
466
|
|
|
431
467
|
msgid "Home page"
|
|
432
468
|
msgstr ""
|
|
433
469
|
|
|
470
|
+
msgid "Home page:"
|
|
471
|
+
msgstr ""
|
|
472
|
+
|
|
473
|
+
msgid "I agree to be recontacted"
|
|
474
|
+
msgstr ""
|
|
475
|
+
|
|
434
476
|
msgid "ISO 639-1 code"
|
|
435
477
|
msgstr ""
|
|
436
478
|
|
|
@@ -440,12 +482,21 @@ msgstr ""
|
|
|
440
482
|
msgid "Icon"
|
|
441
483
|
msgstr ""
|
|
442
484
|
|
|
485
|
+
msgid "If this is not a minor modification, you can specify the changes here."
|
|
486
|
+
msgstr ""
|
|
487
|
+
|
|
443
488
|
msgid "Infos"
|
|
444
489
|
msgstr ""
|
|
445
490
|
|
|
446
491
|
msgid "Insc. date"
|
|
447
492
|
msgstr ""
|
|
448
493
|
|
|
494
|
+
msgid "Invalid Github repository"
|
|
495
|
+
msgstr ""
|
|
496
|
+
|
|
497
|
+
msgid "Invalid Gitlab repository"
|
|
498
|
+
msgstr ""
|
|
499
|
+
|
|
449
500
|
msgid "Is SFW:"
|
|
450
501
|
msgstr ""
|
|
451
502
|
|
|
@@ -506,6 +557,9 @@ msgstr ""
|
|
|
506
557
|
msgid "Last %<amount>i uploads:"
|
|
507
558
|
msgstr ""
|
|
508
559
|
|
|
560
|
+
msgid "Last activity:"
|
|
561
|
+
msgstr ""
|
|
562
|
+
|
|
509
563
|
msgid "Last events"
|
|
510
564
|
msgstr ""
|
|
511
565
|
|
|
@@ -563,6 +617,12 @@ msgstr ""
|
|
|
563
617
|
msgid "Listing reports"
|
|
564
618
|
msgstr ""
|
|
565
619
|
|
|
620
|
+
msgid "Loading data from Github. Please wait."
|
|
621
|
+
msgstr ""
|
|
622
|
+
|
|
623
|
+
msgid "Loading data from a Gitlab instance. Please wait."
|
|
624
|
+
msgstr ""
|
|
625
|
+
|
|
566
626
|
msgid "Lock"
|
|
567
627
|
msgstr ""
|
|
568
628
|
|
|
@@ -581,9 +641,6 @@ msgstr ""
|
|
|
581
641
|
msgid "Main url"
|
|
582
642
|
msgstr ""
|
|
583
643
|
|
|
584
|
-
msgid "Main url:"
|
|
585
|
-
msgstr ""
|
|
586
|
-
|
|
587
644
|
msgid "Markdown supported. %<preview_button>s"
|
|
588
645
|
msgstr ""
|
|
589
646
|
|
|
@@ -641,6 +698,9 @@ msgstr ""
|
|
|
641
698
|
msgid "New upload"
|
|
642
699
|
msgstr ""
|
|
643
700
|
|
|
701
|
+
msgid "No"
|
|
702
|
+
msgstr ""
|
|
703
|
+
|
|
644
704
|
msgid "No comment has been left"
|
|
645
705
|
msgstr ""
|
|
646
706
|
|
|
@@ -653,9 +713,15 @@ msgstr ""
|
|
|
653
713
|
msgid "Not in an album"
|
|
654
714
|
msgstr ""
|
|
655
715
|
|
|
716
|
+
msgid "Note #%<id>i"
|
|
717
|
+
msgstr ""
|
|
718
|
+
|
|
656
719
|
msgid "Note count"
|
|
657
720
|
msgstr ""
|
|
658
721
|
|
|
722
|
+
msgid "Note that the comments are not publicly visible, so don't worry if you don't see yours."
|
|
723
|
+
msgstr ""
|
|
724
|
+
|
|
659
725
|
msgid "Notes"
|
|
660
726
|
msgstr ""
|
|
661
727
|
|
|
@@ -722,6 +788,12 @@ msgstr ""
|
|
|
722
788
|
msgid "Pub. date"
|
|
723
789
|
msgstr ""
|
|
724
790
|
|
|
791
|
+
msgid "Public gists:"
|
|
792
|
+
msgstr ""
|
|
793
|
+
|
|
794
|
+
msgid "Public repos:"
|
|
795
|
+
msgstr ""
|
|
796
|
+
|
|
725
797
|
msgid "Publish"
|
|
726
798
|
msgstr ""
|
|
727
799
|
|
|
@@ -731,6 +803,9 @@ msgstr ""
|
|
|
731
803
|
msgid "Published at:"
|
|
732
804
|
msgstr ""
|
|
733
805
|
|
|
806
|
+
msgid "RSS:"
|
|
807
|
+
msgstr ""
|
|
808
|
+
|
|
734
809
|
msgid "Real name:"
|
|
735
810
|
msgstr ""
|
|
736
811
|
|
|
@@ -794,6 +869,9 @@ msgstr ""
|
|
|
794
869
|
msgid "Send me reset password instructions"
|
|
795
870
|
msgstr ""
|
|
796
871
|
|
|
872
|
+
msgid "Shared repos:"
|
|
873
|
+
msgstr ""
|
|
874
|
+
|
|
797
875
|
msgid "Show NSFW"
|
|
798
876
|
msgstr ""
|
|
799
877
|
|
|
@@ -821,6 +899,18 @@ msgstr ""
|
|
|
821
899
|
msgid "Someone"
|
|
822
900
|
msgstr ""
|
|
823
901
|
|
|
902
|
+
msgid "Sorry, NSFW content"
|
|
903
|
+
msgstr ""
|
|
904
|
+
|
|
905
|
+
msgid "Sorry, content is locked for review"
|
|
906
|
+
msgstr ""
|
|
907
|
+
|
|
908
|
+
msgid "Sorry, showing this may have unpredictable consequences"
|
|
909
|
+
msgstr ""
|
|
910
|
+
|
|
911
|
+
msgid "Sources:"
|
|
912
|
+
msgstr ""
|
|
913
|
+
|
|
824
914
|
msgid "Subscription date:"
|
|
825
915
|
msgstr ""
|
|
826
916
|
|
|
@@ -866,13 +956,19 @@ msgstr ""
|
|
|
866
956
|
msgid "Tag|Uploads count"
|
|
867
957
|
msgstr ""
|
|
868
958
|
|
|
959
|
+
msgid "The author wanted to put something here, but it may create an infinite loop..."
|
|
960
|
+
msgstr ""
|
|
961
|
+
|
|
962
|
+
msgid "The author wanted to put something here, but it was not found..."
|
|
963
|
+
msgstr ""
|
|
964
|
+
|
|
869
965
|
msgid "The following formats will be viewable online; other will need a download: %<formats>s"
|
|
870
966
|
msgstr ""
|
|
871
967
|
|
|
872
968
|
msgid "This %<model>s is not yours"
|
|
873
969
|
msgstr ""
|
|
874
970
|
|
|
875
|
-
msgid "This comment will be posted as \"%<name>s\""
|
|
971
|
+
msgid "This comment will be posted as \"%<name>s\". By submitting this comment, you agree to be recontacted by the author."
|
|
876
972
|
msgstr ""
|
|
877
973
|
|
|
878
974
|
msgid "This content might not be appropriate for every situation."
|
|
@@ -884,6 +980,9 @@ msgstr ""
|
|
|
884
980
|
msgid "This feature is experimental. If you provide an invalid file, your current avatar will be deleted."
|
|
885
981
|
msgstr ""
|
|
886
982
|
|
|
983
|
+
msgid "This is a minor edition"
|
|
984
|
+
msgstr ""
|
|
985
|
+
|
|
887
986
|
msgid "This space is empty"
|
|
888
987
|
msgstr ""
|
|
889
988
|
|
|
@@ -902,6 +1001,9 @@ msgstr ""
|
|
|
902
1001
|
msgid "Upd. date"
|
|
903
1002
|
msgstr ""
|
|
904
1003
|
|
|
1004
|
+
msgid "Update message"
|
|
1005
|
+
msgstr ""
|
|
1006
|
+
|
|
905
1007
|
msgid "Updated at:"
|
|
906
1008
|
msgstr ""
|
|
907
1009
|
|
|
@@ -998,9 +1100,21 @@ msgstr ""
|
|
|
998
1100
|
msgid "View online"
|
|
999
1101
|
msgstr ""
|
|
1000
1102
|
|
|
1103
|
+
msgid "We can't display the repository infos. Github responded with the following error:"
|
|
1104
|
+
msgstr ""
|
|
1105
|
+
|
|
1106
|
+
msgid "We can't display the user infos. Github responded with the following error:"
|
|
1107
|
+
msgstr ""
|
|
1108
|
+
|
|
1001
1109
|
msgid "With content only"
|
|
1002
1110
|
msgstr ""
|
|
1003
1111
|
|
|
1112
|
+
msgid "Yes"
|
|
1113
|
+
msgstr ""
|
|
1114
|
+
|
|
1115
|
+
msgid "You want to react to this content or ask something to the author? Just leave a comment here!"
|
|
1116
|
+
msgstr ""
|
|
1117
|
+
|
|
1004
1118
|
msgid "Your browser does not support the audio tag."
|
|
1005
1119
|
msgstr ""
|
|
1006
1120
|
|
|
@@ -1148,6 +1262,9 @@ msgstr "1 error prohibited this %{resource} from being saved:"
|
|
|
1148
1262
|
msgid "errors.messages.not_saved.other"
|
|
1149
1263
|
msgstr "%{count} errors prohibited this %{resource} from being saved:"
|
|
1150
1264
|
|
|
1265
|
+
msgid "group on %<link>s"
|
|
1266
|
+
msgstr ""
|
|
1267
|
+
|
|
1151
1268
|
msgid "has commented"
|
|
1152
1269
|
msgstr ""
|
|
1153
1270
|
|
|
@@ -1169,6 +1286,9 @@ msgstr ""
|
|
|
1169
1286
|
msgid "needs to be a \"png\" or \"jpg\" image"
|
|
1170
1287
|
msgstr ""
|
|
1171
1288
|
|
|
1289
|
+
msgid "project on %<link>s"
|
|
1290
|
+
msgstr ""
|
|
1291
|
+
|
|
1172
1292
|
msgid "published"
|
|
1173
1293
|
msgstr ""
|
|
1174
1294
|
|
data/locale/fr/app.edit.po
CHANGED
|
@@ -7,7 +7,7 @@ msgid ""
|
|
|
7
7
|
msgstr ""
|
|
8
8
|
"Project-Id-Version: app 1.0.0\n"
|
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
|
10
|
-
"PO-Revision-Date: 2018-
|
|
10
|
+
"PO-Revision-Date: 2018-10-06 01:08+0200\n"
|
|
11
11
|
"Language-Team: French\n"
|
|
12
12
|
"Language: fr\n"
|
|
13
13
|
"MIME-Version: 1.0\n"
|
|
@@ -18,7 +18,7 @@ msgstr ""
|
|
|
18
18
|
"X-Source-Language: C\n"
|
|
19
19
|
"Last-Translator: \n"
|
|
20
20
|
"X-Generator: Poedit 2.1.1\n"
|
|
21
|
-
"POT-Creation-Date: 2018-
|
|
21
|
+
"POT-Creation-Date: 2018-10-06 01:06+0200\n"
|
|
22
22
|
|
|
23
23
|
msgid "%<icon>s %<text>s"
|
|
24
24
|
msgstr "%<icon>s %<text>s"
|
|
@@ -111,6 +111,9 @@ msgstr "(laissez vide si vous ne souhaitez pas le changer)"
|
|
|
111
111
|
msgid "(we need your current password to confirm the following changes)"
|
|
112
112
|
msgstr "(nous avons besoin de votre mot de passe actuel pour valider les changements suivants)"
|
|
113
113
|
|
|
114
|
+
msgid "@%<user>s on %<link>s"
|
|
115
|
+
msgstr "@%<user>s sur %<link>s"
|
|
116
|
+
|
|
114
117
|
msgid "A note"
|
|
115
118
|
msgstr "Une note"
|
|
116
119
|
|
|
@@ -126,6 +129,9 @@ msgstr "Acte"
|
|
|
126
129
|
msgid "Active"
|
|
127
130
|
msgstr "Actif"
|
|
128
131
|
|
|
132
|
+
msgid "Activity"
|
|
133
|
+
msgstr "Activité"
|
|
134
|
+
|
|
129
135
|
msgid "Act|Content type"
|
|
130
136
|
msgstr "Type de contenu"
|
|
131
137
|
|
|
@@ -147,9 +153,24 @@ msgstr "Albums"
|
|
|
147
153
|
msgid "Albums:"
|
|
148
154
|
msgstr "Albums :"
|
|
149
155
|
|
|
156
|
+
msgid "All the information you give will only be visible to the author. We don't share anything with anyone."
|
|
157
|
+
msgstr "Toutes les informations que vous donnez ne seront visibles que par l'auteur. Nous ne partageons rien avec des tiers."
|
|
158
|
+
|
|
150
159
|
msgid "Allow contact"
|
|
151
160
|
msgstr "Autoriser le contact"
|
|
152
161
|
|
|
162
|
+
msgid "An error occured when fetching a Gitlab group."
|
|
163
|
+
msgstr "Une erreur s'est produite lors de la récupération d'un groupe Gitlab."
|
|
164
|
+
|
|
165
|
+
msgid "An error occured when fetching a Gitlab repository."
|
|
166
|
+
msgstr "Une erreur s'est produite lors de la récupération d'un dépôt Gitlab."
|
|
167
|
+
|
|
168
|
+
msgid "An error occured when fetching a Gitlab user."
|
|
169
|
+
msgstr "Une erreur s'est produite lors de la récupération d'un utilisateur Gitlab."
|
|
170
|
+
|
|
171
|
+
msgid "An error occured when fetching the repository data from Github."
|
|
172
|
+
msgstr "Une erreur s'est produite lors de la récupération des données de dépôt Github."
|
|
173
|
+
|
|
153
174
|
msgid "An error prevented the instructions from being sent:"
|
|
154
175
|
msgid_plural "%<nb>i errors prevented the instructions from being sent:"
|
|
155
176
|
msgstr[0] "Une erreur a empêché les instructions d'être envoyées :"
|
|
@@ -302,9 +323,6 @@ msgstr "Auteurs"
|
|
|
302
323
|
msgid "Bio"
|
|
303
324
|
msgstr "Bio"
|
|
304
325
|
|
|
305
|
-
msgid "By submitting this comment, you agree to be recontacted by the author."
|
|
306
|
-
msgstr "En soumettant ce commentaire, vous acceptez que l'auteur prenne contact avec vous."
|
|
307
|
-
|
|
308
326
|
msgid "By submitting this report, you agree to be recontacted by administrators."
|
|
309
327
|
msgstr "En soumettant ce commentaire, vous acceptez que des administrateurs prennent contact avec vous."
|
|
310
328
|
|
|
@@ -362,6 +380,9 @@ msgstr "Contenu"
|
|
|
362
380
|
msgid "Content not displayed"
|
|
363
381
|
msgstr "Contenu masqué"
|
|
364
382
|
|
|
383
|
+
msgid "Content not found"
|
|
384
|
+
msgstr "Contenu non trouvé"
|
|
385
|
+
|
|
365
386
|
msgid "Create some content"
|
|
366
387
|
msgstr "Créer du contenu"
|
|
367
388
|
|
|
@@ -386,6 +407,12 @@ msgstr "Vous n'avez pas reçu les instructions de confirmation ?"
|
|
|
386
407
|
msgid "Didn't receive unlock instructions?"
|
|
387
408
|
msgstr "Vous n'avez pas reçu les informations de déverouillage ?"
|
|
388
409
|
|
|
410
|
+
msgid "Display the full element to display this content..."
|
|
411
|
+
msgstr "Affichez l'élément complet pour afficher ce contenu..."
|
|
412
|
+
|
|
413
|
+
msgid "Documentation:"
|
|
414
|
+
msgstr "Documentation:"
|
|
415
|
+
|
|
389
416
|
msgid "Download"
|
|
390
417
|
msgstr "Télécharger"
|
|
391
418
|
|
|
@@ -428,12 +455,27 @@ msgstr "Courriel :"
|
|
|
428
455
|
msgid "Forgot your password?"
|
|
429
456
|
msgstr "Mot de passe oublié ?"
|
|
430
457
|
|
|
458
|
+
msgid "Fork:"
|
|
459
|
+
msgstr "Fork :"
|
|
460
|
+
|
|
461
|
+
msgid "Forks:"
|
|
462
|
+
msgstr "Forks :"
|
|
463
|
+
|
|
464
|
+
msgid "Gitlab responded with the following error:"
|
|
465
|
+
msgstr "Gitlab répondu avec l'erreur suivante:"
|
|
466
|
+
|
|
431
467
|
msgid "Hide NSFW"
|
|
432
468
|
msgstr "Cacher NSFW"
|
|
433
469
|
|
|
434
470
|
msgid "Home page"
|
|
435
471
|
msgstr "Accueil"
|
|
436
472
|
|
|
473
|
+
msgid "Home page:"
|
|
474
|
+
msgstr "Accueil"
|
|
475
|
+
|
|
476
|
+
msgid "I agree to be recontacted"
|
|
477
|
+
msgstr "J'accepte d'être recontacté"
|
|
478
|
+
|
|
437
479
|
msgid "ISO 639-1 code"
|
|
438
480
|
msgstr "Code ISO 639-1"
|
|
439
481
|
|
|
@@ -443,12 +485,21 @@ msgstr "Code ISO 639-1 :"
|
|
|
443
485
|
msgid "Icon"
|
|
444
486
|
msgstr "Icône"
|
|
445
487
|
|
|
488
|
+
msgid "If this is not a minor modification, you can specify the changes here."
|
|
489
|
+
msgstr "S'il ne s'agit pas d'une modification mineure, vous pouvez spécifier un description des changements ici."
|
|
490
|
+
|
|
446
491
|
msgid "Infos"
|
|
447
492
|
msgstr "Infos"
|
|
448
493
|
|
|
449
494
|
msgid "Insc. date"
|
|
450
495
|
msgstr "Date d'insc."
|
|
451
496
|
|
|
497
|
+
msgid "Invalid Github repository"
|
|
498
|
+
msgstr "Dépôt GitHub invalide"
|
|
499
|
+
|
|
500
|
+
msgid "Invalid Gitlab repository"
|
|
501
|
+
msgstr "Dépôt Gitlab invalide"
|
|
502
|
+
|
|
452
503
|
msgid "Is SFW:"
|
|
453
504
|
msgstr "Est SFW :"
|
|
454
505
|
|
|
@@ -509,6 +560,9 @@ msgstr "Derniers %<amount>i projets :"
|
|
|
509
560
|
msgid "Last %<amount>i uploads:"
|
|
510
561
|
msgstr "Derniers %<amount>i fichiers :"
|
|
511
562
|
|
|
563
|
+
msgid "Last activity:"
|
|
564
|
+
msgstr "Dernière activité :"
|
|
565
|
+
|
|
512
566
|
msgid "Last events"
|
|
513
567
|
msgstr "Derniers évènements"
|
|
514
568
|
|
|
@@ -566,6 +620,12 @@ msgstr "Liste de tags séparés par des virgules"
|
|
|
566
620
|
msgid "Listing reports"
|
|
567
621
|
msgstr "Liste des rapports"
|
|
568
622
|
|
|
623
|
+
msgid "Loading data from Github. Please wait."
|
|
624
|
+
msgstr "Chargement des données de Github. Veuillez patienter."
|
|
625
|
+
|
|
626
|
+
msgid "Loading data from a Gitlab instance. Please wait."
|
|
627
|
+
msgstr "Chargement de données à partir d'une instance Gitlab. Veuillez patienter."
|
|
628
|
+
|
|
569
629
|
msgid "Lock"
|
|
570
630
|
msgstr "Verrouiller"
|
|
571
631
|
|
|
@@ -584,9 +644,6 @@ msgstr "Connexion"
|
|
|
584
644
|
msgid "Main url"
|
|
585
645
|
msgstr "URL principale"
|
|
586
646
|
|
|
587
|
-
msgid "Main url:"
|
|
588
|
-
msgstr "URL principale :"
|
|
589
|
-
|
|
590
647
|
msgid "Markdown supported. %<preview_button>s"
|
|
591
648
|
msgstr "Markdown supporté. %<preview_button>s"
|
|
592
649
|
|
|
@@ -644,6 +701,9 @@ msgstr "Nouveau projet"
|
|
|
644
701
|
msgid "New upload"
|
|
645
702
|
msgstr "Nouveau fichier"
|
|
646
703
|
|
|
704
|
+
msgid "No"
|
|
705
|
+
msgstr "Non"
|
|
706
|
+
|
|
647
707
|
msgid "No comment has been left"
|
|
648
708
|
msgstr "Aucun commentaire"
|
|
649
709
|
|
|
@@ -656,9 +716,15 @@ msgstr "Aucun projet"
|
|
|
656
716
|
msgid "Not in an album"
|
|
657
717
|
msgstr "Aucun album"
|
|
658
718
|
|
|
719
|
+
msgid "Note #%<id>i"
|
|
720
|
+
msgstr "Note #%<id>i"
|
|
721
|
+
|
|
659
722
|
msgid "Note count"
|
|
660
723
|
msgstr "Nb. de notes"
|
|
661
724
|
|
|
725
|
+
msgid "Note that the comments are not publicly visible, so don't worry if you don't see yours."
|
|
726
|
+
msgstr "Notez que les commentaires ne sont pas visibles publiquement, donc ne vous inquiétez pas si vous ne voyez pas le vôtre."
|
|
727
|
+
|
|
662
728
|
msgid "Notes"
|
|
663
729
|
msgstr "Notes"
|
|
664
730
|
|
|
@@ -725,6 +791,12 @@ msgstr "Pub."
|
|
|
725
791
|
msgid "Pub. date"
|
|
726
792
|
msgstr "Date de pub."
|
|
727
793
|
|
|
794
|
+
msgid "Public gists:"
|
|
795
|
+
msgstr "Gist publics :"
|
|
796
|
+
|
|
797
|
+
msgid "Public repos:"
|
|
798
|
+
msgstr "Dépôts publics :"
|
|
799
|
+
|
|
728
800
|
msgid "Publish"
|
|
729
801
|
msgstr "Publier"
|
|
730
802
|
|
|
@@ -734,6 +806,9 @@ msgstr "Publié le"
|
|
|
734
806
|
msgid "Published at:"
|
|
735
807
|
msgstr "Publié le :"
|
|
736
808
|
|
|
809
|
+
msgid "RSS:"
|
|
810
|
+
msgstr "Rss:"
|
|
811
|
+
|
|
737
812
|
msgid "Real name:"
|
|
738
813
|
msgstr "Nom réel :"
|
|
739
814
|
|
|
@@ -797,6 +872,9 @@ msgstr "Enregister"
|
|
|
797
872
|
msgid "Send me reset password instructions"
|
|
798
873
|
msgstr "Envoyez-moi les instructions de réinitialisation du mot de passe"
|
|
799
874
|
|
|
875
|
+
msgid "Shared repos:"
|
|
876
|
+
msgstr "Dépôts partagés :"
|
|
877
|
+
|
|
800
878
|
msgid "Show NSFW"
|
|
801
879
|
msgstr "Afficher NSFW"
|
|
802
880
|
|
|
@@ -824,6 +902,18 @@ msgstr "Passer l'histo."
|
|
|
824
902
|
msgid "Someone"
|
|
825
903
|
msgstr "Quelqu'un"
|
|
826
904
|
|
|
905
|
+
msgid "Sorry, NSFW content"
|
|
906
|
+
msgstr "Désolé, contenu NSFW"
|
|
907
|
+
|
|
908
|
+
msgid "Sorry, content is locked for review"
|
|
909
|
+
msgstr "Désolé, le contenu est verrouillé pour révision"
|
|
910
|
+
|
|
911
|
+
msgid "Sorry, showing this may have unpredictable consequences"
|
|
912
|
+
msgstr "Désolé, afficher cet élément pourrait avoir des conséquences inattendues"
|
|
913
|
+
|
|
914
|
+
msgid "Sources:"
|
|
915
|
+
msgstr "Sources:"
|
|
916
|
+
|
|
827
917
|
msgid "Subscription date:"
|
|
828
918
|
msgstr "Date d'inscription :"
|
|
829
919
|
|
|
@@ -869,14 +959,20 @@ msgstr "Nb. de projets"
|
|
|
869
959
|
msgid "Tag|Uploads count"
|
|
870
960
|
msgstr "Nb. de fichiers"
|
|
871
961
|
|
|
962
|
+
msgid "The author wanted to put something here, but it may create an infinite loop..."
|
|
963
|
+
msgstr "L'auteur a voulu afficher du contenu ici, mais cela pourrait créer une boucle infinie..."
|
|
964
|
+
|
|
965
|
+
msgid "The author wanted to put something here, but it was not found..."
|
|
966
|
+
msgstr "L'auteur a voulu afficher du contenu ici, mais il n'a pas été trouvé..."
|
|
967
|
+
|
|
872
968
|
msgid "The following formats will be viewable online; other will need a download: %<formats>s"
|
|
873
969
|
msgstr "Les formats suivant seront visionnables en ligne; les autre demanderont un téléchargement : %<formats>s"
|
|
874
970
|
|
|
875
971
|
msgid "This %<model>s is not yours"
|
|
876
972
|
msgstr "Ce %<model>s n'est pas le vôtre"
|
|
877
973
|
|
|
878
|
-
msgid "This comment will be posted as \"%<name>s\""
|
|
879
|
-
msgstr "Ce commentaire sera
|
|
974
|
+
msgid "This comment will be posted as \"%<name>s\". By submitting this comment, you agree to be recontacted by the author."
|
|
975
|
+
msgstr "Ce commentaire sera enregistré en tant que \"%<name>s\". En soumettant ce commentaire, vous acceptez d'être recontacté par l'auteur."
|
|
880
976
|
|
|
881
977
|
msgid "This content might not be appropriate for every situation."
|
|
882
978
|
msgstr "Ce contenu n'est sûrement pas approprié dans toutes les situations"
|
|
@@ -887,6 +983,9 @@ msgstr "Ce contenu a besoin d'être revu et a été enlevé pour le moment."
|
|
|
887
983
|
msgid "This feature is experimental. If you provide an invalid file, your current avatar will be deleted."
|
|
888
984
|
msgstr "Cette fonctionnalité est expérimentale. Si vous fournissez un fichier non valide, votre avatar actuel sera supprimé."
|
|
889
985
|
|
|
986
|
+
msgid "This is a minor edition"
|
|
987
|
+
msgstr "C'est une modification mineure"
|
|
988
|
+
|
|
890
989
|
msgid "This space is empty"
|
|
891
990
|
msgstr "Cet espace est vide"
|
|
892
991
|
|
|
@@ -905,6 +1004,9 @@ msgstr "Dé-publier"
|
|
|
905
1004
|
msgid "Upd. date"
|
|
906
1005
|
msgstr "Date de MàJ"
|
|
907
1006
|
|
|
1007
|
+
msgid "Update message"
|
|
1008
|
+
msgstr "Message de modification"
|
|
1009
|
+
|
|
908
1010
|
msgid "Updated at:"
|
|
909
1011
|
msgstr "Date de MàJ :"
|
|
910
1012
|
|
|
@@ -1001,9 +1103,21 @@ msgstr "Nom d'utilisateur"
|
|
|
1001
1103
|
msgid "View online"
|
|
1002
1104
|
msgstr "Voir en ligne"
|
|
1003
1105
|
|
|
1106
|
+
msgid "We can't display the repository infos. Github responded with the following error:"
|
|
1107
|
+
msgstr "Nous ne pouvons pas afficher les infos du dépôt. GitHub a répondu avec l'erreur suivante:"
|
|
1108
|
+
|
|
1109
|
+
msgid "We can't display the user infos. Github responded with the following error:"
|
|
1110
|
+
msgstr "Nous ne pouvons pas afficher les infos utilisateur. GitHub a répondu avec l'erreur suivante:"
|
|
1111
|
+
|
|
1004
1112
|
msgid "With content only"
|
|
1005
1113
|
msgstr "Avec du contenu"
|
|
1006
1114
|
|
|
1115
|
+
msgid "Yes"
|
|
1116
|
+
msgstr "Oui"
|
|
1117
|
+
|
|
1118
|
+
msgid "You want to react to this content or ask something to the author? Just leave a comment here!"
|
|
1119
|
+
msgstr "Vous voulez réagir à ce contenu ou demander quelque chose à l'auteur ? Il suffit de laisser un commentaire ici !"
|
|
1120
|
+
|
|
1007
1121
|
msgid "Your browser does not support the audio tag."
|
|
1008
1122
|
msgstr "Votre navigateur ne supporte pas le tag \"audio\"."
|
|
1009
1123
|
|
|
@@ -1151,6 +1265,9 @@ msgstr "Une erreur a empêché votre compte d'être enregistré :"
|
|
|
1151
1265
|
msgid "errors.messages.not_saved.other"
|
|
1152
1266
|
msgstr "%{count} erreurs ont empêché votre compte d'être enregistré :"
|
|
1153
1267
|
|
|
1268
|
+
msgid "group on %<link>s"
|
|
1269
|
+
msgstr "groupe sur %<link>s"
|
|
1270
|
+
|
|
1154
1271
|
msgid "has commented"
|
|
1155
1272
|
msgstr "a commenté"
|
|
1156
1273
|
|
|
@@ -1172,6 +1289,9 @@ msgstr "verrouillé"
|
|
|
1172
1289
|
msgid "needs to be a \"png\" or \"jpg\" image"
|
|
1173
1290
|
msgstr "doit être une image \"png\" ou \"jpg\""
|
|
1174
1291
|
|
|
1292
|
+
msgid "project on %<link>s"
|
|
1293
|
+
msgstr "projet sur %<link>s"
|
|
1294
|
+
|
|
1175
1295
|
msgid "published"
|
|
1176
1296
|
msgstr "publié"
|
|
1177
1297
|
|