decidim-admin 0.8.4 → 0.9.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.
- checksums.yaml +5 -5
- data/README.md +1 -1
- data/app/assets/javascripts/decidim/admin/application.js.es6 +5 -2
- data/app/assets/stylesheets/decidim/admin/_decidim.scss +2 -5
- data/app/assets/stylesheets/decidim/admin/extra/_action-icon.scss +4 -4
- data/app/assets/stylesheets/decidim/admin/extra/_cards.scss +3 -2
- data/app/assets/stylesheets/decidim/admin/extra/_categories.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_dropdown_inverted.scss +8 -1
- data/app/assets/stylesheets/decidim/admin/extra/_label-required.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_login.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/extra/_quill.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/extra/_select_multiple.scss +1 -1
- data/app/assets/stylesheets/decidim/admin/extra/_sort.scss +5 -4
- data/app/assets/stylesheets/decidim/admin/extra/_title_bar.scss +17 -7
- data/app/assets/stylesheets/decidim/admin/modules/_action-icon.scss +2 -2
- data/app/assets/stylesheets/decidim/admin/modules/_buttons.scss +6 -2
- data/app/assets/stylesheets/decidim/admin/modules/_callouts.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/modules/_cards.scss +12 -0
- data/app/assets/stylesheets/decidim/admin/modules/_char-counter.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/modules/_forms.scss +5 -1
- data/app/assets/stylesheets/decidim/admin/modules/_icons.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_layout.scss +9 -1
- data/app/assets/stylesheets/decidim/admin/modules/_main-nav.scss +5 -0
- data/app/assets/stylesheets/decidim/admin/modules/_process-header.scss +1 -0
- data/app/assets/stylesheets/decidim/admin/modules/_secondary-nav.scss +10 -5
- data/app/assets/stylesheets/decidim/admin/modules/_table-list.scss +7 -1
- data/app/assets/stylesheets/decidim/admin/modules/_tabs.scss +7 -0
- data/app/assets/stylesheets/decidim/admin/modules/_title-bar.scss +3 -0
- data/app/assets/stylesheets/decidim/admin/modules/_user-login.scss +2 -0
- data/app/assets/stylesheets/decidim/admin/plugins/_foundation-datepicker.scss +36 -36
- data/app/assets/stylesheets/decidim/admin/utils/_fontface.scss +22 -20
- data/app/assets/stylesheets/decidim/admin/utils/_helpers.scss +6 -6
- data/app/assets/stylesheets/decidim/admin/utils/_keyframes.scss +6 -6
- data/app/assets/stylesheets/decidim/admin/utils/_mixins.scss +2 -3
- data/app/assets/stylesheets/decidim/admin/utils/_settings.scss +406 -129
- data/app/assets/stylesheets/decidim/admin/utils/_toggle-expand.scss +1 -0
- data/app/commands/decidim/admin/create_attachment.rb +13 -3
- data/app/commands/decidim/admin/create_feature.rb +1 -0
- data/app/commands/decidim/admin/create_managed_user.rb +20 -10
- data/app/commands/decidim/admin/impersonate_managed_user.rb +7 -9
- data/app/commands/decidim/admin/officialize_user.rb +47 -0
- data/app/commands/decidim/admin/unofficialize_user.rb +35 -0
- data/app/commands/decidim/admin/update_organization_appearance.rb +32 -5
- data/app/controllers/decidim/admin/categories_controller.rb +1 -1
- data/app/controllers/decidim/admin/features/base_controller.rb +1 -1
- data/app/controllers/decidim/admin/features_controller.rb +7 -0
- data/app/controllers/decidim/admin/managed_users/impersonations_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users_controller.rb +23 -9
- data/app/controllers/decidim/admin/newsletters_controller.rb +2 -2
- data/app/controllers/decidim/admin/officializations_controller.rb +64 -0
- data/app/events/decidim/attachment_created_event.rb +25 -0
- data/app/events/decidim/feature_published_event.rb +27 -0
- data/app/events/decidim/participatory_process_step_activated_event.rb +31 -0
- data/app/forms/decidim/admin/managed_user_form.rb +0 -11
- data/app/forms/decidim/admin/officialization_form.rb +30 -0
- data/app/forms/decidim/admin/organization_appearance_form.rb +46 -1
- data/app/helpers/decidim/admin/application_helper.rb +1 -3
- data/app/models/decidim/admin/abilities/admin_ability.rb +1 -0
- data/app/models/decidim/admin/abilities/participatory_process_moderator_ability.rb +1 -1
- data/app/queries/decidim/admin/user_groups_evaluation.rb +9 -8
- data/app/queries/decidim/admin/users_officialization.rb +53 -0
- data/app/views/decidim/admin/managed_users/new.html.erb +5 -5
- data/app/views/decidim/admin/officializations/index.html.erb +82 -0
- data/app/views/decidim/admin/officializations/new.html.erb +18 -0
- data/app/views/decidim/admin/organization_appearance/_form.html.erb +60 -0
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +1 -1
- data/app/views/layouts/decidim/admin/users.html.erb +5 -0
- data/config/locales/ca.yml +44 -2
- data/config/locales/en.yml +44 -1
- data/config/locales/es.yml +47 -5
- data/config/locales/eu.yml +46 -3
- data/config/locales/fi.yml +55 -12
- data/config/locales/fr.yml +45 -2
- data/config/locales/gl.yml +514 -0
- data/config/locales/it.yml +47 -4
- data/config/locales/nl.yml +47 -4
- data/config/locales/pl.yml +44 -1
- data/config/locales/pt-BR.yml +514 -0
- data/config/locales/pt.yml +106 -63
- data/config/locales/ru.yml +36 -6
- data/config/locales/sv.yml +514 -0
- data/config/locales/uk.yml +36 -8
- data/config/routes.rb +2 -0
- data/db/migrate/20171219154507_add_officialization_to_users.rb +10 -0
- data/lib/decidim/admin/engine.rb +1 -2
- data/lib/decidim/admin/test/manage_feature_permissions_examples.rb +0 -1
- data/lib/decidim/admin/test/manage_moderations_examples.rb +64 -0
- data/lib/decidim/admin/test.rb +5 -0
- data/lib/decidim/admin/version.rb +1 -1
- data/vendor/assets/javascripts/moment.min.js +1 -7
- metadata +37 -38
- data/app/assets/javascripts/decidim/admin/scopes.js.es6 +0 -20
- data/app/assets/javascripts/decidim/admin/select2.js.es6 +0 -8
- data/app/assets/stylesheets/decidim/admin/plugins/_select2.scss +0 -27
data/config/locales/it.yml
CHANGED
@@ -24,13 +24,24 @@ it:
|
|
24
24
|
cta_button_path: Percorso del pulsante di Appello all'azione
|
25
25
|
cta_button_text: Percorso del pulsante di Appello all'azione
|
26
26
|
description: Descrizione
|
27
|
+
enable_omnipresent_banner: Mostra banner onnipresente
|
27
28
|
favicon: Icona
|
28
29
|
header_snippets: Frammenti dell'intestazione
|
30
|
+
highlighted_content_banner_action_subtitle: Sottotitolo del pulsante di azione
|
31
|
+
highlighted_content_banner_action_title: Titolo del pulsante di azione
|
32
|
+
highlighted_content_banner_action_url: URL del pulsante di azione
|
33
|
+
highlighted_content_banner_enabled: Mostra il banner dei contenuti evidenziato
|
34
|
+
highlighted_content_banner_image: Immagine
|
35
|
+
highlighted_content_banner_short_description: Breve descrizione
|
36
|
+
highlighted_content_banner_title: Titolo
|
29
37
|
homepage_image: Immagine per la Homepage
|
30
38
|
logo: Logo
|
31
39
|
official_img_footer: Logo ufficiale nel piè di pagina
|
32
40
|
official_img_header: Logo ufficiale nell'intestazione
|
33
41
|
official_url: URL dell'organizzazione ufficiale
|
42
|
+
omnipresent_banner_short_description: Breve descrizione
|
43
|
+
omnipresent_banner_title: Titolo
|
44
|
+
omnipresent_banner_url: URL
|
34
45
|
show_statistics: Mostrare le statistiche
|
35
46
|
welcome_text: Testo di Benvenuto
|
36
47
|
scope:
|
@@ -83,7 +94,7 @@ it:
|
|
83
94
|
title: Titolo
|
84
95
|
date:
|
85
96
|
formats:
|
86
|
-
datepicker: "%m
|
97
|
+
datepicker: "%m/%d/%Y"
|
87
98
|
decidim:
|
88
99
|
admin:
|
89
100
|
actions:
|
@@ -197,6 +208,7 @@ it:
|
|
197
208
|
new:
|
198
209
|
create: Crea
|
199
210
|
new_managed_user: Nuovo utente gestito
|
211
|
+
no_authorization_handlers: Non ci sono gestori di autorizzazioni disponibili per la gestione degli utenti. Si prega di contattare l'amministratore di sistema.
|
200
212
|
select_authorization_method: Selezionare un metodo di autorizzazione
|
201
213
|
step: Fase %{current} di %{total}
|
202
214
|
promotion:
|
@@ -214,6 +226,7 @@ it:
|
|
214
226
|
dashboard: Cruscotto (Dashboard)
|
215
227
|
managed_users: Utenti gestiti
|
216
228
|
newsletters: Newsletters
|
229
|
+
officializations: Officializations
|
217
230
|
scope_types: Tipi di ambito
|
218
231
|
scopes: Visibilità/ambito (Scopes)
|
219
232
|
settings: Impostazioni
|
@@ -313,6 +326,33 @@ it:
|
|
313
326
|
update:
|
314
327
|
error: Si è verificato un errore durante l'aggiornamento di questa newsletter.
|
315
328
|
success: OK, la Newsletter è stata aggiornata. Conviene controllarla prima di inviarla.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: Utente ufficializzato con successo
|
332
|
+
destroy:
|
333
|
+
success: Utente non ufficiale con successo
|
334
|
+
index:
|
335
|
+
actions: Azioni
|
336
|
+
badge: Distintivo
|
337
|
+
created_at: Creato a
|
338
|
+
filter:
|
339
|
+
all: Tutti
|
340
|
+
not_officialized: Non ufficializzato
|
341
|
+
officialized: ufficializzato
|
342
|
+
filter_by: Filtra per
|
343
|
+
name: Nome
|
344
|
+
nickname: soprannome
|
345
|
+
not_officialized: Non ufficializzato
|
346
|
+
officialize: ufficializzare
|
347
|
+
officialized: ufficializzato
|
348
|
+
reofficialize: Reofficialize
|
349
|
+
search: Ricerca
|
350
|
+
status: Stato
|
351
|
+
unofficialize: Unofficialize
|
352
|
+
new:
|
353
|
+
badge: Distintivo di ufficializzazione
|
354
|
+
officialize: ufficializzare
|
355
|
+
title: Utente ufficiale "%{name}"
|
316
356
|
organization:
|
317
357
|
edit:
|
318
358
|
title: Modifica l'organizzazione
|
@@ -336,7 +376,9 @@ it:
|
|
336
376
|
cta_button_text_help: Puoi sovrascrivere il testo del pulsante Chiamata a azione nella home page per ogni lingua disponibile nell'organizzazione. Se non è impostato, verrà utilizzato il valore predefinito. Il pulsante Chiamata all'azione è mostrato nella homepage tra il testo di benvenuto e la descrizione.
|
337
377
|
header_snippets_help: Utilizza questo campo per aggiungere le cose alla testa HTML. L'uso più comune è quello di integrare i servizi di terze parti che richiedono JavaScript o CSS extra. Inoltre, è possibile utilizzarlo per aggiungere meta tag extra all'HTML. Tieni presente che questo sarà reso solo nelle pagine pubbliche, non nella sezione admin.
|
338
378
|
homepage_appearance_title: Modifica l'aspetto della home page
|
379
|
+
homepage_highlighted_content_banner_title: Banner con contenuti Highligted
|
339
380
|
layout_appearance_title: Modifica aspetto del layout
|
381
|
+
omnipresent_banner_appearance_title: Modifica onnipresente
|
340
382
|
scope_types:
|
341
383
|
create:
|
342
384
|
error: Si è verificato un errore durante la creazione di un nuovo tipo di ambito.
|
@@ -380,7 +422,7 @@ it:
|
|
380
422
|
title: Modifica la pagina
|
381
423
|
update: Aggiorna
|
382
424
|
new:
|
383
|
-
create:
|
425
|
+
create: Creare
|
384
426
|
title: Nuova pagina
|
385
427
|
update:
|
386
428
|
error: Si è verificato un errore durante l'aggiornamento di questa pagina.
|
@@ -390,6 +432,7 @@ it:
|
|
390
432
|
dashboard: Cruscotto (Dashboard)
|
391
433
|
impersonations: impersonations
|
392
434
|
managed_users: Utenti gestiti
|
435
|
+
officializations: Officializations
|
393
436
|
scope_types: Tipi di ambito
|
394
437
|
scopes: Ambiti
|
395
438
|
static_pages: Pagine
|
@@ -467,5 +510,5 @@ it:
|
|
467
510
|
title: Utenti
|
468
511
|
time:
|
469
512
|
formats:
|
470
|
-
datepicker: "%m
|
471
|
-
timepicker: "%m
|
513
|
+
datepicker: "%m/%d/%Y"
|
514
|
+
timepicker: "%m/%d/%Y %H:%M"
|
data/config/locales/nl.yml
CHANGED
@@ -12,7 +12,7 @@ nl:
|
|
12
12
|
feature:
|
13
13
|
name: Naam
|
14
14
|
weight: Gewicht
|
15
|
-
id: ID
|
15
|
+
id: ID
|
16
16
|
newsletter:
|
17
17
|
body: Body
|
18
18
|
subject: Onderwerp
|
@@ -24,13 +24,24 @@ nl:
|
|
24
24
|
cta_button_path: Call to Action knop pad
|
25
25
|
cta_button_text: Oproep naar actie knop tekst
|
26
26
|
description: Beschrijving
|
27
|
+
enable_omnipresent_banner: Toon alomtegenwoordige banner
|
27
28
|
favicon: Icoon
|
28
29
|
header_snippets: Header snippets
|
30
|
+
highlighted_content_banner_action_subtitle: Actieknop ondertitel
|
31
|
+
highlighted_content_banner_action_title: Actieknop titel
|
32
|
+
highlighted_content_banner_action_url: Actieknop URL
|
33
|
+
highlighted_content_banner_enabled: Toon de gemarkeerde inhoudsbanner
|
34
|
+
highlighted_content_banner_image: Beeld
|
35
|
+
highlighted_content_banner_short_description: Korte beschrijving
|
36
|
+
highlighted_content_banner_title: Titel
|
29
37
|
homepage_image: Homepage afbeelding
|
30
38
|
logo: Logo
|
31
39
|
official_img_footer: Officiële logo voettekst
|
32
40
|
official_img_header: Officiële logo header
|
33
41
|
official_url: URL van de officiële organisatie
|
42
|
+
omnipresent_banner_short_description: Korte beschrijving
|
43
|
+
omnipresent_banner_title: Titel
|
44
|
+
omnipresent_banner_url: URL
|
34
45
|
show_statistics: Toon statistieken
|
35
46
|
welcome_text: Welkom tekst
|
36
47
|
scope:
|
@@ -83,7 +94,7 @@ nl:
|
|
83
94
|
title: Titel
|
84
95
|
date:
|
85
96
|
formats:
|
86
|
-
datepicker: "%m
|
97
|
+
datepicker: "%m/%d/%Y"
|
87
98
|
decidim:
|
88
99
|
admin:
|
89
100
|
actions:
|
@@ -197,6 +208,7 @@ nl:
|
|
197
208
|
new:
|
198
209
|
create: creëren
|
199
210
|
new_managed_user: Nieuwe beheerde gebruiker
|
211
|
+
no_authorization_handlers: Er zijn geen beschikbare autorisatiehandlers om gebruikers te beheren. Neem contact op met uw systeembeheerder.
|
200
212
|
select_authorization_method: Selecteer een autorisatie methode
|
201
213
|
step: Stap %{current} van %{total}
|
202
214
|
promotion:
|
@@ -214,6 +226,7 @@ nl:
|
|
214
226
|
dashboard: Dashboard
|
215
227
|
managed_users: Beheerde gebruikers
|
216
228
|
newsletters: Nieuwsbrieven
|
229
|
+
officializations: Officializations
|
217
230
|
scope_types: Scope types
|
218
231
|
scopes: Scopes
|
219
232
|
settings: Instellingen
|
@@ -313,6 +326,33 @@ nl:
|
|
313
326
|
update:
|
314
327
|
error: Er is een fout opgetreden bij het bijwerken van deze nieuwsbrief.
|
315
328
|
success: Nieuwsbrief is succesvol bijgewerkt. Controleer het voordat u verzendt.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: Gebruiker officieel gelukt
|
332
|
+
destroy:
|
333
|
+
success: Gebruiker nietofficieel succesvol
|
334
|
+
index:
|
335
|
+
actions: acties
|
336
|
+
badge: insigne
|
337
|
+
created_at: Gemaakt bij
|
338
|
+
filter:
|
339
|
+
all: Alle
|
340
|
+
not_officialized: Niet officieel
|
341
|
+
officialized: geofficialiseerd
|
342
|
+
filter_by: Filteren op
|
343
|
+
name: Naam
|
344
|
+
nickname: Bijnaam
|
345
|
+
not_officialized: Niet officieel
|
346
|
+
officialize: officialiseren
|
347
|
+
officialized: geofficialiseerd
|
348
|
+
reofficialize: Reofficialize
|
349
|
+
search: Zoeken
|
350
|
+
status: staat
|
351
|
+
unofficialize: Unofficialize
|
352
|
+
new:
|
353
|
+
badge: Officificatiebadge
|
354
|
+
officialize: officialiseren
|
355
|
+
title: Officiëren gebruiker "%{name}"
|
316
356
|
organization:
|
317
357
|
edit:
|
318
358
|
title: Organisatie bewerken
|
@@ -336,7 +376,9 @@ nl:
|
|
336
376
|
cta_button_text_help: U kunt de tekst voor "Call To Action" overschrijven op de homepage voor elke beschikbare taal in uw organisatie. Indien niet ingesteld, wordt de standaardwaarde gebruikt. De knop Call to Action wordt weergegeven op de homepage tussen de welkomsttekst en de omschrijving.
|
337
377
|
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.
|
338
378
|
homepage_appearance_title: Bewerk de startpagina-weergave
|
379
|
+
homepage_highlighted_content_banner_title: Highligted inhoudsbanner
|
339
380
|
layout_appearance_title: Weergave van de lay-out bewerken
|
381
|
+
omnipresent_banner_appearance_title: Bewerken alomtegenwoordig
|
340
382
|
scope_types:
|
341
383
|
create:
|
342
384
|
error: Er is een fout opgetreden bij het maken van een nieuwe scope type.
|
@@ -380,7 +422,7 @@ nl:
|
|
380
422
|
title: Pagina bewerken
|
381
423
|
update: Bijwerken
|
382
424
|
new:
|
383
|
-
create:
|
425
|
+
create: creëren
|
384
426
|
title: Nieuwe pagina
|
385
427
|
update:
|
386
428
|
error: Er is een fout opgetreden bij het bijwerken van deze pagina.
|
@@ -390,6 +432,7 @@ nl:
|
|
390
432
|
dashboard: Dashboard
|
391
433
|
impersonations: Nabootsingingen
|
392
434
|
managed_users: Beheerde gebruikers
|
435
|
+
officializations: Officializations
|
393
436
|
scope_types: Scope types
|
394
437
|
scopes: Scopes
|
395
438
|
static_pages: Pagina's
|
@@ -467,5 +510,5 @@ nl:
|
|
467
510
|
title: Gebruikers
|
468
511
|
time:
|
469
512
|
formats:
|
470
|
-
datepicker: "%m
|
513
|
+
datepicker: "%m/%d/%Y"
|
471
514
|
timepicker: "%d/%m/%Y %H:%M"
|
data/config/locales/pl.yml
CHANGED
@@ -24,13 +24,24 @@ pl:
|
|
24
24
|
cta_button_path: Ścieżka przycisku wezwania do działania
|
25
25
|
cta_button_text: Tekst przycisku przycisku wezwania do działania
|
26
26
|
description: Opis
|
27
|
+
enable_omnipresent_banner: Pokaż wszechobecny baner
|
27
28
|
favicon: Ikona
|
28
29
|
header_snippets: Fragmenty nagłówków
|
30
|
+
highlighted_content_banner_action_subtitle: Podtytuł przycisku czynności
|
31
|
+
highlighted_content_banner_action_title: Tytuł przycisku akcji
|
32
|
+
highlighted_content_banner_action_url: URL przycisku czynności
|
33
|
+
highlighted_content_banner_enabled: Pokaż podświetlony baner treści
|
34
|
+
highlighted_content_banner_image: Obraz
|
35
|
+
highlighted_content_banner_short_description: Krótki opis
|
36
|
+
highlighted_content_banner_title: Tytuł
|
29
37
|
homepage_image: Obraz strony głównej
|
30
38
|
logo: Logo
|
31
39
|
official_img_footer: Oficjalny stopka logo
|
32
40
|
official_img_header: Oficjalny nagłówek logo
|
33
41
|
official_url: Oficjalna witryna organizacji
|
42
|
+
omnipresent_banner_short_description: Krótki opis
|
43
|
+
omnipresent_banner_title: Tytuł
|
44
|
+
omnipresent_banner_url: URL
|
34
45
|
show_statistics: Pokaż statystyki
|
35
46
|
welcome_text: Tekst powitalny
|
36
47
|
scope:
|
@@ -197,6 +208,7 @@ pl:
|
|
197
208
|
new:
|
198
209
|
create: Utwórz
|
199
210
|
new_managed_user: Nowy użytkownik zarządzany
|
211
|
+
no_authorization_handlers: Nie ma dostępnych programów do obsługi upoważnień do zarządzania użytkownikami. Skontaktuj się z administratorem systemu.
|
200
212
|
select_authorization_method: Wybierz metodę autoryzacji
|
201
213
|
step: Krok %{current} z %{total}
|
202
214
|
promotion:
|
@@ -214,6 +226,7 @@ pl:
|
|
214
226
|
dashboard: Deska rozdzielcza
|
215
227
|
managed_users: Zarządzane użytkownicy
|
216
228
|
newsletters: Biuletyny
|
229
|
+
officializations: Oficjalizacje
|
217
230
|
scope_types: Typy zakresów
|
218
231
|
scopes: Zakresy
|
219
232
|
settings: Ustawienia
|
@@ -313,6 +326,33 @@ pl:
|
|
313
326
|
update:
|
314
327
|
error: Podczas aktualizowania tego biuletynu wystąpił błąd.
|
315
328
|
success: Biuletyn został zaktualizowany. Przeczytaj ją przed wysłaniem.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: Użytkownik oficjalnie z powodzeniem
|
332
|
+
destroy:
|
333
|
+
success: Użytkownik nieoficjalizowany pomyślnie
|
334
|
+
index:
|
335
|
+
actions: działania
|
336
|
+
badge: Odznaka
|
337
|
+
created_at: Utworzono w
|
338
|
+
filter:
|
339
|
+
all: Wszystko
|
340
|
+
not_officialized: Nie oficjalny
|
341
|
+
officialized: Oficjalny
|
342
|
+
filter_by: Filtruj według
|
343
|
+
name: Nazwa
|
344
|
+
nickname: Przezwisko
|
345
|
+
not_officialized: Nie oficjalny
|
346
|
+
officialize: Oficjalizuj
|
347
|
+
officialized: Oficjalny
|
348
|
+
reofficialize: Reofficialize
|
349
|
+
search: Szukaj
|
350
|
+
status: Status
|
351
|
+
unofficialize: Nieoficjalne
|
352
|
+
new:
|
353
|
+
badge: Odznaka oficjalności
|
354
|
+
officialize: Oficjalizuj
|
355
|
+
title: Oficjalizuj użytkownika "%{name}"
|
316
356
|
organization:
|
317
357
|
edit:
|
318
358
|
title: Edytuj organizację
|
@@ -336,7 +376,9 @@ pl:
|
|
336
376
|
cta_button_text_help: Można zastąpić tekst przycisku Żądanie do działania na stronie głównej dla każdego dostępnego języka w organizacji. Jeśli nie zostanie ustawiona, zostanie użyta wartość domyślna. Przycisk Zadzwoń do Działania zostanie wyświetlony na stronie głównej między tekstem powitalnym a opisem.
|
337
377
|
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.
|
338
378
|
homepage_appearance_title: Edytuj wygląd strony głównej
|
379
|
+
homepage_highlighted_content_banner_title: Baner treści o wysokim priorytecie
|
339
380
|
layout_appearance_title: Edytuj wygląd układu
|
381
|
+
omnipresent_banner_appearance_title: Edytuj wszechobecny
|
340
382
|
scope_types:
|
341
383
|
create:
|
342
384
|
error: Podczas tworzenia nowego typu zakresu wystąpił błąd.
|
@@ -380,7 +422,7 @@ pl:
|
|
380
422
|
title: Edytuj stronę
|
381
423
|
update: Aktualizacja
|
382
424
|
new:
|
383
|
-
create:
|
425
|
+
create: Stwórz
|
384
426
|
title: Nowa strona
|
385
427
|
update:
|
386
428
|
error: Podczas aktualizowania tej strony wystąpił błąd.
|
@@ -390,6 +432,7 @@ pl:
|
|
390
432
|
dashboard: Deska rozdzielcza
|
391
433
|
impersonations: Impersonaty
|
392
434
|
managed_users: Zarządzane użytkownicy
|
435
|
+
officializations: Oficjalizacje
|
393
436
|
scope_types: Typy zakresów
|
394
437
|
scopes: Zakresy
|
395
438
|
static_pages: Strony
|
@@ -0,0 +1,514 @@
|
|
1
|
+
pt-BR:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
attachment:
|
5
|
+
description: Descrição
|
6
|
+
file: Arquivo
|
7
|
+
title: Título
|
8
|
+
category:
|
9
|
+
description: Descrição
|
10
|
+
name: Nome
|
11
|
+
parent_id: Superior
|
12
|
+
feature:
|
13
|
+
name: Nome
|
14
|
+
weight: Peso
|
15
|
+
id: ID
|
16
|
+
newsletter:
|
17
|
+
body: Corpo
|
18
|
+
subject: Assunto
|
19
|
+
organization:
|
20
|
+
default_locale: Idioma por defeito
|
21
|
+
name: Nome
|
22
|
+
reference_prefix: Prefixo de referência
|
23
|
+
organization_appearance:
|
24
|
+
cta_button_path: Link do botão principal
|
25
|
+
cta_button_text: Texto do botão principal
|
26
|
+
description: Descrição
|
27
|
+
enable_omnipresent_banner: Mostrar bandeira omnipresente
|
28
|
+
favicon: Ícone
|
29
|
+
header_snippets: Snippets de cabeçalho
|
30
|
+
highlighted_content_banner_action_subtitle: Legenda do botão de ação
|
31
|
+
highlighted_content_banner_action_title: Título do botão Ação
|
32
|
+
highlighted_content_banner_action_url: URL do botão de ação
|
33
|
+
highlighted_content_banner_enabled: Mostrar o banner de conteúdo destacado
|
34
|
+
highlighted_content_banner_image: Imagem
|
35
|
+
highlighted_content_banner_short_description: Pequena descrição
|
36
|
+
highlighted_content_banner_title: Título
|
37
|
+
homepage_image: Imagem da página principal
|
38
|
+
logo: Logotipo
|
39
|
+
official_img_footer: Logotipo oficial no rodapé
|
40
|
+
official_img_header: Logotipo oficial no cabeçalho
|
41
|
+
official_url: URL oficial da organização
|
42
|
+
omnipresent_banner_short_description: Pequena descrição
|
43
|
+
omnipresent_banner_title: Título
|
44
|
+
omnipresent_banner_url: URL
|
45
|
+
show_statistics: Mostrar estatísticas
|
46
|
+
welcome_text: Texto de boas-vindas
|
47
|
+
scope:
|
48
|
+
code: Código
|
49
|
+
name: Nome
|
50
|
+
organization: Organização
|
51
|
+
scope_type: Tipo de âmbito
|
52
|
+
scope_type:
|
53
|
+
name: Nome
|
54
|
+
organization: Organização
|
55
|
+
plural: Plural
|
56
|
+
static_page:
|
57
|
+
content: Conteúdo
|
58
|
+
organization: Organização
|
59
|
+
slug: Texto curto de URL
|
60
|
+
title: Título
|
61
|
+
activerecord:
|
62
|
+
attributes:
|
63
|
+
decidim/participatory_process:
|
64
|
+
banner_image: Imagem do banner
|
65
|
+
description: Descrição
|
66
|
+
developer_group: Grupo de desenvolvedores
|
67
|
+
domain: Domínio
|
68
|
+
end_date: Data de fim
|
69
|
+
hashtag: Hashtag
|
70
|
+
hero_image: Imagem da página principal
|
71
|
+
local_area: Área municipal
|
72
|
+
meta_scope: Metadados do âmbito
|
73
|
+
participatory_scope: Âmbito participativo
|
74
|
+
participatory_structure: Estrutura participativa
|
75
|
+
promoted: Destacado
|
76
|
+
scope: Âmbito
|
77
|
+
short_description: Breve descrição
|
78
|
+
slug: Texto curto de URL
|
79
|
+
start_date: Data de início
|
80
|
+
subtitle: Subtítulo
|
81
|
+
target: Público alvo
|
82
|
+
title: Título
|
83
|
+
decidim/participatory_process_group:
|
84
|
+
description: Descrição
|
85
|
+
hero_image: Imagem inicial
|
86
|
+
name: Nome
|
87
|
+
participatory_processes: Processos participativos
|
88
|
+
decidim/participatory_process_step:
|
89
|
+
end_date: Data final
|
90
|
+
start_date: Data de início
|
91
|
+
decidim/static_page:
|
92
|
+
content: Conteúdo
|
93
|
+
slug: Texto curto de URL
|
94
|
+
title: Título
|
95
|
+
date:
|
96
|
+
formats:
|
97
|
+
datepicker: "%d/%m/%Y"
|
98
|
+
decidim:
|
99
|
+
admin:
|
100
|
+
actions:
|
101
|
+
add: Adicionar
|
102
|
+
browse: Explorar
|
103
|
+
export: Exportar
|
104
|
+
manage: Gerir
|
105
|
+
permissions: Permissões
|
106
|
+
reject: Rejeitar
|
107
|
+
verify: Verificar
|
108
|
+
attachments:
|
109
|
+
create:
|
110
|
+
error: Ocorreu um erro ao criar um novo anexo.
|
111
|
+
success: Anexo criado com sucesso.
|
112
|
+
destroy:
|
113
|
+
success: Anexo apagado com sucesso.
|
114
|
+
edit:
|
115
|
+
title: Editar anexo
|
116
|
+
update: Actualizar
|
117
|
+
index:
|
118
|
+
attachments_title: Anexos
|
119
|
+
new:
|
120
|
+
create: Criar anexo
|
121
|
+
title: Novo anexo
|
122
|
+
update:
|
123
|
+
error: Ocorreu um erro ao atualizar este anexo.
|
124
|
+
success: Anexo atualizado com sucesso.
|
125
|
+
categories:
|
126
|
+
create:
|
127
|
+
error: Ocorreu um erro ao criar esta categoria.
|
128
|
+
success: Categoria criada com sucesso.
|
129
|
+
destroy:
|
130
|
+
error: Ocorreu um erro ao apagar esta categoria. Por favor apague qualquer subcategoria primeiro, certifique-se de que nenhuma outra entidade pertence a esta categoria e tente novamente.
|
131
|
+
success: Categoria apagada com sucesso.
|
132
|
+
edit:
|
133
|
+
title: Editar categoria
|
134
|
+
update: Atualizar
|
135
|
+
index:
|
136
|
+
categories_title: Categorias
|
137
|
+
category_used: Esta categoria não pode ser apagada porque está a ser usada.
|
138
|
+
new:
|
139
|
+
create: Criar categoria
|
140
|
+
title: Nova categoria
|
141
|
+
update:
|
142
|
+
error: Ocorreu um erro ao atualizar esta categoria.
|
143
|
+
success: Categoria atualizada com sucesso.
|
144
|
+
dashboard:
|
145
|
+
show:
|
146
|
+
welcome: Bem-vindo ao Decidim Admin Panel.
|
147
|
+
exports:
|
148
|
+
export_as: "%{name} como %{export_format}"
|
149
|
+
notice: Sua exportação está atualmente em andamento. Você receberá um e-mail quando estiver completo.
|
150
|
+
feature_permissions:
|
151
|
+
edit:
|
152
|
+
everyone: Todos
|
153
|
+
submit: Guardar permissões
|
154
|
+
title: Editar permissões
|
155
|
+
update:
|
156
|
+
success: Permissões atualizadas com sucesso.
|
157
|
+
features:
|
158
|
+
create:
|
159
|
+
error: Ocorreu um erro na criação da funcionalidade.
|
160
|
+
success: Recurso criado com sucesso.
|
161
|
+
destroy:
|
162
|
+
error: Ocorreu um erro ao apagar esse recurso.
|
163
|
+
success: Recurso apagado com sucesso.
|
164
|
+
edit:
|
165
|
+
title: Editar funcionalidade
|
166
|
+
update: Atualizar
|
167
|
+
form:
|
168
|
+
default_step_settings: Configurações por defeito
|
169
|
+
global_settings: Configurações globais
|
170
|
+
step_settings: Configurações de etapa
|
171
|
+
index:
|
172
|
+
add: Adicionar funcionalidade
|
173
|
+
headers:
|
174
|
+
actions: Ações
|
175
|
+
name: Nome da funcionalidade
|
176
|
+
type: Tipo de funcionalidade
|
177
|
+
new:
|
178
|
+
add: Adicionar funcionalidade
|
179
|
+
title: 'Adicionar funcionalidade: %{name}'
|
180
|
+
publish:
|
181
|
+
success: A funcionalidade foi publicada com sucesso.
|
182
|
+
title: Funcionalidades
|
183
|
+
unpublish:
|
184
|
+
success: A funcionalidade foi despublicada com sucesso.
|
185
|
+
update:
|
186
|
+
error: Ocorreu um erro ao atualizar essa funcionalidade.
|
187
|
+
success: A funcionalidade foi atualizada com sucesso.
|
188
|
+
managed_users:
|
189
|
+
close_session:
|
190
|
+
error: Ocorreu um erro ao encerrar a sessão de representação atual.
|
191
|
+
success: A sessão de representação atual foi concluída com sucesso.
|
192
|
+
create:
|
193
|
+
error: Ocorreu um erro ao criar o usuário gerenciado.
|
194
|
+
success: O usuário gerenciado foi criado com sucesso.
|
195
|
+
form:
|
196
|
+
name: Nome
|
197
|
+
impersonate:
|
198
|
+
error: Ocorreu um erro ao personificar o usuário gerenciado.
|
199
|
+
impersonations:
|
200
|
+
new:
|
201
|
+
impersonate: Representar
|
202
|
+
new_managed_user_impersonation: Nova representação de usuários gerenciados
|
203
|
+
index:
|
204
|
+
impersonate: Representar
|
205
|
+
needs_authoriation_warning: Você precisa de pelo menos uma autorização habilitada para esta organização.
|
206
|
+
promote: Destacar
|
207
|
+
view_logs: Ver registros
|
208
|
+
new:
|
209
|
+
create: Criar
|
210
|
+
new_managed_user: Novo usuário gerenciado
|
211
|
+
no_authorization_handlers: Não há manipuladores de autorização disponíveis para gerenciar usuários. Entre em contato com o administrador do sistema.
|
212
|
+
select_authorization_method: Selecione um método de autorização
|
213
|
+
step: Passo %{current} de %{total}
|
214
|
+
promotion:
|
215
|
+
error: Ocorreu um erro ao promover o usuário gerenciado.
|
216
|
+
success: O usuário gerenciado foi promovido com sucesso.
|
217
|
+
promotions:
|
218
|
+
new:
|
219
|
+
explanation: Os usuários gerenciados podem ser promovidos para usuários padrão. Isso significa que eles serão convidados para o aplicativo e você não poderá representá-los novamente. O usuário convidado receberá um e-mail para aceitar seu convite.
|
220
|
+
new_managed_user_promotion: Nova promoção de usuário gerenciado
|
221
|
+
promote: Destacar
|
222
|
+
menu:
|
223
|
+
admins: Administradores
|
224
|
+
appearance: Aparência
|
225
|
+
configuration: Configuração
|
226
|
+
dashboard: Painel de controlo
|
227
|
+
managed_users: Utilizadores geridos
|
228
|
+
newsletters: Boletins informativos
|
229
|
+
officializations: Oficializações
|
230
|
+
scope_types: Tipos de âmbito
|
231
|
+
scopes: Âmbitos
|
232
|
+
settings: Configurações
|
233
|
+
static_pages: Páginas
|
234
|
+
user_groups: Grupos de usuários
|
235
|
+
users: Utilizadores
|
236
|
+
models:
|
237
|
+
attachment:
|
238
|
+
fields:
|
239
|
+
content_type: Tipo
|
240
|
+
title: Título
|
241
|
+
name: Anexo
|
242
|
+
category:
|
243
|
+
name: Categoria
|
244
|
+
impersonation_log:
|
245
|
+
fields:
|
246
|
+
admin: Administrador
|
247
|
+
ended_at: Terminou em
|
248
|
+
expired_at: Expirou em
|
249
|
+
started_at: Começou em
|
250
|
+
user: Do utilizador
|
251
|
+
managed_user:
|
252
|
+
name: Usuário gerenciado
|
253
|
+
newsletter:
|
254
|
+
fields:
|
255
|
+
created_at: Criado em
|
256
|
+
progress: Progresso
|
257
|
+
sent_at: Enviado em
|
258
|
+
subject: Sujeito
|
259
|
+
name: Boletim de Notícias
|
260
|
+
scope:
|
261
|
+
fields:
|
262
|
+
name: Nome
|
263
|
+
scope_type: Tipo de âmbito
|
264
|
+
scope_type:
|
265
|
+
fields:
|
266
|
+
name: Nome
|
267
|
+
plural: Plural
|
268
|
+
static_page:
|
269
|
+
fields:
|
270
|
+
created_at: Criado em
|
271
|
+
title: Título
|
272
|
+
user:
|
273
|
+
fields:
|
274
|
+
created_at: Data de criação
|
275
|
+
email: O email
|
276
|
+
last_sign_in_at: Última data de início de sessão
|
277
|
+
name: Nome
|
278
|
+
role: Função
|
279
|
+
roles:
|
280
|
+
admin: Administrador
|
281
|
+
user_manager: Gerente de usuário
|
282
|
+
name: Do utilizador
|
283
|
+
user_group:
|
284
|
+
fields:
|
285
|
+
actions: Ações
|
286
|
+
created_at: Criado em
|
287
|
+
document_number: Número do documento
|
288
|
+
name: Nome
|
289
|
+
phone: telefone
|
290
|
+
state: Estado
|
291
|
+
users_count: Contagem de usuários
|
292
|
+
moderations:
|
293
|
+
index:
|
294
|
+
title: Moderação
|
295
|
+
report:
|
296
|
+
reasons:
|
297
|
+
does_not_belong: Não pertence
|
298
|
+
offensive: Ofensiva
|
299
|
+
spam: Spam
|
300
|
+
newsletters:
|
301
|
+
create:
|
302
|
+
error: Ocorreu um erro ao criar este boletim informativo.
|
303
|
+
success: Newsletter criada com sucesso. Por favor, reveja-o antes de enviar.
|
304
|
+
deliver:
|
305
|
+
error: Houve um erro na entrega deste boletim informativo.
|
306
|
+
success: Newsletter entregue com sucesso.
|
307
|
+
destroy:
|
308
|
+
error_already_sent: 'Não é possível destruir a newsletter: já foi enviada.'
|
309
|
+
success: Newsletter destruída com sucesso.
|
310
|
+
edit:
|
311
|
+
save_and_preview: Salvar e visualizar
|
312
|
+
title: Editar boletim
|
313
|
+
form:
|
314
|
+
interpolations_hint: 'Dica: você pode usar "%{name}" em qualquer parte do corpo ou assunto e será substituído pelo nome do destinatário.'
|
315
|
+
index:
|
316
|
+
confirm_delete: Tem certeza de que deseja excluir esta newsletter?
|
317
|
+
title: boletins informativos
|
318
|
+
new:
|
319
|
+
save: Salve
|
320
|
+
title: Novo boletim informativo
|
321
|
+
show:
|
322
|
+
confirm_deliver: Tem certeza de que deseja enviar este boletim informativo? Essa ação não pode ser desfeita.
|
323
|
+
deliver: Entregar boletim informativo
|
324
|
+
preview: Visualização
|
325
|
+
subject: Sujeito
|
326
|
+
update:
|
327
|
+
error: Ocorreu um erro ao atualizar este boletim informativo.
|
328
|
+
success: Newsletter atualizada com sucesso. Por favor, reveja-o antes de enviar.
|
329
|
+
officializations:
|
330
|
+
create:
|
331
|
+
success: Usuário oficializado com sucesso
|
332
|
+
destroy:
|
333
|
+
success: Usuário não oficializado com sucesso
|
334
|
+
index:
|
335
|
+
actions: Ações
|
336
|
+
badge: Distintivo
|
337
|
+
created_at: Criado em
|
338
|
+
filter:
|
339
|
+
all: Todos
|
340
|
+
not_officialized: Não oficializado
|
341
|
+
officialized: Oficializado
|
342
|
+
filter_by: Filtrar por
|
343
|
+
name: Nome
|
344
|
+
nickname: Apelido
|
345
|
+
not_officialized: Não oficializado
|
346
|
+
officialize: Oficialize
|
347
|
+
officialized: Oficializado
|
348
|
+
reofficialize: Reorientar
|
349
|
+
search: Pesquisa
|
350
|
+
status: Status
|
351
|
+
unofficialize: Não oficializar
|
352
|
+
new:
|
353
|
+
badge: Emblema de oficialização
|
354
|
+
officialize: Oficialize
|
355
|
+
title: Oficializar o usuário "%{name}"
|
356
|
+
organization:
|
357
|
+
edit:
|
358
|
+
title: Editar organização
|
359
|
+
update: Actualizar
|
360
|
+
form:
|
361
|
+
facebook: Facebook
|
362
|
+
github: GitHub
|
363
|
+
instagram: Instagram
|
364
|
+
social_handlers: Social
|
365
|
+
twitter: Twitter
|
366
|
+
url: Url
|
367
|
+
youtube: Youtube
|
368
|
+
update:
|
369
|
+
error: Ocorreu um erro ao atualizar essa organização.
|
370
|
+
success: Organização atualizada com sucesso.
|
371
|
+
organization_appearance:
|
372
|
+
edit:
|
373
|
+
update: Actualizar
|
374
|
+
form:
|
375
|
+
cta_button_path_help: 'Você pode substituir onde o botão Chamar para Ação na página inicial liga. Use caminhos parciais, não URLs completos aqui. Aceita letras, números, traços e barras, e deve começar com uma letra. O botão Chamar para Ação é exibido na página inicial entre o texto de boas-vindas e a descrição. Exemplo: %{url}'
|
376
|
+
cta_button_text_help: Você pode substituir o texto do botão Chamar para Ação na página inicial para cada idioma disponível em sua organização. Se não for definido, o valor padrão será usado. O botão Chamar para Ação é exibido na página inicial entre o texto de boas-vindas e a descrição.
|
377
|
+
header_snippets_help: Use este campo para adicionar coisas ao cabeçalho HTML. O uso mais comum é integrar serviços de terceiros que exigem algum JavaScript ou CSS extra. Além disso, você pode usá-lo para adicionar meta tags adicionais ao HTML. Observe que isso só será exibido em páginas públicas, não na seção de administração.
|
378
|
+
homepage_appearance_title: Editar a aparência da página inicial
|
379
|
+
homepage_highlighted_content_banner_title: Banner de conteúdo elevado
|
380
|
+
layout_appearance_title: Editar aparência do layout
|
381
|
+
omnipresent_banner_appearance_title: Editar omnipresente
|
382
|
+
scope_types:
|
383
|
+
create:
|
384
|
+
error: Ocorreu um erro ao criar um novo tipo de âmbito.
|
385
|
+
success: Tipo de âmbito criado com sucesso.
|
386
|
+
destroy:
|
387
|
+
success: Tipo de âmbito destruído com sucesso
|
388
|
+
edit:
|
389
|
+
title: Editar tipo de âmbito
|
390
|
+
update: Actualizar
|
391
|
+
new:
|
392
|
+
create: Criar tipo de âmbito
|
393
|
+
title: Novo âmbito
|
394
|
+
update:
|
395
|
+
error: Ocorreu um erro ao atualizar esse tipo de âmbito.
|
396
|
+
success: Tipo de âmbito atualizado com sucesso
|
397
|
+
scopes:
|
398
|
+
create:
|
399
|
+
error: Ocorreu um erro ao criar um novo âmbito.
|
400
|
+
success: Âmbito criado com sucesso.
|
401
|
+
destroy:
|
402
|
+
success: Âmbito destruído com sucesso
|
403
|
+
edit:
|
404
|
+
title: Editar o âmbito
|
405
|
+
update: Actualizar
|
406
|
+
new:
|
407
|
+
create: Criar âmbito
|
408
|
+
title: Novo âmbito
|
409
|
+
no_scopes: Nenhum âmbito neste nível.
|
410
|
+
update:
|
411
|
+
error: Ocorreu um erro ao atualizar esse âmbito.
|
412
|
+
success: Âmbito atualizado com sucesso
|
413
|
+
static_pages:
|
414
|
+
actions:
|
415
|
+
view: Ver página pública
|
416
|
+
create:
|
417
|
+
error: Ocorreu um erro ao criar uma nova página.
|
418
|
+
success: Página criada com sucesso.
|
419
|
+
destroy:
|
420
|
+
success: Página destruída com sucesso
|
421
|
+
edit:
|
422
|
+
title: Editar Página
|
423
|
+
update: Actualizar
|
424
|
+
new:
|
425
|
+
create: Crio
|
426
|
+
title: Nova página
|
427
|
+
update:
|
428
|
+
error: Ocorreu um erro ao atualizar esta página.
|
429
|
+
success: Página atualizada com sucesso
|
430
|
+
titles:
|
431
|
+
authorization_workflows: Métodos de verificação
|
432
|
+
dashboard: painel de controle
|
433
|
+
impersonations: Personagens
|
434
|
+
managed_users: Usuários gerenciados
|
435
|
+
officializations: Oficializações
|
436
|
+
scope_types: Tipos de âmbito
|
437
|
+
scopes: Âmbitos
|
438
|
+
static_pages: Páginas
|
439
|
+
user_groups: Grupos de usuários
|
440
|
+
users: Utilizadores
|
441
|
+
user_group:
|
442
|
+
reject:
|
443
|
+
invalid: Ocorreu um erro ao rejeitar esse grupo de usuários.
|
444
|
+
success: Grupo de usuários rejeitado com sucesso
|
445
|
+
verify:
|
446
|
+
invalid: Ocorreu um erro ao verificar este grupo de usuários.
|
447
|
+
success: Grupo de usuários verificado com sucesso
|
448
|
+
user_groups:
|
449
|
+
index:
|
450
|
+
filter:
|
451
|
+
all: Todos
|
452
|
+
pending: Pendente
|
453
|
+
rejected: Rejeitado
|
454
|
+
verified: Verificado
|
455
|
+
filter_by: Filtrar por
|
456
|
+
search: Pesquisa
|
457
|
+
state:
|
458
|
+
pending: Pendente
|
459
|
+
rejected: Rejeitado
|
460
|
+
verified: Verificado
|
461
|
+
users:
|
462
|
+
create:
|
463
|
+
error: Ocorreu um erro ao convidar esse usuário.
|
464
|
+
success: Usuário convidado com sucesso.
|
465
|
+
destroy:
|
466
|
+
error: Ocorreu um erro ao tentar excluir esse usuário.
|
467
|
+
success: O usuário não é mais um administrador.
|
468
|
+
form:
|
469
|
+
email: O email
|
470
|
+
name: Nome
|
471
|
+
role: Função
|
472
|
+
new:
|
473
|
+
create: Convite
|
474
|
+
title: Convide o usuário como administrador
|
475
|
+
moderations:
|
476
|
+
actions:
|
477
|
+
hidden: Escondido
|
478
|
+
hide: ocultar
|
479
|
+
not_hidden: Não oculto
|
480
|
+
title: Ações
|
481
|
+
unreport: Unreport
|
482
|
+
admin:
|
483
|
+
reportable:
|
484
|
+
hide:
|
485
|
+
invalid: Ocorreu um problema ao ocultar o recurso.
|
486
|
+
success: O recurso foi ocultado com sucesso.
|
487
|
+
unreport:
|
488
|
+
invalid: Tem havido um problema não relatando o recurso.
|
489
|
+
success: O recurso não foi relatado com sucesso.
|
490
|
+
models:
|
491
|
+
moderation:
|
492
|
+
fields:
|
493
|
+
hidden_at: Escondido em
|
494
|
+
report_count: Contagem
|
495
|
+
reportable: Reportable
|
496
|
+
reported_content_url: URL de conteúdo relatado
|
497
|
+
reports: Relatórios
|
498
|
+
visit_url: URL de visita
|
499
|
+
errors:
|
500
|
+
messages:
|
501
|
+
invalid_json: JSON inválido
|
502
|
+
layouts:
|
503
|
+
decidim:
|
504
|
+
admin:
|
505
|
+
newsletters:
|
506
|
+
title: boletins informativos
|
507
|
+
settings:
|
508
|
+
title: Configurações
|
509
|
+
users:
|
510
|
+
title: Utilizadores
|
511
|
+
time:
|
512
|
+
formats:
|
513
|
+
datepicker: "%d/%m/%Y"
|
514
|
+
timepicker: "%d/%m/%Y %H:%M"
|