elabs 4.0.0 → 5.0.0

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