decidim-core 0.29.0.rc3 → 0.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/address/online.erb +2 -2
- data/app/cells/decidim/address_cell.rb +4 -0
- data/app/cells/decidim/card_g/show.erb +1 -1
- data/app/cells/decidim/card_g_cell.rb +5 -2
- data/app/cells/decidim/card_l/image.erb +2 -2
- data/app/cells/decidim/card_l_cell.rb +5 -2
- data/app/cells/decidim/content_blocks/hero_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner/show.erb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_hero_cell.rb +2 -2
- data/app/cells/decidim/nav_links/show.erb +3 -3
- data/app/cells/decidim/resource_types_filter/show.erb +11 -12
- data/app/commands/decidim/create_omniauth_registration.rb +10 -4
- data/app/controllers/concerns/decidim/devise_controllers.rb +1 -0
- data/app/controllers/concerns/decidim/paginable.rb +1 -1
- data/app/controllers/decidim/application_controller.rb +1 -0
- data/app/helpers/decidim/menu_helper.rb +1 -1
- data/app/helpers/decidim/paginate_helper.rb +3 -5
- data/app/models/decidim/attachment.rb +8 -7
- data/app/models/decidim/component.rb +4 -1
- data/app/models/decidim/content_block.rb +2 -2
- data/app/models/decidim/user.rb +12 -12
- data/app/packs/src/decidim/a11y.js +11 -15
- data/app/packs/src/decidim/attachments/file_or_link_tabs.js +7 -3
- data/app/packs/src/decidim/input_character_counter.js +1 -1
- data/app/packs/stylesheets/decidim/_dropdown.scss +9 -9
- data/app/packs/stylesheets/decidim/_filters.scss +3 -1
- data/app/packs/stylesheets/decidim/_footer.scss +1 -1
- data/app/packs/stylesheets/decidim/_forms.scss +4 -4
- data/app/packs/stylesheets/decidim/_tooltip.scss +10 -10
- data/app/packs/stylesheets/decidim/editor.scss +1 -1
- data/app/presenters/decidim/menu_item_presenter.rb +1 -1
- data/app/services/decidim/open_data_exporter.rb +8 -7
- data/app/views/decidim/manifests/show.json.erb +4 -4
- data/app/views/decidim/pages/_tabbed.html.erb +3 -3
- data/app/views/decidim/shared/_filters.html.erb +5 -5
- data/app/views/decidim/shared/_orders.html.erb +3 -2
- data/app/views/decidim/shared/filters/_check_boxes_tree.html.erb +1 -1
- data/app/views/decidim/shared/filters/_collection.html.erb +1 -1
- data/app/views/layouts/decidim/_logo.html.erb +1 -1
- data/app/views/layouts/decidim/footer/_main.html.erb +1 -1
- data/app/views/layouts/decidim/footer/_main_intro.html.erb +1 -1
- data/app/views/layouts/decidim/header/_main_links_desktop.html.erb +1 -1
- data/app/views/layouts/decidim/header/_main_links_mobile_account.html.erb +1 -1
- data/app/views/layouts/decidim/header/_main_links_mobile_item_account.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_user_profile.html.erb +2 -2
- data/config/locales/ca.yml +3 -3
- data/config/locales/cs.yml +14 -0
- data/config/locales/fi-plain.yml +3 -3
- data/config/locales/fi.yml +28 -28
- data/config/locales/sv.yml +72 -64
- data/db/migrate/20181025082245_add_timestamps_to_components.rb +5 -1
- data/lib/decidim/asset_router/storage.rb +216 -13
- data/lib/decidim/core/test/shared_examples/attachable_interface_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +8 -3
- data/lib/decidim/core/test/shared_examples/paginated_resource_examples.rb +5 -5
- data/lib/decidim/core/version.rb +1 -1
- data/lib/tasks/upgrade/decidim_fix_categorization.rake +100 -0
- metadata +8 -8
@@ -4,7 +4,7 @@
|
|
4
4
|
<% if filter_sections.present? || local_assigns.has_key?(:search_variable) %>
|
5
5
|
<%= filter_form_for filter, url_for, class: "new_filter self-stretch", data: { filters: "", component: "accordion" } do |form| %>
|
6
6
|
|
7
|
-
<button id="dropdown-trigger-filters" data-component="dropdown" data-target="dropdown-menu-filters">
|
7
|
+
<button id="dropdown-trigger-filters" data-component="dropdown" data-target="dropdown-menu-filters" data-open-md="true">
|
8
8
|
<%= icon "arrow-down-s-line" %>
|
9
9
|
<%= icon "arrow-up-s-line" %>
|
10
10
|
<span>
|
@@ -12,14 +12,14 @@
|
|
12
12
|
</span>
|
13
13
|
</button>
|
14
14
|
|
15
|
-
<div id="dropdown-menu-filters"
|
15
|
+
<div id="dropdown-menu-filters">
|
16
16
|
<% if local_assigns.has_key?(:skip_to_id) %>
|
17
|
-
<%= link_to t("skip", scope: "decidim.shared.filter_form_help"), "##{skip_to_id}", class: "filter-skip" %>
|
17
|
+
<%= link_to t("skip", scope: "decidim.shared.filter_form_help"), "##{skip_to_id}", class: "filter-skip", role: "menuitem" %>
|
18
18
|
<% end %>
|
19
|
-
<p class="filter-help"><%= t("help", scope: "decidim.shared.filter_form_help") %></p>
|
19
|
+
<p class="filter-help" role="menuitem" aria-disabled="true"><%= t("help", scope: "decidim.shared.filter_form_help") %></p>
|
20
20
|
|
21
21
|
<% if local_assigns.has_key?(:search_variable) %>
|
22
|
-
<div class="filter-search filter-container">
|
22
|
+
<div class="filter-search filter-container" role="menuitem">
|
23
23
|
<%= form.search_field search_variable,
|
24
24
|
label: false,
|
25
25
|
placeholder: search_label,
|
@@ -1,13 +1,14 @@
|
|
1
|
-
<button class="order-by__button" id="dropdown-trigger-order" data-component="dropdown" data-target="dropdown-menu-order" data-open="
|
1
|
+
<button class="order-by__button" id="dropdown-trigger-order" data-component="dropdown" data-target="dropdown-menu-order" data-open-md="true">
|
2
2
|
<%= icon "arrow-down-s-line" %>
|
3
3
|
<%= icon "arrow-up-s-line" %>
|
4
4
|
<span><%= t("#{i18n_scope}.label") %></span>
|
5
5
|
</button>
|
6
|
-
<div id="dropdown-menu-order" class="order-by"
|
6
|
+
<div id="dropdown-menu-order" class="order-by">
|
7
7
|
<% orders.each do |order_name| %>
|
8
8
|
<%= order_link order_name,
|
9
9
|
i18n_scope:,
|
10
10
|
title: t("#{i18n_scope}.label"),
|
11
|
+
role: :menuitem,
|
11
12
|
class: "button button__sm button__text-secondary #{order_name == order ? "underline font-bold" : "font-normal"}" %>
|
12
13
|
<% end %>
|
13
14
|
</div>
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<% if organization %>
|
2
2
|
<%= link_to decidim.root_url(host: organization.host), "aria-label": t("front_page_link", scope: "decidim.accessibility") do %>
|
3
3
|
<% if organization.logo.attached? %>
|
4
|
-
<%= image_tag organization.attached_uploader(:logo).
|
4
|
+
<%= image_tag organization.attached_uploader(:logo).variant_url(:medium), alt: t("logo", scope: "decidim.accessibility", organization: current_organization_name) %>
|
5
5
|
<% else %>
|
6
6
|
<span><%= current_organization_name %></span>
|
7
7
|
<% end %>
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<div class="lg:w-1/3">
|
4
4
|
<%= render partial: "layouts/decidim/footer/main_intro" %>
|
5
5
|
</div>
|
6
|
-
<div class="lg:w-2/3 grid grid-cols-1 gap-x-
|
6
|
+
<div class="lg:w-2/3 grid grid-cols-1 gap-x-4 gap-y-10 lg:grid-cols-4 text-md text-white">
|
7
7
|
<%= render partial: "layouts/decidim/footer/main_links" %>
|
8
8
|
</div>
|
9
9
|
</div>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
<% if current_organization.official_img_footer.attached? %>
|
2
2
|
<%= link_to current_organization.official_url, class: "block mb-6" do %>
|
3
|
-
<%= image_tag current_organization.attached_uploader(:official_img_footer).
|
3
|
+
<%= image_tag current_organization.attached_uploader(:official_img_footer).url, alt: current_organization_name, class: "max-h-16" %>
|
4
4
|
<% end %>
|
5
5
|
<% end %>
|
6
6
|
<div class="text-sm text-white prose">
|
@@ -35,7 +35,7 @@
|
|
35
35
|
<span class="main-bar__avatar">
|
36
36
|
<span>
|
37
37
|
<%= image_tag(
|
38
|
-
current_user.attached_uploader(:avatar).
|
38
|
+
current_user.attached_uploader(:avatar).variant_url(:thumb),
|
39
39
|
alt: t("decidim.author.avatar", name: decidim_sanitize(current_user.avatar.name))
|
40
40
|
) %>
|
41
41
|
</span>
|
@@ -20,7 +20,7 @@
|
|
20
20
|
<% if current_user.avatar.attached? %>
|
21
21
|
<div class="main-bar__avatar">
|
22
22
|
<%= image_tag(
|
23
|
-
current_user.attached_uploader(:avatar).
|
23
|
+
current_user.attached_uploader(:avatar).variant_url(:thumb),
|
24
24
|
alt: t("decidim.author.avatar", name: decidim_sanitize(current_user.avatar.name))
|
25
25
|
) %>
|
26
26
|
</div>
|
@@ -6,7 +6,7 @@
|
|
6
6
|
<% if current_user.avatar.attached? %>
|
7
7
|
<span class="main-bar__avatar">
|
8
8
|
<%= image_tag(
|
9
|
-
current_user.attached_uploader(:avatar).
|
9
|
+
current_user.attached_uploader(:avatar).variant_url(:thumb),
|
10
10
|
alt: t("decidim.author.avatar", name: decidim_sanitize(current_user.avatar.name))
|
11
11
|
) %>
|
12
12
|
</span>
|
@@ -10,12 +10,12 @@
|
|
10
10
|
|
11
11
|
<div class="vertical-tabs">
|
12
12
|
<nav aria-label="menu-vertical">
|
13
|
-
<button id="dropdown-trigger-profile" data-component="dropdown" data-target="dropdown-menu-profile">
|
13
|
+
<button id="dropdown-trigger-profile" data-open-md="true" data-component="dropdown" data-target="dropdown-menu-profile">
|
14
14
|
<span><%= user_menu.active_item&.label || t("decidim.searches.filters.jump_to") %></span>
|
15
15
|
<%= icon "arrow-down-s-line" %>
|
16
16
|
<%= icon "arrow-up-s-line" %>
|
17
17
|
</button>
|
18
|
-
<ul id="dropdown-menu-profile" class="vertical-tabs__list"
|
18
|
+
<ul id="dropdown-menu-profile" class="vertical-tabs__list">
|
19
19
|
<%= user_menu.render %>
|
20
20
|
</ul>
|
21
21
|
</nav>
|
data/config/locales/ca.yml
CHANGED
@@ -532,8 +532,8 @@ ca:
|
|
532
532
|
html_content: Contingut HTML
|
533
533
|
name: Bloc HTML
|
534
534
|
last_activity:
|
535
|
-
name:
|
536
|
-
title:
|
535
|
+
name: Darrera activitat
|
536
|
+
title: Darrera activitat
|
537
537
|
view_all: Veure-ho tot
|
538
538
|
last_activity_settings_form:
|
539
539
|
max_last_activity_users: Número màxim d'avatars de participants amb activitat recent a mostrar
|
@@ -1049,7 +1049,7 @@ ca:
|
|
1049
1049
|
last_activities:
|
1050
1050
|
all: Tots els tipus d'activitats
|
1051
1051
|
index:
|
1052
|
-
last_activity:
|
1052
|
+
last_activity: Darrera activitat
|
1053
1053
|
name: Darreres activitats
|
1054
1054
|
no_activities_warning: No hi ha res a mostrar per a aquest tipus d'activitat.
|
1055
1055
|
linked_resource_from:
|
data/config/locales/cs.yml
CHANGED
@@ -383,6 +383,7 @@ cs:
|
|
383
383
|
wizard_step_form:
|
384
384
|
steps:
|
385
385
|
'1': Vytvořte svůj pozměňovací návrh
|
386
|
+
'2': Publikovat svůj pozměňovací návrh
|
386
387
|
anonymous_user: Anonymní
|
387
388
|
application:
|
388
389
|
document:
|
@@ -618,6 +619,7 @@ cs:
|
|
618
619
|
complete_profile: Dokončit profil
|
619
620
|
nickname_help: Váš alias v %{organization}. Může obsahovat pouze písmena, číslice, '-' a '_'.
|
620
621
|
sign_up: Prosím, vyplňte svůj profil
|
622
|
+
subtitle: Vyplňte prosím následující formulář pro dokončení vytvoření účtu
|
621
623
|
username_help: Veřejné jméno, které se zobrazí ve vašich příspěvcích. S cílem zaručit anonymitu může být jakékoliv jméno.
|
622
624
|
registrations:
|
623
625
|
create:
|
@@ -627,6 +629,8 @@ cs:
|
|
627
629
|
log_in: Přihlásit
|
628
630
|
newsletter: Chci dostávat příležitostný zpravodaj s relevantními informacemi
|
629
631
|
newsletter_title: Povolení kontaktu
|
632
|
+
sign_up: Vytvořit účet
|
633
|
+
subtitle: Pro účast na platformě vytvořte účet.
|
630
634
|
terms: podmínky poskytování služeb
|
631
635
|
tos_agreement: Přihlášením souhlasíte s %{link}.
|
632
636
|
tos_title: Smluvní podmínky
|
@@ -636,6 +640,7 @@ cs:
|
|
636
640
|
are_you_new?: Jste na platformě poprvé?
|
637
641
|
register: Vytvořit účet
|
638
642
|
sign_in_disabled: Můžete přistupovat pomocí externího účtu.
|
643
|
+
sign_up_disabled: Vytvoření účtu je zakázáno, pro přístup můžete použít existující účet.
|
639
644
|
user:
|
640
645
|
timed_out: Byli jste neaktivní příliš dlouho a byli jste automaticky odhlášeni ze služby. Pokud chcete pokračovat v používání služby, přihlaste se prosím znovu.
|
641
646
|
shared:
|
@@ -913,10 +918,16 @@ cs:
|
|
913
918
|
create:
|
914
919
|
button: Sledovat
|
915
920
|
error: Při sledování tohoto zdroje došlo k chybě.
|
921
|
+
participatory_space: Sleduje <span>%{resource_name}</span>
|
916
922
|
destroy:
|
917
923
|
button: Ukončit sledování
|
918
924
|
error: Při sledování tohoto zdroje došlo k chybě.
|
919
925
|
forms:
|
926
|
+
attachment_link:
|
927
|
+
explanation: Pokyny pro odkazy na přílohy
|
928
|
+
help_messages:
|
929
|
+
- Akceptovány jsou pouze správné formáty URL.
|
930
|
+
- Vezměte prosím na vědomí, že odkazy musí být veřejné, aby k nim měli přístup všichni účastníci.
|
920
931
|
errors:
|
921
932
|
decidim/user:
|
922
933
|
password: Heslo je příliš krátké.
|
@@ -1272,9 +1283,11 @@ cs:
|
|
1272
1283
|
same_language: Obsah byl zveřejněn ve vašem preferovaném jazyce (%{language}), proto se v tomto e-mailu nezobrazuje automatický překlad.
|
1273
1284
|
translated_text: 'Automaticky přeložený text:'
|
1274
1285
|
notifications:
|
1286
|
+
action_error: Při aktualizaci oznámení došlo k chybě.
|
1275
1287
|
no_notifications: Zatím žádné oznámení.
|
1276
1288
|
show:
|
1277
1289
|
missing_event: Jejda, toto oznámení patří k položce, která již není k dispozici. Můžete ho zahodit.
|
1290
|
+
moderated: Obsah upraven
|
1278
1291
|
notifications_digest_mailer:
|
1279
1292
|
header:
|
1280
1293
|
daily: Denní výběr oznámení
|
@@ -1882,6 +1895,7 @@ cs:
|
|
1882
1895
|
long_words: obsahuje slova, která jsou příliš dlouhá (přes 35 znaků)
|
1883
1896
|
must_start_with_caps: musí začínat velkým písmenem
|
1884
1897
|
nesting_too_deep: nemůže být uvnitř podkategorie
|
1898
|
+
not_found: se nepodařilo najít. Vytvořili jste si účet již dříve?
|
1885
1899
|
not_locked: nebyl uzamčen
|
1886
1900
|
not_saved:
|
1887
1901
|
one: 'Při zpracování vašeho požadavku došlo k chybě:'
|
data/config/locales/fi-plain.yml
CHANGED
@@ -1287,7 +1287,7 @@ fi-pl:
|
|
1287
1287
|
name: Offline
|
1288
1288
|
show:
|
1289
1289
|
message_1: Verkkoyhteytesi näyttää olevan poissa käytöstä tällä hetkellä.
|
1290
|
-
message_2: Yritä myöhemmin
|
1290
|
+
message_2: Yritä myöhemmin uudestaan.
|
1291
1291
|
retry: Yritä uudestaan
|
1292
1292
|
open_data:
|
1293
1293
|
not_available_yet: Avoimet datatiedostot eivät ole vielä käytettävissä, yritä uudelleen muutaman minuutin kuluttua.
|
@@ -1384,7 +1384,7 @@ fi-pl:
|
|
1384
1384
|
manage_user_group_admins: Hallinnoi ylläpitäjiä
|
1385
1385
|
manage_user_group_users: Hallinnoi jäseniä
|
1386
1386
|
message: Viesti
|
1387
|
-
resend_email_confirmation_instructions: Lähetä sähköpostin vahvistusohjeet
|
1387
|
+
resend_email_confirmation_instructions: Lähetä sähköpostin vahvistusohjeet uudestaan
|
1388
1388
|
confirmation_instructions_sent: Sähköpostivahvistuksen ohjeet lähetetty.
|
1389
1389
|
create_user_group: Luo ryhmä
|
1390
1390
|
edit_profile: Muokkaa profiilia
|
@@ -1837,7 +1837,7 @@ fi-pl:
|
|
1837
1837
|
errors:
|
1838
1838
|
messages:
|
1839
1839
|
allowed_file_content_types: 'ainoastaan seuraavat tiedostomuodot on sallittu: %{types}'
|
1840
|
-
already_confirmed: on jo vahvistettu, yritä kirjautua sisään
|
1840
|
+
already_confirmed: on jo vahvistettu, yritä kirjautua sisään uudestaan
|
1841
1841
|
blank: ei voi olla tyhjä
|
1842
1842
|
cannot_be_blank: ei voi olla tyhjä
|
1843
1843
|
confirmation: ei täsmää kentän %{attribute} kanssa
|
data/config/locales/fi.yml
CHANGED
@@ -340,7 +340,7 @@ fi:
|
|
340
340
|
error: Muutoksen julkaisu epäonnistui.
|
341
341
|
success: Muutoksen julkaisu onnistui.
|
342
342
|
rejected:
|
343
|
-
error: Muutoksen hylkääminen epäonnistui, yritä myöhemmin
|
343
|
+
error: Muutoksen hylkääminen epäonnistui, yritä myöhemmin uudestaan.
|
344
344
|
success: Muutos on hylätty.
|
345
345
|
review:
|
346
346
|
back: Takaisin
|
@@ -431,7 +431,7 @@ fi:
|
|
431
431
|
explanation: Suorittaaksesi tämän toiminnon, sinun tulee vahvistaa tilisi palvelulla "%{authorization}".
|
432
432
|
title: Vahvistus vaaditaan
|
433
433
|
ok:
|
434
|
-
title: Sinut on vahvistettu sen aikana, kun olet ollut tällä sivulla. Lataa sivu
|
434
|
+
title: Sinut on vahvistettu sen aikana, kun olet ollut tällä sivulla. Lataa sivu uudestaan suorittaaksesi toiminnon, jota yritit suorittaa.
|
435
435
|
pending:
|
436
436
|
explanation: Tämän toiminnon suorittamiseksi sinun vahvistettava itsesi palvelulla "%{authorization}", mutta vahvistuksesi on edelleen kesken.
|
437
437
|
resume: Tarkista "%{authorization}" vahvistuksen eteneminen.
|
@@ -681,7 +681,7 @@ fi:
|
|
681
681
|
reference: Viite
|
682
682
|
request_method: Pyynnön metodi
|
683
683
|
title: Palvelimellamme tapahtui virhe
|
684
|
-
try_later: Yritä myöhemmin
|
684
|
+
try_later: Yritä myöhemmin uudestaan. Jos ongelma jatkuu, kopioi seuraavat tiedot ja lähetä ne alustan ylläpitäjille. Halutessasi voit liittää mukaan myös mitä tahansa muuta tietoa, mitä haluat jakaa.
|
685
685
|
unknown: Ei tiedossa
|
686
686
|
url: URL
|
687
687
|
user: Käyttäjän ID
|
@@ -693,57 +693,57 @@ fi:
|
|
693
693
|
amendments:
|
694
694
|
amendment_accepted:
|
695
695
|
affected_user:
|
696
|
-
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen
|
696
|
+
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen sivulta:'
|
697
697
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet luonut kohteen %{amendable_title}.
|
698
698
|
email_subject: Kohdetta %{amendable_title} koskeva muutos on hyväksytty käyttäjältä %{emendation_author_nickname}
|
699
699
|
notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> luoma <a href="%{emendation_path}">muutos</a> hyväksyttiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
|
700
700
|
follower:
|
701
|
-
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen
|
701
|
+
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hyväksytty. Voit tutustua siihen sivulta:'
|
702
702
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
703
703
|
email_subject: Kohdetta %{amendable_title} koskeva muutos on hyväksytty käyttäjältä %{emendation_author_nickname}
|
704
704
|
notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> luoma <a href="%{emendation_path}">muutos</a> hyväksyttiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
|
705
705
|
amendment_created:
|
706
706
|
affected_user:
|
707
|
-
email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Voit tutustua siihen
|
707
|
+
email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Voit tutustua siihen sivulta:'
|
708
708
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet luonut kohteen %{amendable_title}.
|
709
709
|
email_subject: Uusi muutos kohteelle %{amendable_title}
|
710
710
|
notification_title: Kohteelle <a href="%{amendable_path}">%{amendable_title}</a> luotiin uusi muutos.
|
711
711
|
follower:
|
712
|
-
email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Voit tutustua siihen
|
712
|
+
email_intro: 'Uusi muutos on luotu kohteelle %{amendable_title}. Voit tutustua siihen sivulta:'
|
713
713
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
714
714
|
email_subject: Uusi muutos %{amendable_title}
|
715
715
|
notification_title: Kohteelle <a href="%{amendable_path}">%{amendable_title}</a> luotiin uusi muutos.
|
716
716
|
amendment_promoted:
|
717
717
|
affected_user:
|
718
|
-
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen
|
718
|
+
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen sivulta:'
|
719
719
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet luonut kohteen %{amendable_title}.
|
720
720
|
email_subject: Käyttäjän %{emendation_author_nickname} laatima muutos on julkaistu uutena %{amendable_type} -kohteena
|
721
721
|
notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> toimesta.
|
722
722
|
follower:
|
723
|
-
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen
|
723
|
+
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on julkaistu uutena kohteena %{amendable_type}. Voit tutustua siihen sivulta:'
|
724
724
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
725
725
|
email_subject: Muutos %{emendation_author_nickname} on julkaistu uutena %{amendable_type} -kohteena
|
726
726
|
notification_title: <a href="%{emendation_path}">Hylätty muutos</a> kohteelle <a href="%{amendable_path}">%{amendable_title}</a> on julkaistu uutena %{amendable_type} -kohteena käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> toimesta.
|
727
727
|
amendment_rejected:
|
728
728
|
affected_user:
|
729
|
-
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen
|
729
|
+
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen sivulta:'
|
730
730
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska olet luonut kohteen %{amendable_title}.
|
731
731
|
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_nickname}
|
732
732
|
notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> luoma <a href="%{emendation_path}">muutos</a> hylättiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
|
733
733
|
follower:
|
734
|
-
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen
|
734
|
+
email_intro: 'Kohdetta %{amendable_title} koskeva muutos on hylätty. Voit tutustua siihen sivulta:'
|
735
735
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{amendable_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
736
736
|
email_subject: Kohdetta %{amendable_title} koskeva muutos on hylätty käyttäjältä %{emendation_author_nickname}
|
737
737
|
notification_title: Käyttäjän <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> luoma <a href="%{emendation_path}">muutos</a> hylättiin kohteelle <a href="%{amendable_path}">%{amendable_title}</a>.
|
738
738
|
attachments:
|
739
739
|
attachment_created:
|
740
|
-
email_intro: 'Uusi asiakirja on lisätty kohteeseen %{resource_title}. Voit tutustua siihen
|
740
|
+
email_intro: 'Uusi asiakirja on lisätty kohteeseen %{resource_title}. Voit tutustua siihen sivulta:'
|
741
741
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{resource_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
742
742
|
email_subject: Päivitys kohteessa %{resource_title}
|
743
743
|
notification_title: <a href="%{resource_path}">Uusi dokumentti</a> on lisätty kohteeseen <a href="%{attached_to_url}">%{resource_title}</a>
|
744
744
|
components:
|
745
745
|
component_published:
|
746
|
-
email_intro: 'Osio %{resource_title} on nyt käytössä kohteessa %{participatory_space_title}. Voit tutustua siihen
|
746
|
+
email_intro: 'Osio %{resource_title} on nyt käytössä kohteessa %{participatory_space_title}. Voit tutustua siihen sivulta:'
|
747
747
|
email_outro: Tämä ilmoitus on lähetetty sinulle, koska seuraat kohdetta %{participatory_space_title}. Voit lopettaa ilmoitusten vastaanottamisen edellä esitetyn linkin kautta.
|
748
748
|
email_subject: Päivitys kohteessa %{participatory_space_title}
|
749
749
|
notification_title: Osio %{resource_title} on nyt aktiivinen kohteessa <a href="%{resource_path}">%{participatory_space_title}</a>
|
@@ -959,7 +959,7 @@ fi:
|
|
959
959
|
demote_admin: Poista ylläpitäjä
|
960
960
|
demote:
|
961
961
|
error: Osallistujan poistaminen hallintakäyttäjien luettelosta epäonnistui.
|
962
|
-
success:
|
962
|
+
success: Osallistujan poistaminen hallintakäyttäjien luettelosta onnistui.
|
963
963
|
index:
|
964
964
|
current_admins: 'Nykyiset ylläpitäjät:'
|
965
965
|
manage_admins: Hallinnoi ylläpitäjiä
|
@@ -1142,7 +1142,7 @@ fi:
|
|
1142
1142
|
no_results: Ei tuloksia
|
1143
1143
|
participant_with_disabled_message_reception: Tämä käyttäjä ei halua vastaanottaa yksityisiä viestejä.
|
1144
1144
|
create:
|
1145
|
-
error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin
|
1145
|
+
error: Keskustelun aloittaminen epäonnistui. Yritä myöhemmin uudestaan.
|
1146
1146
|
error_modal:
|
1147
1147
|
close: Sulje ikkuna
|
1148
1148
|
correct_errors: Korjaa virheet ja yritä uudestaan.
|
@@ -1166,7 +1166,7 @@ fi:
|
|
1166
1166
|
placeholder: Viestisi...
|
1167
1167
|
send: Lähetä
|
1168
1168
|
update:
|
1169
|
-
error: Viestiä ei voitu lähettää. Yritä myöhemmin
|
1169
|
+
error: Viestiä ei voitu lähettää. Yritä myöhemmin uudestaan.
|
1170
1170
|
metadata:
|
1171
1171
|
progress:
|
1172
1172
|
active: Aktiiviset
|
@@ -1287,10 +1287,10 @@ fi:
|
|
1287
1287
|
name: Offline
|
1288
1288
|
show:
|
1289
1289
|
message_1: Verkkoyhteytesi näyttää olevan poissa käytöstä tällä hetkellä.
|
1290
|
-
message_2: Yritä myöhemmin
|
1290
|
+
message_2: Yritä myöhemmin uudestaan.
|
1291
1291
|
retry: Yritä uudestaan
|
1292
1292
|
open_data:
|
1293
|
-
not_available_yet: Avoimet datatiedostot eivät ole vielä käytettävissä, yritä
|
1293
|
+
not_available_yet: Avoimet datatiedostot eivät ole vielä käytettävissä, yritä uudestaan muutaman minuutin kuluttua.
|
1294
1294
|
pad_iframe:
|
1295
1295
|
disclaimer: Tämän muistion sisällön ovat kirjoittaneet alustan rekisteröityneet käyttäjät, jotka ilmaisevat omia mielipiteitään. %{organization} ei ole vastuussa sisällöstä.
|
1296
1296
|
explanation: Tällä muistiolla voitte yhdessä tehdä muistiinpanoja tapaamisen aikana, jotta pöytäkirjan kirjoittaminen sen jälkeen olisi helpompaa.
|
@@ -1384,7 +1384,7 @@ fi:
|
|
1384
1384
|
manage_user_group_admins: Hallinnoi ylläpitäjiä
|
1385
1385
|
manage_user_group_users: Hallinnoi jäseniä
|
1386
1386
|
message: Viesti
|
1387
|
-
resend_email_confirmation_instructions: Lähetä sähköpostin vahvistusohjeet
|
1387
|
+
resend_email_confirmation_instructions: Lähetä sähköpostin vahvistusohjeet uudestaan
|
1388
1388
|
confirmation_instructions_sent: Sähköpostivahvistuksen ohjeet lähetetty.
|
1389
1389
|
create_user_group: Luo ryhmä
|
1390
1390
|
edit_profile: Muokkaa profiilia
|
@@ -1395,7 +1395,7 @@ fi:
|
|
1395
1395
|
leave_user_group: Poistu ryhmästä
|
1396
1396
|
manage_user_group_admins: Hallinnoi ylläpitäjiä
|
1397
1397
|
manage_user_group_users: Hallinnoi jäseniä
|
1398
|
-
resend_email_confirmation_instructions: Lähetä sähköpostin vahvistusohjeet
|
1398
|
+
resend_email_confirmation_instructions: Lähetä sähköpostin vahvistusohjeet uudestaan
|
1399
1399
|
reported_mailer:
|
1400
1400
|
hide:
|
1401
1401
|
hello: Hei %{name},
|
@@ -1421,7 +1421,7 @@ fi:
|
|
1421
1421
|
success: Ilmoituksen luonti onnistui. Hallintakäyttäjä tarkastaa sen.
|
1422
1422
|
resource_endorsements:
|
1423
1423
|
create:
|
1424
|
-
error: Suosituksen antaminen
|
1424
|
+
error: Suosituksen antaminen epäonnistui.
|
1425
1425
|
scopes:
|
1426
1426
|
global: Yleinen teema
|
1427
1427
|
picker:
|
@@ -1562,7 +1562,7 @@ fi:
|
|
1562
1562
|
placeholder: Vastauksesi...
|
1563
1563
|
send: Lähetä
|
1564
1564
|
update:
|
1565
|
-
error: Viestiä ei lähetetty. Yritä myöhemmin
|
1565
|
+
error: Viestiä ei lähetetty. Yritä myöhemmin uudestaan
|
1566
1566
|
user_interests:
|
1567
1567
|
show:
|
1568
1568
|
my_interests: Omat kiinnostuksen kohteet
|
@@ -1616,7 +1616,7 @@ fi:
|
|
1616
1616
|
confirmations:
|
1617
1617
|
confirmed: Sähköpostiosoitteesi on vahvistettu.
|
1618
1618
|
new:
|
1619
|
-
resend_confirmation_instructions: Lähetä vahvistusohjeet
|
1619
|
+
resend_confirmation_instructions: Lähetä vahvistusohjeet uudestaan
|
1620
1620
|
send_instructions: Saat hetken kuluttua sähköpostiisi ohjeet tunnuksen vahvistamiseen.
|
1621
1621
|
send_paranoid_instructions: Jos sähköpostiosoitteesi on tietokannassamme, saat hetken kuluttua sähköpostiisi ohjeet tunnuksen vahvistamiseen.
|
1622
1622
|
failure:
|
@@ -1695,7 +1695,7 @@ fi:
|
|
1695
1695
|
subject: Avaa ohjeet
|
1696
1696
|
omniauth_callbacks:
|
1697
1697
|
failure: Sisäänkirjautuminen epäonnistui palvelulla %{kind} koska "%{reason}".
|
1698
|
-
success:
|
1698
|
+
success: Sisäänkirjautuminen onnistui %{kind} -tilillä.
|
1699
1699
|
passwords:
|
1700
1700
|
edit:
|
1701
1701
|
change_my_password: Vaihda salasanani
|
@@ -1714,7 +1714,7 @@ fi:
|
|
1714
1714
|
updated: Salasanasi vaihtaminen onnistui. Olet nyt kirjautunut sisään.
|
1715
1715
|
updated_not_active: Salasanasi vaihtaminen onnistui.
|
1716
1716
|
registrations:
|
1717
|
-
destroyed: Tilisi poistaminen onnistui. Toivomme näkevämme sinut pian
|
1717
|
+
destroyed: Tilisi poistaminen onnistui. Toivomme näkevämme sinut pian uudestaan.
|
1718
1718
|
new:
|
1719
1719
|
sign_up: Luo tili
|
1720
1720
|
signed_up: Tervetuloa! Sisäänkirjautuminen onnistui.
|
@@ -1743,7 +1743,7 @@ fi:
|
|
1743
1743
|
other: "(vähintään %{count} merkkiä)"
|
1744
1744
|
unlocks:
|
1745
1745
|
new:
|
1746
|
-
resend_unlock_instructions: Lähetä
|
1746
|
+
resend_unlock_instructions: Lähetä uudestaan ohjeet tilin lukituksen poistoon
|
1747
1747
|
send_instructions: Saat muutaman minuutin kuluessa sähköpostiviestin, jossa on ohjeet tilin lukituksen poistoon.
|
1748
1748
|
send_paranoid_instructions: Jos tilisi on olemassa, saat muutaman minuutin kuluessa sähköpostiisi ohjeet tilin lukituksen poistoon.
|
1749
1749
|
unlocked: Tilisi lukitus on poistettu. Jatka kirjautumalla sisään.
|
@@ -1837,7 +1837,7 @@ fi:
|
|
1837
1837
|
errors:
|
1838
1838
|
messages:
|
1839
1839
|
allowed_file_content_types: 'ainoastaan seuraavat tiedostomuodot on sallittu: %{types}'
|
1840
|
-
already_confirmed: on jo vahvistettu, yritä kirjautua sisään
|
1840
|
+
already_confirmed: on jo vahvistettu, yritä kirjautua sisään uudestaan
|
1841
1841
|
blank: ei voi olla tyhjä
|
1842
1842
|
cannot_be_blank: ei voi olla tyhjä
|
1843
1843
|
confirmation: ei täsmää kentän %{attribute} kanssa
|
@@ -1859,7 +1859,7 @@ fi:
|
|
1859
1859
|
too_many_marks: liian monta välimerkkiä peräkkäin (esim. ! ja ?)
|
1860
1860
|
too_much_caps: liian monta isoa kirjainta (yli 25% tekstistä)
|
1861
1861
|
too_short: liian lyhyt (alle %{count} merkkiä)
|
1862
|
-
url_format: Tämä URL-osoite on
|
1862
|
+
url_format: Tämä URL-osoite on väärän muotoinen
|
1863
1863
|
forms:
|
1864
1864
|
correct_errors: Lomakkeella on virheitä, korjaa ne jatkaaksesi.
|
1865
1865
|
length_validator:
|