decidim-admin 0.5.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-admin might be problematic. Click here for more details.

Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +0 -7
  3. data/app/assets/javascripts/decidim/admin/application.js.es6 +0 -1
  4. data/app/assets/stylesheets/decidim/admin/extra/_quill.scss +5 -0
  5. data/app/commands/decidim/admin/create_category.rb +4 -4
  6. data/app/commands/decidim/admin/create_feature.rb +7 -7
  7. data/app/commands/decidim/admin/create_managed_user.rb +0 -2
  8. data/app/commands/decidim/admin/update_organization.rb +1 -0
  9. data/app/controllers/decidim/admin/application_controller.rb +0 -2
  10. data/app/controllers/decidim/admin/categories_controller.rb +10 -10
  11. data/app/controllers/decidim/admin/exports_controller.rb +1 -2
  12. data/app/controllers/decidim/admin/feature_permissions_controller.rb +2 -3
  13. data/app/controllers/decidim/admin/features/base_controller.rb +9 -3
  14. data/app/controllers/decidim/admin/features_controller.rb +5 -7
  15. data/app/controllers/decidim/admin/moderations_controller.rb +5 -7
  16. data/app/controllers/decidim/admin/scopes_controller.rb +12 -10
  17. data/app/controllers/decidim/admin/users_controller.rb +1 -3
  18. data/app/forms/decidim/admin/category_form.rb +2 -2
  19. data/app/forms/decidim/admin/feature_form.rb +1 -18
  20. data/app/forms/decidim/admin/organization_form.rb +1 -0
  21. data/app/helpers/decidim/admin/exports_helper.rb +10 -0
  22. data/app/models/decidim/admin/abilities/admin_ability.rb +0 -3
  23. data/app/models/decidim/admin/abilities/participatory_process_admin_ability.rb +3 -3
  24. data/app/views/decidim/admin/attachments/edit.html.erb +1 -1
  25. data/app/views/decidim/admin/attachments/new.html.erb +1 -1
  26. data/app/views/decidim/admin/categories/edit.html.erb +2 -2
  27. data/app/views/decidim/admin/categories/index.html.erb +11 -11
  28. data/app/views/decidim/admin/categories/new.html.erb +3 -3
  29. data/app/views/decidim/admin/categories/show.html.erb +2 -2
  30. data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
  31. data/app/views/decidim/admin/features/_form.html.erb +15 -15
  32. data/app/views/decidim/admin/features/edit.html.erb +1 -1
  33. data/app/views/decidim/admin/features/new.html.erb +1 -1
  34. data/app/views/decidim/admin/moderations/index.html.erb +2 -2
  35. data/app/views/decidim/admin/organization/_form.html.erb +5 -0
  36. data/app/views/decidim/admin/users/index.html.erb +1 -1
  37. data/config/locales/ca.yml +8 -195
  38. data/config/locales/en.yml +6 -197
  39. data/config/locales/es.yml +11 -198
  40. data/config/locales/eu.yml +95 -208
  41. data/config/locales/fi.yml +168 -123
  42. data/config/locales/fr.yml +114 -191
  43. data/config/locales/it.yml +150 -168
  44. data/config/locales/nl.yml +443 -0
  45. data/config/locales/pl.yml +444 -0
  46. data/config/locales/uk.yml +451 -0
  47. data/config/routes.rb +2 -46
  48. data/lib/decidim/admin/engine.rb +0 -14
  49. data/lib/decidim/admin/test/commands/create_category_examples.rb +62 -0
  50. data/lib/decidim/admin/test/commands/destroy_category_examples.rb +46 -0
  51. data/lib/decidim/admin/test/commands/update_category_examples.rb +65 -0
  52. data/lib/decidim/admin/test/forms/category_form_examples.rb +90 -0
  53. data/lib/decidim/admin/test/manage_attachments_examples.rb +2 -2
  54. data/lib/decidim/admin/test/manage_feature_permissions_examples.rb +41 -0
  55. metadata +27 -64
  56. data/app/assets/javascripts/decidim/admin/participatory_processes.js.es6 +0 -12
  57. data/app/commands/decidim/admin/activate_participatory_process_step.rb +0 -44
  58. data/app/commands/decidim/admin/copy_participatory_process.rb +0 -113
  59. data/app/commands/decidim/admin/create_participatory_process.rb +0 -78
  60. data/app/commands/decidim/admin/create_participatory_process_admin.rb +0 -93
  61. data/app/commands/decidim/admin/create_participatory_process_group.rb +0 -55
  62. data/app/commands/decidim/admin/create_participatory_process_step.rb +0 -47
  63. data/app/commands/decidim/admin/deactivate_participatory_process_step.rb +0 -36
  64. data/app/commands/decidim/admin/destroy_participatory_process_step.rb +0 -44
  65. data/app/commands/decidim/admin/publish_participatory_process.rb +0 -32
  66. data/app/commands/decidim/admin/reorder_participatory_process_steps.rb +0 -52
  67. data/app/commands/decidim/admin/unpublish_participatory_process.rb +0 -32
  68. data/app/commands/decidim/admin/update_participatory_process.rb +0 -74
  69. data/app/commands/decidim/admin/update_participatory_process_admin.rb +0 -41
  70. data/app/commands/decidim/admin/update_participatory_process_group.rb +0 -58
  71. data/app/commands/decidim/admin/update_participatory_process_step.rb +0 -49
  72. data/app/controllers/decidim/admin/concerns/participatory_process_admin.rb +0 -20
  73. data/app/controllers/decidim/admin/participatory_process_attachments_controller.rb +0 -25
  74. data/app/controllers/decidim/admin/participatory_process_copies_controller.rb +0 -33
  75. data/app/controllers/decidim/admin/participatory_process_groups_controller.rb +0 -86
  76. data/app/controllers/decidim/admin/participatory_process_publications_controller.rb +0 -43
  77. data/app/controllers/decidim/admin/participatory_process_step_activations_controller.rb +0 -37
  78. data/app/controllers/decidim/admin/participatory_process_step_ordering_controller.rb +0 -27
  79. data/app/controllers/decidim/admin/participatory_process_steps_controller.rb +0 -89
  80. data/app/controllers/decidim/admin/participatory_process_user_roles_controller.rb +0 -97
  81. data/app/controllers/decidim/admin/participatory_processes_controller.rb +0 -96
  82. data/app/forms/decidim/admin/participatory_process_copy_form.rb +0 -33
  83. data/app/forms/decidim/admin/participatory_process_form.rb +0 -69
  84. data/app/forms/decidim/admin/participatory_process_group_form.rb +0 -24
  85. data/app/forms/decidim/admin/participatory_process_step_form.rb +0 -35
  86. data/app/forms/decidim/admin/participatory_process_user_role_form.rb +0 -29
  87. data/app/helpers/decidim/admin/process_groups_for_select_helper.rb +0 -21
  88. data/app/helpers/decidim/admin/processes_for_select_helper.rb +0 -23
  89. data/app/queries/decidim/admin/process_admins.rb +0 -44
  90. data/app/views/decidim/admin/participatory_process_copies/_form.html.erb +0 -38
  91. data/app/views/decidim/admin/participatory_process_copies/new.html.erb +0 -7
  92. data/app/views/decidim/admin/participatory_process_groups/_form.html.erb +0 -17
  93. data/app/views/decidim/admin/participatory_process_groups/edit.html.erb +0 -19
  94. data/app/views/decidim/admin/participatory_process_groups/index.html.erb +0 -44
  95. data/app/views/decidim/admin/participatory_process_groups/new.html.erb +0 -13
  96. data/app/views/decidim/admin/participatory_process_groups/show.html.erb +0 -23
  97. data/app/views/decidim/admin/participatory_process_steps/_form.html.erb +0 -25
  98. data/app/views/decidim/admin/participatory_process_steps/edit.html.erb +0 -8
  99. data/app/views/decidim/admin/participatory_process_steps/index.html.erb +0 -63
  100. data/app/views/decidim/admin/participatory_process_steps/new.html.erb +0 -7
  101. data/app/views/decidim/admin/participatory_process_steps/show.html.erb +0 -18
  102. data/app/views/decidim/admin/participatory_process_user_roles/_form.html.erb +0 -22
  103. data/app/views/decidim/admin/participatory_process_user_roles/edit.html.erb +0 -7
  104. data/app/views/decidim/admin/participatory_process_user_roles/index.html.erb +0 -65
  105. data/app/views/decidim/admin/participatory_process_user_roles/new.html.erb +0 -7
  106. data/app/views/decidim/admin/participatory_processes/_form.html.erb +0 -101
  107. data/app/views/decidim/admin/participatory_processes/edit.html.erb +0 -19
  108. data/app/views/decidim/admin/participatory_processes/index.html.erb +0 -66
  109. data/app/views/decidim/admin/participatory_processes/new.html.erb +0 -11
  110. data/app/views/layouts/decidim/admin/participatory_process.html.erb +0 -64
  111. data/app/views/layouts/decidim/admin/participatory_process_groups.html.erb +0 -14
  112. data/app/views/layouts/decidim/admin/participatory_processes.html.erb +0 -14
  113. data/config/i18n-tasks.yml +0 -132
@@ -3,6 +3,449 @@ nl:
3
3
  attributes:
4
4
  attachment:
5
5
  description: Beschrijving
6
+ file: het dossier
7
+ title: Titel
8
+ category:
9
+ description: Beschrijving
10
+ name: Naam
11
+ parent_id: Ouder
12
+ feature:
13
+ name: Naam
14
+ weight: Gewicht
15
+ newsletter:
16
+ body: Lichaam
17
+ subject: Onderwerpen
18
+ organization:
19
+ default_locale: Standaard locale
20
+ description: Beschrijving
21
+ favicon: Icoon
22
+ header_snippets: Koptekstjes
23
+ homepage_image: Homepage afbeelding
24
+ logo: Logo
25
+ name: Naam
26
+ official_img_footer: Officiële logo footer
27
+ official_img_header: Officiële logo header
28
+ official_url: Officiële organisatie url
29
+ reference_prefix: Referentievoorvoegsel
30
+ show_statistics: Toon statistieken
31
+ welcome_text: Welkom tekst
32
+ scope:
33
+ code: Code
34
+ name: Naam
35
+ organization: Organisatie
36
+ scope_type: Scope type
37
+ scope_type:
38
+ name: Naam
39
+ organization: Organisatie
40
+ plural: Meervoud
41
+ static_page:
42
+ content: Inhoud
43
+ organization: Organisatie
44
+ slug: URL slak
45
+ title: Titel
46
+ activerecord:
47
+ attributes:
48
+ decidim/participatory_process:
49
+ banner_image: Banner afbeelding
50
+ description: Beschrijving
51
+ developer_group: Ontwikkelaarsgroep
52
+ domain: Domein
53
+ end_date: Einddatum
54
+ hashtag: Hashtag
55
+ hero_image: Home image
56
+ local_area: Lokale buurt
57
+ meta_scope: Omvang metadata
58
+ participatory_scope: Participatief toepassingsgebied
59
+ participatory_structure: Participatieve structuur
60
+ promoted: Bevorderd
61
+ scope: Reikwijdte
62
+ short_description: Korte beschrijving
63
+ slug: URL slak
64
+ start_date: Begindatum
65
+ subtitle: Ondertitel
66
+ target: Doel
67
+ title: Titel
68
+ decidim/participatory_process_step:
69
+ end_date: Einddatum
70
+ start_date: Begin datum
71
+ decidim/static_page:
72
+ content: Inhoud
73
+ slug: URL slak
74
+ title: Titel
75
+ date:
76
+ formats:
77
+ datepicker: "%m / %d / %Y"
78
+ decidim:
79
+ admin:
80
+ actions:
81
+ add: Toevoegen
82
+ browse: Browsen
83
+ export: Exporteren
84
+ manage: Beheer
85
+ permissions: Toelatingen
86
+ reject: afwijzen
87
+ verify: Verifiëren
88
+ attachments:
89
+ create:
90
+ error: Er is een fout opgetreden bij het maken van een nieuwe bijlage.
91
+ success: Bijlage is succesvol gemaakt.
92
+ destroy:
93
+ success: Bijlage is succesvol vernietigd.
94
+ edit:
95
+ title: Bewerk bijlage
96
+ update: Bijwerken
97
+ index:
98
+ attachments_title: toebehoren
99
+ new:
100
+ create: Maak bijlage
101
+ title: Nieuwe bijlage
102
+ update:
103
+ error: Er is een fout opgetreden bij het bijwerken van deze bijlage.
104
+ success: Bijlage is succesvol bijgewerkt.
105
+ categories:
106
+ create:
107
+ error: Er is een fout opgetreden bij het maken van deze categorie.
108
+ success: Categorie succesvol gemaakt.
109
+ destroy:
110
+ error: Er is een fout opgetreden bij het verwijderen van deze categorie. Verwijder eerst een subcategorie, zorg ervoor dat er geen andere entiteit in deze categorie hoort en probeer het opnieuw.
111
+ success: Categorie is succesvol verwijderd.
112
+ edit:
113
+ title: Categorie bewerken
114
+ update: Bijwerken
115
+ index:
116
+ categories_title: Categorieën
117
+ category_used: Deze categorie kan niet worden verwijderd omdat het in gebruik is.
118
+ new:
119
+ create: Categorie creëren
120
+ title: Nieuwe categorie
121
+ update:
122
+ error: Er is een fout opgetreden bij het bijwerken van deze categorie.
123
+ success: Categorie is succesvol bijgewerkt.
124
+ dashboard:
125
+ show:
126
+ welcome: Welkom bij de nieuwe Decidim Panel Admin.
127
+ exports:
128
+ export_as: "%{name} als %{export_format}"
129
+ notice: Uw export is momenteel aan de gang. U ontvangt een email wanneer het klaar is.
130
+ feature_permissions:
131
+ edit:
132
+ everyone: Iedereen
133
+ submit: Bewaar machtigingen
134
+ title: Wijzig permissies
135
+ update:
136
+ success: Machtigingen succesvol bijgewerkt.
137
+ features:
138
+ create:
139
+ error: Er is een fout opgetreden bij het maken van deze functie.
140
+ success: Functie is succesvol gemaakt.
141
+ destroy:
142
+ error: Er is een fout gebroken die deze functie vernietigt.
143
+ success: Functie is succesvol verwijderd.
144
+ edit:
145
+ title: Bewerk functie
146
+ update: Bijwerken
147
+ form:
148
+ default_step_settings: Standaard stapinstellingen
149
+ global_settings: Algemene instellingen
150
+ step_settings: Stap instellingen
151
+ index:
152
+ add: Functie toevoegen
153
+ headers:
154
+ actions: Acties
155
+ name: Feature naam
156
+ type: Feature type
157
+ new:
158
+ add: Functie toevoegen
159
+ title: 'Functie toevoegen: %{name}'
160
+ publish:
161
+ success: De functie is succesvol gepubliceerd.
162
+ title: Kenmerken
163
+ unpublish:
164
+ success: De functie is succesvol ongepubliceerd.
165
+ update:
166
+ error: Er is een fout opgetreden bij het bijwerken van deze functie.
167
+ success: De functie is succesvol bijgewerkt.
168
+ managed_users:
169
+ close_session:
170
+ error: Er is een fout opgetreden die de huidige impersonatie sessie sluit.
171
+ success: De huidige impersonatie sessie is succesvol beëindigd.
172
+ create:
173
+ error: Er is een fout opgetreden bij het maken van de beheerde gebruiker.
174
+ success: De beheerde gebruiker is succesvol aangemaakt.
175
+ form:
176
+ name: Naam
177
+ impersonate:
178
+ error: Er is een fout opgetreden die de beheerde gebruiker verpersoonlijken.
179
+ impersonations:
180
+ new:
181
+ impersonate: verpersoonlijken
182
+ new_managed_user_impersonation: Nieuwe beheerde gebruikerspersoonstelling
183
+ index:
184
+ impersonate: verpersoonlijken
185
+ needs_authoriation_warning: U heeft minstens één autorisatie nodig voor deze organisatie.
186
+ promote: Promoten
187
+ view_logs: Bekijk logboeken
188
+ new:
189
+ create: creëren
190
+ new_managed_user: Nieuwe beheerde gebruiker
191
+ select_authorization_method: Selecteer een autorisatie methode
192
+ step: Stap %{current} van %{total}
193
+ promotion:
194
+ error: Er is een fout opgetreden bij het promoten van de beheerde gebruiker.
195
+ success: De beheerde gebruiker is succesvol gepromoveerd.
196
+ promotions:
197
+ new:
198
+ explanation: Beheerde gebruikers kunnen worden bevorderd tot standaardgebruikers. Het betekent dat ze worden uitgenodigd voor de aanvraag en u kunt ze niet opnieuw voorstellen. De uitgenodigde gebruiker ontvangt een email om uw uitnodiging te accepteren.
199
+ new_managed_user_promotion: Nieuwe beheerde gebruikersbevordering
200
+ promote: Promoten
201
+ menu:
202
+ admins: Admins
203
+ dashboard: Dashboard
204
+ managed_users: Beheerde gebruikers
205
+ newsletters: Nieuwsbrieven
206
+ scope_types: Scope types
207
+ scopes: Scopes
208
+ settings: Instellingen
209
+ static_pages: Pagina's
210
+ user_groups: Gebruikersgroepen
211
+ users: Gebruikers
212
+ models:
213
+ attachment:
214
+ fields:
215
+ content_type: Type
216
+ title: Titel
217
+ name: Bijlage
218
+ category:
219
+ name: Categorie
220
+ impersonation_log:
221
+ fields:
222
+ admin: beheerder
223
+ ended_at: Eindigde op
224
+ expired_at: Verlopen op
225
+ started_at: Gestart op
226
+ user: Gebruiker
227
+ managed_user:
228
+ name: Beheerde gebruiker
229
+ newsletter:
230
+ fields:
231
+ created_at: Gemaakt bij
232
+ progress: Vooruitgang
233
+ sent_at: Verzonden bij
234
+ subject: Onderwerpen
235
+ name: Nieuwsbrief
236
+ scope:
237
+ fields:
238
+ name: Naam
239
+ scope_type: Scope type
240
+ scope_type:
241
+ fields:
242
+ name: Naam
243
+ plural: Meervoud
244
+ static_page:
245
+ fields:
246
+ created_at: Gemaakt bij
247
+ title: Titel
248
+ user:
249
+ fields:
250
+ created_at: Aanmaakdatum
251
+ email: E-mail
252
+ last_sign_in_at: Laatste inloggen datum
253
+ name: Naam
254
+ role: Rol
255
+ roles:
256
+ admin: beheerder
257
+ user_manager: Gebruikersbeheerder
258
+ name: Gebruiker
259
+ user_group:
260
+ fields:
261
+ actions: acties
262
+ created_at: Gemaakt bij
263
+ document_number: Documentnummer
264
+ name: Naam
265
+ phone: Telefoon
266
+ state: Staat
267
+ users_count: Aantal gebruikers
268
+ moderations:
269
+ index:
270
+ title: Moderaties
271
+ report:
272
+ reasons:
273
+ does_not_belong: Hoort niet
274
+ offensive: Aanvallend
275
+ spam: Spam
276
+ newsletters:
277
+ create:
278
+ error: Er is een fout opgetreden bij het maken van deze nieuwsbrief.
279
+ success: Nieuwsbrief is succesvol gemaakt. Controleer het alstublieft voordat u verzendt.
280
+ deliver:
281
+ error: Er is een fout opgetreden bij het leveren van deze nieuwsbrief.
282
+ success: Nieuwsbrief is succesvol geleverd.
283
+ destroy:
284
+ error_already_sent: 'Kan de nieuwsbrief niet vernietigen: het is al verstuurd.'
285
+ success: Nieuwsbrief is succesvol vernietigd.
286
+ edit:
287
+ save_and_preview: Opslaan en previewen
288
+ title: Bewerk nieuwsbrief
289
+ form:
290
+ interpolations_hint: 'Hint: U kunt "%{name}" overal in het lichaam of onderwerp gebruiken en het wordt vervangen door de naam van de ontvanger.'
291
+ index:
292
+ confirm_delete: Weet u zeker dat u deze nieuwsbrief wilt verwijderen?
293
+ title: Nieuwsbrieven
294
+ new:
295
+ save: Opslaan
296
+ title: Nieuwe nieuwsbrief
297
+ show:
298
+ confirm_deliver: Weet u zeker dat u deze nieuwsbrief wilt bezorgen? Deze actie kan niet ongedaan gemaakt worden.
299
+ deliver: Stuur nieuwsbrief
300
+ preview: Voorbeeld
301
+ subject: Onderwerpen
302
+ update:
303
+ error: Er is een fout opgetreden bij het bijwerken van deze nieuwsbrief.
304
+ success: Nieuwsbrief is succesvol bijgewerkt. Controleer het voordat u verzendt.
305
+ organization:
306
+ edit:
307
+ title: Organisatie bewerken
308
+ update: Bijwerken
309
+ form:
310
+ current_image: Huidig ​​beeld
311
+ facebook: Facebook
312
+ github: GitHub
313
+ header_snippets_help: Gebruik dit veld om dingen toe te voegen aan de HTML-kop. Het meest voorkomende gebruik is het integreren van diensten van derden die extra JavaScript of CSS nodig hebben. U kunt het ook gebruiken om extra metatags toe te voegen aan de HTML. Houd er rekening mee dat dit alleen op openbare pagina's wordt weergegeven, niet in de beheerdersafdeling.
314
+ instagram: Instagram
315
+ social_handlers: Sociaal
316
+ twitter: Twitter
317
+ url: Url
318
+ youtube: YouTube
319
+ update:
320
+ error: Er is een fout opgetreden bij het bijwerken van deze organisatie.
321
+ success: Organisatie is succesvol bijgewerkt.
322
+ scope_types:
323
+ create:
324
+ error: Er is een fout opgetreden bij het maken van een nieuw bereik type.
325
+ success: Scope type is succesvol gemaakt.
326
+ destroy:
327
+ success: Omvangstype is succesvol vernietigd
328
+ edit:
329
+ title: Bewerk type type
330
+ update: Bijwerken
331
+ new:
332
+ create: Maak een draagstype aan
333
+ title: Nieuw bereik
334
+ update:
335
+ error: Er is een fout opgetreden bij het bijwerken van dit scope type.
336
+ success: Scope type is succesvol bijgewerkt
337
+ scopes:
338
+ create:
339
+ error: Er is een fout opgetreden bij het maken van een nieuwe reikwijdte.
340
+ success: Scope is succesvol gemaakt.
341
+ destroy:
342
+ success: Scope succesvol vernietigd
343
+ edit:
344
+ title: Bewerk de scope
345
+ update: Bijwerken
346
+ new:
347
+ create: Maak ruimte
348
+ title: Nieuw bereik
349
+ no_scopes: Geen scopes op dit niveau.
350
+ update:
351
+ error: Er is een fout opgetreden bij het bijwerken van dit bereik.
352
+ success: Scope is succesvol bijgewerkt
353
+ static_pages:
354
+ actions:
355
+ view: Bekijk de openbare pagina
356
+ create:
357
+ error: Er is een fout opgetreden bij het maken van een nieuwe pagina.
358
+ success: Pagina is succesvol gemaakt.
359
+ destroy:
360
+ success: Pagina succesvol vernietigd
361
+ edit:
362
+ title: Pagina bewerken
363
+ update: Bijwerken
364
+ new:
365
+ create: nieuwe
366
+ title: Nieuwe pagina
367
+ update:
368
+ error: Er is een fout opgetreden bij het bijwerken van deze pagina.
369
+ success: Pagina is succesvol bijgewerkt
370
+ titles:
371
+ dashboard: Dashboard
372
+ impersonations: imitaties
373
+ managed_users: Beheerde gebruikers
374
+ scope_types: Scope types
375
+ scopes: Scopes
376
+ static_pages: Pagina's
377
+ user_groups: Gebruikersgroepen
378
+ users: Gebruikers
379
+ user_group:
380
+ reject:
381
+ invalid: Er is een fout opgetreden bij het afwijzen van deze gebruikersgroep.
382
+ success: Gebruikersgroep is succesvol afgewezen
383
+ verify:
384
+ invalid: Er is een fout opgetreden bij het verifiëren van deze gebruikersgroep.
385
+ success: Gebruikersgroep is succesvol geverifieerd
386
+ user_groups:
387
+ index:
388
+ filter:
389
+ all: Alle
390
+ pending: In afwachting
391
+ rejected: Verworpen
392
+ verified: Geverifieerd
393
+ filter_by: Filteren op
394
+ search: Zoeken
395
+ state:
396
+ pending: In afwachting
397
+ rejected: Verworpen
398
+ verified: Geverifieerd
399
+ users:
400
+ create:
401
+ error: Er is een fout opgetreden bij het uitnodigen van deze gebruiker.
402
+ success: Gebruiker heeft succesvol uitgenodigd.
403
+ destroy:
404
+ error: Er is een fout opgetreden bij het proberen om deze gebruiker te verwijderen.
405
+ success: Gebruiker is niet meer een beheerder.
406
+ form:
407
+ email: E-mail
408
+ name: Naam
409
+ role: Rol
410
+ new:
411
+ create: Nodig uit
412
+ title: Inviteer gebruiker als beheerder
413
+ moderations:
414
+ actions:
415
+ hidden: Verborgen
416
+ hide: Verbergen
417
+ not_hidden: niet verstopt
418
+ title: Acties
419
+ unreport: Onreporteren
420
+ admin:
421
+ reportable:
422
+ hide:
423
+ invalid: Er is een probleem geweest om de bron te verbergen.
424
+ success: Resource succesvol verborgen.
425
+ unreport:
426
+ invalid: Er is een probleem geweest om de bron niet te rapporteren.
427
+ success: Resource succesvol ongemeld.
428
+ models:
429
+ moderation:
430
+ fields:
431
+ hidden_at: Verborgen bij
432
+ report_count: tellen
433
+ reportable: Rapporterbaar
434
+ reported_content_url: Gerapporteerde inhouds-URL
435
+ reports: Rapporten
436
+ errors:
437
+ messages:
438
+ invalid_json: Ongeldige JSON
439
+ layouts:
440
+ decidim:
441
+ admin:
442
+ newsletters:
443
+ title: Nieuwsbrieven
444
+ settings:
445
+ title: Instellingen
446
+ users:
447
+ title: Gebruikers
6
448
  time:
7
449
  formats:
450
+ datepicker: "%m / %d / %Y"
8
451
  timepicker: "%d/%m/%Y %H:%M"
@@ -1,7 +1,451 @@
1
1
  pl:
2
2
  activemodel:
3
3
  attributes:
4
+ attachment:
5
+ description: Opis
6
+ file: Plik
7
+ title: Tytuł
4
8
  category:
9
+ description: Opis
5
10
  name: Nazwa
11
+ parent_id: Roślina mateczna
6
12
  feature:
7
13
  name: Nazwa
14
+ weight: Waga
15
+ newsletter:
16
+ body: Ciało
17
+ subject: Przedmiot
18
+ organization:
19
+ default_locale: Domena domyślna
20
+ description: Opis
21
+ favicon: Ikona
22
+ header_snippets: Fragmenty nagłówków
23
+ homepage_image: Obraz strony głównej
24
+ logo: Logo
25
+ name: Nazwa
26
+ official_img_footer: Oficjalny stopka logo
27
+ official_img_header: Oficjalny nagłówek logo
28
+ official_url: Oficjalna organizacja url
29
+ reference_prefix: Prefiks referencyjny
30
+ show_statistics: Pokaż statystyki
31
+ welcome_text: Tekst powitalny
32
+ scope:
33
+ code: Kod
34
+ name: Nazwa
35
+ organization: Organizacja
36
+ scope_type: Typ zakresu
37
+ scope_type:
38
+ name: Nazwa
39
+ organization: Organizacja
40
+ plural: Liczba mnoga
41
+ static_page:
42
+ content: Zadowolony
43
+ organization: Organizacja
44
+ slug: Ślimak URL
45
+ title: Tytuł
46
+ activerecord:
47
+ attributes:
48
+ decidim/participatory_process:
49
+ banner_image: Obraz baneru
50
+ description: Opis
51
+ developer_group: Grupa programistów
52
+ domain: Domena
53
+ end_date: Data końcowa
54
+ hashtag: Hasztag
55
+ hero_image: Obraz w domu
56
+ local_area: Obszar lokalny
57
+ meta_scope: Zakres metadanych
58
+ participatory_scope: Zakres współuczestnictwa
59
+ participatory_structure: Struktura uczestnictwa
60
+ promoted: Lansowany
61
+ scope: Zakres
62
+ short_description: Krótki opis
63
+ slug: Ślimak URL
64
+ start_date: Data rozpoczęcia
65
+ subtitle: Podtytuł
66
+ target: Cel
67
+ title: Tytuł
68
+ decidim/participatory_process_step:
69
+ end_date: Data końcowa
70
+ start_date: Data rozpoczęcia
71
+ decidim/static_page:
72
+ content: Zadowolony
73
+ slug: Ślimak URL
74
+ title: Tytuł
75
+ date:
76
+ formats:
77
+ datepicker: "%m / %d / %Y"
78
+ decidim:
79
+ admin:
80
+ actions:
81
+ add: Dodaj
82
+ browse: Paść się
83
+ export: Eksport
84
+ manage: Zarządzanie
85
+ permissions: Uprawnienia
86
+ reject: Odrzucać
87
+ verify: Zweryfikować
88
+ attachments:
89
+ create:
90
+ error: Podczas tworzenia nowego załącznika wystąpił błąd.
91
+ success: Utworzono załącznik.
92
+ destroy:
93
+ success: Załącznik został zniszczony.
94
+ edit:
95
+ title: Edytuj załącznik
96
+ update: Aktualizacja
97
+ index:
98
+ attachments_title: Załączniki
99
+ new:
100
+ create: Utwórz załącznik
101
+ title: Nowy załącznik
102
+ update:
103
+ error: Podczas aktualizowania tego załącznika wystąpił błąd.
104
+ success: Załącznik został zaktualizowany.
105
+ categories:
106
+ create:
107
+ error: Podczas tworzenia tej kategorii wystąpił błąd.
108
+ success: Utworzono kreację.
109
+ destroy:
110
+ error: Podczas usuwania tej kategorii wystąpił błąd. Usuń najpierw podkategorię, upewnij się, że żadna inna osoba nie należy do tej kategorii i spróbuj ponownie.
111
+ success: Kategoria została usunięta.
112
+ edit:
113
+ title: Edytuj kategorię
114
+ update: Aktualizacja
115
+ index:
116
+ categories_title: Kategorie
117
+ category_used: Ta kategoria nie może zostać usunięta, ponieważ jest w użyciu.
118
+ new:
119
+ create: Utwórz kategorię
120
+ title: Nowa kategoria
121
+ update:
122
+ error: Podczas aktualizowania tej kategorii wystąpił błąd.
123
+ success: Kategoria została zaktualizowana.
124
+ dashboard:
125
+ show:
126
+ welcome: Witamy w nowym Decidim Panel Admin.
127
+ exports:
128
+ export_as: "%{name} jako %{export_format}"
129
+ notice: Twój eksport jest obecnie w toku. Po jego zakończeniu otrzymasz e-maila.
130
+ feature_permissions:
131
+ edit:
132
+ everyone: Każdy
133
+ submit: Zapisz uprawnienia
134
+ title: Edytuj uprawnienia
135
+ update:
136
+ success: Uprawnienia zostały zaktualizowane.
137
+ features:
138
+ create:
139
+ error: Podczas tworzenia tej funkcji wystąpił błąd.
140
+ success: Funkcja została pomyślnie utworzona.
141
+ destroy:
142
+ error: Podczas niszczenia tej funkcji wystąpił błąd.
143
+ success: Funkcja została usunięta.
144
+ edit:
145
+ title: Edytuj funkcję
146
+ update: Aktualizacja
147
+ form:
148
+ default_step_settings: Domyślne ustawienia kroku
149
+ global_settings: Ustawienia ogólne
150
+ step_settings: Ustawienia kroku
151
+ index:
152
+ add: Dodaj funkcję
153
+ headers:
154
+ actions: działania
155
+ name: Nazwa funkcji
156
+ type: Typ obiektu
157
+ new:
158
+ add: Dodaj funkcję
159
+ title: 'Dodaj funkcję: %{name}'
160
+ publish:
161
+ success: Funkcja została pomyślnie opublikowana.
162
+ title: cechy
163
+ unpublish:
164
+ success: Funkcja została pomyślnie niepublikowana.
165
+ update:
166
+ error: Podczas aktualizowania tej funkcji wystąpił błąd.
167
+ success: Funkcja została zaktualizowana pomyślnie.
168
+ managed_users:
169
+ close_session:
170
+ error: Podczas zamykania bieżącej sesji personifikacji wystąpił błąd.
171
+ success: Obecna sesja personifikacji została pomyślnie zakończona.
172
+ create:
173
+ error: Podczas tworzenia użytkownika zarządzanego wystąpił błąd.
174
+ success: Zarządzany użytkownik został pomyślnie utworzony.
175
+ form:
176
+ name: Nazwa
177
+ impersonate:
178
+ error: Wystąpił błąd podczas podszywania się do zarządzanego użytkownika.
179
+ impersonations:
180
+ new:
181
+ impersonate: Podszywać się
182
+ new_managed_user_impersonation: Nowa udana personifikacja użytkowników
183
+ index:
184
+ impersonate: Podszywać się
185
+ needs_authoriation_warning: Do tej organizacji potrzebna jest co najmniej jedna autoryzacja.
186
+ promote: Promować
187
+ view_logs: Wyświetl dzienniki
188
+ new:
189
+ create: Utwórz
190
+ new_managed_user: Nowy użytkownik zarządzany
191
+ select_authorization_method: Wybierz metodę autoryzacji
192
+ step: Krok %{current} z %{total}
193
+ promotion:
194
+ error: Podczas promowania zarządzanego użytkownika wystąpił błąd.
195
+ success: Zarządzany użytkownik został pomyślnie awansowany.
196
+ promotions:
197
+ new:
198
+ explanation: Zarządzani użytkownicy mogą być promowani do standardowych użytkowników. Oznacza to, że zostaną zaproszeni do udziału w aplikacji i nie będą mogli podszywać się pod inne osoby. Zaproszony użytkownik otrzyma wiadomość e-mail, aby zaakceptować zaproszenie.
199
+ new_managed_user_promotion: Nowa zarządzana promocja użytkowników
200
+ promote: Promować
201
+ menu:
202
+ admins: Administratorzy
203
+ dashboard: Deska rozdzielcza
204
+ managed_users: Zarządzane użytkownicy
205
+ newsletters: Biuletyny
206
+ scope_types: Typy zakresów
207
+ scopes: Zakresy
208
+ settings: Ustawienia
209
+ static_pages: Strony
210
+ user_groups: Grupy użytkowników
211
+ users: Użytkownicy
212
+ models:
213
+ attachment:
214
+ fields:
215
+ content_type: Rodzaj
216
+ title: Tytuł
217
+ name: Załącznik
218
+ category:
219
+ name: Kategoria
220
+ impersonation_log:
221
+ fields:
222
+ admin: Admin
223
+ ended_at: Zakończył się w
224
+ expired_at: Wygasła w dniu
225
+ started_at: Zaczęło się od
226
+ user: Użytkownik
227
+ managed_user:
228
+ name: Zarządzany użytkownik
229
+ newsletter:
230
+ fields:
231
+ created_at: Utworzono w
232
+ progress: Postęp
233
+ sent_at: Wysłano w
234
+ subject: Przedmiot
235
+ name: Biuletyn
236
+ scope:
237
+ fields:
238
+ name: Nazwa
239
+ scope_type: Typ zakresu
240
+ scope_type:
241
+ fields:
242
+ name: Nazwa
243
+ plural: Liczba mnoga
244
+ static_page:
245
+ fields:
246
+ created_at: Utworzono w
247
+ title: Tytuł
248
+ user:
249
+ fields:
250
+ created_at: Data utworzenia
251
+ email: E-mail
252
+ last_sign_in_at: Ostatni dzień rejestracji
253
+ name: Nazwa
254
+ role: Rola
255
+ roles:
256
+ admin: Admin
257
+ user_manager: Menedżer użytkowników
258
+ name: Użytkownik
259
+ user_group:
260
+ fields:
261
+ actions: działania
262
+ created_at: Utworzono w
263
+ document_number: Numer dokumentu
264
+ name: Nazwa
265
+ phone: Telefon
266
+ state: Stan
267
+ users_count: Liczą się użytkownicy
268
+ moderations:
269
+ index:
270
+ title: Modernizacje
271
+ report:
272
+ reasons:
273
+ does_not_belong: Nie należy
274
+ offensive: Ofensywa
275
+ spam: Spam
276
+ newsletters:
277
+ create:
278
+ error: Podczas tworzenia biuletynu wystąpił błąd.
279
+ success: Powstał pomyślnie biuletyn. Prosimy o sprawdzenie jej przed wysłaniem.
280
+ deliver:
281
+ error: Podczas dostarczania tego biuletynu wystąpił błąd.
282
+ success: Newsletter został dostarczony z powodzeniem.
283
+ destroy:
284
+ error_already_sent: 'Nie można zniszczyć biuletynu: został już wysłany.'
285
+ success: Newsletter został zniszczony.
286
+ edit:
287
+ save_and_preview: Zapisz i podgląd
288
+ title: Edytuj biuletyn
289
+ form:
290
+ interpolations_hint: 'Wskazówka: w dowolnym miejscu ciała lub tematu możesz użyć "%{name}" i zostanie zastąpiona nazwą odbiorcy.'
291
+ index:
292
+ confirm_delete: Czy na pewno chcesz usunąć ten biuletyn?
293
+ title: Biuletyny
294
+ new:
295
+ save: Zapisać
296
+ title: Nowy biuletyn
297
+ show:
298
+ confirm_deliver: Czy na pewno chcesz dostarczyć ten biuletyn? Nie można cofnąć tej czynności.
299
+ deliver: Dostarcz biuletyn
300
+ preview: Zapowiedź
301
+ subject: Przedmiot
302
+ update:
303
+ error: Podczas aktualizowania tego biuletynu wystąpił błąd.
304
+ success: Biuletyn został zaktualizowany. Przeczytaj ją przed wysłaniem.
305
+ organization:
306
+ edit:
307
+ title: Edytuj organizację
308
+ update: Aktualizacja
309
+ form:
310
+ current_image: Aktualny obraz
311
+ facebook: Facebook
312
+ github: GitHub
313
+ header_snippets_help: Użyj tego pola, aby dodać elementy do głowicy HTML. Najczęstszym sposobem jest zintegrowanie usług innych firm, które wymagają dodatkowego kodu JavaScript lub CSS. Można również użyć go do dodawania dodatkowych znaczników meta do HTML. Należy zauważyć, że będzie to widoczne tylko na stronach publicznych, a nie w sekcji administracyjnej.
314
+ instagram: Instagram
315
+ social_handlers: Społeczny
316
+ twitter: Świergot
317
+ url: Url
318
+ youtube: Youtube
319
+ update:
320
+ error: Podczas aktualizowania tej organizacji wystąpił błąd.
321
+ success: Organizacja została zaktualizowana.
322
+ scope_types:
323
+ create:
324
+ error: Podczas tworzenia nowego typu zakresu wystąpił błąd.
325
+ success: Typ zakresu został pomyślnie utworzony.
326
+ destroy:
327
+ success: Typ dziedziny został pomyślnie zniszczony
328
+ edit:
329
+ title: Edytuj typ zakresu
330
+ update: Aktualizacja
331
+ new:
332
+ create: Utwórz typ zakresu
333
+ title: Nowy zakres
334
+ update:
335
+ error: Podczas aktualizowania tego typu zakresu wystąpił błąd.
336
+ success: Typ zakresu został zaktualizowany
337
+ scopes:
338
+ create:
339
+ error: Podczas tworzenia nowego zakresu wystąpił błąd.
340
+ success: Zakres został pomyślnie utworzony.
341
+ destroy:
342
+ success: Zakres został z powodzeniem zniszczony
343
+ edit:
344
+ title: Edytuj zakres
345
+ update: Aktualizacja
346
+ new:
347
+ create: Utwórz zakres
348
+ title: Nowy zakres
349
+ no_scopes: Brak zakresów na tym poziomie.
350
+ update:
351
+ error: Podczas aktualizowania tego zakresu wystąpił błąd.
352
+ success: Zakres został zaktualizowany
353
+ static_pages:
354
+ actions:
355
+ view: Wyświetl stronę publiczną
356
+ create:
357
+ error: Podczas tworzenia nowej strony wystąpił błąd.
358
+ success: Strona została utworzona pomyślnie.
359
+ destroy:
360
+ success: Strona została z powodzeniem zniszczona
361
+ edit:
362
+ title: Edytuj stronę
363
+ update: Aktualizacja
364
+ new:
365
+ create: Nowy
366
+ title: Nowa strona
367
+ update:
368
+ error: Podczas aktualizowania tej strony wystąpił błąd.
369
+ success: Strona została zaktualizowana
370
+ titles:
371
+ dashboard: Deska rozdzielcza
372
+ impersonations: Impersonaty
373
+ managed_users: Zarządzane użytkownicy
374
+ scope_types: Typy zakresów
375
+ scopes: Zakresy
376
+ static_pages: Strony
377
+ user_groups: Grupy użytkowników
378
+ users: Użytkownicy
379
+ user_group:
380
+ reject:
381
+ invalid: Podczas odrzucania tej grupy użytkowników wystąpił błąd.
382
+ success: Grupa użytkowników została odrzucona
383
+ verify:
384
+ invalid: Podczas weryfikacji tej grupy użytkowników wystąpił błąd.
385
+ success: Grupa użytkowników została zweryfikowana
386
+ user_groups:
387
+ index:
388
+ filter:
389
+ all: Wszystko
390
+ pending: W oczekiwaniu
391
+ rejected: Odrzucone
392
+ verified: Zweryfikowano
393
+ filter_by: Filtruj według
394
+ search: Szukanie
395
+ state:
396
+ pending: W oczekiwaniu
397
+ rejected: Odrzucone
398
+ verified: Zweryfikowano
399
+ users:
400
+ create:
401
+ error: Podczas zapraszania tego użytkownika wystąpił błąd.
402
+ success: Użytkownik zaprosił Cię z powodzeniem.
403
+ destroy:
404
+ error: Podczas próby usunięcia tego użytkownika wystąpił błąd.
405
+ success: Użytkownik nie jest już administratorem.
406
+ form:
407
+ email: E-mail
408
+ name: Nazwa
409
+ role: Rola
410
+ new:
411
+ create: Zapraszam
412
+ title: Zaproś użytkownika jako administratora
413
+ moderations:
414
+ actions:
415
+ hidden: Ukryty
416
+ hide: Ukryć
417
+ not_hidden: Nie ukryty
418
+ title: działania
419
+ unreport: Brak oceny
420
+ admin:
421
+ reportable:
422
+ hide:
423
+ invalid: Wystąpił problem z ukryciem zasobu.
424
+ success: Zasób został ukryty.
425
+ unreport:
426
+ invalid: Wystąpił problem z niewykorzystaniem zasobów.
427
+ success: Zasób został pomyślnie nieudokumentowany.
428
+ models:
429
+ moderation:
430
+ fields:
431
+ hidden_at: Ukryte w
432
+ report_count: Liczyć
433
+ reportable: Zgłoszone
434
+ reported_content_url: Zgłoszony URL treści
435
+ reports: Raporty
436
+ errors:
437
+ messages:
438
+ invalid_json: Nieprawidłowy JSON
439
+ layouts:
440
+ decidim:
441
+ admin:
442
+ newsletters:
443
+ title: Biuletyny
444
+ settings:
445
+ title: Ustawienia
446
+ users:
447
+ title: Użytkownicy
448
+ time:
449
+ formats:
450
+ datepicker: "%m / %d / %Y"
451
+ timepicker: "%m / %d / %Y %H:%M"