decidim-time_tracker 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.
Files changed (134) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE-AGPLv3.txt +661 -0
  3. data/README.md +174 -0
  4. data/Rakefile +40 -0
  5. data/app/assets/config/admin/decidim_time_tracker_manifest.css +2 -0
  6. data/app/assets/config/admin/decidim_time_tracker_manifest.js +1 -0
  7. data/app/assets/config/decidim_time_tracker_manifest.css +3 -0
  8. data/app/assets/config/decidim_time_tracker_manifest.js +1 -0
  9. data/app/assets/images/decidim/time_tracker/icon.svg +1 -0
  10. data/app/assets/javascripts/decidim/time_tracker/activity_ui.js.es6 +112 -0
  11. data/app/assets/javascripts/decidim/time_tracker/admin/assignations.js.es6 +35 -0
  12. data/app/assets/javascripts/decidim/time_tracker/reports/reports.js.es6 +19 -0
  13. data/app/assets/javascripts/decidim/time_tracker/time_tracker.js.es6 +82 -0
  14. data/app/assets/javascripts/decidim/time_tracker/timer_api.js.es6 +55 -0
  15. data/app/assets/stylesheets/decidim/time_tracker/_variables.scss +1 -0
  16. data/app/assets/stylesheets/decidim/time_tracker/admin/time_tracker.scss +59 -0
  17. data/app/assets/stylesheets/decidim/time_tracker/time_tracker.scss +118 -0
  18. data/app/cells/decidim/time_tracker/milestone/show.erb +42 -0
  19. data/app/cells/decidim/time_tracker/milestone_cell.rb +54 -0
  20. data/app/commands/decidim/time_tracker/admin/create_activity.rb +39 -0
  21. data/app/commands/decidim/time_tracker/admin/create_assignation.rb +75 -0
  22. data/app/commands/decidim/time_tracker/admin/create_task.rb +33 -0
  23. data/app/commands/decidim/time_tracker/admin/create_time_tracker.rb +76 -0
  24. data/app/commands/decidim/time_tracker/admin/destroy_activity.rb +43 -0
  25. data/app/commands/decidim/time_tracker/admin/destroy_assignation.rb +43 -0
  26. data/app/commands/decidim/time_tracker/admin/destroy_task.rb +43 -0
  27. data/app/commands/decidim/time_tracker/admin/export_time_tracker.rb +150 -0
  28. data/app/commands/decidim/time_tracker/admin/update_activity.rb +49 -0
  29. data/app/commands/decidim/time_tracker/admin/update_assignation.rb +42 -0
  30. data/app/commands/decidim/time_tracker/admin/update_task.rb +44 -0
  31. data/app/commands/decidim/time_tracker/create_milestone.rb +57 -0
  32. data/app/commands/decidim/time_tracker/create_request_assignation.rb +39 -0
  33. data/app/commands/decidim/time_tracker/start_time_event.rb +104 -0
  34. data/app/commands/decidim/time_tracker/stop_last_time_event.rb +45 -0
  35. data/app/controllers/concerns/decidim/time_tracker/admin/filterable_assignations.rb +50 -0
  36. data/app/controllers/decidim/time_tracker/activity_questionnaire_controller.rb +76 -0
  37. data/app/controllers/decidim/time_tracker/admin/activities_controller.rb +82 -0
  38. data/app/controllers/decidim/time_tracker/admin/activity_questionnaire_controller.rb +52 -0
  39. data/app/controllers/decidim/time_tracker/admin/application_controller.rb +22 -0
  40. data/app/controllers/decidim/time_tracker/admin/assignations_controller.rb +84 -0
  41. data/app/controllers/decidim/time_tracker/admin/assignee_questionnaire_controller.rb +58 -0
  42. data/app/controllers/decidim/time_tracker/admin/stats_controller.rb +24 -0
  43. data/app/controllers/decidim/time_tracker/admin/tasks_controller.rb +112 -0
  44. data/app/controllers/decidim/time_tracker/admin/time_tracker_exports_controller.rb +25 -0
  45. data/app/controllers/decidim/time_tracker/application_controller.rb +24 -0
  46. data/app/controllers/decidim/time_tracker/assignations_controller.rb +38 -0
  47. data/app/controllers/decidim/time_tracker/assignee_questionnaire_controller.rb +80 -0
  48. data/app/controllers/decidim/time_tracker/milestones_controller.rb +62 -0
  49. data/app/controllers/decidim/time_tracker/reports/user_controller.rb +38 -0
  50. data/app/controllers/decidim/time_tracker/time_events_controller.rb +68 -0
  51. data/app/controllers/decidim/time_tracker/time_tracker_controller.rb +43 -0
  52. data/app/forms/decidim/time_tracker/admin/activity_form.rb +27 -0
  53. data/app/forms/decidim/time_tracker/admin/assignation_form.rb +29 -0
  54. data/app/forms/decidim/time_tracker/admin/task_form.rb +22 -0
  55. data/app/forms/decidim/time_tracker/milestone_form.rb +32 -0
  56. data/app/forms/decidim/time_tracker/time_event_form.rb +47 -0
  57. data/app/helpers/decidim/time_tracker/admin/application_helper.rb +33 -0
  58. data/app/helpers/decidim/time_tracker/application_helper.rb +95 -0
  59. data/app/jobs/decidim/time_tracker/stop_counter_job.rb +29 -0
  60. data/app/models/decidim/time_tracker/activity.rb +135 -0
  61. data/app/models/decidim/time_tracker/application_record.rb +10 -0
  62. data/app/models/decidim/time_tracker/assignation.rb +68 -0
  63. data/app/models/decidim/time_tracker/assignee.rb +29 -0
  64. data/app/models/decidim/time_tracker/assignee_data.rb +19 -0
  65. data/app/models/decidim/time_tracker/milestone.rb +27 -0
  66. data/app/models/decidim/time_tracker/task.rb +44 -0
  67. data/app/models/decidim/time_tracker/time_event.rb +62 -0
  68. data/app/models/decidim/time_tracker/time_tracker.rb +46 -0
  69. data/app/models/decidim/time_tracker/tos_acceptance.rb +16 -0
  70. data/app/permissions/decidim/time_tracker/admin/permissions.rb +69 -0
  71. data/app/permissions/decidim/time_tracker/permissions.rb +69 -0
  72. data/app/presenters/decidim/time_tracker/admin_log/activity_presenter.rb +44 -0
  73. data/app/presenters/decidim/time_tracker/admin_log/assignation_presenter.rb +48 -0
  74. data/app/presenters/decidim/time_tracker/admin_log/task_presenter.rb +46 -0
  75. data/app/presenters/decidim/time_tracker/admin_log/value_types/activity_presenter.rb +28 -0
  76. data/app/presenters/decidim/time_tracker/admin_log/value_types/time_tracker_presenter.rb +28 -0
  77. data/app/views/decidim/time_tracker/admin/_breadcrumbs.html.erb +56 -0
  78. data/app/views/decidim/time_tracker/admin/activities/_form.html.erb +41 -0
  79. data/app/views/decidim/time_tracker/admin/activities/_index.html.erb +73 -0
  80. data/app/views/decidim/time_tracker/admin/activities/edit.html.erb +5 -0
  81. data/app/views/decidim/time_tracker/admin/activities/new.html.erb +5 -0
  82. data/app/views/decidim/time_tracker/admin/assignations/_form.html.erb +30 -0
  83. data/app/views/decidim/time_tracker/admin/assignations/index.html.erb +67 -0
  84. data/app/views/decidim/time_tracker/admin/assignations/new.html.erb +9 -0
  85. data/app/views/decidim/time_tracker/admin/questionnaires/_index.html.erb +27 -0
  86. data/app/views/decidim/time_tracker/admin/questionnaires/_questionnaire.html.erb +21 -0
  87. data/app/views/decidim/time_tracker/admin/stats/index.html.erb +50 -0
  88. data/app/views/decidim/time_tracker/admin/tasks/_assignations.html.erb +60 -0
  89. data/app/views/decidim/time_tracker/admin/tasks/_form.html.erb +7 -0
  90. data/app/views/decidim/time_tracker/admin/tasks/_index.html.erb +61 -0
  91. data/app/views/decidim/time_tracker/admin/tasks/edit.html.erb +16 -0
  92. data/app/views/decidim/time_tracker/admin/tasks/index.html.erb +5 -0
  93. data/app/views/decidim/time_tracker/admin/tasks/new.html.erb +12 -0
  94. data/app/views/decidim/time_tracker/milestones/index.html.erb +60 -0
  95. data/app/views/decidim/time_tracker/reports/user/index.html.erb +41 -0
  96. data/app/views/decidim/time_tracker/time_tracker/_activity.html.erb +43 -0
  97. data/app/views/decidim/time_tracker/time_tracker/_answer_questionnaire.html.erb +7 -0
  98. data/app/views/decidim/time_tracker/time_tracker/_assignee_data.html.erb +9 -0
  99. data/app/views/decidim/time_tracker/time_tracker/_callout_status.html.erb +3 -0
  100. data/app/views/decidim/time_tracker/time_tracker/_idle_activity.html.erb +27 -0
  101. data/app/views/decidim/time_tracker/time_tracker/_milestone_form.html.erb +35 -0
  102. data/app/views/decidim/time_tracker/time_tracker/_request_activity.html.erb +22 -0
  103. data/app/views/decidim/time_tracker/time_tracker/_sign_in.html.erb +5 -0
  104. data/app/views/decidim/time_tracker/time_tracker/index.html.erb +59 -0
  105. data/config/activity_questionnaire.yml +26 -0
  106. data/config/assignee_questionnaire.yml +37 -0
  107. data/config/i18n-tasks.yml +10 -0
  108. data/config/locales/ca.yml +394 -0
  109. data/config/locales/cs.yml +394 -0
  110. data/config/locales/en.yml +419 -0
  111. data/config/locales/es.yml +394 -0
  112. data/db/migrate/20200302115642_create_decidim_time_tracker_time_trackers.rb +10 -0
  113. data/db/migrate/20200302115654_create_decidim_time_tracker_tasks.rb +11 -0
  114. data/db/migrate/20200302115658_create_decidim_time_tracker_assignees.rb +12 -0
  115. data/db/migrate/20200302115700_create_decidim_time_tracker_activities.rb +19 -0
  116. data/db/migrate/20200302115708_create_decidim_time_tracker_milestones.rb +13 -0
  117. data/db/migrate/20200302115831_create_decidim_time_tracker_assignations.rb +16 -0
  118. data/db/migrate/20200302115840_create_decidim_time_tracker_time_events.rb +15 -0
  119. data/db/migrate/20201118153327_create_decidim_time_tracker_assignee_data.rb +10 -0
  120. data/db/migrate/20201223115130_create_decidim_time_tracker_tos_acceptances.rb +18 -0
  121. data/lib/decidim/time_tracker.rb +45 -0
  122. data/lib/decidim/time_tracker/admin.rb +10 -0
  123. data/lib/decidim/time_tracker/admin_engine.rb +51 -0
  124. data/lib/decidim/time_tracker/component.rb +248 -0
  125. data/lib/decidim/time_tracker/engine.rb +59 -0
  126. data/lib/decidim/time_tracker/reports.rb +10 -0
  127. data/lib/decidim/time_tracker/reports_engine.rb +34 -0
  128. data/lib/decidim/time_tracker/test/admin_log_presenter_examples.rb +34 -0
  129. data/lib/decidim/time_tracker/test/factories.rb +110 -0
  130. data/lib/decidim/time_tracker/test/time_tracker_context.rb +18 -0
  131. data/lib/decidim/time_tracker/time_tracker_activity_questionnaire_answers_serializer.rb +74 -0
  132. data/lib/decidim/time_tracker/version.rb +9 -0
  133. data/vendor/assets/javascripts/jsrender.min.js +4 -0
  134. metadata +276 -0
@@ -0,0 +1,394 @@
1
+ cs:
2
+ activemodel:
3
+ attributes:
4
+ activity:
5
+ active: Active
6
+ description: Popis
7
+ end_date: Datum ukončení
8
+ max_minutes_per_day: Maximum minutes per day
9
+ requests_start_at: Požadavky začínají v
10
+ start_date: Datum zahájení
11
+ milestone:
12
+ title: Co jste udělal?
13
+ task:
14
+ name: Jméno
15
+ errors:
16
+ models:
17
+ milestone:
18
+ attributes:
19
+ attachment:
20
+ needs_to_be_reattached: Vyžaduje být znovu připojen
21
+ time_event:
22
+ attributes:
23
+ activity:
24
+ finished: Aktivita již byla ukončena
25
+ inactive: Aktivita není aktivní
26
+ no_time_available: Uživatel dosáhl maximálního množství času dostupného pro den
27
+ not_started: Aktivita zatím nezačala
28
+ assignation:
29
+ unassigned: User is not assigned to the task
30
+ start:
31
+ date_format: Čas začátku není datum
32
+ stop:
33
+ date_format: Čas ukončení není datum
34
+ stop_before_start: Ukončení je před začátkem
35
+ decidim:
36
+ admin:
37
+ filters:
38
+ activity_id_eq:
39
+ label: Aktivita
40
+ activity_task_id_eq:
41
+ label: Úloha
42
+ search_placeholder:
43
+ user_name_or_user_nickname_or_user_email_cont: Search for a user's name, nickname or email
44
+ components:
45
+ time_tracker:
46
+ name: Časový záznam
47
+ settings:
48
+ global:
49
+ activities_label: Název pro "Aktivity"
50
+ announcement: Oznámení
51
+ assignations_label: Jméno pro "Přiřazení"
52
+ milestones_label: Název pro "Milníky"
53
+ tasks_label: Název pro "Úkoly"
54
+ time_events_label: Název pro "Čas události"
55
+ step:
56
+ announcement: Oznámení
57
+ views:
58
+ activity:
59
+ info: Klikněte na tlačítko pro zaznamenání času.
60
+ time_elapsed: 'Uplynulý čas:'
61
+ index:
62
+ account_message: <a href="%{sign_in_url}">Přihlaste se pomocí svého účtu</a> nebo se <a href="%{sign_up_url}">zaregistrujte</a> pro účast na této aktivitě.
63
+ data:
64
+ fill: Fill in data
65
+ submit: Submit
66
+ request: Žádost o připojení k aktivitě
67
+ log:
68
+ value_types:
69
+ activity_presenter:
70
+ not_found: 'The Activity was not found on the database (ID: %{id})'
71
+ time_tracker_presenter:
72
+ not_found: 'The Time Tracker component was not found on the database (ID: %{id})'
73
+ pages:
74
+ home:
75
+ statistics:
76
+ activities_count: Activities
77
+ assignees_count: Volunteers
78
+ tasks_count: Úlohy
79
+ participatory_processes:
80
+ statistics:
81
+ activities_count: Activities
82
+ assignees_count: Volunteers
83
+ tasks_count: Úlohy
84
+ time_tracker:
85
+ admin:
86
+ actions:
87
+ title: Akce
88
+ activities:
89
+ actions:
90
+ assignations: Správa přiřazení
91
+ confirm_destroy: Opravdu chcete odstranit tuto aktivitu?
92
+ destroy: Odstranit aktivitu
93
+ edit: Upravit aktivitu
94
+ new: Nová aktivita
95
+ create:
96
+ error: Chyba vytváření aktivity
97
+ success: Aktivita byla úspěšně vytvořena
98
+ destroy:
99
+ success: Aktivita úspěšně smazána
100
+ edit:
101
+ submit: Změnit aktivitu
102
+ title: Upravit aktivitu
103
+ index:
104
+ title: Úkolové aktivity
105
+ new:
106
+ submit: Vytvořit aktivitu
107
+ title: Nová aktivita
108
+ update:
109
+ error: Chyba při aktualizaci aktivity
110
+ success: Akce byla úspěšně aktualizována
111
+ assignations:
112
+ actions:
113
+ accept: Přijmout
114
+ accept_all: Accept all pending assignations
115
+ assignations: Správa přiřazení
116
+ confirm_destroy: Opravdu chcete odstranit toto přiřazení?
117
+ destroy: Odstranit přiřazení
118
+ new: Nové přiřazení
119
+ reject: Odmítnout
120
+ create:
121
+ error: Chyba při vytváření přiřazení
122
+ success: Přiřazení bylo úspěšně vytvořeno
123
+ destroy:
124
+ error: Chyba při odstraňování přiřazení
125
+ succcess: Přiřazení bylo úspěšně odstraněno
126
+ form:
127
+ existing_user: Existující účastník
128
+ non_user: Není účastníkem
129
+ select_user: Vybrat účastníka
130
+ user_type: Typ účastníka
131
+ index:
132
+ title: Přiřazení
133
+ new:
134
+ create: Vytvořit přiřazení
135
+ title: Nové přiřazení k této aktivitě
136
+ update:
137
+ error: Chyba při aktualizaci přiřazení
138
+ success: Přiřazená osoba úspěšně aktualizována
139
+ breadcrumbs:
140
+ assignations: Přiřazení
141
+ global: Všechny úkoly
142
+ stats: Stats
143
+ exports:
144
+ time_tracker_activity_questionnaire_answers: Activity questionnaire answers
145
+ time_tracker_assignee_questionnaire_answers: Assignee questionnaire answers
146
+ models:
147
+ activity:
148
+ name: Aktivita
149
+ assignation:
150
+ name: Přiřazení
151
+ task:
152
+ name: Úloha
153
+ questionnaires:
154
+ index:
155
+ title: Questionnaires
156
+ questionnaire:
157
+ edit: Upravit dotazník
158
+ stats:
159
+ index:
160
+ title: Stats
161
+ tasks:
162
+ actions:
163
+ confirm_destroy: Jste si jisti, že chcete odstranit tento úkol?
164
+ destroy: Smazat úkol
165
+ edit: Upravit úkol
166
+ new: Nová úloha
167
+ activity_questionnaire:
168
+ title: Activity questionnaire
169
+ assignations:
170
+ bulk_invalid: Error, %{count} participants could not be assigned
171
+ bulk_ok: Successfully assigned %{count} participants
172
+ pending: Čekající přiřazení
173
+ assignee_questionnaire:
174
+ title: Terms and conditions questionnaire
175
+ create:
176
+ error: Chyba při vytváření úlohy
177
+ success: Úloha úspěšně vytvořena
178
+ destroy:
179
+ success: Úloha úspěšně smazána
180
+ edit:
181
+ submit: Aktualizovat
182
+ title: Aktualizovat úkol
183
+ index:
184
+ title: Úlohy
185
+ new:
186
+ submit: Vytvořit
187
+ title: Vytvořit úkol
188
+ update:
189
+ error: Chyba při aktualizaci úlohy
190
+ success: Úloha úspěšně aktualizována
191
+ time_tracker_exports:
192
+ create:
193
+ error: Chyba při importu dat o sledování času do odpovědnosti
194
+ success: Data sledování času byla úspěšně exportována do odpovědnosti
195
+ admin_log:
196
+ activity:
197
+ create: "%{user_name} created the %{resource_name} activity"
198
+ delete: "%{user_name} removed the %{resource_name} activity"
199
+ update: "%{user_name} updated the %{resource_name} activity"
200
+ assignation:
201
+ create: "%{user_name} created an assignation"
202
+ delete: "%{user_name} removed an assignation"
203
+ update: "%{user_name} updated an assignation"
204
+ task:
205
+ create: "%{user_name} created the %{resource_name} task"
206
+ delete: "%{user_name} removed the %{resource_name} task"
207
+ update: "%{user_name} updated the %{resource_name} task"
208
+ assignations:
209
+ request:
210
+ error: There was an error assigning you to this activity.
211
+ success: You have successfully requested to join this activity!
212
+ show:
213
+ assignations_activity: "Aktivita %{user_name}"
214
+ milestones_list: Seznam milníků
215
+ clock:
216
+ hours: "%{n}h"
217
+ minutes: "%{n}m"
218
+ seconds: "%{n}s"
219
+ default_activity_questionnaire:
220
+ description: Děkujeme, že jste vyplnili tento dotazník! Ptáme se na vás tento soubor otázek, který vám pomůže pochopit, zda je váš projekt (a jeho akce prováděné na dobrovolném základě) vyvážený, pokud jde o rozdělení úkolů kvůli pohlaví. Zohlednění těchto otázek může být také užitečnou příležitostí k analýze toho, co je považováno za důležité a kdo tyto úkoly obvykle plní.
221
+ question_1:
222
+ body: Jak je podle vás tento úkol důležitý?
223
+ description: Od 1 do 5 považujete tento úkol za nejdůležitější (5), vůbec není důležitý (1) nebo něco mezi tím?
224
+ option_1: 1 (vůbec není důležitý)
225
+ option_2: 2 (nepříliš důležité)
226
+ option_3: 3 (Spíše důležité)
227
+ option_4: 4 (Velmi důležité)
228
+ option_5: 5 (Nejdůležitější)
229
+ question_2:
230
+ body: Kdo si myslíte, že tento úkol obvykle plní?
231
+ description: Myslíte si, že tento úkol plní většinou lidé, kteří se ztotožňují s určitým pohlavím?
232
+ option_1: Většinou ženy
233
+ option_2: Většinou muži
234
+ option_3: Nevidím rozdíly podle pohlaví
235
+ option_4: Ostatní
236
+ title: Jak vnímáte tento úkol?
237
+ tos: Údaje, které zde byly zodpovězeny, se považují za důvěrné a používají se pouze pro statistické účely. Také platí všeobecné <a href="/pages/terms-and-conditions">Podmínky</a>. Odesláním tohoto dotazníku s nimi souhlasíte.
238
+ default_assignee_questionnaire:
239
+ description: Thank you for filling this questionnaire! We are asking you this set of questions to help you understand whether your project (and its actions carried out on a voluntary basis) is balanced in terms of task distribution due to gender.
240
+ question_1:
241
+ body: Which gender do you identify with?
242
+ description: Choose the option that best suits your gender identity.
243
+ option_1: Woman
244
+ option_2: Man
245
+ option_3: Non-Binary
246
+ option_4: Ostatní
247
+ question_2:
248
+ body: What is your age?
249
+ description: Choose your age range
250
+ option_1: Under 15
251
+ option_10: 55 to 60
252
+ option_11: 65 to 70
253
+ option_12: 70 to 75
254
+ option_13: 75 to 80
255
+ option_14: 80 to 85
256
+ option_15: 85 to 90
257
+ option_16: Over 90
258
+ option_2: 15 to 20
259
+ option_3: 20 to 25
260
+ option_4: 25 to 30
261
+ option_5: 30 to 35
262
+ option_6: 35 to 40
263
+ option_7: 40 to 45
264
+ option_8: 45 to 50
265
+ option_9: 50 to 55
266
+ title: Terms of use and demographic data
267
+ tos: Údaje, které zde byly zodpovězeny, se považují za důvěrné a používají se pouze pro statistické účely. Také platí všeobecné <a href="/pages/terms-and-conditions">Podmínky</a>. Odesláním tohoto dotazníku s nimi souhlasíte.
268
+ milestone:
269
+ dedicated_time: "%{hours}h %{minutes}m %{seconds}s"
270
+ time_dedicated: Vyhrazený čas
271
+ title: "Aktivita %{user_name}"
272
+ milestone_form:
273
+ button_no: Ne, děkuji
274
+ button_submit: Save
275
+ description: Share a proof of your work by uploading a picture and a brief description of what you've accomplished.
276
+ input_file: Soubor
277
+ input_title: Název
278
+ title: Zanechte svou značku!
279
+ milestones:
280
+ create:
281
+ error: Chyba při vytváření milníku
282
+ success: Milník byl úspěšně vytvořen
283
+ index:
284
+ assignations_activity: "Aktivita %{user_name}"
285
+ back_to_list: Back to activities
286
+ joined_on: Přidal/a se dne
287
+ last_worked_on: Naposledy pracoval
288
+ total_time: Celkový čas vyhrazen
289
+ milestone:
290
+ time_dedicated: Čas vyhrazen
291
+ models:
292
+ activity:
293
+ fields:
294
+ assignations_accepted: Přijaté přiřazení
295
+ assignations_pending: Čekající přiřazení
296
+ description: Popis
297
+ end_date: Datum ukončení
298
+ max_minutes_per_day: Max. minut denně
299
+ requests_start_at: Požadavky začínají v
300
+ start_date: Datum zahájení
301
+ status: Stav
302
+ statuses:
303
+ finished: Dokončeno
304
+ inactive: Neaktivní
305
+ not_started: Nezahájeno
306
+ open: Otevřeno
307
+ name: Aktivita
308
+ assignation:
309
+ fields:
310
+ activity: Aktivita
311
+ email: E-mail
312
+ invited_at: Invited at
313
+ invited_by: Pozván od
314
+ name: Jméno
315
+ requested_at: Požadováno v %{time}
316
+ status: Stav
317
+ statuses:
318
+ accepted: Přijato
319
+ pending: Čekající
320
+ rejected: Odmítnuto
321
+ task: Úloha
322
+ time_dedicated: Vyhrazený čas
323
+ tos_accepted_at: Členem od
324
+ name: Přiřazení
325
+ questionnaire:
326
+ fields:
327
+ name: Jméno
328
+ title: Název
329
+ task:
330
+ fields:
331
+ activities_count: Number of activities
332
+ activities_end_at: Poslední aktivita končí v
333
+ activities_start_at: První aktivita začíná v
334
+ assignations_accepted: Přijaté přiřazení
335
+ assignations_pending: Čekající přiřazení
336
+ name: Jméno
337
+ name: Úloha
338
+ reports:
339
+ user:
340
+ index:
341
+ accepted: Přijato
342
+ dedicated_time: 'Dosud vyhrazený čas: %{time}'
343
+ empty: Nemáte žádné přiřazení aktivit
344
+ pending: Čekající
345
+ time_events:
346
+ start:
347
+ already_started: Počítadlo je již spuštěno
348
+ error: Chyba při spuštění počítadla
349
+ success: Counter started successfully
350
+ stop:
351
+ already_stopped: Počítadlo již zastaveno
352
+ error: Chyba při zastavování počítadla
353
+ success: Counter stopped successfully
354
+ time_tracker:
355
+ activity:
356
+ counter_stopped: Počítadlo bylo automaticky zastaveno
357
+ questionnaire:
358
+ answered: Děkujeme za zodpovězení dotazníku!
359
+ respond: Co si myslíte o tomto úkolu?
360
+ assignee_data:
361
+ answer: Let's start!
362
+ description: To better understand our participants and their relationship with these tasks, we ask you to fill a couple questions about your demographic profile. We also want to make sure you agree to the terms of use before signing up for any task. Thank you!
363
+ title: Terms of use and demographic data
364
+ callout_status:
365
+ finished: Ukončeno %{end_date}
366
+ inactive: Neaktivní
367
+ not_started: Začíná %{start_date}
368
+ open: Otevřít, začalo %{start_date}
369
+ idle_activity:
370
+ assignation_pending: Již aplikováno! Brzy správce zkontroluje vaši žádost.
371
+ assignation_rejected: Omlouváme se, Vaše žádost byla zamítnuta.
372
+ index:
373
+ empty: There are no activities yet.
374
+ milestones_list: Lidé pracující v této aktivitě
375
+ questionnaire_in_preview_mode: This questionnaire cannot be answered in preview mode!
376
+ request_activity:
377
+ assignation_pending: Již aplikováno! Brzy správce zkontroluje vaši žádost.
378
+ assignation_rejected: Omlouváme se, Vaše žádost byla zamítnuta.
379
+ assignee_questionnaire: Please accept the <a href="%{path}" target="_blank">terms of use</a> to join the activity.
380
+ time_tracker_activity_questionnaire_answers_serializer:
381
+ activity_description: Aktivita
382
+ activity_id: ID aktivity
383
+ created_at: Zodpovězeno
384
+ id: ID odpovědi
385
+ ip_hash: Ip Hash
386
+ registered: Registrován
387
+ task_id: ID úkolu
388
+ task_name: Úloha
389
+ unregistered: Neregistrovaný
390
+ user_status: Stav uživatele
391
+ layouts:
392
+ decidim:
393
+ user_profile:
394
+ time_tracker: Moje dobrovolnická práce
@@ -0,0 +1,419 @@
1
+ ---
2
+ en:
3
+ activemodel:
4
+ attributes:
5
+ activity:
6
+ active: Active
7
+ description: Description
8
+ end_date: End date
9
+ max_minutes_per_day: Maximum minutes per day
10
+ requests_start_at: Requests start at
11
+ start_date: Start date
12
+ milestone:
13
+ title: What have you done?
14
+ task:
15
+ name: Name
16
+ errors:
17
+ models:
18
+ milestone:
19
+ attributes:
20
+ attachment:
21
+ needs_to_be_reattached: Needs to be reattached
22
+ time_event:
23
+ attributes:
24
+ activity:
25
+ finished: Activity has finished already
26
+ inactive: Activity is not active
27
+ no_time_available: User has reached the maximum amount of time available
28
+ for the day
29
+ not_started: Activity has not started yet
30
+ assignation:
31
+ unassigned: User is not assigned to the task
32
+ start:
33
+ date_format: Start time is not a date
34
+ stop:
35
+ date_format: Stop time is not a date
36
+ stop_before_start: Stop is before start
37
+ decidim:
38
+ admin:
39
+ filters:
40
+ activity_id_eq:
41
+ label: Activity
42
+ activity_task_id_eq:
43
+ label: Task
44
+ search_placeholder:
45
+ user_name_or_user_nickname_or_user_email_cont: Search for a user's name,
46
+ nickname or email
47
+ components:
48
+ time_tracker:
49
+ name: Time Tracker
50
+ settings:
51
+ global:
52
+ activities_label: Name for "Activities"
53
+ announcement: Announcement
54
+ assignations_label: Name for "Assignations"
55
+ milestones_label: Name for "Milestones"
56
+ tasks_label: Name for "Tasks"
57
+ time_events_label: Name for "Time Events"
58
+ step:
59
+ announcement: Announcement
60
+ views:
61
+ activity:
62
+ info: Click on the button to track your time.
63
+ time_elapsed: 'Time elapsed:'
64
+ index:
65
+ account_message: <a href="%{sign_in_url}">Sign in with your account</a>
66
+ or <a href="%{sign_up_url}">sign up</a> to participate in this activity.
67
+ data:
68
+ fill: Fill in data
69
+ submit: Submit
70
+ request: Request to join activity
71
+ log:
72
+ value_types:
73
+ activity_presenter:
74
+ not_found: 'The Activity was not found on the database (ID: %{id})'
75
+ time_tracker_presenter:
76
+ not_found: 'The Time Tracker component was not found on the database (ID:
77
+ %{id})'
78
+ pages:
79
+ home:
80
+ statistics:
81
+ activities_count: Activities
82
+ assignees_count: Volunteers
83
+ tasks_count: Tasks
84
+ participatory_processes:
85
+ statistics:
86
+ activities_count: Activities
87
+ assignees_count: Volunteers
88
+ tasks_count: Tasks
89
+ time_tracker:
90
+ admin:
91
+ actions:
92
+ title: Actions
93
+ activities:
94
+ actions:
95
+ assignations: Manage assignations
96
+ confirm_destroy: Are you sure you want to delete this activity?
97
+ destroy: Delete activity
98
+ edit: Edit activity
99
+ new: New activity
100
+ create:
101
+ error: Error creating the activity
102
+ success: Activity created successfully
103
+ destroy:
104
+ success: Activity deleted successfully
105
+ edit:
106
+ submit: Update activity
107
+ title: Edit activity
108
+ index:
109
+ title: Task activities
110
+ new:
111
+ submit: Create activity
112
+ title: New activity
113
+ update:
114
+ error: Error updating activity
115
+ success: Activity updated successfully
116
+ assignations:
117
+ actions:
118
+ accept: Accept
119
+ accept_all: Accept all pending assignations
120
+ assignations: Manage assignations
121
+ confirm_destroy: Are you sure you want to delete this assignation?
122
+ destroy: Delete assignation
123
+ new: New assignation
124
+ reject: Reject
125
+ create:
126
+ error: Error creating assignation
127
+ success: Assignation created successfully
128
+ destroy:
129
+ error: Error removing assignation
130
+ succcess: Assignation removed successfully
131
+ form:
132
+ existing_user: Existing participant
133
+ non_user: Non participant
134
+ select_user: Select a participant
135
+ user_type: Participant type
136
+ index:
137
+ title: Assignations
138
+ new:
139
+ create: Create assignation
140
+ title: New assignation to this activity
141
+ update:
142
+ error: Error updating assignation
143
+ success: Assignee updated successfully
144
+ breadcrumbs:
145
+ assignations: Assignations
146
+ global: All tasks
147
+ stats: Stats
148
+ exports:
149
+ time_tracker_activity_questionnaire_answers: Activity questionnaire answers
150
+ time_tracker_assignee_questionnaire_answers: Assignee questionnaire answers
151
+ models:
152
+ activity:
153
+ name: Activity
154
+ assignation:
155
+ name: Assignation
156
+ task:
157
+ name: Task
158
+ questionnaires:
159
+ index:
160
+ title: Questionnaires
161
+ questionnaire:
162
+ edit: Edit questionnaire
163
+ stats:
164
+ index:
165
+ title: Stats
166
+ tasks:
167
+ actions:
168
+ confirm_destroy: Are you sure you want to delete this task?
169
+ destroy: Delete task
170
+ edit: Edit task
171
+ new: New task
172
+ activity_questionnaire:
173
+ title: Activity questionnaire
174
+ assignations:
175
+ bulk_invalid: Error, %{count} participants could not be assigned
176
+ bulk_ok: Successfully assigned %{count} participants
177
+ pending: Pending assignations
178
+ assignee_questionnaire:
179
+ title: Terms and conditions questionnaire
180
+ create:
181
+ error: Error creating the task
182
+ success: Task created successfully
183
+ destroy:
184
+ success: Task deleted successfully
185
+ edit:
186
+ submit: Update
187
+ title: Update task
188
+ index:
189
+ title: Tasks
190
+ new:
191
+ submit: Create
192
+ title: Create task
193
+ update:
194
+ error: Error updating the task
195
+ success: Task updated successfully
196
+ time_tracker_exports:
197
+ create:
198
+ error: Error importing the Time Tracker data to accountability
199
+ success: Time Tracker data exported to accountability successfully
200
+ admin_log:
201
+ activity:
202
+ create: "%{user_name} created the %{resource_name} activity"
203
+ delete: "%{user_name} removed the %{resource_name} activity"
204
+ update: "%{user_name} updated the %{resource_name} activity"
205
+ assignation:
206
+ create: "%{user_name} created an assignation"
207
+ delete: "%{user_name} removed an assignation"
208
+ update: "%{user_name} updated an assignation"
209
+ task:
210
+ create: "%{user_name} created the %{resource_name} task"
211
+ delete: "%{user_name} removed the %{resource_name} task"
212
+ update: "%{user_name} updated the %{resource_name} task"
213
+ assignations:
214
+ request:
215
+ error: There was an error assigning you to this activity.
216
+ success: You have successfully requested to join this activity!
217
+ show:
218
+ assignations_activity: "%{user_name}'s activity"
219
+ milestones_list: List of milestones
220
+ clock:
221
+ hours: "%{n}h"
222
+ minutes: "%{n}m"
223
+ seconds: "%{n}s"
224
+ default_activity_questionnaire:
225
+ description: Thank you for filling this questionnaire! We are asking you this
226
+ set of questions to help you understand whether your project (and its actions
227
+ carried out on a voluntary basis) is balanced in terms of task distribution
228
+ due to gender. Reflecting on these questions might also be a useful opportunity
229
+ to analyse what are the types of tasks considered important and who usually
230
+ performs these tasks.
231
+ question_1:
232
+ body: How important do you think this task is?
233
+ description: From 1 to 5, do you perceive this task as the most important
234
+ (5), not important at all (1) or something in between?
235
+ option_1: 1 (Not important at all)
236
+ option_2: 2 (Not very important)
237
+ option_3: 3 (Quite important)
238
+ option_4: 4 (Very important)
239
+ option_5: 5 (The most important)
240
+ question_2:
241
+ body: Who do you think usually perform this task?
242
+ description: Do you think this task is mostly performed by people who identify
243
+ with a certain gender?
244
+ option_1: Mostly women
245
+ option_2: Mostly men
246
+ option_3: I don't see differences by gender
247
+ option_4: Other
248
+ title: How do you perceive this task?
249
+ tos: Data answered here is treated as confidential and used for statistical
250
+ purposes only. General <a href="/pages/terms-and-conditions">Terms and Conditions</a>
251
+ also apply. By submitting this questionnaire, you agree to them.
252
+ default_assignee_questionnaire:
253
+ description: Thank you for filling this questionnaire! We are asking you this
254
+ set of questions to help you understand whether your project (and its actions
255
+ carried out on a voluntary basis) is balanced in terms of task distribution
256
+ due to gender.
257
+ question_1:
258
+ body: Which gender do you identify with?
259
+ description: Choose the option that best suits your gender identity.
260
+ option_1: Woman
261
+ option_2: Man
262
+ option_3: Non-Binary
263
+ option_4: Other
264
+ question_2:
265
+ body: What is your age?
266
+ description: Choose your age range
267
+ option_1: Under 15
268
+ option_10: 55 to 60
269
+ option_11: 65 to 70
270
+ option_12: 70 to 75
271
+ option_13: 75 to 80
272
+ option_14: 80 to 85
273
+ option_15: 85 to 90
274
+ option_16: Over 90
275
+ option_2: 15 to 20
276
+ option_3: 20 to 25
277
+ option_4: 25 to 30
278
+ option_5: 30 to 35
279
+ option_6: 35 to 40
280
+ option_7: 40 to 45
281
+ option_8: 45 to 50
282
+ option_9: 50 to 55
283
+ title: Terms of use and demographic data
284
+ tos: Data answered here is treated as confidential and used for statistical
285
+ purposes only. General <a href="/pages/terms-and-conditions">Terms and Conditions</a>
286
+ also apply. By submitting this questionnaire, you agree to them.
287
+ milestone:
288
+ dedicated_time: "%{hours}h %{minutes}m %{seconds}s"
289
+ time_dedicated: Time dedicated
290
+ title: "%{user_name}'s activity"
291
+ milestone_form:
292
+ button_no: No thanks
293
+ button_submit: Save
294
+ description: Share a proof of your work by uploading a picture and a brief
295
+ description of what you've accomplished.
296
+ input_file: File
297
+ input_title: Title
298
+ title: Leave your mark!
299
+ milestones:
300
+ create:
301
+ error: Error creating the milestone
302
+ success: Milestone created successfully
303
+ index:
304
+ assignations_activity: "%{user_name}'s activity"
305
+ back_to_list: Back to activities
306
+ joined_on: Joined on
307
+ last_worked_on: Last worked on
308
+ total_time: Total time dedicated
309
+ milestone:
310
+ time_dedicated: Time dedicated
311
+ models:
312
+ activity:
313
+ fields:
314
+ assignations_accepted: Accepted assignations
315
+ assignations_pending: Pending assignations
316
+ description: Description
317
+ end_date: End date
318
+ max_minutes_per_day: Max. minutes per day
319
+ requests_start_at: Requests start at
320
+ start_date: Start date
321
+ status: Status
322
+ statuses:
323
+ finished: Finished
324
+ inactive: Inactive
325
+ not_started: Not started
326
+ open: Open
327
+ name: Activity
328
+ assignation:
329
+ fields:
330
+ activity: Activity
331
+ email: Email
332
+ invited_at: Invited at
333
+ invited_by: Invited by
334
+ name: Name
335
+ requested_at: Requested at %{time}
336
+ status: Status
337
+ statuses:
338
+ accepted: Accepted
339
+ pending: Pending
340
+ rejected: Rejected
341
+ task: Task
342
+ time_dedicated: Time dedicated
343
+ tos_accepted_at: Joined at
344
+ name: Assignation
345
+ questionnaire:
346
+ fields:
347
+ name: Name
348
+ title: Title
349
+ task:
350
+ fields:
351
+ activities_count: Number of activities
352
+ activities_end_at: Last activity ends at
353
+ activities_start_at: First activity starts at
354
+ assignations_accepted: Accepted assignations
355
+ assignations_pending: Pending assignations
356
+ name: Name
357
+ name: Task
358
+ reports:
359
+ user:
360
+ index:
361
+ accepted: Accepted
362
+ dedicated_time: 'Time dedicated so far: %{time}'
363
+ empty: You don't have any activity assignations
364
+ pending: Pending
365
+ time_events:
366
+ start:
367
+ already_started: Counter already started
368
+ error: Error starting counter
369
+ success: Counter started successfully
370
+ stop:
371
+ already_stopped: Counter already stopped
372
+ error: Error stopping counter
373
+ success: Counter stopped successfully
374
+ time_tracker:
375
+ activity:
376
+ counter_stopped: Counter has been stopped automatically
377
+ questionnaire:
378
+ answered: Thanks for answering the questionnaire!
379
+ respond: What do you think about this task?
380
+ assignee_data:
381
+ answer: Let's start!
382
+ description: To better understand our participants and their relationship
383
+ with these tasks, we ask you to fill a couple questions about your demographic
384
+ profile. We also want to make sure you agree to the terms of use before
385
+ signing up for any task. Thank you!
386
+ title: Terms of use and demographic data
387
+ callout_status:
388
+ finished: Ended on %{end_date}
389
+ inactive: Inactive
390
+ not_started: Will start on %{start_date}
391
+ open: Open, started on %{start_date}
392
+ idle_activity:
393
+ assignation_pending: Already applied! Soon an admin will review your application.
394
+ assignation_rejected: Sorry, you're application has been rejected.
395
+ index:
396
+ empty: There are no activities yet.
397
+ milestones_list: People working in this activity
398
+ questionnaire_in_preview_mode: This questionnaire cannot be answered in preview
399
+ mode!
400
+ request_activity:
401
+ assignation_pending: Already applied! Soon an admin will review your application.
402
+ assignation_rejected: Sorry, you're application has been rejected.
403
+ assignee_questionnaire: Please accept the <a href="%{path}" target="_blank">terms
404
+ of use</a> to join the activity.
405
+ time_tracker_activity_questionnaire_answers_serializer:
406
+ activity_description: Activity
407
+ activity_id: Activity ID
408
+ created_at: Answered on
409
+ id: Answer ID
410
+ ip_hash: Ip Hash
411
+ registered: Registered
412
+ task_id: Task ID
413
+ task_name: Task
414
+ unregistered: Unregistered
415
+ user_status: User status
416
+ layouts:
417
+ decidim:
418
+ user_profile:
419
+ time_tracker: My voluntary work