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
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
class User < Elabs::User
|
|
2
|
+
# Include default devise modules. Others available are:
|
|
3
|
+
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
|
|
4
|
+
devise :database_authenticatable, :recoverable, :rememberable, :validatable
|
|
5
|
+
devise :registerable if Elabs.users_can_register
|
|
6
|
+
end
|
data/locale/app.pot
CHANGED
|
@@ -8,8 +8,8 @@ msgid ""
|
|
|
8
8
|
msgstr ""
|
|
9
9
|
"Project-Id-Version: app 1.0.0\n"
|
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
|
11
|
-
"POT-Creation-Date: 2018-
|
|
12
|
-
"PO-Revision-Date: 2018-
|
|
11
|
+
"POT-Creation-Date: 2018-10-06 01:06+0200\n"
|
|
12
|
+
"PO-Revision-Date: 2018-10-06 01:06+0200\n"
|
|
13
13
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
|
14
14
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
15
15
|
"Language: \n"
|
|
@@ -109,6 +109,9 @@ msgstr ""
|
|
|
109
109
|
msgid "(we need your current password to confirm the following changes)"
|
|
110
110
|
msgstr ""
|
|
111
111
|
|
|
112
|
+
msgid "@%<user>s on %<link>s"
|
|
113
|
+
msgstr ""
|
|
114
|
+
|
|
112
115
|
msgid "A note"
|
|
113
116
|
msgstr ""
|
|
114
117
|
|
|
@@ -124,6 +127,9 @@ msgstr ""
|
|
|
124
127
|
msgid "Active"
|
|
125
128
|
msgstr ""
|
|
126
129
|
|
|
130
|
+
msgid "Activity"
|
|
131
|
+
msgstr ""
|
|
132
|
+
|
|
127
133
|
msgid "Act|Content type"
|
|
128
134
|
msgstr ""
|
|
129
135
|
|
|
@@ -145,9 +151,24 @@ msgstr ""
|
|
|
145
151
|
msgid "Albums:"
|
|
146
152
|
msgstr ""
|
|
147
153
|
|
|
154
|
+
msgid "All the information you give will only be visible to the author. We don't share anything with anyone."
|
|
155
|
+
msgstr ""
|
|
156
|
+
|
|
148
157
|
msgid "Allow contact"
|
|
149
158
|
msgstr ""
|
|
150
159
|
|
|
160
|
+
msgid "An error occured when fetching a Gitlab group."
|
|
161
|
+
msgstr ""
|
|
162
|
+
|
|
163
|
+
msgid "An error occured when fetching a Gitlab repository."
|
|
164
|
+
msgstr ""
|
|
165
|
+
|
|
166
|
+
msgid "An error occured when fetching a Gitlab user."
|
|
167
|
+
msgstr ""
|
|
168
|
+
|
|
169
|
+
msgid "An error occured when fetching the repository data from Github."
|
|
170
|
+
msgstr ""
|
|
171
|
+
|
|
151
172
|
msgid "An error prevented the instructions from being sent:"
|
|
152
173
|
msgid_plural "%<nb>i errors prevented the instructions from being sent:"
|
|
153
174
|
msgstr[0] ""
|
|
@@ -300,9 +321,6 @@ msgstr ""
|
|
|
300
321
|
msgid "Bio"
|
|
301
322
|
msgstr ""
|
|
302
323
|
|
|
303
|
-
msgid "By submitting this comment, you agree to be recontacted by the author."
|
|
304
|
-
msgstr ""
|
|
305
|
-
|
|
306
324
|
msgid "By submitting this report, you agree to be recontacted by administrators."
|
|
307
325
|
msgstr ""
|
|
308
326
|
|
|
@@ -360,6 +378,9 @@ msgstr ""
|
|
|
360
378
|
msgid "Content not displayed"
|
|
361
379
|
msgstr ""
|
|
362
380
|
|
|
381
|
+
msgid "Content not found"
|
|
382
|
+
msgstr ""
|
|
383
|
+
|
|
363
384
|
msgid "Create some content"
|
|
364
385
|
msgstr ""
|
|
365
386
|
|
|
@@ -384,6 +405,12 @@ msgstr ""
|
|
|
384
405
|
msgid "Didn't receive unlock instructions?"
|
|
385
406
|
msgstr ""
|
|
386
407
|
|
|
408
|
+
msgid "Display the full element to display this content..."
|
|
409
|
+
msgstr ""
|
|
410
|
+
|
|
411
|
+
msgid "Documentation:"
|
|
412
|
+
msgstr ""
|
|
413
|
+
|
|
387
414
|
msgid "Download"
|
|
388
415
|
msgstr ""
|
|
389
416
|
|
|
@@ -426,12 +453,27 @@ msgstr ""
|
|
|
426
453
|
msgid "Forgot your password?"
|
|
427
454
|
msgstr ""
|
|
428
455
|
|
|
456
|
+
msgid "Fork:"
|
|
457
|
+
msgstr ""
|
|
458
|
+
|
|
459
|
+
msgid "Forks:"
|
|
460
|
+
msgstr ""
|
|
461
|
+
|
|
462
|
+
msgid "Gitlab responded with the following error:"
|
|
463
|
+
msgstr ""
|
|
464
|
+
|
|
429
465
|
msgid "Hide NSFW"
|
|
430
466
|
msgstr ""
|
|
431
467
|
|
|
432
468
|
msgid "Home page"
|
|
433
469
|
msgstr ""
|
|
434
470
|
|
|
471
|
+
msgid "Home page:"
|
|
472
|
+
msgstr ""
|
|
473
|
+
|
|
474
|
+
msgid "I agree to be recontacted"
|
|
475
|
+
msgstr ""
|
|
476
|
+
|
|
435
477
|
msgid "ISO 639-1 code"
|
|
436
478
|
msgstr ""
|
|
437
479
|
|
|
@@ -441,12 +483,21 @@ msgstr ""
|
|
|
441
483
|
msgid "Icon"
|
|
442
484
|
msgstr ""
|
|
443
485
|
|
|
486
|
+
msgid "If this is not a minor modification, you can specify the changes here."
|
|
487
|
+
msgstr ""
|
|
488
|
+
|
|
444
489
|
msgid "Infos"
|
|
445
490
|
msgstr ""
|
|
446
491
|
|
|
447
492
|
msgid "Insc. date"
|
|
448
493
|
msgstr ""
|
|
449
494
|
|
|
495
|
+
msgid "Invalid Github repository"
|
|
496
|
+
msgstr ""
|
|
497
|
+
|
|
498
|
+
msgid "Invalid Gitlab repository"
|
|
499
|
+
msgstr ""
|
|
500
|
+
|
|
450
501
|
msgid "Is SFW:"
|
|
451
502
|
msgstr ""
|
|
452
503
|
|
|
@@ -507,6 +558,9 @@ msgstr ""
|
|
|
507
558
|
msgid "Last %<amount>i uploads:"
|
|
508
559
|
msgstr ""
|
|
509
560
|
|
|
561
|
+
msgid "Last activity:"
|
|
562
|
+
msgstr ""
|
|
563
|
+
|
|
510
564
|
msgid "Last events"
|
|
511
565
|
msgstr ""
|
|
512
566
|
|
|
@@ -564,6 +618,12 @@ msgstr ""
|
|
|
564
618
|
msgid "Listing reports"
|
|
565
619
|
msgstr ""
|
|
566
620
|
|
|
621
|
+
msgid "Loading data from Github. Please wait."
|
|
622
|
+
msgstr ""
|
|
623
|
+
|
|
624
|
+
msgid "Loading data from a Gitlab instance. Please wait."
|
|
625
|
+
msgstr ""
|
|
626
|
+
|
|
567
627
|
msgid "Lock"
|
|
568
628
|
msgstr ""
|
|
569
629
|
|
|
@@ -582,9 +642,6 @@ msgstr ""
|
|
|
582
642
|
msgid "Main url"
|
|
583
643
|
msgstr ""
|
|
584
644
|
|
|
585
|
-
msgid "Main url:"
|
|
586
|
-
msgstr ""
|
|
587
|
-
|
|
588
645
|
msgid "Markdown supported. %<preview_button>s"
|
|
589
646
|
msgstr ""
|
|
590
647
|
|
|
@@ -642,6 +699,9 @@ msgstr ""
|
|
|
642
699
|
msgid "New upload"
|
|
643
700
|
msgstr ""
|
|
644
701
|
|
|
702
|
+
msgid "No"
|
|
703
|
+
msgstr ""
|
|
704
|
+
|
|
645
705
|
msgid "No comment has been left"
|
|
646
706
|
msgstr ""
|
|
647
707
|
|
|
@@ -654,9 +714,15 @@ msgstr ""
|
|
|
654
714
|
msgid "Not in an album"
|
|
655
715
|
msgstr ""
|
|
656
716
|
|
|
717
|
+
msgid "Note #%<id>i"
|
|
718
|
+
msgstr ""
|
|
719
|
+
|
|
657
720
|
msgid "Note count"
|
|
658
721
|
msgstr ""
|
|
659
722
|
|
|
723
|
+
msgid "Note that the comments are not publicly visible, so don't worry if you don't see yours."
|
|
724
|
+
msgstr ""
|
|
725
|
+
|
|
660
726
|
msgid "Notes"
|
|
661
727
|
msgstr ""
|
|
662
728
|
|
|
@@ -723,6 +789,12 @@ msgstr ""
|
|
|
723
789
|
msgid "Pub. date"
|
|
724
790
|
msgstr ""
|
|
725
791
|
|
|
792
|
+
msgid "Public gists:"
|
|
793
|
+
msgstr ""
|
|
794
|
+
|
|
795
|
+
msgid "Public repos:"
|
|
796
|
+
msgstr ""
|
|
797
|
+
|
|
726
798
|
msgid "Publish"
|
|
727
799
|
msgstr ""
|
|
728
800
|
|
|
@@ -732,6 +804,9 @@ msgstr ""
|
|
|
732
804
|
msgid "Published at:"
|
|
733
805
|
msgstr ""
|
|
734
806
|
|
|
807
|
+
msgid "RSS:"
|
|
808
|
+
msgstr ""
|
|
809
|
+
|
|
735
810
|
msgid "Real name:"
|
|
736
811
|
msgstr ""
|
|
737
812
|
|
|
@@ -795,6 +870,9 @@ msgstr ""
|
|
|
795
870
|
msgid "Send me reset password instructions"
|
|
796
871
|
msgstr ""
|
|
797
872
|
|
|
873
|
+
msgid "Shared repos:"
|
|
874
|
+
msgstr ""
|
|
875
|
+
|
|
798
876
|
msgid "Show NSFW"
|
|
799
877
|
msgstr ""
|
|
800
878
|
|
|
@@ -822,6 +900,18 @@ msgstr ""
|
|
|
822
900
|
msgid "Someone"
|
|
823
901
|
msgstr ""
|
|
824
902
|
|
|
903
|
+
msgid "Sorry, NSFW content"
|
|
904
|
+
msgstr ""
|
|
905
|
+
|
|
906
|
+
msgid "Sorry, content is locked for review"
|
|
907
|
+
msgstr ""
|
|
908
|
+
|
|
909
|
+
msgid "Sorry, showing this may have unpredictable consequences"
|
|
910
|
+
msgstr ""
|
|
911
|
+
|
|
912
|
+
msgid "Sources:"
|
|
913
|
+
msgstr ""
|
|
914
|
+
|
|
825
915
|
msgid "Subscription date:"
|
|
826
916
|
msgstr ""
|
|
827
917
|
|
|
@@ -867,13 +957,19 @@ msgstr ""
|
|
|
867
957
|
msgid "Tag|Uploads count"
|
|
868
958
|
msgstr ""
|
|
869
959
|
|
|
960
|
+
msgid "The author wanted to put something here, but it may create an infinite loop..."
|
|
961
|
+
msgstr ""
|
|
962
|
+
|
|
963
|
+
msgid "The author wanted to put something here, but it was not found..."
|
|
964
|
+
msgstr ""
|
|
965
|
+
|
|
870
966
|
msgid "The following formats will be viewable online; other will need a download: %<formats>s"
|
|
871
967
|
msgstr ""
|
|
872
968
|
|
|
873
969
|
msgid "This %<model>s is not yours"
|
|
874
970
|
msgstr ""
|
|
875
971
|
|
|
876
|
-
msgid "This comment will be posted as \"%<name>s\""
|
|
972
|
+
msgid "This comment will be posted as \"%<name>s\". By submitting this comment, you agree to be recontacted by the author."
|
|
877
973
|
msgstr ""
|
|
878
974
|
|
|
879
975
|
msgid "This content might not be appropriate for every situation."
|
|
@@ -885,6 +981,9 @@ msgstr ""
|
|
|
885
981
|
msgid "This feature is experimental. If you provide an invalid file, your current avatar will be deleted."
|
|
886
982
|
msgstr ""
|
|
887
983
|
|
|
984
|
+
msgid "This is a minor edition"
|
|
985
|
+
msgstr ""
|
|
986
|
+
|
|
888
987
|
msgid "This space is empty"
|
|
889
988
|
msgstr ""
|
|
890
989
|
|
|
@@ -903,6 +1002,9 @@ msgstr ""
|
|
|
903
1002
|
msgid "Upd. date"
|
|
904
1003
|
msgstr ""
|
|
905
1004
|
|
|
1005
|
+
msgid "Update message"
|
|
1006
|
+
msgstr ""
|
|
1007
|
+
|
|
906
1008
|
msgid "Updated at:"
|
|
907
1009
|
msgstr ""
|
|
908
1010
|
|
|
@@ -999,9 +1101,21 @@ msgstr ""
|
|
|
999
1101
|
msgid "View online"
|
|
1000
1102
|
msgstr ""
|
|
1001
1103
|
|
|
1104
|
+
msgid "We can't display the repository infos. Github responded with the following error:"
|
|
1105
|
+
msgstr ""
|
|
1106
|
+
|
|
1107
|
+
msgid "We can't display the user infos. Github responded with the following error:"
|
|
1108
|
+
msgstr ""
|
|
1109
|
+
|
|
1002
1110
|
msgid "With content only"
|
|
1003
1111
|
msgstr ""
|
|
1004
1112
|
|
|
1113
|
+
msgid "Yes"
|
|
1114
|
+
msgstr ""
|
|
1115
|
+
|
|
1116
|
+
msgid "You want to react to this content or ask something to the author? Just leave a comment here!"
|
|
1117
|
+
msgstr ""
|
|
1118
|
+
|
|
1005
1119
|
msgid "Your browser does not support the audio tag."
|
|
1006
1120
|
msgstr ""
|
|
1007
1121
|
|
|
@@ -1149,6 +1263,9 @@ msgstr ""
|
|
|
1149
1263
|
msgid "errors.messages.not_saved.other"
|
|
1150
1264
|
msgstr ""
|
|
1151
1265
|
|
|
1266
|
+
msgid "group on %<link>s"
|
|
1267
|
+
msgstr ""
|
|
1268
|
+
|
|
1152
1269
|
msgid "has commented"
|
|
1153
1270
|
msgstr ""
|
|
1154
1271
|
|
|
@@ -1170,6 +1287,9 @@ msgstr ""
|
|
|
1170
1287
|
msgid "needs to be a \"png\" or \"jpg\" image"
|
|
1171
1288
|
msgstr ""
|
|
1172
1289
|
|
|
1290
|
+
msgid "project on %<link>s"
|
|
1291
|
+
msgstr ""
|
|
1292
|
+
|
|
1173
1293
|
msgid "published"
|
|
1174
1294
|
msgstr ""
|
|
1175
1295
|
|
data/locale/en/app.edit.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
|
|