decidim-notify 0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE-AGPLv3.txt +661 -0
- data/README.md +160 -0
- data/Rakefile +40 -0
- data/app/assets/config/decidim_notify_manifest.css +2 -0
- data/app/assets/config/decidim_notify_manifest.js +3 -0
- data/app/assets/images/decidim/notify/icon.svg +1 -0
- data/app/assets/javascripts/cable.js +13 -0
- data/app/assets/javascripts/channels/decidim/notify/conversations.js +90 -0
- data/app/assets/javascripts/decidim/notify/conversations.js.es6 +70 -0
- data/app/assets/javascripts/decidim/notify/select2.js.es6 +100 -0
- data/app/assets/stylesheets/decidim/notify/_hexagon.scss +126 -0
- data/app/assets/stylesheets/decidim/notify/admin.scss +25 -0
- data/app/assets/stylesheets/decidim/notify/notify.scss +220 -0
- data/app/cells/decidim/notify/chapter/show.erb +35 -0
- data/app/cells/decidim/notify/chapter_cell.rb +43 -0
- data/app/cells/decidim/notify/note/show.erb +20 -0
- data/app/cells/decidim/notify/note_cell.rb +38 -0
- data/app/cells/decidim/notify/participant/show.erb +9 -0
- data/app/cells/decidim/notify/participant_cell.rb +26 -0
- data/app/channels/decidim/notify/chapters_channel.rb +17 -0
- data/app/channels/decidim/notify/connection.rb +17 -0
- data/app/channels/decidim/notify/notes_channel.rb +17 -0
- data/app/channels/decidim/notify/participants_channel.rb +17 -0
- data/app/commands/decidim/notify/admin/create_chapter.rb +51 -0
- data/app/commands/decidim/notify/admin/destroy_chapter.rb +30 -0
- data/app/commands/decidim/notify/admin/update_chapter.rb +52 -0
- data/app/commands/decidim/notify/admin/update_config.rb +71 -0
- data/app/commands/decidim/notify/create_note.rb +52 -0
- data/app/commands/decidim/notify/delete_chapter.rb +28 -0
- data/app/commands/decidim/notify/delete_note.rb +28 -0
- data/app/commands/decidim/notify/update_chapter.rb +35 -0
- data/app/commands/decidim/notify/update_note.rb +51 -0
- data/app/controllers/concerns/decidim/notify/broadcasts.rb +56 -0
- data/app/controllers/concerns/decidim/notify/needs_ajax_rescue.rb +25 -0
- data/app/controllers/decidim/notify/admin/application_controller.rb +18 -0
- data/app/controllers/decidim/notify/admin/chapters_controller.rb +90 -0
- data/app/controllers/decidim/notify/admin/conversations_controller.rb +61 -0
- data/app/controllers/decidim/notify/application_controller.rb +16 -0
- data/app/controllers/decidim/notify/chapters_controller.rb +41 -0
- data/app/controllers/decidim/notify/conversations_controller.rb +105 -0
- data/app/forms/decidim/notify/admin/chapter_form.rb +14 -0
- data/app/forms/decidim/notify/admin/notify_config_form.rb +14 -0
- data/app/forms/decidim/notify/chapter_form.rb +13 -0
- data/app/forms/decidim/notify/note_form.rb +16 -0
- data/app/helpers/decidim/notify/application_helper.rb +10 -0
- data/app/models/concerns/decidim/notify/belongs_to_notify_component.rb +31 -0
- data/app/models/decidim/notify/application_record.rb +10 -0
- data/app/models/decidim/notify/author.rb +29 -0
- data/app/models/decidim/notify/chapter.rb +22 -0
- data/app/models/decidim/notify/note.rb +23 -0
- data/app/permissions/decidim/notify/admin/permissions.rb +23 -0
- data/app/permissions/decidim/notify/permissions.rb +45 -0
- data/app/views/decidim/notify/admin/chapters/_form.html.erb +20 -0
- data/app/views/decidim/notify/admin/chapters/edit.html.erb +7 -0
- data/app/views/decidim/notify/admin/chapters/index.html.erb +52 -0
- data/app/views/decidim/notify/admin/chapters/new.html.erb +7 -0
- data/app/views/decidim/notify/admin/conversations/_form.html.erb +27 -0
- data/app/views/decidim/notify/admin/conversations/index.html.erb +27 -0
- data/app/views/decidim/notify/conversations/_chapter.html.erb +1 -0
- data/app/views/decidim/notify/conversations/_form.html.erb +9 -0
- data/app/views/decidim/notify/conversations/_note.html.erb +1 -0
- data/app/views/decidim/notify/conversations/_participant.html.erb +1 -0
- data/app/views/decidim/notify/conversations/_script.js.erb +7 -0
- data/app/views/decidim/notify/conversations/index.html.erb +48 -0
- data/app/views/decidim/notify/conversations/private.html.erb +11 -0
- data/config/i18n-tasks.yml +35 -0
- data/config/locales/ca.yml +110 -0
- data/config/locales/cs.yml +110 -0
- data/config/locales/en.yml +110 -0
- data/config/locales/es.yml +110 -0
- data/db/migrate/20200504071404_create_notify_notes.rb +11 -0
- data/db/migrate/20200505061547_create_notify_authors.rb +17 -0
- data/db/migrate/20200505061640_add_notify_notes_references.rb +9 -0
- data/db/migrate/20200505195918_add_notify_author_admin.rb +7 -0
- data/db/migrate/20200507103034_change_notify_notes_authors.rb +15 -0
- data/db/migrate/20200514144040_add_notify_note_chapters.rb +15 -0
- data/lib/decidim/notify.rb +57 -0
- data/lib/decidim/notify/admin.rb +10 -0
- data/lib/decidim/notify/admin_engine.rb +25 -0
- data/lib/decidim/notify/component.rb +135 -0
- data/lib/decidim/notify/engine.rb +39 -0
- data/lib/decidim/notify/seeds/avatar1.png +0 -0
- data/lib/decidim/notify/seeds/avatar2.png +0 -0
- data/lib/decidim/notify/seeds/avatar3.png +0 -0
- data/lib/decidim/notify/seeds/avatar4.png +0 -0
- data/lib/decidim/notify/seeds/avatar5.png +0 -0
- data/lib/decidim/notify/test/factories.rb +48 -0
- data/lib/decidim/notify/test/shared_examples/component_examples.rb +23 -0
- data/lib/decidim/notify/version.rb +9 -0
- data/vendor/assets/javascripts/select2.js +6147 -0
- data/vendor/assets/stylesheets/select2-foundation-theme.css +249 -0
- data/vendor/assets/stylesheets/select2.css +515 -0
- metadata +177 -0
@@ -0,0 +1,48 @@
|
|
1
|
+
<%= render partial: "decidim/shared/component_announcement" %>
|
2
|
+
|
3
|
+
<div class="row notify-container">
|
4
|
+
<div class="columns smallmedium-9">
|
5
|
+
<div class="section">
|
6
|
+
|
7
|
+
<% if allowed_to? :create, :notes %>
|
8
|
+
<div class="card card--notes-editor">
|
9
|
+
<div class="card-section">
|
10
|
+
<%= form_for(@form, url: conversations_path, remote: true, html: { id: "new_note", class: "form new_note", data: nil }) do |f| %>
|
11
|
+
<input type="hidden" name="_method" value="post">
|
12
|
+
<%= render partial: "form", object: f %>
|
13
|
+
|
14
|
+
<div class="float-right text-right">
|
15
|
+
<div class="help-text"><%= t("decidim.notify.conversations.tip") %></div>
|
16
|
+
</div>
|
17
|
+
<div class="button--double form-conversations-submit">
|
18
|
+
<%= f.submit t(".send") %>
|
19
|
+
<div class="info">✔</div>
|
20
|
+
</div>
|
21
|
+
<% end %>
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
<% end %>
|
25
|
+
|
26
|
+
<div id="notify-chapters">
|
27
|
+
<%= render partial: "chapter", collection: chapters %>
|
28
|
+
<%= render partial: "chapter", locals: { chapter: @unclassified } %>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
<div class="columns smallmedium-3">
|
33
|
+
<h5><%= t ".note_takers" %></h5>
|
34
|
+
<div class="card">
|
35
|
+
<div class="card-section by-note-taker" id="notify-note_takers">
|
36
|
+
<%= render partial: "participant", collection: @note_takers %>
|
37
|
+
</div>
|
38
|
+
</div>
|
39
|
+
<h5><%= t ".participants" %></h5>
|
40
|
+
<div class="card">
|
41
|
+
<div class="card-section" id="notify-participants">
|
42
|
+
<%= render partial: "participant", collection: @participants %>
|
43
|
+
</div>
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<%= render partial: "script.js", locals: { id: current_component.id } %>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%= render partial: "decidim/shared/component_announcement" %>
|
2
|
+
<div class="row column notify-container">
|
3
|
+
<div class="section">
|
4
|
+
|
5
|
+
<div class="callout warning">
|
6
|
+
|
7
|
+
<h5><%= t ".title" %></h5>
|
8
|
+
<p><%= t(current_user ? ".logged_description" : ".anonymous_description") %></p>
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
</div>
|
@@ -0,0 +1,35 @@
|
|
1
|
+
---
|
2
|
+
|
3
|
+
base_locale: en
|
4
|
+
locales: [en]
|
5
|
+
|
6
|
+
search:
|
7
|
+
# Root directories for relative keys resolution.
|
8
|
+
relative_roots:
|
9
|
+
- app/controllers
|
10
|
+
- app/helpers
|
11
|
+
- app/mailers
|
12
|
+
- app/presenters
|
13
|
+
- app/services
|
14
|
+
- app/views
|
15
|
+
- app/cells
|
16
|
+
|
17
|
+
# Read and write translations.
|
18
|
+
data:
|
19
|
+
yaml:
|
20
|
+
write:
|
21
|
+
# do not wrap lines at 80 characters
|
22
|
+
line_width: -1
|
23
|
+
|
24
|
+
ignore_unused:
|
25
|
+
- decidim.components.notify.*
|
26
|
+
- activemodel.attributes.*
|
27
|
+
- decidim.notify.chapter.update.*
|
28
|
+
- decidim.notify.conversations.private.*
|
29
|
+
- decidim.pages.home.statistics.*
|
30
|
+
- decidim.participatory_processes.statistics.*
|
31
|
+
|
32
|
+
# keys reused from decidim-core
|
33
|
+
ignore_missing:
|
34
|
+
- decidim.core.actions.unauthorized
|
35
|
+
- decidim.admin.actions.configure
|
@@ -0,0 +1,110 @@
|
|
1
|
+
ca:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
chapter:
|
5
|
+
active: Actiu
|
6
|
+
title: Títol
|
7
|
+
note:
|
8
|
+
body: Enunciat
|
9
|
+
chapter: Capítol
|
10
|
+
code: Autor
|
11
|
+
notify_config:
|
12
|
+
note_takers: Prenedors de notes
|
13
|
+
users: Participants
|
14
|
+
decidim:
|
15
|
+
components:
|
16
|
+
notify:
|
17
|
+
name: Notify
|
18
|
+
settings:
|
19
|
+
global:
|
20
|
+
announcement: Anunci
|
21
|
+
private: Tauler privat (només hi poden accedir els participants)
|
22
|
+
restricted: Tauler restringit (només hi poden accedir els usuaris registrats, els no-participants són acceptats)
|
23
|
+
step:
|
24
|
+
announcement: Anunci
|
25
|
+
notify:
|
26
|
+
admin:
|
27
|
+
actions:
|
28
|
+
title: Accions
|
29
|
+
chapters:
|
30
|
+
actions:
|
31
|
+
new: Nou capítol
|
32
|
+
create:
|
33
|
+
error: S'ha produït un error al crear el capítol
|
34
|
+
success: Capítol creat correctament
|
35
|
+
destroy:
|
36
|
+
error: S'ha produït un error al esborrar el capítol
|
37
|
+
success: Capítol esborrat correctament
|
38
|
+
edit:
|
39
|
+
title: Editar capítol
|
40
|
+
update: Actualitza
|
41
|
+
form:
|
42
|
+
cancel: Cancel·la i torna als capítols
|
43
|
+
index:
|
44
|
+
conversations: Configura la conversa
|
45
|
+
title: Capítols
|
46
|
+
new:
|
47
|
+
create: Crea
|
48
|
+
title: Nou capítol
|
49
|
+
update:
|
50
|
+
error: S'ha produït un error al actualitzar el capítol
|
51
|
+
success: Capítol actualiitzat correctament
|
52
|
+
conversations:
|
53
|
+
error: S'ha produït un error al desar la configuració [%{message}]
|
54
|
+
index:
|
55
|
+
chapters: Configura els capítols
|
56
|
+
help: |-
|
57
|
+
<p>Notify us permet transcriure converses entre diverses persones en temps real (no cal actualitzar la pàgina).</p>
|
58
|
+
<p>Configureu aquesta eina afegint els participants i alguns usuaris que prenen notes:</p>
|
59
|
+
<ul><li>A cada participant se li assignarà un número (començant per 1).</li>
|
60
|
+
<li>Els que prenen notes són aquells participants als quals se'ls permet transcriure la conversa.<br>
|
61
|
+
Cada nota transcrita es pot acreditar a un participant escrivint el seu número o nom. </li> </ul>
|
62
|
+
<p>Per facilitar el procés, es mostren tots els avatars dels participants i els seus números al costat de les notes.</p>
|
63
|
+
save: Desa els canvis
|
64
|
+
title: Participants de la conversa
|
65
|
+
success: Configuració desada correctament
|
66
|
+
chapter:
|
67
|
+
active: Actiu
|
68
|
+
delete: Elimina
|
69
|
+
destroy:
|
70
|
+
error: S'ha produït un error al esborrar el capítol
|
71
|
+
sure: Segur que vols suprimir aquest capítol?
|
72
|
+
edit: Edita el capítol
|
73
|
+
empty: Encara no s'ha dit res sobre aquest tema.
|
74
|
+
update:
|
75
|
+
error: S'ha produït un error al actualitzar el capítol [%{message}]
|
76
|
+
conversations:
|
77
|
+
create:
|
78
|
+
error: S'ha produït un error al crear la nota [%{message}]
|
79
|
+
destroy:
|
80
|
+
error: S'ha produït un error al esborrar la nota
|
81
|
+
sure: Segur que vols esborrar aquesta nota?
|
82
|
+
index:
|
83
|
+
note_takers: Prenedors de notes
|
84
|
+
participants: Participants
|
85
|
+
send: Envia
|
86
|
+
placeholders:
|
87
|
+
author: Autor, cerca per número o nom
|
88
|
+
chapter: Estableix el capítol
|
89
|
+
statement: Escriu la declaració...
|
90
|
+
private:
|
91
|
+
anonymous_description: Aquesta conversa està restringida als seus participants. Inicieu sessió abans d’intentar accedir aquí.
|
92
|
+
logged_description: Aquesta conversa està restringida als seus participants. Si creieu que hi hauríeu de ser, poseu-vos en contacte amb l’administrador.
|
93
|
+
title: Conversa privada!
|
94
|
+
reset: Restableix
|
95
|
+
tip: 'Truc: utilitzeu CTRL + Retorn per publicar la vostra nota'
|
96
|
+
update:
|
97
|
+
error: S'ha produït un error al actualitzar la nota [%{message}]
|
98
|
+
pages:
|
99
|
+
home:
|
100
|
+
statistics:
|
101
|
+
notify_authors_count: Participants de la conversa
|
102
|
+
notify_chapters_count: Temes de conversa
|
103
|
+
notify_conversations_count: Converses
|
104
|
+
notify_notes_count: Notes de la conversa
|
105
|
+
participatory_processes:
|
106
|
+
statistics:
|
107
|
+
notify_authors_count: Participants de la conversa
|
108
|
+
notify_chapters_count: Temes de la conversa
|
109
|
+
notify_conversations_count: Converses
|
110
|
+
notify_notes_count: Notes de la conversa
|
@@ -0,0 +1,110 @@
|
|
1
|
+
cs:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
chapter:
|
5
|
+
active: Active
|
6
|
+
title: Title
|
7
|
+
note:
|
8
|
+
body: Statement
|
9
|
+
chapter: Chapter
|
10
|
+
code: Author
|
11
|
+
notify_config:
|
12
|
+
note_takers: Note Takers
|
13
|
+
users: Participants
|
14
|
+
decidim:
|
15
|
+
components:
|
16
|
+
notify:
|
17
|
+
name: Notify
|
18
|
+
settings:
|
19
|
+
global:
|
20
|
+
announcement: Announcement
|
21
|
+
private: Private board (only participants can access it)
|
22
|
+
restricted: Restricted board (only logged users can access it, non participants are accepted)
|
23
|
+
step:
|
24
|
+
announcement: Announcement
|
25
|
+
notify:
|
26
|
+
admin:
|
27
|
+
actions:
|
28
|
+
title: Actions
|
29
|
+
chapters:
|
30
|
+
actions:
|
31
|
+
new: New chapter
|
32
|
+
create:
|
33
|
+
error: Error creating the chapter
|
34
|
+
success: Chapter created successfully
|
35
|
+
destroy:
|
36
|
+
error: Error deleting the chapter
|
37
|
+
success: Chapter deleted successfully
|
38
|
+
edit:
|
39
|
+
title: Edit chapter
|
40
|
+
update: Update
|
41
|
+
form:
|
42
|
+
cancel: Cancel & back to chapters
|
43
|
+
index:
|
44
|
+
conversations: Configure conversation
|
45
|
+
title: Chapters
|
46
|
+
new:
|
47
|
+
create: Create
|
48
|
+
title: New chapter
|
49
|
+
update:
|
50
|
+
error: Error updating the chapter
|
51
|
+
success: Chapter updated successfully
|
52
|
+
conversations:
|
53
|
+
error: Error saving configuration [%{message}]
|
54
|
+
index:
|
55
|
+
chapters: Configure chapters
|
56
|
+
help: |-
|
57
|
+
<p>Notify lets you transcribe conversations between multiple people in real time (no page refresh required).</p>
|
58
|
+
<p>Configure this tool by adding the participants and some note-takers:</p>
|
59
|
+
<ul><li>Each participant will be assigned a number (starting at 1).</li>
|
60
|
+
<li>Note takers are those participants who are allowed to transcribe the conversation.<br>
|
61
|
+
Each transcribed note can be credited to a participant by writing their number or name.</li></ul>
|
62
|
+
<p>To facilitate the process, all the participants' avatars and their numbers are shown next to the notes.</p>
|
63
|
+
save: Save changes
|
64
|
+
title: Participants for the conversation
|
65
|
+
success: Configuration saved successfully
|
66
|
+
chapter:
|
67
|
+
active: Active
|
68
|
+
delete: Delete
|
69
|
+
destroy:
|
70
|
+
error: Error deleting the chapter
|
71
|
+
sure: Are you sure to delete this chapter?
|
72
|
+
edit: Edit chapter
|
73
|
+
empty: Nothing has been said on this topic yet.
|
74
|
+
update:
|
75
|
+
error: Error updating the chapter [%{message}]
|
76
|
+
conversations:
|
77
|
+
create:
|
78
|
+
error: Error creating the note [%{message}]
|
79
|
+
destroy:
|
80
|
+
error: Error deleting the note
|
81
|
+
sure: Are you sure to delete this note?
|
82
|
+
index:
|
83
|
+
note_takers: Note Takers
|
84
|
+
participants: Participants
|
85
|
+
send: Send
|
86
|
+
placeholders:
|
87
|
+
author: Author, use the number or name
|
88
|
+
chapter: Set the chapter
|
89
|
+
statement: Write the statement...
|
90
|
+
private:
|
91
|
+
anonymous_description: This conversation is restricted to its participants. Please log in before trying to access here.
|
92
|
+
logged_description: This conversation is restricted to its participants. If you think that you should be in it, please contact the administrator.
|
93
|
+
title: Private conversation!
|
94
|
+
reset: Reset
|
95
|
+
tip: 'Tip: use CTRL + Enter to publish your note'
|
96
|
+
update:
|
97
|
+
error: Error updating the note [%{message}]
|
98
|
+
pages:
|
99
|
+
home:
|
100
|
+
statistics:
|
101
|
+
notify_authors_count: Conversation participants
|
102
|
+
notify_chapters_count: Conversation topics
|
103
|
+
notify_conversations_count: Conversations
|
104
|
+
notify_notes_count: Conversation notes
|
105
|
+
participatory_processes:
|
106
|
+
statistics:
|
107
|
+
notify_authors_count: Conversation participants
|
108
|
+
notify_chapters_count: Conversation topics
|
109
|
+
notify_conversations_count: Conversations
|
110
|
+
notify_notes_count: Conversation notes
|
@@ -0,0 +1,110 @@
|
|
1
|
+
---
|
2
|
+
en:
|
3
|
+
activemodel:
|
4
|
+
attributes:
|
5
|
+
chapter:
|
6
|
+
active: Active
|
7
|
+
title: Title
|
8
|
+
note:
|
9
|
+
body: Statement
|
10
|
+
chapter: Chapter
|
11
|
+
code: Author
|
12
|
+
notify_config:
|
13
|
+
note_takers: Note Takers
|
14
|
+
users: Participants
|
15
|
+
decidim:
|
16
|
+
components:
|
17
|
+
notify:
|
18
|
+
name: Notify
|
19
|
+
settings:
|
20
|
+
global:
|
21
|
+
announcement: Announcement
|
22
|
+
private: Private board (only participants can access it)
|
23
|
+
restricted: Restricted board (only logged users can access it, non participants are accepted)
|
24
|
+
step:
|
25
|
+
announcement: Announcement
|
26
|
+
notify:
|
27
|
+
admin:
|
28
|
+
actions:
|
29
|
+
title: Actions
|
30
|
+
chapters:
|
31
|
+
actions:
|
32
|
+
new: New chapter
|
33
|
+
create:
|
34
|
+
error: Error creating the chapter
|
35
|
+
success: Chapter created successfully
|
36
|
+
destroy:
|
37
|
+
error: Error deleting the chapter
|
38
|
+
success: Chapter deleted successfully
|
39
|
+
edit:
|
40
|
+
title: Edit chapter
|
41
|
+
update: Update
|
42
|
+
form:
|
43
|
+
cancel: Cancel & back to chapters
|
44
|
+
index:
|
45
|
+
conversations: Configure conversation
|
46
|
+
title: Chapters
|
47
|
+
new:
|
48
|
+
create: Create
|
49
|
+
title: New chapter
|
50
|
+
update:
|
51
|
+
error: Error updating the chapter
|
52
|
+
success: Chapter updated successfully
|
53
|
+
conversations:
|
54
|
+
error: Error saving configuration [%{message}]
|
55
|
+
index:
|
56
|
+
chapters: Configure chapters
|
57
|
+
help: |-
|
58
|
+
<p>Notify lets you transcribe conversations between multiple people in real time (no page refresh required).</p>
|
59
|
+
<p>Configure this tool by adding the participants and some note-takers:</p>
|
60
|
+
<ul><li>Each participant will be assigned a number (starting at 1).</li>
|
61
|
+
<li>Note takers are those participants who are allowed to transcribe the conversation.<br>
|
62
|
+
Each transcribed note can be credited to a participant by writing their number or name.</li></ul>
|
63
|
+
<p>To facilitate the process, all the participants' avatars and their numbers are shown next to the notes.</p>
|
64
|
+
save: Save changes
|
65
|
+
title: Participants for the conversation
|
66
|
+
success: Configuration saved successfully
|
67
|
+
chapter:
|
68
|
+
active: Active
|
69
|
+
delete: Delete
|
70
|
+
destroy:
|
71
|
+
error: Error deleting the chapter
|
72
|
+
sure: Are you sure to delete this chapter?
|
73
|
+
edit: Edit chapter
|
74
|
+
empty: Nothing has been said on this topic yet.
|
75
|
+
update:
|
76
|
+
error: Error updating the chapter [%{message}]
|
77
|
+
conversations:
|
78
|
+
create:
|
79
|
+
error: Error creating the note [%{message}]
|
80
|
+
destroy:
|
81
|
+
error: Error deleting the note
|
82
|
+
sure: Are you sure to delete this note?
|
83
|
+
index:
|
84
|
+
note_takers: Note Takers
|
85
|
+
participants: Participants
|
86
|
+
send: Send
|
87
|
+
placeholders:
|
88
|
+
author: Author, use the number or name
|
89
|
+
chapter: Set the chapter
|
90
|
+
statement: Write the statement...
|
91
|
+
private:
|
92
|
+
anonymous_description: This conversation is restricted to its participants. Please log in before trying to access here.
|
93
|
+
logged_description: This conversation is restricted to its participants. If you think that you should be in it, please contact the administrator.
|
94
|
+
title: Private conversation!
|
95
|
+
tip: 'Tip: use CTRL + Enter to publish your note'
|
96
|
+
update:
|
97
|
+
error: Error updating the note [%{message}]
|
98
|
+
pages:
|
99
|
+
home:
|
100
|
+
statistics:
|
101
|
+
notify_authors_count: Conversation participants
|
102
|
+
notify_chapters_count: Conversation topics
|
103
|
+
notify_conversations_count: Conversations
|
104
|
+
notify_notes_count: Conversation notes
|
105
|
+
participatory_processes:
|
106
|
+
statistics:
|
107
|
+
notify_authors_count: Conversation participants
|
108
|
+
notify_chapters_count: Conversation topics
|
109
|
+
notify_conversations_count: Conversations
|
110
|
+
notify_notes_count: Conversation notes
|
@@ -0,0 +1,110 @@
|
|
1
|
+
es:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
chapter:
|
5
|
+
active: Activo
|
6
|
+
title: Título
|
7
|
+
note:
|
8
|
+
body: Declaración
|
9
|
+
chapter: Capítulo
|
10
|
+
code: Autor
|
11
|
+
notify_config:
|
12
|
+
note_takers: Tomadores de Notas
|
13
|
+
users: Participantes
|
14
|
+
decidim:
|
15
|
+
components:
|
16
|
+
notify:
|
17
|
+
name: Notify
|
18
|
+
settings:
|
19
|
+
global:
|
20
|
+
announcement: Anuncio
|
21
|
+
private: Tablón privado (sólo los participantes pueden acceder a él)
|
22
|
+
restricted: Tablón restringido (sólo los usuarios registrados pueden acceder a él, se aceptan no participantes)
|
23
|
+
step:
|
24
|
+
announcement: Anuncio
|
25
|
+
notify:
|
26
|
+
admin:
|
27
|
+
actions:
|
28
|
+
title: Acciones
|
29
|
+
chapters:
|
30
|
+
actions:
|
31
|
+
new: Capítulo nuevo
|
32
|
+
create:
|
33
|
+
error: Error creando el capítulo
|
34
|
+
success: Capítulo creado correctamente
|
35
|
+
destroy:
|
36
|
+
error: Error al eliminar el capítulo
|
37
|
+
success: Capítulo eliminado correctamente
|
38
|
+
edit:
|
39
|
+
title: Editar capítulo
|
40
|
+
update: Actualizar
|
41
|
+
form:
|
42
|
+
cancel: Cancelar y volver a los capítulos
|
43
|
+
index:
|
44
|
+
conversations: Configurar conversación
|
45
|
+
title: Capítulos
|
46
|
+
new:
|
47
|
+
create: Crear
|
48
|
+
title: Nuevo capítulo
|
49
|
+
update:
|
50
|
+
error: Error actualizando el capítulo
|
51
|
+
success: Capítulo actualizado correctamente
|
52
|
+
conversations:
|
53
|
+
error: Error al guardar la configuración [%{message}]
|
54
|
+
index:
|
55
|
+
chapters: Configurar capítulos
|
56
|
+
help: |-
|
57
|
+
<p>Notify te permite transcribir conversaciones entre varias personas en tiempo real (sin necesidad de actualizar la página).</p>
|
58
|
+
<p>Configura esta herramienta agregando los participantes y algunos tomadores de notas:</p>
|
59
|
+
<ul><li>A cada participante se le asignará un número (a partir del 1).</li>
|
60
|
+
<li>Los tomadores de notas son aquellos participantes que pueden transcribir la conversación.<br>
|
61
|
+
Cada nota transcrita puede ser acreditada a un participante escribiendo su número o nombre.</li></ul>
|
62
|
+
<p>Para facilitar el proceso, todos los avatares de los participantes y sus números se muestran junto a las notas.</p>
|
63
|
+
save: Guardar cambios
|
64
|
+
title: Participantes de la conversación
|
65
|
+
success: Configuración guardada correctamente
|
66
|
+
chapter:
|
67
|
+
active: Activo
|
68
|
+
delete: Eliminar
|
69
|
+
destroy:
|
70
|
+
error: Error al eliminar el capítulo
|
71
|
+
sure: '¿Seguro que quieres eliminar este capítulo?'
|
72
|
+
edit: Editar capítulo
|
73
|
+
empty: Todavía no se ha dicho nada sobre este tema.
|
74
|
+
update:
|
75
|
+
error: Error al actualizar el capítulo [%{message}]
|
76
|
+
conversations:
|
77
|
+
create:
|
78
|
+
error: Error al crear la nota [%{message}]
|
79
|
+
destroy:
|
80
|
+
error: Error al eliminar la nota
|
81
|
+
sure: '¿Seguro que quieres eliminar esta nota?'
|
82
|
+
index:
|
83
|
+
note_takers: Tomadores de Notas
|
84
|
+
participants: Participantes
|
85
|
+
send: Enviar
|
86
|
+
placeholders:
|
87
|
+
author: Autor, busca por número o nombre
|
88
|
+
chapter: Establecer el capítulo
|
89
|
+
statement: Escribe la declaración...
|
90
|
+
private:
|
91
|
+
anonymous_description: Esta conversación está restringida a sus participantes. Por favor, inicie sesión antes de intentar acceder aquí.
|
92
|
+
logged_description: Esta conversación está restringida a sus participantes. Si crees que deberías estar en ella, por favor contacta al administrador.
|
93
|
+
title: Conversación Privada!
|
94
|
+
reset: Restablecer
|
95
|
+
tip: 'Truco: usa CTRL + Enter para publicar tu nota'
|
96
|
+
update:
|
97
|
+
error: Error al actualizar la nota [%{message}]
|
98
|
+
pages:
|
99
|
+
home:
|
100
|
+
statistics:
|
101
|
+
notify_authors_count: Participantes de la conversación
|
102
|
+
notify_chapters_count: Temas de conversación
|
103
|
+
notify_conversations_count: Conversaciones
|
104
|
+
notify_notes_count: Notas de la conversación
|
105
|
+
participatory_processes:
|
106
|
+
statistics:
|
107
|
+
notify_authors_count: Participantes de la conversación
|
108
|
+
notify_chapters_count: Temas de la conversación
|
109
|
+
notify_conversations_count: Conversaciones
|
110
|
+
notify_notes_count: Notas de la conversación
|