headmin 0.1.2 → 0.2.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.
Files changed (210) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -15
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +24 -2
  5. data/README.md +5 -34
  6. data/app/controllers/concerns/headmin/authentication.rb +0 -8
  7. data/app/controllers/concerns/headmin/pagination.rb +1 -1
  8. data/app/helpers/headmin/admin_helper.rb +4 -4
  9. data/app/models/concerns/headmin/block.rb +11 -0
  10. data/app/models/concerns/headmin/blockable.rb +10 -0
  11. data/app/models/concerns/headmin/field.rb +17 -0
  12. data/app/models/concerns/headmin/fieldable.rb +44 -0
  13. data/app/services/block_service.rb +68 -0
  14. data/app/views/{layouts → examples}/admin.html.erb +0 -0
  15. data/app/views/{layouts/admin → examples}/auth.html.erb +0 -0
  16. data/app/views/headmin/_blocks.html.erb +24 -0
  17. data/app/views/headmin/_breadcrumbs.html.erb +9 -5
  18. data/app/views/headmin/_card.html.erb +48 -0
  19. data/app/views/headmin/_dropdown.html.erb +18 -0
  20. data/app/views/headmin/_filters.html.erb +56 -34
  21. data/app/views/headmin/_form.html.erb +60 -6
  22. data/app/views/headmin/_heading.html.erb +8 -4
  23. data/app/views/headmin/_index.html.erb +9 -8
  24. data/app/views/headmin/_notifications.html.erb +8 -0
  25. data/app/views/headmin/_pagination.html.erb +11 -7
  26. data/app/views/headmin/_popup.html.erb +26 -0
  27. data/app/views/headmin/_table.html.erb +11 -4
  28. data/app/views/headmin/dropdown/_button.html.erb +13 -0
  29. data/app/views/headmin/dropdown/_devise.html.erb +21 -0
  30. data/app/views/headmin/{layout/dropdown → dropdown}/_divider.html.erb +1 -1
  31. data/app/views/headmin/dropdown/_item.html.erb +18 -0
  32. data/app/views/headmin/dropdown/_list.html.erb +11 -0
  33. data/app/views/headmin/dropdown/_locale.html.erb +17 -0
  34. data/app/views/headmin/filters/_date.html.erb +21 -16
  35. data/app/views/headmin/filters/_search.html.erb +18 -18
  36. data/app/views/headmin/filters/_select.html.erb +28 -23
  37. data/app/views/headmin/filters/filter/_button.html.erb +15 -6
  38. data/app/views/headmin/filters/filter/_menu_item.html.erb +2 -2
  39. data/app/views/headmin/filters/filter/_template.html.erb +2 -2
  40. data/app/views/headmin/forms/_actions.html.erb +4 -8
  41. data/app/views/headmin/forms/_base.html.erb +60 -0
  42. data/app/views/headmin/forms/_blocks.html.erb +32 -0
  43. data/app/views/headmin/forms/_checkbox.html.erb +39 -0
  44. data/app/views/headmin/forms/_ckeditor.html.erb +42 -0
  45. data/app/views/headmin/forms/_date.html.erb +45 -0
  46. data/app/views/headmin/forms/_email.html.erb +39 -0
  47. data/app/views/headmin/forms/_file.html.erb +40 -0
  48. data/app/views/headmin/forms/_image.html.erb +55 -0
  49. data/app/views/headmin/forms/_label.html.erb +24 -0
  50. data/app/views/headmin/forms/_number.html.erb +50 -0
  51. data/app/views/headmin/forms/_password.html.erb +69 -0
  52. data/app/views/headmin/forms/_redactorx.html.erb +49 -0
  53. data/app/views/headmin/forms/_repeater.html.erb +133 -0
  54. data/app/views/headmin/forms/_select.html.erb +70 -0
  55. data/app/views/headmin/forms/_text.html.erb +62 -0
  56. data/app/views/headmin/forms/_textarea.html.erb +39 -0
  57. data/app/views/headmin/forms/_url.html.erb +39 -0
  58. data/app/views/headmin/forms/_validation.html.erb +21 -0
  59. data/app/views/headmin/forms/actions/_destroy.html.erb +13 -0
  60. data/app/views/headmin/forms/actions/_save.html.erb +12 -0
  61. data/app/views/headmin/forms/actions/_view.html.erb +15 -0
  62. data/app/views/headmin/forms/fields/_base.html.erb +25 -0
  63. data/app/views/headmin/forms/fields/_file.html.erb +15 -22
  64. data/app/views/headmin/forms/fields/_group.html.erb +38 -0
  65. data/app/views/headmin/forms/fields/_image.html.erb +15 -35
  66. data/app/views/headmin/forms/fields/_list.html.erb +26 -0
  67. data/app/views/headmin/forms/fields/_text.html.erb +15 -37
  68. data/app/views/headmin/forms/repeater/_row.html.erb +51 -0
  69. data/app/views/headmin/heading/_title.html.erb +1 -1
  70. data/app/views/headmin/layout/_body.html.erb +1 -1
  71. data/app/views/headmin/layout/_content.html.erb +1 -1
  72. data/app/views/headmin/layout/_footer.html.erb +1 -1
  73. data/app/views/headmin/layout/_header.html.erb +1 -1
  74. data/app/views/headmin/layout/_main.html.erb +2 -2
  75. data/app/views/headmin/layout/_sidebar.html.erb +1 -1
  76. data/app/views/headmin/layout/sidebar/{_menu.html.erb → _nav.html.erb} +1 -1
  77. data/app/views/headmin/nav/_item.html.erb +21 -0
  78. data/app/views/headmin/nav/item/_devise.html.erb +21 -0
  79. data/app/views/headmin/nav/item/_locale.html.erb +17 -0
  80. data/app/views/headmin/pagination/_per_page.html.erb +18 -0
  81. data/app/views/headmin/{kaminari → pagination/kaminari}/_first_page.html.erb +0 -0
  82. data/app/views/headmin/{kaminari → pagination/kaminari}/_gap.html.erb +0 -0
  83. data/app/views/headmin/{kaminari → pagination/kaminari}/_last_page.html.erb +0 -0
  84. data/app/views/headmin/{kaminari → pagination/kaminari}/_next_page.html.erb +0 -0
  85. data/app/views/headmin/{kaminari → pagination/kaminari}/_page.html.erb +1 -1
  86. data/app/views/headmin/{kaminari → pagination/kaminari}/_paginator.html.erb +0 -0
  87. data/app/views/headmin/{kaminari → pagination/kaminari}/_prev_page.html.erb +0 -0
  88. data/app/views/headmin/table/_actions.html.erb +24 -17
  89. data/app/views/headmin/table/_body.html.erb +12 -10
  90. data/app/views/headmin/table/_foot.html.erb +8 -4
  91. data/app/views/headmin/table/_footer.html.erb +3 -7
  92. data/app/views/headmin/table/_head.html.erb +3 -1
  93. data/app/views/headmin/table/_header.html.erb +3 -7
  94. data/app/views/headmin/table/actions/_action.html.erb +26 -9
  95. data/app/views/headmin/table/actions/_delete.html.erb +11 -7
  96. data/app/views/headmin/table/actions/_export.html.erb +11 -7
  97. data/app/views/headmin/table/body/_association.html.erb +1 -1
  98. data/app/views/headmin/table/body/_boolean.erb +1 -1
  99. data/app/views/headmin/table/body/_currency.html.erb +1 -1
  100. data/app/views/headmin/table/body/_date.html.erb +1 -1
  101. data/app/views/headmin/table/body/_id.html.erb +2 -2
  102. data/app/views/headmin/table/body/_row.html.erb +1 -1
  103. data/app/views/headmin/table/body/_string.html.erb +1 -1
  104. data/app/views/headmin/table/body/_text.html.erb +1 -1
  105. data/app/views/headmin/table/foot/_cell.html.erb +1 -1
  106. data/app/views/headmin/table/foot/_id.html.erb +2 -2
  107. data/app/views/headmin/table/head/_cell.html.erb +1 -1
  108. data/app/views/headmin/table/head/_id.html.erb +3 -3
  109. data/app/views/headmin/views/devise/confirmations/_new.html.erb +9 -0
  110. data/app/views/headmin/views/devise/passwords/_edit.html.erb +12 -0
  111. data/app/views/headmin/views/devise/passwords/_new.html.erb +9 -0
  112. data/app/views/{admin/users/registrations/edit.html.erb → headmin/views/devise/registrations/_edit.html.erb} +5 -5
  113. data/app/views/headmin/views/devise/registrations/_new.html.erb +11 -0
  114. data/app/views/headmin/views/devise/sessions/_new.html.erb +13 -0
  115. data/app/views/{admin/users → headmin/views/devise}/shared/_error_messages.html.erb +0 -0
  116. data/app/views/{admin/users → headmin/views/devise}/shared/_links.html.erb +0 -0
  117. data/app/views/headmin/views/devise/unlocks/_new.html.erb +10 -0
  118. data/config/initializers/customize_input_error.rb +9 -0
  119. data/config/locales/devise/en.yml +65 -0
  120. data/config/locales/en.yml +2 -134
  121. data/config/locales/headmin/filters/en.yml +13 -0
  122. data/config/locales/headmin/filters/nl.yml +13 -0
  123. data/config/locales/headmin/forms/en.yml +34 -0
  124. data/config/locales/headmin/forms/nl.yml +33 -0
  125. data/config/locales/headmin/heading/en.yml +5 -0
  126. data/config/locales/headmin/heading/nl.yml +5 -0
  127. data/config/locales/headmin/layout/en.yml +14 -0
  128. data/config/locales/headmin/layout/nl.yml +14 -0
  129. data/config/locales/headmin/pagination/en.yml +21 -0
  130. data/config/locales/headmin/pagination/nl.yml +21 -0
  131. data/config/locales/headmin/table/en.yml +23 -0
  132. data/config/locales/headmin/table/nl.yml +23 -0
  133. data/config/locales/headmin/views/en.yml +58 -0
  134. data/config/locales/headmin/views/nl.yml +58 -0
  135. data/config/locales/nl.yml +2 -135
  136. data/dist/css/headmin.css +3182 -743
  137. data/dist/js/headmin.js +729 -33
  138. data/docs/README.md +2 -1
  139. data/docs/blocks.md +70 -85
  140. data/docs/devise.md +1 -60
  141. data/docs/fields.md +57 -0
  142. data/lib/generators/headmin/blocks_generator.rb +19 -0
  143. data/lib/generators/headmin/fields_generator.rb +19 -0
  144. data/lib/generators/templates/migrations/create_blocks.rb +10 -0
  145. data/lib/generators/templates/migrations/create_fields.rb +13 -0
  146. data/lib/generators/templates/models/block.rb +3 -0
  147. data/lib/generators/templates/models/field.rb +3 -0
  148. data/lib/headmin/version.rb +1 -1
  149. data/package.json +6 -6
  150. data/src/js/headmin/controllers/blocks_controller.js +103 -0
  151. data/src/js/headmin/controllers/filters_controller.js +23 -12
  152. data/src/js/headmin/controllers/popup_controller.js +68 -0
  153. data/src/js/headmin/controllers/repeater_controller.js +117 -11
  154. data/src/js/headmin/controllers/table_actions_controller.js +16 -5
  155. data/src/js/headmin/controllers/table_controller.js +84 -1
  156. data/src/js/headmin/headmin.js +29 -56
  157. data/src/scss/headmin/filters.scss +0 -14
  158. data/src/scss/headmin/form.scss +43 -3
  159. data/src/scss/headmin/popup.scss +17 -0
  160. data/src/scss/headmin/table.scss +9 -6
  161. data/src/scss/headmin.scss +7 -4
  162. data/src/scss/vendor/redactorx/override.css +3 -0
  163. data/src/scss/vendor/redactorx/redactorx.css +1460 -0
  164. data/yarn.lock +105 -2210
  165. metadata +93 -61
  166. data/app/controllers/admin/users/confirmations_controller.rb +0 -31
  167. data/app/controllers/admin/users/omniauth_callbacks_controller.rb +0 -31
  168. data/app/controllers/admin/users/passwords_controller.rb +0 -35
  169. data/app/controllers/admin/users/registrations_controller.rb +0 -63
  170. data/app/controllers/admin/users/sessions_controller.rb +0 -28
  171. data/app/controllers/admin/users/unlocks_controller.rb +0 -31
  172. data/app/views/admin/users/confirmations/new.html.erb +0 -9
  173. data/app/views/admin/users/mailer/confirmation_instructions.html.erb +0 -5
  174. data/app/views/admin/users/mailer/email_changed.html.erb +0 -7
  175. data/app/views/admin/users/mailer/password_change.html.erb +0 -3
  176. data/app/views/admin/users/mailer/reset_password_instructions.html.erb +0 -8
  177. data/app/views/admin/users/mailer/unlock_instructions.html.erb +0 -7
  178. data/app/views/admin/users/passwords/edit.html.erb +0 -12
  179. data/app/views/admin/users/passwords/new.html.erb +0 -9
  180. data/app/views/admin/users/registrations/new.html.erb +0 -11
  181. data/app/views/admin/users/sessions/new.html.erb +0 -13
  182. data/app/views/admin/users/unlocks/new.html.erb +0 -10
  183. data/app/views/headmin/forms/_group.html.erb +0 -36
  184. data/app/views/headmin/forms/fields/_checkbox.html.erb +0 -23
  185. data/app/views/headmin/forms/fields/_ckeditor.html.erb +0 -28
  186. data/app/views/headmin/forms/fields/_currency.html.erb +0 -24
  187. data/app/views/headmin/forms/fields/_date.html.erb +0 -36
  188. data/app/views/headmin/forms/fields/_email.html.erb +0 -39
  189. data/app/views/headmin/forms/fields/_label.html.erb +0 -9
  190. data/app/views/headmin/forms/fields/_multiple_select.html.erb +0 -37
  191. data/app/views/headmin/forms/fields/_password.html.erb +0 -39
  192. data/app/views/headmin/forms/fields/_repeater.html.erb +0 -48
  193. data/app/views/headmin/forms/fields/_select.html.erb +0 -36
  194. data/app/views/headmin/forms/fields/_select_tags.html.erb +0 -32
  195. data/app/views/headmin/forms/fields/_textarea.html.erb +0 -29
  196. data/app/views/headmin/forms/fields/_url.html.erb +0 -38
  197. data/app/views/headmin/forms/fields/_validation.html.erb +0 -12
  198. data/app/views/headmin/forms/fields/repeater/_row.html.erb +0 -16
  199. data/app/views/headmin/layout/dropdown/_item.html.erb +0 -17
  200. data/app/views/headmin/layout/header/_account.html.erb +0 -25
  201. data/app/views/headmin/layout/header/_locale.html.erb +0 -19
  202. data/app/views/headmin/layout/sidebar/menu/_account.html.erb +0 -25
  203. data/app/views/headmin/layout/sidebar/menu/_item.html.erb +0 -16
  204. data/app/views/headmin/layout/sidebar/menu/_locale.html.erb +0 -18
  205. data/src/js/headmin/controllers/index_controller.js +0 -79
  206. data/src/js/headmin/controllers/repeater_row_controller.js +0 -54
  207. data/src/scss/vendor/choices/cross-inverse.svg +0 -6
  208. data/src/scss/vendor/choices/cross.svg +0 -6
  209. data/src/scss/vendor/choices/custom.scss +0 -28
  210. data/src/scss/vendor/choices/variables.scss +0 -16
@@ -1,137 +1,5 @@
1
1
  en:
2
2
  language_name: English
3
- admin:
4
- users:
5
- confirmations:
6
- resend: Resend confirmation instructions
7
- mailers:
8
- confirmation_instructions:
9
- welcome: Welcome %{email}!
10
- confirm: Confirm account
11
- confirm-email: You can confirm your account email through the link below":"
12
- email_changed:
13
- greeting: Hello %{email}!
14
- email_is_changing: We're contacting you to notify you that your email is being changed to %{email}.
15
- email_has_changed: We're contacting you to notify you that your email has been changed to %{email}.
16
- password_change:
17
- greeting: Hello %{email}!
18
- password_has_changed: We're contacting you to notify you that your password has been changed.
19
- reset_password_instructions:
20
- greeting: Hello %{email}!
21
- change: Change password
22
- someone_requested: Someone has requested a link to change your password. You can do this through the link below.
23
- not_requested: If you didn't request this, please ignore this email
24
- password_not_changed_until: Your password won't change until you access the link above and create a new one.
25
- unlock_instructions:
26
- greeting: Hello %{email}!
27
- account_locked: Your account has been locked due to an excessive number of unsuccessful sign in attempts
28
- click_link: Click the link below to unlock your account":"
29
- unlock_account: Unlock my account
30
- passwords:
31
- edit:
32
- changed_password: Change my password
33
- new:
34
- send_instructions: Send me reset password instructions
35
- registrations:
36
- edit:
37
- waiting_confirmation: Currently waiting confirmation for":" %{email}
38
- change: Change my profile
39
- unhappy: Unhappy?
40
- cancel: Cancel my account
41
- new:
42
- sign_up: Sign up
43
- sessions:
44
- new:
45
- title: Please sign in
46
- login: Sign in
47
- shared:
48
- links:
49
- confirmation: Didn't receive confirmation instructions?
50
- forgot_password: Forgot your password?
51
- omniauth: "Sign up with %{provider}"
52
- sign_in: Sign in
53
- sign_up: Sign up
54
- unlock: Didn't receive unlock instructions?
55
- unlock:
56
- new:
57
- resend: Resend unlock instructions
58
3
  headmin:
59
- filters:
60
- button: Filters
61
- remove_all: Clear all
62
- filter:
63
- button:
64
- all: All
65
- select:
66
- blank: Make a choice
67
- search:
68
- button: Search
69
- placeholder: 'Search in %{resource}'
70
- forms:
71
- actions:
72
- title: Status
73
- description: Status & visibility
74
- format: '%m-%d-%Y %H:%M'
75
- delete:
76
- title: Delete
77
- confirm: Are you sure you want to delete this?
78
- fields:
79
- select:
80
- blank: Make a choice
81
- repeater:
82
- add: "Add %{name}"
83
- row:
84
- add: Add row
85
- remove: Remove row
86
- heading:
87
- title:
88
- new: New
89
- kaminari:
90
- first_page:
91
- button: "«"
92
- gap:
93
- button: ...
94
- last_page:
95
- button: "»"
96
- next_page:
97
- button: "›"
98
- paginator:
99
- title: 'Pagination'
100
- prev_page:
101
- button: "‹"
102
- layout:
103
- sidebar:
104
- menu:
105
- account:
106
- edit_profile: Edit profile
107
- log_out: Log out
108
- header:
109
- account:
110
- edit_profile: Edit profile
111
- log_out: Log out
112
- footer:
113
- help: Support
114
- pagination:
115
- items:
116
- one: 1 item
117
- other: '%{count} items'
118
- table:
119
- actions:
120
- apply: Apply
121
- selection: With selection
122
- export:
123
- button: Export
124
- delete:
125
- button: Delete
126
- body:
127
- association:
128
- items:
129
- one: 1 item
130
- other: '%{count} items'
131
- boolean:
132
- true: Yes
133
- false: No
134
- date:
135
- empty: N/A
136
- format: '%m-%d-%Y %H:%M'
137
- empty: No results found
4
+ popup:
5
+ add: 'Add %{name}'
@@ -0,0 +1,13 @@
1
+ en:
2
+ headmin:
3
+ filters:
4
+ button: Filters
5
+ remove_all: Clear all
6
+ filter:
7
+ button:
8
+ all: All
9
+ select:
10
+ blank: Make a choice
11
+ search:
12
+ button: Search
13
+ placeholder: 'Search in %{resource}'
@@ -0,0 +1,13 @@
1
+ nl:
2
+ headmin:
3
+ filters:
4
+ button: Filters
5
+ remove_all: Filters leegmaken
6
+ filter:
7
+ button:
8
+ all: Alle
9
+ select:
10
+ blank: Maak een keuze
11
+ search:
12
+ button: Zoeken
13
+ placeholder: 'In %{resource} zoeken'
@@ -0,0 +1,34 @@
1
+ en:
2
+ headmin:
3
+ forms:
4
+ actions:
5
+ description: Status & visibility
6
+ destroy:
7
+ title: Delete
8
+ confirm: Are you sure you want to delete this?
9
+ format: '%m-%d-%Y %H:%M'
10
+ save:
11
+ title: Save
12
+ title: Status
13
+ view:
14
+ title: View
15
+ group:
16
+ save: Save
17
+ blocks:
18
+ add: "Add %{name}"
19
+ empty:
20
+ title: No blocks are added yet.
21
+ add: Add block
22
+ block:
23
+ add: Add
24
+ remove:
25
+ title: Delete
26
+ confirm: Are you sure you want to delete this?
27
+ select:
28
+ blank: Make a choice
29
+ repeater:
30
+ add: "Add %{name}"
31
+ empty: This list is empty for now.
32
+ row:
33
+ add: Add row
34
+ remove: Remove row
@@ -0,0 +1,33 @@
1
+ nl:
2
+ headmin:
3
+ forms:
4
+ actions:
5
+ description: Status & zichtbaarheid
6
+ destroy:
7
+ title: Verwijderen
8
+ confirm: Ben je zeker dat je dit wil verwijderen?
9
+ format: '%d-%m-%Y %H:%M'
10
+ save:
11
+ title: Opslaan
12
+ title: Status
13
+ view:
14
+ title: Bekijken
15
+ group:
16
+ save: Opslaan
17
+ blocks:
18
+ empty:
19
+ title: Er zijn nog geen blokken toegevoegd.
20
+ add: Blok toevoegen
21
+ block:
22
+ add: Toevoegen
23
+ remove:
24
+ title: Verwijderen
25
+ confirm: Ben je zeker dat je dit wil verwijderen?
26
+ select:
27
+ blank: Maak een keuze
28
+ repeater:
29
+ add: "%{name} toevoegen"
30
+ empty: Deze lijst is voorlopig nog leeg.
31
+ row:
32
+ add: Rij toevoegen
33
+ remove: Rij verwijderen
@@ -0,0 +1,5 @@
1
+ en:
2
+ headmin:
3
+ heading:
4
+ title:
5
+ new: New
@@ -0,0 +1,5 @@
1
+ nl:
2
+ headmin:
3
+ heading:
4
+ title:
5
+ new: Nieuw
@@ -0,0 +1,14 @@
1
+ en:
2
+ headmin:
3
+ layout:
4
+ sidebar:
5
+ menu:
6
+ account:
7
+ edit_profile: Edit profile
8
+ log_out: Log out
9
+ header:
10
+ account:
11
+ edit_profile: Edit profile
12
+ log_out: Log out
13
+ footer:
14
+ help: Support
@@ -0,0 +1,14 @@
1
+ nl:
2
+ headmin:
3
+ layout:
4
+ sidebar:
5
+ menu:
6
+ account:
7
+ edit_profile: Profiel bewerken
8
+ log_out: Afmelden
9
+ header:
10
+ account:
11
+ edit_profile: Profiel bewerken
12
+ log_out: Afmelden
13
+ footer:
14
+ help: Hulp nodig?
@@ -0,0 +1,21 @@
1
+ en:
2
+ headmin:
3
+ pagination:
4
+ per_page:
5
+ title: items per page
6
+ items:
7
+ one: 1 item
8
+ other: '%{count} items'
9
+ kaminari:
10
+ first_page:
11
+ button: "«"
12
+ gap:
13
+ button: ...
14
+ last_page:
15
+ button: "»"
16
+ next_page:
17
+ button: "›"
18
+ paginator:
19
+ title: 'Pagination'
20
+ prev_page:
21
+ button: "‹"
@@ -0,0 +1,21 @@
1
+ nl:
2
+ headmin:
3
+ pagination:
4
+ per_page:
5
+ title: items per pagina
6
+ items:
7
+ one: 1 item
8
+ other: '%{count} items'
9
+ kaminari:
10
+ first_page:
11
+ button: "«"
12
+ gap:
13
+ button: ...
14
+ last_page:
15
+ button: "»"
16
+ next_page:
17
+ button: "›"
18
+ paginator:
19
+ title: 'Paginering'
20
+ prev_page:
21
+ button: "‹"
@@ -0,0 +1,23 @@
1
+ en:
2
+ headmin:
3
+ table:
4
+ actions:
5
+ apply: Apply
6
+ selection: With selection
7
+ export:
8
+ button: Export
9
+ delete:
10
+ button: Delete
11
+ confirm: Are you sure you want to delete the selected items?
12
+ body:
13
+ association:
14
+ items:
15
+ one: 1 item
16
+ other: '%{count} items'
17
+ boolean:
18
+ true: Yes
19
+ false: No
20
+ date:
21
+ empty: N/A
22
+ format: '%m-%d-%Y %H:%M'
23
+ empty: No results found
@@ -0,0 +1,23 @@
1
+ nl:
2
+ headmin:
3
+ table:
4
+ actions:
5
+ apply: Toepassen
6
+ selection: Met selectie
7
+ export:
8
+ button: Exporteren
9
+ delete:
10
+ button: Verwijderen
11
+ confirm: Ben je zeker dat je de geselecteerde items wilt verwijderen?
12
+ body:
13
+ association:
14
+ items:
15
+ one: 1 item
16
+ other: '%{count} items'
17
+ boolean:
18
+ true: Ja
19
+ false: Nee
20
+ date:
21
+ empty: Nvt.
22
+ format: '%d-%m-%Y %H:%M'
23
+ empty: Geen resultaten gevonden
@@ -0,0 +1,58 @@
1
+ en:
2
+ headmin:
3
+ views:
4
+ devise:
5
+ confirmations:
6
+ new:
7
+ resend: Resend confirmation instructions
8
+ mailers:
9
+ confirmation_instructions:
10
+ welcome: Welcome %{email}!
11
+ confirm: Confirm account
12
+ confirm-email: You can confirm your account email through the link below":"
13
+ email_changed:
14
+ greeting: Hello %{email}!
15
+ email_is_changing: We're contacting you to notify you that your email is being changed to %{email}.
16
+ email_has_changed: We're contacting you to notify you that your email has been changed to %{email}.
17
+ password_change:
18
+ greeting: Hello %{email}!
19
+ password_has_changed: We're contacting you to notify you that your password has been changed.
20
+ reset_password_instructions:
21
+ greeting: Hello %{email}!
22
+ change: Change password
23
+ someone_requested: Someone has requested a link to change your password. You can do this through the link below.
24
+ not_requested: If you didn't request this, please ignore this email
25
+ password_not_changed_until: Your password won't change until you access the link above and create a new one.
26
+ unlock_instructions:
27
+ greeting: Hello %{email}!
28
+ account_locked: Your account has been locked due to an excessive number of unsuccessful sign in attempts
29
+ click_link: Click the link below to unlock your account":"
30
+ unlock_account: Unlock my account
31
+ passwords:
32
+ edit:
33
+ changed_password: Change my password
34
+ new:
35
+ send_instructions: Send me reset password instructions
36
+ registrations:
37
+ edit:
38
+ waiting_confirmation: Currently waiting confirmation for":" %{email}
39
+ change: Change my profile
40
+ unhappy: Unhappy?
41
+ cancel: Cancel my account
42
+ new:
43
+ sign_up: Sign up
44
+ sessions:
45
+ new:
46
+ title: Please sign in
47
+ login: Sign in
48
+ shared:
49
+ links:
50
+ confirmation: Didn't receive confirmation instructions?
51
+ forgot_password: Forgot your password?
52
+ omniauth: "Sign up with %{provider}"
53
+ sign_in: Sign in
54
+ sign_up: Sign up
55
+ unlock: Didn't receive unlock instructions?
56
+ unlock:
57
+ new:
58
+ resend: Resend unlock instructions
@@ -0,0 +1,58 @@
1
+ nl:
2
+ headmin:
3
+ views:
4
+ devise:
5
+ confirmations:
6
+ new:
7
+ resend: Opnieuw verzenden
8
+ mailers:
9
+ confirmation_instructions:
10
+ welcome: Welkom %{email}!
11
+ confirm: Account bevestigen
12
+ confirm_email: Je kan uw account bevestigen door op de onderstaande link te klikken":"
13
+ email_changed:
14
+ greeting: Hallo %{email}!
15
+ email_is_changing_to: We contacteren u om uw te verwittigen dat uw email zal wijzigen naar %{email}.
16
+ email_has_changed_to: We contacteren u om uw te verwittigen dat uw email gewijzigd is naar %{email}.
17
+ password_change:
18
+ greeting: Hallo %{email}!
19
+ password_has_changed: We contacteren u om uw te verwittigen dat uw wachtwoord gewijzigd is.
20
+ reset_password_instructions:
21
+ greeting: Hallo %{email}!
22
+ change: Wachtwoord wijzigen
23
+ someone_requested: Iemand heeft een link gevraagd om uw wachtwoord te veranderen. Je kan dit doen via onderstaande link.
24
+ not_requested: Als je dit niet zelf gevraagd heeft, mag u deze email negeren.
25
+ password_not_changed_until: Je wachtwoord verandert niet totdat je op de link klikt en uw wachtwoord wijzigt.
26
+ unlock_instructions:
27
+ greeting: Hallo %{email}!
28
+ account_locked: Uw account is vergrendeld door het hoge aantal van mislukte login pogingen.
29
+ click_link: Klik op de onderstaande link om uw account te ontgrendelen":"
30
+ unlock_account: Ontgrendel mijn account
31
+ passwords:
32
+ edit:
33
+ change_password: Wijzig mijn wachwoord
34
+ new:
35
+ send_instructions: Verzend reset instructies
36
+ registrations:
37
+ edit:
38
+ waiting_confirmation: Wachten op bevestiging voor":" %{email}
39
+ change: Wijzig mijn profiel
40
+ unhappy: Niet tevreden?
41
+ cancel: Verwijder mijn account
42
+ new:
43
+ sign_up: Registeer
44
+ sessions:
45
+ new:
46
+ title: Meld je aan
47
+ login: Aanmelden
48
+ shared:
49
+ links:
50
+ confirmation: Geen bevestigingsmail ontvangen?
51
+ forgot_password: Wachtwoord vergeten?
52
+ omniauth: "Registreer met %{provider}"
53
+ sign_in: Aanmelden
54
+ sign_up: Registeren
55
+ unlock: Geen deblokkeermail ontvangen?
56
+ unlock:
57
+ new:
58
+ resend: Verstuur ontgrendel instructies
@@ -1,138 +1,5 @@
1
1
  nl:
2
2
  language_name: Nederlands
3
- admin:
4
- users:
5
- confirmations:
6
- new:
7
- resend: Opnieuw verzenden
8
- mailers:
9
- confirmation_instructions:
10
- welcome: Welkom %{email}!
11
- confirm: Account bevestigen
12
- confirm_email: Je kan uw account bevestigen door op de onderstaande link te klikken":"
13
- email_changed:
14
- greeting: Hallo %{email}!
15
- email_is_changing_to: We contacteren u om uw te verwittigen dat uw email zal wijzigen naar %{email}.
16
- email_has_changed_to: We contacteren u om uw te verwittigen dat uw email gewijzigd is naar %{email}.
17
- password_change:
18
- greeting: Hallo %{email}!
19
- password_has_changed: We contacteren u om uw te verwittigen dat uw wachtwoord gewijzigd is.
20
- reset_password_instructions:
21
- greeting: Hallo %{email}!
22
- change: Wachtwoord wijzigen
23
- someone_requested: Iemand heeft een link gevraagd om uw wachtwoord te veranderen. Je kan dit doen via onderstaande link.
24
- not_requested: Als je dit niet zelf gevraagd heeft, mag u deze email negeren.
25
- password_not_changed_until: Je wachtwoord verandert niet totdat je op de link klikt en uw wachtwoord wijzigt.
26
- unlock_instructions:
27
- greeting: Hallo %{email}!
28
- account_locked: Uw account is vergrendeld door het hoge aantal van mislukte login pogingen.
29
- click_link: Klik op de onderstaande link om uw account te ontgrendelen":"
30
- unlock_account: Ontgrendel mijn account
31
- passwords:
32
- edit:
33
- change_password: Wijzig mijn wachwoord
34
- new:
35
- send_instructions: Verzend reset instructies
36
- registrations:
37
- edit:
38
- waiting_confirmation: Wachten op bevestiging voor":" %{email}
39
- change: Wijzig mijn profiel
40
- unhappy: Niet tevreden?
41
- cancel: Verwijder mijn account
42
- new:
43
- sign_up: Registeer
44
- sessions:
45
- new:
46
- title: Meld je aan
47
- login: Aanmelden
48
- shared:
49
- links:
50
- confirmation: Geen bevestigingsmail ontvangen?
51
- forgot_password: Wachtwoord vergeten?
52
- omniauth: "Registreer met %{provider}"
53
- sign_in: Aanmelden
54
- sign_up: Registeren
55
- unlock: Geen deblokkeermail ontvangen?
56
- unlock:
57
- new:
58
- resend: Verstuur ontgrendel instructies
59
3
  headmin:
60
- filters:
61
- button: Filters
62
- remove_all: Filters leegmaken
63
- filter:
64
- button:
65
- all: Alle
66
- select:
67
- blank: Maak een keuze
68
- search:
69
- button: Zoeken
70
- placeholder: 'In %{resource} zoeken'
71
- forms:
72
- actions:
73
- title: Status
74
- description: Status & zichtbaarheid
75
- format: '%d-%m-%Y %H:%M'
76
- delete:
77
- title: Verwijderen
78
- confirm: Bent u zeker dat u dit wil verwijderen?
79
- fields:
80
- select:
81
- blank: Maak een keuze
82
- repeater:
83
- add: "%{name} toevoegen"
84
- row:
85
- add: Rij toevoegen
86
- remove: Rij verwijderen
87
- heading:
88
- title:
89
- new: Nieuw
90
- kaminari:
91
- first_page:
92
- button: "«"
93
- gap:
94
- button: ...
95
- last_page:
96
- button: "»"
97
- next_page:
98
- button: "›"
99
- paginator:
100
- title: 'Paginatie'
101
- prev_page:
102
- button: "‹"
103
- layout:
104
- sidebar:
105
- menu:
106
- account:
107
- edit_profile: Profiel bewerken
108
- log_out: Afmelden
109
- header:
110
- account:
111
- edit_profile: Profiel bewerken
112
- log_out: Afmelden
113
- footer:
114
- helper: Hulp nodig?
115
- pagination:
116
- items:
117
- one: 1 item
118
- other: '%{count} items'
119
- table:
120
- actions:
121
- apply: Toepassen
122
- selection: Met selectie
123
- export:
124
- button: Exporteren
125
- delete:
126
- button: Verwijderen
127
- body:
128
- association:
129
- items:
130
- one: 1 item
131
- other: '%{count} items'
132
- boolean:
133
- true: Ja
134
- false: Nee
135
- date:
136
- empty: Nvt.
137
- format: '%d-%m-%Y %H:%M'
138
- empty: Geen resultaten gevonden
4
+ popup:
5
+ add: '%{name} toevoegen'