headmin 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.nvmrc +1 -0
- data/.rubocop.yml +13 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +43 -0
- data/LICENSE.txt +21 -0
- data/README.md +166 -0
- data/Rakefile +16 -0
- data/app/assets/images/avatar.jpg +0 -0
- data/app/controllers/admin/users/confirmations_controller.rb +31 -0
- data/app/controllers/admin/users/omniauth_callbacks_controller.rb +31 -0
- data/app/controllers/admin/users/passwords_controller.rb +35 -0
- data/app/controllers/admin/users/registrations_controller.rb +63 -0
- data/app/controllers/admin/users/sessions_controller.rb +28 -0
- data/app/controllers/admin/users/unlocks_controller.rb +31 -0
- data/app/controllers/concerns/headmin/acts_as_list.rb +16 -0
- data/app/controllers/concerns/headmin/authentication.rb +17 -0
- data/app/controllers/concerns/headmin/ckeditor.rb +27 -0
- data/app/controllers/concerns/headmin/filter.rb +5 -0
- data/app/controllers/concerns/headmin/pagination.rb +23 -0
- data/app/controllers/concerns/headmin/searchable.rb +15 -0
- data/app/controllers/concerns/headmin/sortable.rb +44 -0
- data/app/helpers/headmin/admin_helper.rb +65 -0
- data/app/helpers/headmin/filter_helper.rb +12 -0
- data/app/helpers/headmin/notification_helper.rb +31 -0
- data/app/views/admin/users/confirmations/new.html.erb +9 -0
- data/app/views/admin/users/mailer/confirmation_instructions.html.erb +5 -0
- data/app/views/admin/users/mailer/email_changed.html.erb +7 -0
- data/app/views/admin/users/mailer/password_change.html.erb +3 -0
- data/app/views/admin/users/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/admin/users/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/admin/users/passwords/edit.html.erb +12 -0
- data/app/views/admin/users/passwords/new.html.erb +9 -0
- data/app/views/admin/users/registrations/edit.html.erb +24 -0
- data/app/views/admin/users/registrations/new.html.erb +11 -0
- data/app/views/admin/users/sessions/new.html.erb +13 -0
- data/app/views/admin/users/shared/_error_messages.html.erb +7 -0
- data/app/views/admin/users/shared/_links.html.erb +27 -0
- data/app/views/admin/users/unlocks/new.html.erb +10 -0
- data/app/views/headmin/_breadcrumbs.html.erb +23 -0
- data/app/views/headmin/_filters.html.erb +47 -0
- data/app/views/headmin/_form.html.erb +11 -0
- data/app/views/headmin/_heading.html.erb +9 -0
- data/app/views/headmin/_index.html.erb +12 -0
- data/app/views/headmin/_notifications.html.erb +12 -0
- data/app/views/headmin/_pagination.html.erb +13 -0
- data/app/views/headmin/_table.html.erb +13 -0
- data/app/views/headmin/filters/_date.html.erb +46 -0
- data/app/views/headmin/filters/_search.html.erb +22 -0
- data/app/views/headmin/filters/_select.html.erb +39 -0
- data/app/views/headmin/filters/filter/_button.html.erb +22 -0
- data/app/views/headmin/filters/filter/_menu_item.html.erb +12 -0
- data/app/views/headmin/filters/filter/_template.html.erb +13 -0
- data/app/views/headmin/forms/_actions.html.erb +32 -0
- data/app/views/headmin/forms/_errors.html.erb +20 -0
- data/app/views/headmin/forms/_group.html.erb +36 -0
- data/app/views/headmin/forms/fields/_checkbox.html.erb +23 -0
- data/app/views/headmin/forms/fields/_ckeditor.html.erb +28 -0
- data/app/views/headmin/forms/fields/_currency.html.erb +24 -0
- data/app/views/headmin/forms/fields/_date.html.erb +36 -0
- data/app/views/headmin/forms/fields/_email.html.erb +39 -0
- data/app/views/headmin/forms/fields/_file.html.erb +24 -0
- data/app/views/headmin/forms/fields/_image.html.erb +37 -0
- data/app/views/headmin/forms/fields/_label.html.erb +9 -0
- data/app/views/headmin/forms/fields/_multiple_select.html.erb +37 -0
- data/app/views/headmin/forms/fields/_password.html.erb +39 -0
- data/app/views/headmin/forms/fields/_repeater.html.erb +48 -0
- data/app/views/headmin/forms/fields/_select.html.erb +36 -0
- data/app/views/headmin/forms/fields/_select_tags.html.erb +32 -0
- data/app/views/headmin/forms/fields/_text.html.erb +39 -0
- data/app/views/headmin/forms/fields/_textarea.html.erb +29 -0
- data/app/views/headmin/forms/fields/_url.html.erb +38 -0
- data/app/views/headmin/forms/fields/_validation.html.erb +12 -0
- data/app/views/headmin/forms/fields/repeater/_row.html.erb +16 -0
- data/app/views/headmin/heading/_title.html.erb +24 -0
- data/app/views/headmin/kaminari/_first_page.html.erb +11 -0
- data/app/views/headmin/kaminari/_gap.html.erb +12 -0
- data/app/views/headmin/kaminari/_last_page.html.erb +12 -0
- data/app/views/headmin/kaminari/_next_page.html.erb +13 -0
- data/app/views/headmin/kaminari/_page.html.erb +12 -0
- data/app/views/headmin/kaminari/_paginator.html.erb +25 -0
- data/app/views/headmin/kaminari/_prev_page.html.erb +11 -0
- data/app/views/headmin/layout/_body.html.erb +9 -0
- data/app/views/headmin/layout/_content.html.erb +9 -0
- data/app/views/headmin/layout/_footer.html.erb +17 -0
- data/app/views/headmin/layout/_header.html.erb +13 -0
- data/app/views/headmin/layout/_main.html.erb +13 -0
- data/app/views/headmin/layout/_sidebar.html.erb +20 -0
- data/app/views/headmin/layout/dropdown/_divider.html.erb +9 -0
- data/app/views/headmin/layout/dropdown/_item.html.erb +17 -0
- data/app/views/headmin/layout/header/_account.html.erb +25 -0
- data/app/views/headmin/layout/header/_locale.html.erb +19 -0
- data/app/views/headmin/layout/sidebar/_bottom.html.erb +4 -0
- data/app/views/headmin/layout/sidebar/_menu.html.erb +9 -0
- data/app/views/headmin/layout/sidebar/menu/_account.html.erb +25 -0
- data/app/views/headmin/layout/sidebar/menu/_item.html.erb +16 -0
- data/app/views/headmin/layout/sidebar/menu/_locale.html.erb +18 -0
- data/app/views/headmin/table/_actions.html.erb +19 -0
- data/app/views/headmin/table/_body.html.erb +19 -0
- data/app/views/headmin/table/_foot.html.erb +15 -0
- data/app/views/headmin/table/_footer.html.erb +13 -0
- data/app/views/headmin/table/_head.html.erb +15 -0
- data/app/views/headmin/table/_header.html.erb +13 -0
- data/app/views/headmin/table/actions/_action.html.erb +10 -0
- data/app/views/headmin/table/actions/_delete.html.erb +8 -0
- data/app/views/headmin/table/actions/_export.html.erb +8 -0
- data/app/views/headmin/table/body/_association.html.erb +11 -0
- data/app/views/headmin/table/body/_boolean.erb +16 -0
- data/app/views/headmin/table/body/_currency.html.erb +10 -0
- data/app/views/headmin/table/body/_date.html.erb +11 -0
- data/app/views/headmin/table/body/_id.html.erb +3 -0
- data/app/views/headmin/table/body/_row.html.erb +9 -0
- data/app/views/headmin/table/body/_sort.html.erb +3 -0
- data/app/views/headmin/table/body/_string.html.erb +16 -0
- data/app/views/headmin/table/body/_text.html.erb +10 -0
- data/app/views/headmin/table/foot/_cell.html.erb +10 -0
- data/app/views/headmin/table/foot/_id.html.erb +9 -0
- data/app/views/headmin/table/head/_cell.html.erb +13 -0
- data/app/views/headmin/table/head/_empty.html.erb +1 -0
- data/app/views/headmin/table/head/_id.html.erb +9 -0
- data/app/views/headmin/table/head/_sort.html.erb +3 -0
- data/app/views/headmin/table/head/cell/_asc.html.erb +4 -0
- data/app/views/headmin/table/head/cell/_default.html.erb +7 -0
- data/app/views/headmin/table/head/cell/_desc.html.erb +4 -0
- data/app/views/layouts/admin/auth.html.erb +20 -0
- data/app/views/layouts/admin.html.erb +42 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/config/locales/defaults/en.yml +215 -0
- data/config/locales/defaults/nl.yml +213 -0
- data/config/locales/devise/nl.yml +85 -0
- data/config/locales/en.yml +137 -0
- data/config/locales/nl.yml +138 -0
- data/dist/css/headmin.css +9874 -0
- data/dist/js/headmin.js +852 -0
- data/docs/README.md +4 -0
- data/docs/blocks.md +116 -0
- data/docs/devise.md +62 -0
- data/headmin.gemspec +35 -0
- data/lib/headmin/engine.rb +10 -0
- data/lib/headmin/version.rb +5 -0
- data/lib/headmin.rb +4 -0
- data/package.json +62 -0
- data/src/js/headmin/controllers/filter_controller.js +47 -0
- data/src/js/headmin/controllers/filters_controller.js +53 -0
- data/src/js/headmin/controllers/index_controller.js +79 -0
- data/src/js/headmin/controllers/repeater_controller.js +35 -0
- data/src/js/headmin/controllers/repeater_row_controller.js +54 -0
- data/src/js/headmin/controllers/table_actions_controller.js +22 -0
- data/src/js/headmin/controllers/table_controller.js +36 -0
- data/src/js/headmin/headmin.js +168 -0
- data/src/js/headmin.js +1 -0
- data/src/scss/headmin/filter.scss +33 -0
- data/src/scss/headmin/filters.scss +14 -0
- data/src/scss/headmin/form.scss +39 -0
- data/src/scss/headmin/general.scss +3 -0
- data/src/scss/headmin/layout/body.scss +6 -0
- data/src/scss/headmin/layout/sidebar.scss +22 -0
- data/src/scss/headmin/layout.scss +2 -0
- data/src/scss/headmin/login.scss +35 -0
- data/src/scss/headmin/table.scss +32 -0
- data/src/scss/headmin/utilities.scss +19 -0
- data/src/scss/headmin.scss +58 -0
- data/src/scss/vendor/bootstrap/variables.scss +71 -0
- data/src/scss/vendor/choices/cross-inverse.svg +6 -0
- data/src/scss/vendor/choices/cross.svg +6 -0
- data/src/scss/vendor/choices/custom.scss +28 -0
- data/src/scss/vendor/choices/variables.scss +16 -0
- data/webpack.config.js +30 -0
- data/yarn.lock +7512 -0
- metadata +220 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
|
2
|
+
# The devise.en.yml file translated to Dutch
|
3
|
+
# https://github.com/plataformatec/devise/blob/master/config/locales/en.yml
|
4
|
+
#
|
5
|
+
# This includes the changes from Devise 4.5 and 4.6:
|
6
|
+
# A new key was added in Devise 4.5: `updated_but_not_signed_in:`
|
7
|
+
# In Devise 4.6, the old helper `<% devise_error_messages %>` was replaced with
|
8
|
+
# `<%= render "devise/shared/error_messages", resource: resource %>`
|
9
|
+
|
10
|
+
# Starting points for this translation:
|
11
|
+
# * User-centered language: don't tell what the system knows, tell what the user should do or should expect
|
12
|
+
# (Except for widely used messages like 'account confirmed', 'password invalid').
|
13
|
+
# * Make the messages consistent, with proper grammar (especially with regard to verb tenses).
|
14
|
+
# * English has one definite article ('the'); Dutch has two ('het', 'de'). Sometimes rephrasing with 'je' ('your') is a better solution.
|
15
|
+
# * Use informal but polite wording.
|
16
|
+
# * Use `e-mailadres` for the email address (key: `:email`), `mail` for an email message (cf advice Taaldienst).
|
17
|
+
# * Use `update` for `update`, as it is accepted Dutch (Van Dale). But: avoid the hard to read past participle `geüpdatet`.
|
18
|
+
# * Use `account maken` for `sign up`, `inloggen` for `sign in`, consistently.
|
19
|
+
# * Avoid revealing too much information: use the same message for 'invalid' and 'not found in database' failure messages.
|
20
|
+
# * In Dutch, only complete sentences end with `.`.
|
21
|
+
|
22
|
+
|
23
|
+
nl:
|
24
|
+
devise:
|
25
|
+
confirmations:
|
26
|
+
confirmed: Je account is bevestigd.
|
27
|
+
send_instructions: Er is een mail onderweg waarmee je je account kunt bevestigen.
|
28
|
+
send_paranoid_instructions: Als je een account hebt voor dit e-mailadres, ontvang je een mail waarmee je je account kunt bevestigen.
|
29
|
+
failure:
|
30
|
+
already_authenticated: Je bent al ingelogd.
|
31
|
+
inactive: Je account is nog niet actief.
|
32
|
+
invalid: Je %{authentication_keys} of wachtwoord is ongeldig.
|
33
|
+
locked: Je account is geblokkeerd.
|
34
|
+
last_attempt: Je kan het nog één keer proberen voordat je account wordt geblokkeerd.
|
35
|
+
not_found_in_database: Je %{authentication_keys} of wachtwoord is ongeldig.
|
36
|
+
timeout: De sessie is verlopen. Log opnieuw in.
|
37
|
+
unauthenticated: Log eerst in of maak een account.
|
38
|
+
unconfirmed: Bevestig eerst je e-mailadres.
|
39
|
+
mailer:
|
40
|
+
confirmation_instructions:
|
41
|
+
subject: Bevestig je e-mailadres om je account te activeren.
|
42
|
+
reset_password_instructions:
|
43
|
+
subject: Een nieuw wachtwoord instellen.
|
44
|
+
unlock_instructions:
|
45
|
+
subject: De blokkering van je account opheffen.
|
46
|
+
email_changed:
|
47
|
+
subject: Je e-mailadres is aangepast.
|
48
|
+
password_change:
|
49
|
+
subject: Je wachtwoord is aangepast.
|
50
|
+
omniauth_callbacks:
|
51
|
+
failure: Inloggen met je %{kind} account is niet gelukt, doordat \"%{reason}\".
|
52
|
+
success: Je bent nu ingelogd met je %{kind} account.
|
53
|
+
passwords:
|
54
|
+
no_token: Je kunt je wachtwoord hier alleen veranderen vanuit de mail die je is toegestuurd. Klik op de link in de mail of kopieer de hele link in de adresbalk."
|
55
|
+
send_instructions: Er is een mail onderweg met uitleg hoe je je wachtwoord kunt updaten.
|
56
|
+
send_paranoid_instructions: Als je een account hebt voor dit e-mailadres, krijg je een mail waarmee je je wachtwoord kunt updaten."
|
57
|
+
updated: Het updaten van je wachtwoord is gelukt en je bent nu ingelogd.
|
58
|
+
updated_not_active: Het updaten van je wachtwoord is gelukt.
|
59
|
+
registrations:
|
60
|
+
destroyed: Je account is verwijderd. Dag!
|
61
|
+
signed_up: Je account is aangemaakt. Welkom!
|
62
|
+
signed_up_but_inactive: Je account is aangemaakt. Je account is nog niet actief en daarom ben je niet automatisch ingelogd.
|
63
|
+
signed_up_but_locked: Je account is aangemaakt, maar het is geblokkeerd.
|
64
|
+
signed_up_but_unconfirmed: Er is een bevestigingsmail onderweg. Klik op de link in de mail om je e-mailadres te bevestigen.
|
65
|
+
update_needs_confirmation: "Het updaten van je account is gelukt. Je hoeft alleen nog je e-mailadres te bevestigen: klik op de link in de bevestigingsmail."
|
66
|
+
updated: Het updaten van je account is gelukt.
|
67
|
+
updated_but_not_signed_in: Het updaten van je account is gelukt. Je kunt nu inloggen met je nieuwe wachtwoord.
|
68
|
+
sessions:
|
69
|
+
signed_in: Je bent nu ingelogd.
|
70
|
+
signed_out: Je bent nu uitgelogd.
|
71
|
+
already_signed_out: Je was al uitgelogd.
|
72
|
+
unlocks:
|
73
|
+
send_instructions: Er is een mail onderweg waarmee je de blokkering van je account kunt opheffen.
|
74
|
+
send_paranoid_instructions: Als je een account hebt voor dit e-mailadres, krijg je een mail waarmee je de blokkering van je account kunt opheffen.
|
75
|
+
unlocked: Je account werkt weer. Je kunt nu inloggen.
|
76
|
+
errors:
|
77
|
+
messages:
|
78
|
+
already_confirmed: was al bevestigd. Je kunt meteen inloggen.
|
79
|
+
confirmation_period_expired: is niet binnen de vereiste %{period} bevestigd. Vraag een nieuwe bevestigingsmail aan.
|
80
|
+
expired: is niet op tijd bevestigd.
|
81
|
+
not_found: bestaat niet.
|
82
|
+
not_locked: is niet geblokkeerd.
|
83
|
+
not_saved:
|
84
|
+
one: "De %{resource} kon niet worden opgeslagen vanwege een fout:"
|
85
|
+
other: "De %{resource} kon niet worden opgeslagen vanwege %{count} fouten:"
|
@@ -0,0 +1,137 @@
|
|
1
|
+
en:
|
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
|
+
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
|
@@ -0,0 +1,138 @@
|
|
1
|
+
nl:
|
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
|
+
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
|