elabs 2.0.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (173) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +6 -0
  3. data/CHANGELOG.md +83 -0
  4. data/Gemfile +3 -1
  5. data/Gemfile.lock +9 -2
  6. data/ROADMAP.md +6 -11
  7. data/app/assets/stylesheets/elabs/_icons.scss +8 -4
  8. data/app/assets/stylesheets/elabs/app/_badges.scss +11 -0
  9. data/app/assets/stylesheets/elabs/app/_layout.scss +10 -2
  10. data/app/assets/stylesheets/elabs/app/_users.scss +7 -0
  11. data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +2 -1
  12. data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +4 -0
  13. data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +17 -5
  14. data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +16 -15
  15. data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +1 -1
  16. data/app/assets/stylesheets/elabs/style.scss +1 -0
  17. data/app/controllers/elabs/acts_controller.rb +1 -1
  18. data/app/controllers/elabs/admin/admin_content_application_controller.rb +13 -6
  19. data/app/controllers/elabs/admin/languages_controller.rb +4 -4
  20. data/app/controllers/elabs/admin/licenses_controller.rb +2 -2
  21. data/app/controllers/elabs/admin/tags_controller.rb +3 -3
  22. data/app/controllers/elabs/concerns/elabs_controller.rb +1 -0
  23. data/app/controllers/elabs/content_application_controller.rb +1 -1
  24. data/app/controllers/elabs/elabs_application_controller.rb +0 -73
  25. data/app/controllers/elabs/elabs_public_controller.rb +80 -0
  26. data/app/controllers/elabs/languages_controller.rb +3 -3
  27. data/app/controllers/elabs/licenses_controller.rb +3 -3
  28. data/app/controllers/elabs/member/member_content_application_controller.rb +24 -14
  29. data/app/controllers/elabs/member/notifications_controller.rb +30 -0
  30. data/app/controllers/elabs/member/preferences_controller.rb +1 -1
  31. data/app/controllers/elabs/member/users_controller.rb +8 -5
  32. data/app/controllers/elabs/reports_controller.rb +2 -2
  33. data/app/controllers/elabs/tags_controller.rb +2 -2
  34. data/app/controllers/elabs/users_controller.rb +3 -3
  35. data/app/helpers/elabs/admin_content_helper.rb +8 -24
  36. data/app/helpers/elabs/application_helper.rb +1 -1
  37. data/app/helpers/elabs/content_helper.rb +39 -0
  38. data/app/helpers/elabs/form_helper.rb +22 -10
  39. data/app/helpers/elabs/member_content_helper.rb +5 -22
  40. data/app/helpers/elabs/notification_helper.rb +69 -0
  41. data/app/helpers/elabs/thumbnails_helper.rb +15 -0
  42. data/app/helpers/elabs/time_helper.rb +7 -0
  43. data/app/models/elabs/application_content_record.rb +1 -0
  44. data/app/models/elabs/application_record.rb +2 -0
  45. data/app/models/elabs/comment.rb +14 -0
  46. data/app/models/elabs/concerns/actable_entity.rb +0 -12
  47. data/app/models/elabs/concerns/content_entity.rb +23 -0
  48. data/app/models/elabs/concerns/notifiable_entity.rb +46 -0
  49. data/app/models/elabs/notification.rb +10 -0
  50. data/app/models/elabs/preference.rb +2 -0
  51. data/app/models/elabs/report.rb +10 -0
  52. data/app/models/elabs/user.rb +26 -6
  53. data/app/views/elabs/acts/_act.json.jbuilder +7 -2
  54. data/app/views/elabs/acts/index.json.jbuilder +1 -1
  55. data/app/views/elabs/admin/albums/_album.json.jbuilder +15 -2
  56. data/app/views/elabs/admin/albums/index.html.haml +1 -1
  57. data/app/views/elabs/admin/albums/index.json.jbuilder +1 -1
  58. data/app/views/elabs/admin/articles/_article.json.jbuilder +15 -2
  59. data/app/views/elabs/admin/articles/index.html.haml +1 -1
  60. data/app/views/elabs/admin/articles/index.json.jbuilder +1 -1
  61. data/app/views/elabs/admin/languages/_language.json.jbuilder +9 -2
  62. data/app/views/elabs/admin/languages/index.html.haml +1 -1
  63. data/app/views/elabs/admin/languages/index.json.jbuilder +1 -1
  64. data/app/views/elabs/admin/licenses/_license.json.jbuilder +10 -2
  65. data/app/views/elabs/admin/licenses/index.html.haml +1 -1
  66. data/app/views/elabs/admin/licenses/index.json.jbuilder +1 -1
  67. data/app/views/elabs/admin/notes/_note.json.jbuilder +13 -2
  68. data/app/views/elabs/admin/notes/index.html.haml +1 -1
  69. data/app/views/elabs/admin/notes/index.json.jbuilder +1 -1
  70. data/app/views/elabs/admin/projects/_project.json.jbuilder +20 -2
  71. data/app/views/elabs/admin/projects/index.html.haml +1 -1
  72. data/app/views/elabs/admin/projects/index.json.jbuilder +1 -1
  73. data/app/views/elabs/admin/reports/_report.json.jbuilder +10 -0
  74. data/app/views/elabs/admin/reports/index.html.haml +1 -1
  75. data/app/views/elabs/admin/reports/index.json.jbuilder +1 -1
  76. data/app/views/elabs/admin/tags/_tag.json.jbuilder +8 -2
  77. data/app/views/elabs/admin/tags/index.html.haml +1 -1
  78. data/app/views/elabs/admin/tags/index.json.jbuilder +1 -1
  79. data/app/views/elabs/admin/uploads/_upload.json.jbuilder +17 -2
  80. data/app/views/elabs/admin/uploads/index.html.haml +1 -1
  81. data/app/views/elabs/admin/uploads/index.json.jbuilder +1 -1
  82. data/app/views/elabs/admin/users/_user.json.jbuilder +14 -0
  83. data/app/views/elabs/admin/users/index.html.haml +6 -2
  84. data/app/views/elabs/admin/users/index.json.jbuilder +1 -1
  85. data/app/views/elabs/admin/users/show.html.haml +1 -1
  86. data/app/views/elabs/admin/users/show.json.jbuilder +1 -1
  87. data/app/views/elabs/albums/_album.html.haml +2 -2
  88. data/app/views/elabs/albums/_album.json.jbuilder +12 -2
  89. data/app/views/elabs/albums/index.json.jbuilder +1 -1
  90. data/app/views/elabs/albums/show.html.haml +7 -7
  91. data/app/views/elabs/albums/show.json.jbuilder +1 -1
  92. data/app/views/elabs/articles/_article.html.haml +2 -2
  93. data/app/views/elabs/articles/_article.json.jbuilder +12 -2
  94. data/app/views/elabs/articles/index.json.jbuilder +1 -1
  95. data/app/views/elabs/articles/show.html.haml +6 -6
  96. data/app/views/elabs/articles/show.json.jbuilder +1 -1
  97. data/app/views/elabs/auth/registrations/edit.html.haml +8 -5
  98. data/app/views/elabs/comments/_comment.json.jbuilder +10 -2
  99. data/app/views/elabs/comments/_comments.html.haml +2 -2
  100. data/app/views/elabs/languages/_language.json.jbuilder +9 -2
  101. data/app/views/elabs/languages/index.json.jbuilder +1 -1
  102. data/app/views/elabs/languages/show.html.haml +1 -1
  103. data/app/views/elabs/languages/show.json.jbuilder +1 -1
  104. data/app/views/elabs/layouts/_menu.html.haml +10 -5
  105. data/app/views/elabs/licenses/_license.json.jbuilder +10 -2
  106. data/app/views/elabs/licenses/index.json.jbuilder +1 -1
  107. data/app/views/elabs/licenses/show.html.haml +2 -6
  108. data/app/views/elabs/member/albums/_album.json.jbuilder +15 -2
  109. data/app/views/elabs/member/albums/index.html.haml +1 -1
  110. data/app/views/elabs/member/albums/index.json.jbuilder +1 -1
  111. data/app/views/elabs/member/articles/_article.json.jbuilder +15 -2
  112. data/app/views/elabs/member/articles/index.html.haml +1 -1
  113. data/app/views/elabs/member/articles/index.json.jbuilder +1 -1
  114. data/app/views/elabs/member/layouts/_empty.html.haml +3 -2
  115. data/app/views/elabs/member/notes/_note.json.jbuilder +13 -2
  116. data/app/views/elabs/member/notes/index.html.haml +1 -1
  117. data/app/views/elabs/member/notes/index.json.jbuilder +1 -1
  118. data/app/views/elabs/member/notifications/_notification.json.jbuilder +8 -0
  119. data/app/views/elabs/member/notifications/index.html.haml +21 -0
  120. data/app/views/elabs/member/notifications/index.json.jbuilder +1 -0
  121. data/app/views/elabs/member/preferences/_form.html.haml +6 -0
  122. data/app/views/elabs/member/preferences/edit.html.haml +2 -1
  123. data/app/views/elabs/member/projects/_project.json.jbuilder +20 -2
  124. data/app/views/elabs/member/projects/index.html.haml +1 -1
  125. data/app/views/elabs/member/projects/index.json.jbuilder +1 -1
  126. data/app/views/elabs/member/uploads/_upload.json.jbuilder +17 -2
  127. data/app/views/elabs/member/uploads/index.html.haml +1 -1
  128. data/app/views/elabs/member/uploads/index.json.jbuilder +1 -1
  129. data/app/views/elabs/member/users/_form.html.haml +14 -9
  130. data/app/views/elabs/member/users/edit.html.haml +7 -0
  131. data/app/views/elabs/notes/_note.html.haml +2 -2
  132. data/app/views/elabs/notes/_note.json.jbuilder +10 -2
  133. data/app/views/elabs/notes/index.json.jbuilder +1 -1
  134. data/app/views/elabs/notes/show.html.haml +5 -5
  135. data/app/views/elabs/notes/show.json.jbuilder +1 -1
  136. data/app/views/elabs/projects/_project.html.haml +2 -2
  137. data/app/views/elabs/projects/_project.json.jbuilder +17 -0
  138. data/app/views/elabs/projects/index.json.jbuilder +1 -1
  139. data/app/views/elabs/projects/show.html.haml +14 -11
  140. data/app/views/elabs/projects/show.json.jbuilder +1 -1
  141. data/app/views/elabs/tags/_tag.json.jbuilder +8 -2
  142. data/app/views/elabs/tags/index.json.jbuilder +1 -1
  143. data/app/views/elabs/tags/show.json.jbuilder +1 -1
  144. data/app/views/elabs/uploads/_upload.html.haml +1 -1
  145. data/app/views/elabs/uploads/_upload.json.jbuilder +14 -2
  146. data/app/views/elabs/uploads/index.json.jbuilder +1 -1
  147. data/app/views/elabs/uploads/show.html.haml +12 -3
  148. data/app/views/elabs/uploads/show.json.jbuilder +1 -1
  149. data/app/views/elabs/users/_user.html.haml +10 -3
  150. data/app/views/elabs/users/_user.json.jbuilder +14 -2
  151. data/app/views/elabs/users/index.json.jbuilder +1 -1
  152. data/app/views/elabs/users/show.html.haml +15 -10
  153. data/app/views/elabs/users/show.json.jbuilder +1 -1
  154. data/config/routes.rb +21 -16
  155. data/db/migrate/20180910000015_remove_license_timestamps.rb +6 -0
  156. data/db/migrate/20180910175012_create_notifications.rb +13 -0
  157. data/db/migrate/20180913093027_add_fields_in_preferences.rb +6 -0
  158. data/docs/migrating.md +14 -0
  159. data/docs/setup.md +1 -0
  160. data/lib/elabs.rb +3 -0
  161. data/lib/elabs/version.rb +1 -1
  162. data/lib/generators/elabs/required_assets_generator.rb +1 -1
  163. data/lib/generators/templates/elabs.rb +6 -0
  164. data/locale/app.pot +73 -14
  165. data/locale/en/app.edit.po +71 -12
  166. data/locale/en/app.po +71 -12
  167. data/locale/fr/app.edit.po +76 -17
  168. data/locale/fr/app.po +75 -16
  169. data/package.json +4 -4
  170. metadata +19 -5
  171. data/app/assets/images/elabs/preview_placeholder.png +0 -0
  172. data/app/assets/images/elabs/preview_placeholder_nsfw.png +0 -0
  173. data/app/views/elabs/admin/users/_admin_user.json.jbuilder +0 -2
@@ -78,6 +78,24 @@ msgstr ""
78
78
  msgid "%<text>s %<icon>s"
79
79
  msgstr ""
80
80
 
81
+ msgid "%<user>s %<action>s %<link>s"
82
+ msgstr ""
83
+
84
+ msgid "%<user>s %<action>s your album %<link>s"
85
+ msgstr ""
86
+
87
+ msgid "%<user>s %<action>s your article %<link>s"
88
+ msgstr ""
89
+
90
+ msgid "%<user>s %<action>s your file %<link>s"
91
+ msgstr ""
92
+
93
+ msgid "%<user>s %<action>s your note %<link>s"
94
+ msgstr ""
95
+
96
+ msgid "%<user>s %<action>s your project %<link>s"
97
+ msgstr ""
98
+
81
99
  msgid "%I:%M %p"
82
100
  msgstr ""
83
101
 
@@ -93,7 +111,7 @@ msgstr ""
93
111
  msgid "A note"
94
112
  msgstr ""
95
113
 
96
- msgid "About"
114
+ msgid "About you"
97
115
  msgstr ""
98
116
 
99
117
  msgid "Account"
@@ -102,6 +120,9 @@ msgstr ""
102
120
  msgid "Act"
103
121
  msgstr ""
104
122
 
123
+ msgid "Active"
124
+ msgstr ""
125
+
105
126
  msgid "Act|Content type"
106
127
  msgstr ""
107
128
 
@@ -186,6 +207,11 @@ msgid_plural "%<nb>i errors prevented your comment from being saved:"
186
207
  msgstr[0] ""
187
208
  msgstr[1] ""
188
209
 
210
+ msgid "An error prevented your infos from being updated:"
211
+ msgid_plural "%<nb>i errors prevented your infos from being updated:"
212
+ msgstr[0] ""
213
+ msgstr[1] ""
214
+
189
215
  msgid "An error prevented your password from being changed:"
190
216
  msgid_plural "%<nb>i errors prevented your password from being changed:"
191
217
  msgstr[0] ""
@@ -339,6 +365,9 @@ msgstr ""
339
365
  msgid "Created at"
340
366
  msgstr ""
341
367
 
368
+ msgid "Creator:"
369
+ msgstr ""
370
+
342
371
  msgid "Currently waiting confirmation for: %<email>s"
343
372
  msgstr ""
344
373
 
@@ -411,7 +440,7 @@ msgstr ""
411
440
  msgid "Icon"
412
441
  msgstr ""
413
442
 
414
- msgid "Icon:"
443
+ msgid "Infos"
415
444
  msgstr ""
416
445
 
417
446
  msgid "Insc. date"
@@ -561,6 +590,9 @@ msgstr ""
561
590
  msgid "Member"
562
591
  msgstr ""
563
592
 
593
+ msgid "Mime type:"
594
+ msgstr ""
595
+
564
596
  msgid "Name"
565
597
  msgstr ""
566
598
 
@@ -630,6 +662,12 @@ msgstr ""
630
662
  msgid "Notes:"
631
663
  msgstr ""
632
664
 
665
+ msgid "Notification was successfully destroyed."
666
+ msgstr ""
667
+
668
+ msgid "Notifications"
669
+ msgstr ""
670
+
633
671
  msgid "Oh noes ! There is nothing here!"
634
672
  msgstr ""
635
673
 
@@ -639,6 +677,12 @@ msgstr ""
639
677
  msgid "Only SFW"
640
678
  msgstr ""
641
679
 
680
+ msgid "Original name:"
681
+ msgstr ""
682
+
683
+ msgid "Pass reset"
684
+ msgstr ""
685
+
642
686
  msgid "Permalink"
643
687
  msgstr ""
644
688
 
@@ -687,9 +731,6 @@ msgstr ""
687
731
  msgid "Published at:"
688
732
  msgstr ""
689
733
 
690
- msgid "Real name"
691
- msgstr ""
692
-
693
734
  msgid "Real name:"
694
735
  msgstr ""
695
736
 
@@ -753,12 +794,6 @@ msgstr ""
753
794
  msgid "Send me reset password instructions"
754
795
  msgstr ""
755
796
 
756
- msgid "Sensitive changes"
757
- msgstr ""
758
-
759
- msgid "Show"
760
- msgstr ""
761
-
762
797
  msgid "Show NSFW"
763
798
  msgstr ""
764
799
 
@@ -783,7 +818,7 @@ msgstr ""
783
818
  msgid "Skip hist."
784
819
  msgstr ""
785
820
 
786
- msgid "Subscription date"
821
+ msgid "Someone"
787
822
  msgstr ""
788
823
 
789
824
  msgid "Subscription date:"
@@ -846,6 +881,9 @@ msgstr ""
846
881
  msgid "This content needs review and have been retired for now."
847
882
  msgstr ""
848
883
 
884
+ msgid "This feature is experimental. If you provide an invalid file, your current avatar will be deleted."
885
+ msgstr ""
886
+
849
887
  msgid "This space is empty"
850
888
  msgstr ""
851
889
 
@@ -972,6 +1010,9 @@ msgstr ""
972
1010
  msgid "Your infos were successfully saved"
973
1011
  msgstr ""
974
1012
 
1013
+ msgid "Your picture should be in \"png\" or \"jpg\", preferably a square of 512px."
1014
+ msgstr ""
1015
+
975
1016
  msgid "created"
976
1017
  msgstr ""
977
1018
 
@@ -1107,9 +1148,27 @@ msgstr "1 error prohibited this %{resource} from being saved:"
1107
1148
  msgid "errors.messages.not_saved.other"
1108
1149
  msgstr "%{count} errors prohibited this %{resource} from being saved:"
1109
1150
 
1151
+ msgid "has commented"
1152
+ msgstr ""
1153
+
1154
+ msgid "has deleted"
1155
+ msgstr ""
1156
+
1157
+ msgid "has locked"
1158
+ msgstr ""
1159
+
1160
+ msgid "has reported"
1161
+ msgstr ""
1162
+
1163
+ msgid "has unlocked"
1164
+ msgstr ""
1165
+
1110
1166
  msgid "locked"
1111
1167
  msgstr ""
1112
1168
 
1169
+ msgid "needs to be a \"png\" or \"jpg\" image"
1170
+ msgstr ""
1171
+
1113
1172
  msgid "published"
1114
1173
  msgstr ""
1115
1174
 
@@ -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-09-06 06:49+0200\n"
10
+ "PO-Revision-Date: 2018-09-14 00:26+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-09-06 06:46+0200\n"
21
+ "POT-Creation-Date: 2018-09-14 00:25+0200\n"
22
22
 
23
23
  msgid "%<icon>s %<text>s"
24
24
  msgstr "%<icon>s %<text>s"
@@ -81,6 +81,24 @@ msgstr "%<string>s a été %<event>s"
81
81
  msgid "%<text>s %<icon>s"
82
82
  msgstr "%<text>s %<icon>s"
83
83
 
84
+ msgid "%<user>s %<action>s %<link>s"
85
+ msgstr "%<user>s %<action>s %<link>s"
86
+
87
+ msgid "%<user>s %<action>s your album %<link>s"
88
+ msgstr "%<user>s %<action>s votre album %<link>s"
89
+
90
+ msgid "%<user>s %<action>s your article %<link>s"
91
+ msgstr "%<user>s %<action>s votre article %<link>s"
92
+
93
+ msgid "%<user>s %<action>s your file %<link>s"
94
+ msgstr "%<user>s %<action>s votre fichier %<link>s"
95
+
96
+ msgid "%<user>s %<action>s your note %<link>s"
97
+ msgstr "%<user>s %<action>s votre note %<link>s"
98
+
99
+ msgid "%<user>s %<action>s your project %<link>s"
100
+ msgstr "%<user>s %<action>s votre projet %<link>s"
101
+
84
102
  msgid "%I:%M %p"
85
103
  msgstr "%H:%M"
86
104
 
@@ -96,8 +114,8 @@ msgstr "(nous avons besoin de votre mot de passe actuel pour valider les changem
96
114
  msgid "A note"
97
115
  msgstr "Une note"
98
116
 
99
- msgid "About"
100
- msgstr "À propos"
117
+ msgid "About you"
118
+ msgstr "À propos de vous"
101
119
 
102
120
  msgid "Account"
103
121
  msgstr "Compte"
@@ -105,6 +123,9 @@ msgstr "Compte"
105
123
  msgid "Act"
106
124
  msgstr "Acte"
107
125
 
126
+ msgid "Active"
127
+ msgstr "Actif"
128
+
108
129
  msgid "Act|Content type"
109
130
  msgstr "Type de contenu"
110
131
 
@@ -189,6 +210,11 @@ msgid_plural "%<nb>i errors prevented your comment from being saved:"
189
210
  msgstr[0] "Une erreur a empêché ce commentaire d'être enregistré :"
190
211
  msgstr[1] "%<nb>i erreurs ont empêché ce commentaire d'être enregistré :"
191
212
 
213
+ msgid "An error prevented your infos from being updated:"
214
+ msgid_plural "%<nb>i errors prevented your infos from being updated:"
215
+ msgstr[0] "Une erreur a empêché la mise à jour de vos informations :"
216
+ msgstr[1] "%<nb>i erreurs ont empêché la création de vos informations :"
217
+
192
218
  msgid "An error prevented your password from being changed:"
193
219
  msgid_plural "%<nb>i errors prevented your password from being changed:"
194
220
  msgstr[0] "Une erreur a empêché votre mot de passe d'être modifié:"
@@ -342,6 +368,9 @@ msgstr "Créer du contenu"
342
368
  msgid "Created at"
343
369
  msgstr "Créé le"
344
370
 
371
+ msgid "Creator:"
372
+ msgstr "Créateur :"
373
+
345
374
  msgid "Currently waiting confirmation for: %<email>s"
346
375
  msgstr "En attente de confirmation pour : %<email>s"
347
376
 
@@ -414,8 +443,8 @@ msgstr "Code ISO 639-1 :"
414
443
  msgid "Icon"
415
444
  msgstr "Icône"
416
445
 
417
- msgid "Icon:"
418
- msgstr "Icône :"
446
+ msgid "Infos"
447
+ msgstr "Infos"
419
448
 
420
449
  msgid "Insc. date"
421
450
  msgstr "Date d'insc."
@@ -564,6 +593,9 @@ msgstr "Markdown supporté. %<preview_button>s"
564
593
  msgid "Member"
565
594
  msgstr "Membre"
566
595
 
596
+ msgid "Mime type:"
597
+ msgstr "Type Mime"
598
+
567
599
  msgid "Name"
568
600
  msgstr "Nom"
569
601
 
@@ -633,6 +665,12 @@ msgstr "Notes"
633
665
  msgid "Notes:"
634
666
  msgstr "Notes :"
635
667
 
668
+ msgid "Notification was successfully destroyed."
669
+ msgstr "La notification a été supprimée avec succès."
670
+
671
+ msgid "Notifications"
672
+ msgstr "Notifications"
673
+
636
674
  msgid "Oh noes ! There is nothing here!"
637
675
  msgstr "Oh non ! Il n'y a rien ici !"
638
676
 
@@ -642,6 +680,12 @@ msgstr "NSFW seuls"
642
680
  msgid "Only SFW"
643
681
  msgstr "SFW seuls"
644
682
 
683
+ msgid "Original name:"
684
+ msgstr "Nom d'origine:"
685
+
686
+ msgid "Pass reset"
687
+ msgstr "Reset mdp"
688
+
645
689
  msgid "Permalink"
646
690
  msgstr "Lien permanent"
647
691
 
@@ -690,9 +734,6 @@ msgstr "Publié le"
690
734
  msgid "Published at:"
691
735
  msgstr "Publié le :"
692
736
 
693
- msgid "Real name"
694
- msgstr "Nom réel"
695
-
696
737
  msgid "Real name:"
697
738
  msgstr "Nom réel :"
698
739
 
@@ -756,12 +797,6 @@ msgstr "Enregister"
756
797
  msgid "Send me reset password instructions"
757
798
  msgstr "Envoyez-moi les instructions de réinitialisation du mot de passe"
758
799
 
759
- msgid "Sensitive changes"
760
- msgstr "Changements sensibles"
761
-
762
- msgid "Show"
763
- msgstr "Afficher"
764
-
765
800
  msgid "Show NSFW"
766
801
  msgstr "Afficher NSFW"
767
802
 
@@ -786,8 +821,8 @@ msgstr "Depuis :"
786
821
  msgid "Skip hist."
787
822
  msgstr "Passer l'histo."
788
823
 
789
- msgid "Subscription date"
790
- msgstr "Date d'inscription"
824
+ msgid "Someone"
825
+ msgstr "Quelqu'un"
791
826
 
792
827
  msgid "Subscription date:"
793
828
  msgstr "Date d'inscription :"
@@ -849,6 +884,9 @@ msgstr "Ce contenu n'est sûrement pas approprié dans toutes les situations"
849
884
  msgid "This content needs review and have been retired for now."
850
885
  msgstr "Ce contenu a besoin d'être revu et a été enlevé pour le moment."
851
886
 
887
+ msgid "This feature is experimental. If you provide an invalid file, your current avatar will be deleted."
888
+ msgstr "Cette fonctionnalité est expérimentale. Si vous fournissez un fichier non valide, votre avatar actuel sera supprimé."
889
+
852
890
  msgid "This space is empty"
853
891
  msgstr "Cet espace est vide"
854
892
 
@@ -975,6 +1013,9 @@ msgstr "Votre navigateur ne supporte pas le tag \"video\"."
975
1013
  msgid "Your infos were successfully saved"
976
1014
  msgstr "Vos informations ont été sauvegardées avec succès"
977
1015
 
1016
+ msgid "Your picture should be in \"png\" or \"jpg\", preferably a square of 512px."
1017
+ msgstr "Votre image doit être en \"png\" ou \"jpg\", de préférence un carré de 512px."
1018
+
978
1019
  msgid "created"
979
1020
  msgstr "créé"
980
1021
 
@@ -1110,9 +1151,27 @@ msgstr "Une erreur a empêché votre compte d'être enregistré :"
1110
1151
  msgid "errors.messages.not_saved.other"
1111
1152
  msgstr "%{count} erreurs ont empêché votre compte d'être enregistré :"
1112
1153
 
1154
+ msgid "has commented"
1155
+ msgstr "a commenté"
1156
+
1157
+ msgid "has deleted"
1158
+ msgstr "a supprimé"
1159
+
1160
+ msgid "has locked"
1161
+ msgstr "a verrouillé"
1162
+
1163
+ msgid "has reported"
1164
+ msgstr "a fait un rapport"
1165
+
1166
+ msgid "has unlocked"
1167
+ msgstr "a déverrouillé"
1168
+
1113
1169
  msgid "locked"
1114
1170
  msgstr "verrouillé"
1115
1171
 
1172
+ msgid "needs to be a \"png\" or \"jpg\" image"
1173
+ msgstr "doit être une image \"png\" ou \"jpg\""
1174
+
1116
1175
  msgid "published"
1117
1176
  msgstr "publié"
1118
1177
 
@@ -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-09-06 06:49+0200\n"
10
+ "PO-Revision-Date: 2018-09-14 00:26+0200\n"
11
11
  "Language-Team: French\n"
12
12
  "Language: fr\n"
13
13
  "MIME-Version: 1.0\n"
@@ -80,6 +80,24 @@ msgstr "%<string>s a été %<event>s"
80
80
  msgid "%<text>s %<icon>s"
81
81
  msgstr "%<text>s %<icon>s"
82
82
 
83
+ msgid "%<user>s %<action>s %<link>s"
84
+ msgstr "%<user>s %<action>s %<link>s"
85
+
86
+ msgid "%<user>s %<action>s your album %<link>s"
87
+ msgstr "%<user>s %<action>s votre album %<link>s"
88
+
89
+ msgid "%<user>s %<action>s your article %<link>s"
90
+ msgstr "%<user>s %<action>s votre article %<link>s"
91
+
92
+ msgid "%<user>s %<action>s your file %<link>s"
93
+ msgstr "%<user>s %<action>s votre fichier %<link>s"
94
+
95
+ msgid "%<user>s %<action>s your note %<link>s"
96
+ msgstr "%<user>s %<action>s votre note %<link>s"
97
+
98
+ msgid "%<user>s %<action>s your project %<link>s"
99
+ msgstr "%<user>s %<action>s votre projet %<link>s"
100
+
83
101
  msgid "%I:%M %p"
84
102
  msgstr "%H:%M"
85
103
 
@@ -95,8 +113,8 @@ msgstr "(nous avons besoin de votre mot de passe actuel pour valider les changem
95
113
  msgid "A note"
96
114
  msgstr "Une note"
97
115
 
98
- msgid "About"
99
- msgstr "À propos"
116
+ msgid "About you"
117
+ msgstr "À propos de vous"
100
118
 
101
119
  msgid "Account"
102
120
  msgstr "Compte"
@@ -104,6 +122,9 @@ msgstr "Compte"
104
122
  msgid "Act"
105
123
  msgstr "Acte"
106
124
 
125
+ msgid "Active"
126
+ msgstr "Actif"
127
+
107
128
  msgid "Act|Content type"
108
129
  msgstr "Type de contenu"
109
130
 
@@ -188,6 +209,11 @@ msgid_plural "%<nb>i errors prevented your comment from being saved:"
188
209
  msgstr[0] "Une erreur a empêché ce commentaire d'être enregistré :"
189
210
  msgstr[1] "%<nb>i erreurs ont empêché ce commentaire d'être enregistré :"
190
211
 
212
+ msgid "An error prevented your infos from being updated:"
213
+ msgid_plural "%<nb>i errors prevented your infos from being updated:"
214
+ msgstr[0] "Une erreur a empêché la mise à jour de vos informations :"
215
+ msgstr[1] "%<nb>i erreurs ont empêché la création de vos informations :"
216
+
191
217
  msgid "An error prevented your password from being changed:"
192
218
  msgid_plural "%<nb>i errors prevented your password from being changed:"
193
219
  msgstr[0] "Une erreur a empêché votre mot de passe d'être modifié:"
@@ -341,6 +367,9 @@ msgstr "Créer du contenu"
341
367
  msgid "Created at"
342
368
  msgstr "Créé le"
343
369
 
370
+ msgid "Creator:"
371
+ msgstr "Créateur :"
372
+
344
373
  msgid "Currently waiting confirmation for: %<email>s"
345
374
  msgstr "En attente de confirmation pour : %<email>s"
346
375
 
@@ -413,8 +442,8 @@ msgstr "Code ISO 639-1 :"
413
442
  msgid "Icon"
414
443
  msgstr "Icône"
415
444
 
416
- msgid "Icon:"
417
- msgstr "Icône :"
445
+ msgid "Infos"
446
+ msgstr "Infos"
418
447
 
419
448
  msgid "Insc. date"
420
449
  msgstr "Date d'insc."
@@ -563,6 +592,9 @@ msgstr "Markdown supporté. %<preview_button>s"
563
592
  msgid "Member"
564
593
  msgstr "Membre"
565
594
 
595
+ msgid "Mime type:"
596
+ msgstr "Type Mime"
597
+
566
598
  msgid "Name"
567
599
  msgstr "Nom"
568
600
 
@@ -632,6 +664,12 @@ msgstr "Notes"
632
664
  msgid "Notes:"
633
665
  msgstr "Notes :"
634
666
 
667
+ msgid "Notification was successfully destroyed."
668
+ msgstr "La notification a été supprimée avec succès."
669
+
670
+ msgid "Notifications"
671
+ msgstr "Notifications"
672
+
635
673
  msgid "Oh noes ! There is nothing here!"
636
674
  msgstr "Oh non ! Il n'y a rien ici !"
637
675
 
@@ -641,6 +679,12 @@ msgstr "NSFW seuls"
641
679
  msgid "Only SFW"
642
680
  msgstr "SFW seuls"
643
681
 
682
+ msgid "Original name:"
683
+ msgstr "Nom d'origine:"
684
+
685
+ msgid "Pass reset"
686
+ msgstr "Reset mdp"
687
+
644
688
  msgid "Permalink"
645
689
  msgstr "Lien permanent"
646
690
 
@@ -689,9 +733,6 @@ msgstr "Publié le"
689
733
  msgid "Published at:"
690
734
  msgstr "Publié le :"
691
735
 
692
- msgid "Real name"
693
- msgstr "Nom réel"
694
-
695
736
  msgid "Real name:"
696
737
  msgstr "Nom réel :"
697
738
 
@@ -755,12 +796,6 @@ msgstr "Enregister"
755
796
  msgid "Send me reset password instructions"
756
797
  msgstr "Envoyez-moi les instructions de réinitialisation du mot de passe"
757
798
 
758
- msgid "Sensitive changes"
759
- msgstr "Changements sensibles"
760
-
761
- msgid "Show"
762
- msgstr "Afficher"
763
-
764
799
  msgid "Show NSFW"
765
800
  msgstr "Afficher NSFW"
766
801
 
@@ -785,8 +820,8 @@ msgstr "Depuis :"
785
820
  msgid "Skip hist."
786
821
  msgstr "Passer l'histo."
787
822
 
788
- msgid "Subscription date"
789
- msgstr "Date d'inscription"
823
+ msgid "Someone"
824
+ msgstr "Quelqu'un"
790
825
 
791
826
  msgid "Subscription date:"
792
827
  msgstr "Date d'inscription :"
@@ -848,6 +883,9 @@ msgstr "Ce contenu n'est sûrement pas approprié dans toutes les situations"
848
883
  msgid "This content needs review and have been retired for now."
849
884
  msgstr "Ce contenu a besoin d'être revu et a été enlevé pour le moment."
850
885
 
886
+ msgid "This feature is experimental. If you provide an invalid file, your current avatar will be deleted."
887
+ msgstr "Cette fonctionnalité est expérimentale. Si vous fournissez un fichier non valide, votre avatar actuel sera supprimé."
888
+
851
889
  msgid "This space is empty"
852
890
  msgstr "Cet espace est vide"
853
891
 
@@ -974,6 +1012,9 @@ msgstr "Votre navigateur ne supporte pas le tag \"video\"."
974
1012
  msgid "Your infos were successfully saved"
975
1013
  msgstr "Vos informations ont été sauvegardées avec succès"
976
1014
 
1015
+ msgid "Your picture should be in \"png\" or \"jpg\", preferably a square of 512px."
1016
+ msgstr "Votre image doit être en \"png\" ou \"jpg\", de préférence un carré de 512px."
1017
+
977
1018
  msgid "created"
978
1019
  msgstr "créé"
979
1020
 
@@ -1109,9 +1150,27 @@ msgstr "Une erreur a empêché votre compte d'être enregistré :"
1109
1150
  msgid "errors.messages.not_saved.other"
1110
1151
  msgstr "%{count} erreurs ont empêché votre compte d'être enregistré :"
1111
1152
 
1153
+ msgid "has commented"
1154
+ msgstr "a commenté"
1155
+
1156
+ msgid "has deleted"
1157
+ msgstr "a supprimé"
1158
+
1159
+ msgid "has locked"
1160
+ msgstr "a verrouillé"
1161
+
1162
+ msgid "has reported"
1163
+ msgstr "a fait un rapport"
1164
+
1165
+ msgid "has unlocked"
1166
+ msgstr "a déverrouillé"
1167
+
1112
1168
  msgid "locked"
1113
1169
  msgstr "verrouillé"
1114
1170
 
1171
+ msgid "needs to be a \"png\" or \"jpg\" image"
1172
+ msgstr "doit être une image \"png\" ou \"jpg\""
1173
+
1115
1174
  msgid "published"
1116
1175
  msgstr "publié"
1117
1176