-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathca.yml
4422 lines (4421 loc) · 250 KB
/
ca.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#-- copyright
#OpenProject is an open source project management software.
#Copyright (C) the OpenProject GmbH
#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License version 3.
#OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
#Copyright (C) 2006-2013 Jean-Philippe Lang
#Copyright (C) 2010-2013 the ChiliProject Team
#This program is free software; you can redistribute it and/or
#modify it under the terms of the GNU General Public License
#as published by the Free Software Foundation; either version 2
#of the License, or (at your option) any later version.
#This program is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#See COPYRIGHT and LICENSE files for more details.
#++
ca:
no_results_title_text: Actualment no hi ha res per a mostrar.
activities:
index:
no_results_title_text: No hi hagut activitat al projecte en aquesta finestra de temps.
work_packages:
activity_tab:
no_results_title_text: No activity to display
no_results_description_text: 'Choose "Show everything" to show all activity and comments'
label_activity_show_all: "Show everything"
label_activity_show_only_comments: "Show comments only"
label_activity_show_only_changes: "Show changes only"
label_sort_asc: "Newest at the bottom"
label_sort_desc: "Newest on top"
label_type_to_comment: "Add a comment. Type @ to notify people."
label_submit_comment: "Submit comment"
label_who: Who?
changed_on: "changed on"
created_on: "created this on"
changed: "changed"
created: "creat"
commented: "comentat"
restrict_visibility: Restrict visibility
restricted_journal: Restricted comments are visible to a limited group of members.
unsaved_changes_confirmation_message: You have unsaved changes. Are you sure you want to close the editor?
admin:
plugins:
no_results_title_text: Actualment no hi ha connectors disponibles.
no_results_content_text: Consulta la nostra pàgina d'integracions i connectors per obtenir més informació.
custom_styles:
color_theme: "Tema de color"
color_theme_custom: "(Personalitzat)"
tab_interface: "Interface"
tab_branding: "Branding"
tab_pdf_export_styles: "PDF export styles"
colors:
primary-button-color: "Botó principal"
accent-color: "Accent"
header-bg-color: "Fons de capçalera"
header-item-bg-hover-color: "Fons de capçalera en passar el ratolí"
main-menu-bg-color: "Fons del menú principal"
main-menu-bg-selected-background: "Menú principal quan es selecciona"
main-menu-bg-hover-background: "Menú principal en passar el ratolí"
custom_colors: "Colors personalitzats"
customize: "Personalitza la teva instal·lació d'OpenProject amb el teu propi logotip i colors."
enterprise_notice: "Com un \"Gràcies!\" especial per la contribució financera al desenvolupament d'OpenProject, aquesta petita extensió només està disponible pels subscriptors de l'edició Enterprise."
enterprise_more_info: "Nota: el logotip utilitzat serà accessible públicament."
manage_colors: "Edita les opcions de selecció de colors"
instructions:
primary-button-color: "Color d'accent fort, utilitzat per al botó més important de la pantalla."
accent-color: "Color per a enllaços i altres elements ben destacats."
header-item-bg-hover-color: "Color de fons dels elements clicables de la capçalera quan el ratolí hi passa per damunt."
header-item-font-color: "Color de lletra dels elements clicables de la capçalera."
header-item-font-hover-color: "Color de lletra dels elements clicables de la capçalera quan el ratolí hi passa per damunt."
header-border-bottom-color: "Una línia prima sota la capçalera. Deixa aquest camp buit si no vols cap línia."
main-menu-bg-color: "Color de fons del menú lateral de l'esquerra."
theme_warning: Canviant el tema substituiràs el teu estil personalitzat. El disseny es perdrà. Estàs segur que vols continuar?
enterprise:
upgrade_to_ee: "Actualitza a l'edició Enterprise"
add_token: "Carrega un token de suport de l'edició Enterprise"
delete_token_modal:
text: "Estàs segur que vols eliminar el token de l'edició Enterprise utilitzat?"
title: "Eliminar el token"
replace_token: "Substitueix el teu token de suport actual"
order: "Ordena l'edició Enterpise on-premises"
paste: "Enganxa el teu token de suport de l'edició Enterprise"
required_for_feature: "Aquesta extensió només està disponible amb un token de suport de l'edició Enterprise."
enterprise_link: "Per a més informació, cliqueu aquí."
start_trial: "Inicia la prova gratuïta"
book_now: "Reserva ara"
get_quote: "Obtenir un pressupost"
buttons:
upgrade: "Actualitza ara"
contact: "Contacta amb nosaltres per una demostració"
enterprise_info_html: "és una extensió de l'edició Enterprise <span class='spot-icon spot-icon_inline spot-icon_enterprise-addons'>."
upgrade_info: "Si us plau, actualitza a una versió de pagament per tal d'activar i començar a utilitzar aquesta funcionalitat en el teu equip."
jemalloc_allocator: Jemalloc memory allocator
journal_aggregation:
explanation:
text: "Les accions individuals d'un sol usuari (per exemple actualitzar dos cops un paquet de treball) seran agregades en una sola acció si la diferència temporal és menor a l'especificada. Aquests seran exposats com una acció individual dins l'aplicació. Això, també reduïra el número d'emails enviats i el retràs en el %{webhook_link} ja que les notificacións també seran retrasades."
link: "webhook"
announcements:
show_until: Mostra fins
is_active: actualment mostrant
is_inactive: no mostrats actualment
antivirus_scan:
not_processed_yet_message: "La descàrrega està bloquejada, ja que el fitxer encara no s'ha analitzat per detectar virus. Si us plau, intenta-ho més tard."
quarantined_message: "S'ha detectat un virus al fitxer '%{filename}'. S'ha posat en quarantena i no es pot descarregar."
deleted_message: "S'ha detectat un virus al fitxer '%{filename}'. El fitxer s'ha suprimit."
deleted_by_admin: "Un administrador ha suprimit el fitxer en quarantena '%{filename}'."
overridden_by_admin: "La quarantena per al fitxer '%{filename}' ha estat eliminada per %{user}. Ja es pot accedir al fitxer."
quarantined_attachments:
container: "Contenidor"
delete: "Suprimeix el fitxer en quarantena"
title: "Adjunts en quarantena"
error_cannot_act_self: "No es poden realitzar accions amb els vostres propis fitxers pujats."
attribute_help_texts:
note_public: "Tots els textos i imatges que afegeixis a aquest camp seran públicament visibles per a tots els usuaris que hagin iniciat sessió!"
text_overview: "En aquesta vista pots crear texts d'ajuda personalitzats per la vista d'atributs. Una vegada definits, aquests texts es poden veure clicant la icona d'ajuda al costat de l'atribut pertinent."
label_plural: "Texts d'ajuda d'atributs"
show_preview: "Previsualitzar text"
add_new: "Afegeix text d'ajuda"
edit: "Edita el text d'ajuda per a %{attribute_caption}"
background_jobs:
status:
error_requeue: "La tasca ha produït un error, però s'està reintentant. L'error era: %{message}"
cancelled_due_to: "La feina s'ha cancel·lat a causa d'un error: %{message}"
ldap_auth_sources:
ldap_error: "Error LDAP: %{error_message}"
ldap_auth_failed: "No s'ha pogut autenticar en el servidor de LDAP."
sync_failed: "No s'ha pogut sincronitzar des de LDAP: %{message}."
back_to_index: "Fes clic aquí per tornar a la llista de connexions."
technical_warning_html: |
This LDAP form requires technical knowledge of your LDAP / Active Directory setup.
<br>
<a href="https://www.openproject.org/help/administration/manage-ldap-authentication/">Please visit our documentation for detailed instructions</a>.
attribute_texts:
name: Nom arbitrari de la connexió LDAP
host: Nom d'amfitrió o adreça IP de LDAP
login_map: La clau d'atribut en LDAP que es fa servir per a identificar un inici de sessió d'usuari únic. Normalment, aquesta serà `uid` o `samAccountName`.
generic_map: La clau d'atribut en LDAP que és assignada a l'atribut `%{attribute}` d'OpenProject
admin_map_html: "Opcional: La clau d'atribut en LDAP que <strong>si hi és</strong> marca l'usuari d'OpenProject com a administrador. Deixeu-ho buit en cas de dubte."
system_user_dn_html: |
Enter the DN of the system user used for read-only access.
<br>
Example: uid=openproject,ou=system,dc=example,dc=com
system_user_password: Introduïu la contrasenya associada de l'usuari del sistema
base_dn: |
Introdueix la DN Base del subarbre del LDAP la qual vols que OpenProject faci servir per a buscar usuaris i grups.
OpenProject filtrarà els noms d'usuaris proporcionats només en aquest subarbre.
Exemple: ou=usuaris,dc=exemple,dc=com
filter_string: |
Afegeix un filtre RFC4515 opcional per aplicar els resultats retornats per usuaris filtrats en el LDAP.
Això, pot ser utilitzat per a restringir el set d'usuaris que OpenProject troba per autentificar i agrupar la sincronització.
filter_string_concat: |
OpenProject sempre filtre segons l'atribut d'inici de sessió subministrat per l'usuari per tal d'identificar el registre. Si heu proporcionat un filtre aquí, serà encadenat amb un "I". Per defecte, un filtre catch-all (objectClass=*) serà utilitzat.
onthefly_register: |
Si actives aquesta casella, OpenProject automàticament crearà nous usuaris a partir de les seves entrades LDAP durant la seva primera autentificació a OpenProject.
Deixa-la desactivada si sols voleu permetre a comptes existents a OpenProject que s'autentifiquin via LDAP!
connection_encryption: "Encriptació de Connexió"
encryption_details: "Opcions LDAPS / STARTTLS"
system_account: "Compte de Sistema"
system_account_legend: |
OpenProject requereix accés de sols lectura mitjançant un compte de sistema per a buscar usuaris i grups al vostre arbre LDAP.
Si us plau, especifica les credencials associades a aquest usuari de sistema en al secció següent.
ldap_details: "Detalls LDAP"
user_settings: "Associació d'atributs"
user_settings_legend: |
Els camps següents són relacionats amb la manera com els usuaris són creats a OpenProject a partir d'entrades LDAP i quins atributs LDAP són fets servir per a definir els atributs d'un usuari d'OpenProject (associació d'atributs).
tls_mode:
plain: "cap"
simple_tls: "LDAPS"
start_tls: "STARTTLS"
plain_description: "Obre una connexió no encriptada al servidor LDAP. No es recomana l'ús en producció."
simple_tls_description: "Utilitza LDAPS. Requereix un port separat en el servidor LDAP. Aquest mode queda obsolet sovint, recomanem utilitzar STARTTLS quan sigui possible."
start_tls_description: "Envia una ordre STARTTLS després de connectar amb el port LDAP estàndard. Recomanat per a connexions encriptades."
section_more_info_link_html: >
Aquesta secció concerneix la seguretat de connexió d'aquesta font d'autentificació LDAP. Per a més imformació, visiteu <a href="%{link}">la documentació Xarxa::LDAP</a>.
tls_options:
verify_peer: "Verifica el certificat SSL"
verify_peer_description_html: >
Enables strict SSL verification of the certificate trusted chain. <br> <strong>Warning:</strong> Unchecking this option disables SSL verification of the LDAP server certificate. This exposes your connection to Man in the Middle attacks.
tls_certificate_description: "Si el certificat de servidor LDAP no està en els recursos de confiança d'aquest sistema, pots afegir-lo manualment aquí. Introdueix una entrada de certificat PEM X509."
forums:
show:
no_results_title_text: Ara mateix no hi ha posts en aquest fòrum.
colors:
index:
no_results_title_text: Actualment no hi ha cap color.
no_results_content_text: Crea un nou color
label_new_color: "Nou color"
new:
label_new_color: "Nou color"
edit:
label_edit_color: "Edita el color"
form:
label_new_color: "Nou color"
label_edit_color: "Edita el color"
label_no_color: "Sense color"
label_properties: "Propietats"
label_really_delete_color: >
Esteu segur que voleu suprimir el següent tipus de projecte? Els projectes amb aquest tipus no se suprimiran.
custom_actions:
actions:
name: "Accions"
add: "Afegeix una acció"
assigned_to:
executing_user_value: "(Assigna-ho a l'usuari que ho està executant)"
conditions: "Condicions"
plural: "Accions personalitzades"
new: "Afegeix una acció personalitzada"
edit: "Edita l'acció personalitzada %{name}"
execute: "Executa %{name}"
upsale:
title: "Accions personalitzades"
description: "Les accions personalitzades són accessos ràpids d'un sol clic que et permeten crear accions predefinides en els paquets de treball que desitgis basat en estat, rol, estil o projecte."
custom_fields:
admin:
custom_field_projects:
is_for_all_blank_slate:
heading: Per tots els projectes
description: This custom field is enabled in all projects since the "For all projects" option is checked. It cannot be deactivated for individual projects.
items:
actions: "Item actions"
blankslate:
root:
title: "Your list of items is empty"
description: "Start by adding items to the custom field of type hierarchy. Each item can be used to create a hierarchy bellow it. To navigate and create sub-items inside a hierarchy click on the created item."
item:
title: This item doesn't have any hierarchy level below
description: Add items to this list to create sub-items inside another one
delete_dialog:
title: "Delete custom field item"
heading: "Delete custom field item?"
description: "This action will irreversibly remove the item and all its sub-items. Any assigned values will be permanently deleted. If this field is required, removing items may cause existing work packages to become invalid."
placeholder:
label: "Item label"
short: "Short name"
notice:
remember_items_and_projects: "Remember to set items and projects in the respective tabs for this custom field."
hierarchy:
subitems:
zero: no sub-items
one: 1 sub-item
other: "%{count} sub-items"
upsale:
custom_field_format_hierarchy: "Need a hierarchy in your custom fields for work packages?"
text_add_new_custom_field: >
Per afegir nous camps personalitzats a un projecte primer has de crear-los abans de poder-los afegir a aquest projecte.
is_enabled_globally: "És habilitat globalment"
enabled_in_project: "Habilitat en aquest projecte"
contained_in_type: "Contingut a la classe"
confirm_destroy_option: "Eliminant una opció n'eliminareu totes les ocurrències (ex. en un paquet de treball). Segur que vols eliminar-ho?"
reorder_alphabetical: "Reorganitza els valors alfabèticament"
reorder_confirmation: "Alerta: L'ordre actual dels valors disponibles es perdran. Vols continuar?"
placeholder_version_select: "Work package or project selection is required first"
instructions:
is_required: "Mark the custom field as required. This will make it mandatory to fill in the field when creating new or updating existing resources."
is_required_for_project: "Check to enable this attribute and make it required in all projects. It cannot be deactived for individual projects."
is_for_all: "Mark the custom field as available in all existing and new projects."
multi_select: "Allows the user to assign multiple values to this custom field."
searchable: "Include the field values when using the global search functionality."
searchable_for_project: "Check to make this attribute available as a filter in project lists."
editable: "Allow the field to be editable by users themselves."
admin_only: "Check to make this attribute only visible to administrators. Users without admin rights will not be able to view or edit it."
is_filter: >
Allow the custom field to be used in a filter in work package views. Note that only with 'For all projects' selected, the custom field will show up in global views.
tab:
no_results_title_text: Actualment no hi ha camps personalitzats.
no_results_content_text: Crea un camp personalitzat nou
concatenation:
single: "o"
dry_validation:
errors:
int?: "must be an integer."
filled?: "must be filled."
greater_or_equal_zero: "must be greater or equal to 0."
not_found: "not found."
rules:
item:
root_item: "cannot be a root item."
not_persisted: "must be an already existing item."
label:
not_unique: "must be unique within the same hierarchy level."
short:
not_unique: "must be unique within the same hierarchy level."
parent:
not_descendant: "must be a descendant of the hierarchy root."
rules:
depth: "Depth"
item: "Item"
label: "Label"
short: "Short name"
parent: "Pare"
blueprint: "Pattern blueprint"
global_search:
placeholder: "Cerca a %{app_title}"
overwritten_tabs:
wiki_pages: "Wiki"
messages: "Fòrum"
groups:
index:
no_results_title_text: Actualment no hi ha cap grup.
no_results_content_text: Crear un nou grup
users:
no_results_title_text: Actualment cap usuari forma part d'aquest grup.
memberships:
no_results_title_text: Actualment no hi ha projectes que formin part d'aquest grup.
incoming_mails:
ignore_filenames: >
Especifica una llista de noms per a ignorar quan es processin adjuncions per a correus electrònics entrants (p.e. signatures o icones). Introduïu un nom de fitxer per línia.
projects:
copy:
#Contains custom strings for options when copying a project that cannot be found elsewhere.
members: "Membres del projecte"
overviews: "Visió general del projecte"
queries: "Paquets de treball: vistes guardades"
wiki_page_attachments: "Pàgines wiki: fitxers adjunts"
work_package_attachments: "Paquets de treball: fitxers adjunts"
work_package_categories: "Paquets de treball: categories"
work_package_file_links: "Paquets de treball: enllaços de fitxers"
work_package_shares: "Work packages: shares"
delete:
scheduled: "L'eliminació s'ha planificat i s'efectuarà de fons. Sereu notificats del resultat."
schedule_failed: "El projecte no es pot eliminar: %{errors}"
failed: "L'eliminació del projecte %{name} ha fallat"
failed_text: "La petició per a eliminar el projecte %{name} ha fallat. El projecte s'ha arxivat."
completed: "S'ha completat l'eliminació del projecte %{name}"
completed_text: "La petició d'eliminació del projecte '%{name}' s'ha completat."
completed_text_children: "Addicionalment, s'han eliminat els següents subprojectes:"
index:
open_as_gantt: "Obre com a diagrama de Gantt"
no_results_title_text: Actualment no hi ha projectes
no_results_content_text: Crear un nou projecte
search:
label: Project name filter
placeholder: Search by project name
lists:
active: "Projectes actius"
my: "Els meus projectes"
favored: "Projectes preferits"
archived: "Projectes arxivats"
shared: "Shared project lists"
my_lists: "My project lists"
new:
placeholder: "New project list"
delete_modal:
title: "Delete project list"
heading: "Delete this project list?"
text: "This action will not delete any project the list contains. Are you sure you want to delete this project list?"
settings:
change_identifier: Canvia l'identificador
actions:
label_enable_all: "Enable all"
label_disable_all: "Disable all"
activities:
no_results_title_text: Actualment no hi ha activitats disponibles.
forums:
no_results_title_text: Ara mateix no hi ha fòrums pel projecte.
no_results_content_text: Crea un fòrum nou
categories:
no_results_title_text: Actualment no hi ha cap categoria de paquet de treball.
no_results_content_text: Crear una nova categoria de paquet de treball
custom_fields:
no_results_title_text: Actualment no hi ha cap camp personalitzat disponible.
life_cycle:
header:
title: "Project life cycle"
description_html: "The active project phases define this project's life cycle and are defined in the <a href=%{admin_settings_url} target=\"_blank\">administration settings</a>. Enabled phases will be displayed in your <a href=%{overview_url} target=\"_blank\">project overview</a>."
non_defined: "No phases are currently defined."
section_header: "Phases"
step:
use_in_project: "Use %{step} in this project"
filter:
label: "Search project phase"
project_custom_fields:
header:
title: "Atributs de projecte"
description_html: 'These project attributes will be displayed in your <a href=%{overview_url} target="_blank">project overview page</a> under their respective sections. You can enable or disable individual attributes. Project attributes and sections are defined in the <a href=%{admin_settings_url} target="_blank">administration settings</a> by the administrator of the instance. '
filter:
label: "Search project attribute"
actions:
label_enable_single: "Active in this project, click to disable"
label_disable_single: "Inactive in this project, click to enable"
remove_from_project: "Remove from project"
is_required_blank_slate:
heading: Required in all projects
description: This project attribute is activated in all projects since the "Required in all projects" option is checked. It cannot be deactivated for individual projects.
types:
no_results_title_text: Actualment no hi ha cap classe disponible.
form:
enable_type_in_project: 'Activar tipus "%{type}"'
versions:
no_results_title_text: Actualment no hi ha cap versió per al projecte.
no_results_content_text: Crear una nova versió
storage:
no_results_title_text: No hi ha espai addicional de disc gravat consumit per aquest projecte.
work_package_priorities:
new_label: "New priority"
project_phase:
working_days_count:
one: "Duration: %{count} working day"
other: "Duration: %{count} working days"
lists:
create:
success: "The modified list has been saved as a new list"
failure: "The modified list cannot be saved: %{errors}"
update:
success: "The modified list has been saved"
failure: "The modified list cannot be saved: %{errors}"
publish:
success: "The list has been made public"
failure: "The list cannot be made public: %{errors}"
unpublish:
success: "The list has been made private"
failure: "The list cannot be made private: %{errors}"
can_be_saved: "List modified:"
can_be_saved_as: "The modifications can only be saved in a new list:"
members:
index:
no_results_title_text: Actualment no hi ha cap membre que formi part d'aquest projecte.
no_results_content_text: Afegeix un membre al projecte
invite_by_mail: "Envia invitació a %{mail}"
send_invite_to: "Send invite to"
columns:
shared: "Compartida"
filters:
all_shares: "All shares"
menu:
all: "Totes"
invited: "Invited"
locked: "Bloquejat"
project_roles: "Project roles"
wp_shares: "Work package shares"
groups: "Grups"
delete_member_dialog:
title: "Remove member"
will_remove_the_users_role: "This will remove the user’s role from this project."
will_remove_the_groups_role: "This will remove the group role from this project."
however_work_packages_shared_with_user_html:
one: "However, %{shared_work_packages_link} has also been shared with this user."
other: "However, %{shared_work_packages_link} have also been shared with this user."
however_work_packages_shared_with_group_html:
one: "However, %{shared_work_packages_link} has also been shared with this group."
other: "However, %{shared_work_packages_link} have also been shared with this group."
remove_work_packages_shared_with_user_too: "A user that has been removed as member can still access shared work packages. Would you like to remove the shares too?"
remove_work_packages_shared_with_group_too: "A group that has been removed as member can still access shared work packages. Would you like to remove the shares too?"
will_not_affect_inherited_shares: "(This will not affect work packages shared with their group)."
can_remove_direct_but_not_shared_roles: "You can remove this user as a direct project member but a group they are in is also a member of this project, so they will continue being a member via the group."
also_work_packages_shared_with_user_html:
one: "Also, %{shared_work_packages_link} has been shared with this user."
other: "Also, %{shared_work_packages_link} have been shared with this user."
remove_project_membership_or_work_package_shares_too: "Do you want to remove just the user as a direct member (and keep the shares) or remove the work package shares too?"
will_remove_all_user_access_priveleges: "Deleting this member will remove all access privileges of the user to the project. The user will still exist as part of the instance."
will_remove_all_group_access_priveleges: "Deleting this member will remove all access privileges of the group to the project. The group will still exist as part of the instance."
cannot_delete_inherited_membership: "You cannot delete this member because they belong to a group that is itself a member of this project."
cannot_delete_inherited_membership_note_admin_html: "You can either remove the group as a member of the project or this specific member from the group in the %{administration_settings_link}."
cannot_delete_inherited_membership_note_non_admin: "You can either remove the group as a member of the project or contact your administrator to remove this specific member from the group."
delete_work_package_shares_dialog:
title: "Revoke work package shares"
shared_with_this_user_html:
one: "%{all_shared_work_packages_link} has been shared with this user."
other: "%{all_shared_work_packages_link} have been shared with this user."
shared_with_this_group_html:
one: "%{all_shared_work_packages_link} has been shared with this group."
other: "%{all_shared_work_packages_link} have been shared with this group."
shared_with_permission_html:
one: "Only %{shared_work_packages_link} has been shared with %{shared_role_name} permissions."
other: "Only %{shared_work_packages_link} have been shared with %{shared_role_name} permissions."
revoke_all_or_with_role: "Would you like to revoke access to all shared work packages, or only those with %{shared_role_name} permissions?"
will_not_affect_inherited_shares: "(This will not affect work packages shared with their group)."
cannot_remove_inherited: "The work packages shares shared via groups cannot be removed."
cannot_remove_inherited_with_role: "The work packages shares with role %{shared_role_name} are shared via groups and cannot be removed."
cannot_remove_inherited_note_admin_html: "You can either revoke the share to the group or remove this specific member from the group in the %{administration_settings_link}."
cannot_remove_inherited_note_non_admin: "You can either revoke the share to the group or contact your administrator to remove this specific member from the group."
will_revoke_directly_granted_access: "This action will revoke their access to all of them, but the work packages shared with a group."
will_revoke_access_to_all: "This action will revoke their access to all of them."
my:
access_token:
create_dialog:
title: Token generated
header: The %{type} token has been generated
warning: Note that this is the only time you will see this token, make sure to copy it now.
errors:
token_name_blank: "Please provide an API token name"
token_name_in_use: "This API token name is already in use, please select a different one"
new_access_token_dialog_title: "Create new API token"
new_access_token_dialog_show_button_text: "API token"
new_access_token_dialog_text_field_placeholder_text: "My API token"
new_access_token_dialog_text_field_label: "Nom"
new_access_token_dialog_submit_button_text: "Crear"
new_access_token_dialog_text: "This token will allow third-party applications to communicate with your instance. To differentiate the new API token, please give it a name."
new_access_token_dialog_attention_text: "Treat API tokens like passwords. Anyone with this link will have access to information from this instance, share it only with trusted users."
failed_to_reset_token: "Fallada al reiniciar el token d'accés: %{error}"
failed_to_create_token: "Failed to create access token: %{error}"
failed_to_revoke_token: "Failed to revoke access token: %{error}"
notice_reset_token: "S'ha generat un nou token %{type}. El teu token d'accés és:"
token_value_warning: "Nota: Aquesta és la única vegada que veuràs aquest token, assegura't de copiar-lo ara."
no_results_title_text: Actualment no hi ha cap token d'accés disponible.
notice_api_token_revoked: "The API token has been deleted. To create a new token please use the button in the API section."
notice_rss_token_revoked: "S'ha suprimit el token RSS. Per crear un token nou, utilitzeu l'enllaç de la secció RSS."
notice_ical_token_revoked: 'El token d''iCalendar "%{token_name}" per al calendari "%{calendar_name}" en el projecte "%{project_name}" s''ha revocat. L''URL d''iCalendar amb aquest token és ara invàlida.'
news:
index:
no_results_title_text: Actualment no hi ha cap novetat per a informar.
no_results_content_text: Afegir una notícia
users:
autologins:
prompt: "Manté la sessió iniciada durant %{num_days}"
sessions:
remembered_devices: "Dispositius recordats"
remembered_devices_caption: "Una llista de tots els dispositius que han iniciat sessió en aquest compte mitjançant l'opció \"Mantenir la sessió iniciada\"."
session_name: "%{browser_name}%{browser_version} en %{os_name}"
browser: "Navegador"
device: "Dispositiu / Sistema Operatiu"
unknown_browser: "navegador desconegut"
unknown_os: "sistema operatiu desconegut"
current: "Sessió actual"
title: "Gestió de sessions"
instructions: "Aquesta és una llista de dispositius que s’han registrat al vostre compte. Revoca qualsevol sessió que no coneguis."
may_not_delete_current: "No pots eliminar la sessió actual."
groups:
member_in_these_groups: "Aquest usuari és actualment membre dels següents grups:"
no_results_title_text: Aquest usuari no és actualment membre de cap grup.
summary_with_more: Member of %{names} and %{count_link}.
more: "%{count} more"
summary: Member of %{names}.
memberships:
no_results_title_text: Aquest usuari no és actualment membre de cap projecte.
open_profile: "Open profile"
page:
text: "Text"
placeholder_users:
right_to_manage_members_missing: >
No pots eliminar un usuari de marcador de posició. No tens permís per administrar membres per tots els projectes dels quals l'usuari de marcador de posició és membre.
delete_tooltip: "Elimina usuari de marcador de posició"
deletion_info:
heading: "Elimina l'usuari de marcador de posició %{name}"
data_consequences: >
Tots els rols de l'usuari de marcador de posició (ex. assignat, responsable o altres valors d'usuari) seran reassignats a un compte anomenat "Usuari eliminat". Com que les dades de totes les comptes eliminades seran assignades a aquest compte no serà possible distingir les dades que l'usuari ha creat de les que altres usuaris eliminats han creat.
irreversible: "Aquesta acció és irreversible"
confirmation: "Introdueix el nom de l'usuari de marcador de posició %{name} per confirmar l'eliminació."
upsale:
title: Usuaris de marcador de posició
description: >
Els usuaris de marcador de posició són una forma d'assignar paquets de treball a usuaris que no formen part del teu projecte. Poden ser útils en múltiples escenaris; com per exemple en cas que necessitis manejar tasques per a un recurs que encara no té nom o no està disponible, o en cas que no vulguis donar accés a OpenProject a una persona, però, tot i això, vulguis manejar les tasques que se li han assignat.
prioritiies:
edit:
priority_color_text: |
Cliqueu per assignar o canviar el color d'aquesta prioritat.
Pot fer-se servir per a destacar paquets de treball en la taula.
reactions:
action_title: "React"
add_reaction: "Add reaction"
react_with: "React with %{reaction}"
and_user: "and %{user}"
and_others:
one: ' i 1 altre'
other: ' i %{count} altres'
reaction_by: "%{reaction} by"
reportings:
index:
no_results_title_text: Actualment no hi ha cap informe d'estat.
no_results_content_text: Afegir un informe d'estat
statuses:
edit:
status_color_text: |
Clica per a assignar o canviar el color d'aquest estat.
Es mostra al botó d'estat i es pot fer servir per a destacar paquets de treball a la taula.
status_default_text: |-
New work packages are by default set to this type. They cannot be read-only.
status_excluded_from_totals_text: |-
Check this option to exclude work packages with this status from totals of Work,
Remaining work, and % Complete in a hierarchy.
status_percent_complete_text: |-
In <a href="%{href}">status-based progress calculation mode</a>, the % Complete of a work
package is automatically set to this value when this status is selected.
Ignored in work-based mode.
status_readonly_html: |
Check this option to mark work packages with this status as read-only.
No attributes can be changed with the exception of the status.
<br>
<strong>Note</strong>: Inherited values (e.g., from children or relations) will still apply.
index:
no_results_title_text: Actualment no hi ha cap estat de paquet de treball.
no_results_content_text: Afegir un nou estat
headers:
is_default: "Per defecte"
is_closed: "Tancat"
is_readonly: "Només lectura"
excluded_from_totals: "Excluded from totals"
themes:
dark: "Dark"
light: "Clar"
light_high_contrast: "Clar alt contrast"
types:
index:
no_results_title_text: Actualment no hi ha cap tipus.
no_results_content_text: Crear un nou tipus
edit:
form_configuration:
tab: "Configuració del formulari"
more_info_text_html: >
L'edició Enterprise et permet personalitzar la configuració de formularis amb aquests add-ons extra: <br> <ul class="%{list_styling_class}"><ul class="%{list_styling_class}"> <li><b>Afegeix nous grups d'atributs</b></li> <li><b>Canvia el nom dels grups d'atributs</b></li> <li><b>Afegeix una taula de paquets de treball relacionats</b></li> </ul>
projects:
tab: "Projectes"
enabled_projects: "Projectes habilitats"
settings:
tab: "Configuració"
type_color_text: The selected color distinguishes different types in Gantt charts or work packages tables. It is therefore recommended to use a strong color.
subject_configuration:
tab: "Subject configuration"
manually_editable_subjects:
label: "Manually editable subjects"
caption: "Users can manually enter and edit work package subjects without restrictions."
automatically_generated_subjects:
label: "Automatically generated subjects"
caption: "Define a pattern using referenced attributes and text to automatically generate work package subjects. Users will not be able to manually edit subjects."
pattern:
label: "Subject pattern"
caption: "Add text or type / to search for an attribute. You can add spaces to separate them."
headings:
work_package: "Work package"
parent: "Parent"
project: "Project"
insert_as_text: "No attributes found. Add as text: \"%{word}\""
export_configuration:
tab: "Generate PDF"
intro: "Select which templates from those that are available you would like to enable for this type. The template determines the design and attributes visible in the exported PDF of a work package using this type. The first template on the list is selected by default."
pdf_export_templates:
label: "PDF Export templates"
actions:
label_enable_all: "Enable all"
label_disable_all: "Disable all"
versions:
overview:
work_packages_in_archived_projects: "La versió es comparteix amb projectes arxivats que encara tenen paquets de treball assignats a aquesta versió. Es comptabilitzen, però no apareixeran a les vistes enllaçades."
no_results_title_text: Actualment no hi ha cap paquet de treball assignat a aquesta versió.
wiki:
page_not_editable_index: La pàgina sol·licitada no existeix (encara). Se t'ha redirigit a la pàgina índex de totes les pàgines wiki.
no_results_title_text: Actualment no hi ha cap pàgina wiki.
print_hint: Aquesta acció imprimirà el contingut de la pàgina wiki sense cap barra de navegació.
index:
no_results_content_text: Afegiu una nova pàgina wiki
work_flows:
index:
no_results_title_text: Actualment no hi ha cap flux de treball.
work_packages:
datepicker_modal:
banner:
description:
automatic_mobile: "Start date derived."
click_on_show_relations_to_open_gantt: 'Click on "%{button_name}" for Gantt overview.'
manual_mobile: "Ignoring relations."
manual_gap_between_predecessors: "There is a gap between this and all predecessors."
manual_overlap_with_predecessors: "Overlaps with at least one predecessor."
manual_with_children: "This has child work packages but their start dates are ignored."
title:
automatic_mobile: "Automatically scheduled."
automatic_with_children: "The dates are determined by child work packages."
automatic_with_predecessor: "The start date is set by a predecessor."
manual_mobile: "Manually scheduled."
manually_scheduled: "Manually scheduled. Dates not affected by relations."
blankslate:
title: "No predecessors"
description: "To enable automatic scheduling, this work package needs to have at least one predecessor. It will then automatically be scheduled to start after the closest predecessor."
ignore_non_working_days:
title: "Només dies laborables"
mode:
title: "Scheduling mode"
automatic: "Automàtic"
manual: "Manual"
show_relations: "Mostra les relacions"
tabs:
aria_label: "Datepicker tabs"
children: "Fills"
dates: "Dates"
predecessors: "Predecessors"
successors: "Successors"
blankslate:
predecessors:
title: "No predecessors"
description: "This work package does not have any predecessors."
successors:
title: "No successors"
description: "This work package does not have any successors."
children:
title: "No children"
description: "This work package does not have any children."
x_descendants:
one: "Un paquet de treball descendent"
other: "%{count} paquets de treball descendents"
bulk:
copy_failed: "No s'ha pogut copiar els paquets de treball."
move_failed: "No s'ha pogut moure els paquets de treball."
could_not_be_saved: "Els següents paquets de treball no s'han pogut desar:"
none_could_be_saved: "Cap dels %{total} paquets de treball s'ha pogut actualitzar."
x_out_of_y_could_be_saved: "%{failing} de %{total} paquets de treball no s'han pogut actualitzar mentre %{success} s'han actualitzat."
selected_because_descendants: "While %{selected} work packages were selected, in total %{total} work packages are affected which includes descendants."
descendant: "descendent dels seleccionats"
move:
no_common_statuses_exists: "No hi ha estats disponibles per a tots els paquets de treball seleccionats. El seus estats no es poden canviar."
unsupported_for_multiple_projects: "Moure o copiar en massa no està soportat per paquets de treball de múltiples projectes"
current_type_not_available_in_target_project: >
The current type of the work package is not enabled in the target project. Please enable the type in the target project if you'd like it to remain unchanged. Otherwise, select an available type in the target project from the list.
bulk_current_type_not_available_in_target_project: >
The current types of the work packages aren't enabled in the target project. Please enable the types in the target project if you'd like them to remain unchanged. Otherwise, select an available type in the target project from the list.
sharing:
missing_workflow_warning:
title: "Falta un flux de treball per compartir paquets de treball"
message: "No s'ha configurat cap flux de treball per a la funció \"Editor de paquets de treball\". Sense un flux de treball, el que es comparteix amb l'usuari no pot alterar l'estat del paquet de treball. Els fluxos de treball es poden copiar. Seleccioneu un tipus d'origen (p. ex., \"Tasca\") i una funció d'origen (p. ex., \"Membre\"). A continuació, seleccioneu els tipus d'objectius. Per començar, podeu seleccionar tots els tipus com a objectius. Finalment, seleccioneu la funció \"Editor de paquets de treball\" com a objectiu i premeu \"Copia\". Després d'haver creat els valors predeterminats, ajusteu els fluxos de treball com ho feu per a qualsevol altra funció."
link_message: "Configura els fluxos de treball a l'administració."
templated_subject_hint: Automatically generated through type %{type}
summary:
reports:
category:
no_results_title_text: Actualment hi ha cap categoria disponible.
assigned_to:
no_results_title_text: Actualment no hi ha cap membre que formi part d'aquest projecte.
responsible:
no_results_title_text: Actualment no hi ha cap membre que formi part d'aquest projecte.
author:
no_results_title_text: Actualment no hi ha cap membre que formi part d'aquest projecte.
priority:
no_results_title_text: Actualment no hi ha prioritats disponibles.
type:
no_results_title_text: Actualment no hi ha cap classe disponible.
version:
no_results_title_text: Hi ha actualment cap versió disponible.
work_package_relations_tab:
index:
action_bar_title: "Add relations to other work packages to create a link between them."
no_results_title_text: There are currently no relations available.
blankslate_heading: "No relations"
blankslate_description: "This work package does not have any relations yet."
label_add_child_button: "Child"
label_add_x: "Add %{x}"
label_edit_x: "Edit %{x}"
label_add_description: "Add description"
lag:
subject: "Retard"
caption: "The minimum number of working days to keep in between the two work packages."
relations:
label_new_child_created: "New work package created and added as a child"
label_relates_singular: "relacionat amb"
label_relates_plural: "relacionat amb"
label_relates_to_singular: "relacionat amb"
label_relates_to_plural: "relacionat amb"
relates_description: "Creates a visible link between the two work packages with no additional effect"
relates_to_description: "Creates a visible link between the two work packages with no additional effect"
label_precedes_singular: "successor (after)"
label_precedes_plural: "successors (after)"
precedes_description: "The related work package necessarily needs to start after this one finishes"
label_follows_singular: "predecessor (before)"
label_follows_plural: "predecessors (before)"
follows_description: "The related work package necessarily needs to finish before this one can start"
label_child_singular: "child"
label_child_plural: "children"
new_child: "Create new child"
new_child_text: "Creates a related work package as a sub-item of the current (parent) work package"
child: "Child"
child_description: "Makes the related work package a sub-item of the current (parent) work package"
label_closest: "Closest"
label_blocks_singular: "blocs"
label_blocks_plural: "blocs"
blocks_description: "The related work package cannot be closed until this one is closed first"
label_blocked_singular: "bloquejats per"
label_blocked_plural: "bloquejats per"
label_blocked_by_singular: "bloquejats per"
label_blocked__by_plural: "bloquejats per"
blocked_description: "This work package cannot be closed until the related one is closed first"
blocked_by_description: "This work package cannot be closed until the related one is closed first"
label_duplicates_singular: "duplicats"
label_duplicates_plural: "duplicats"
duplicates_description: "This is a copy of the related work package"
label_duplicated_singular: "duplicat per"
label_duplicated_plural: "duplicat per"
label_duplicated_by_singular: "duplicat per"
label_duplicated_by_plural: "duplicat per"
duplicated_by_description: "The related work package is a copy of this"
duplicated_description: "The related work package is a copy of this"
label_includes_singular: "inclou"
label_includes_plural: "inclou"
includes_description: "Marks the related work package as including this one with no additional effect"
label_partof_singular: "part de"
label_partof_plural: "part de"
label_part_of_singular: "part de"
label_part_of_plural: "part de"
partof_description: "Marks the related work package as being part of this one with no additional effect"
part_of_description: "Marks the related work package as being part of this one with no additional effect"
label_requires_singular: "requereix"
label_requires_plural: "requereix"
requires_description: "Marks the related work package as a requirement to this one"
label_required_singular: "requerit per"
label_required_plural: "requerit per"
required_description: "Marks this work package as being a requirement to the related one"
label_parent_singular: "parent"
label_parent_plural: "parent"
ghost_relation_title: "Paquet de treball relacionat"
ghost_relation_description: "This is not visible to you due to permissions."
label_invitation: Invitació
account:
delete: "Elimina el compte"
delete_confirmation: "Segur que vols eliminar aquest compte?"
deletion_pending: "El compte ha estat bloquejat i està programada per eliminar-se. Tingues en compte que aquesta acció es processa de fons. Pot tardar uns moments fins que l'usuari estigui eliminat completament."
deletion_info:
data_consequences:
other: 'De les dades de l''usuari ha creat (per exemple, correu electrònic, preferències, paquets de treball, wiki entrades) se n''esborraran tantes com sigui possible. Fixeu-vos que dades com paquets de treball i entrades de la wiki no es poden suprimir sense que obstaculitzin la feina d''altres usuaris. Aquestes dades es reassignaran a un compte genèric anomenat "Usuari esborrat". Com que les dades de cada usuari suprimit es reassignen sempre a aquest compte genèric no serà possible distingir les dades d''aquest usuari de les dades d''un altre usuari esborrat.'
self: 'De les dades que has creat (per exemple, correu electrònic, preferències, paquets de treball, wiki entrades) se n''esborraran tantes com sigui possible. Fixa''t que dades com paquets de treball i entrades de la wiki no es poden suprimir sense que obstaculitzin la feina d''altres usuaris. Aquestes dades es reassignaran a un compte genèric anomenat "Usuari esborrat". Com que les dades de cada usuari suprimit es reassignen sempre a aquest compte genèric no serà possible distingir les teves dades de les dades d''un altre usuari esborrat.'
heading: "Suprimir el compte %{name}"
info:
other: "Suprimir el compte d'usuari és una acció irreversible."
self: "Eliminar el compte d'usuari és una acció irreversible."
login_consequences:
other: "El compte es suprimirà del sistema. Per tant, l'usuari ja no podrà iniciar la sessió amb les seves credencials actuals. Ell/ella pot decidir convertir-se en un usuari d'aquesta aplicació una altra vegada pels mitjans que aquesta aplicació ofereix."
self: "El teu compte s'eliminarà del sistema. Per tant, ja no podràs accedir amb les vostres credencials actuals. Si vols tornar a ser usuari d'aquesta aplicació una altra vegada, podràs fer-ho utilitzant els mitjans que l'aplicació proporciona."
login_verification:
other: "Introdueix les teves credencials %{name} per a verificar l'eliminació. Un cop enviades, et demanarem la confirmació de la teva contrasenya."
self: "Introdueix les teves credencials %{name} per a verificar l'eliminació. Un cop enviades, et demanarem la confirmació de la teva contrasenya."
error_inactive_activation_by_mail: >
El teu compte encara no ha estat activat. Per activar el compte, feu clic a l'enllaç que se't va enviar per correu electrònic.
error_inactive_manual_activation: >
El teu compte encara no ha estat activat. Espera a que un administrador l'activi.
error_self_registration_disabled: >
El registre d'usuaris està deshabilitat en aquest sistema. Demana a un administrador que et creï un compte.
error_self_registration_limited_provider: >
El registre d'usuari està limitat per al proveïdor d'inici de sessió únic '%{name}'. Si us plau, demaneu a un administrador que us activi el compte o que canviï el límit d'autoregistre d'aquest proveïdor.
login_with_auth_provider: "o inicia la sessió amb el teu compte"
signup_with_auth_provider: "o registra't mitjançant"
auth_source_login: Si us plau, entra com a <em>%{login}</em> per activar el teu compte.
omniauth_login: Si us plau, entra per activar el teu compte.
actionview_instancetag_blank_option: "Si us plau, selecciona"
activerecord:
attributes:
announcements:
show_until: "Mostrar fins"
attachment:
attachment_content: "Adjunta contingut"
attachment_file_name: "Nom de fitxer de l'adjunció"
content_type: "Content-type"
downloads: "Descàrregues"
file: "Fitxer"
filename: "Fitxer"
filesize: "Mida"
attribute_help_text:
attribute_name: "Atribut"
help_text: "Text d'ajuda"
capability:
context: "Context"
changeset:
repository: "Repositori"
comment:
commented: "Comentat" #an object that this comment belongs to
custom_action:
actions: "Accions"
custom_field:
allow_non_open_versions: "Permet versions no obertes"
default_value: "Valor per defecte"
editable: "Editable"
field_format: "Format"
is_filter: "Utilitzat com a filtre"
is_for_all: "Per tots els projectes"
is_required: "Obligatori"
max_length: "Longitud màxima"
min_length: "Longitud mínima"
content_right_to_left: "Right-to-Left content"
multi_value: "Permet la selecció múltiple"
possible_values: "Valors possibles"
regexp: "Expressió regular"
searchable: "Es pot cercar"
admin_only: "Admin-only"
custom_value:
value: "Valor"
doorkeeper/application:
uid: "ID de Client"
secret: "Clau secreta del Client"
owner: "Propietari"
builtin: "Builtin"
enabled: "Actiu"
redirect_uri: "URI de redirecció"
client_credentials_user_id: "ID d'Usuari Credencials de Client"
scopes: "Àmbits"
confidential: "Confidencial"
emoji_reaction:
reactable: "Reacted on"
enterprise_token:
domain: "Domini"
starts_at: "Vàlid des de"
subscriber: "Subscriptor"
encoded_token: "Token de suport Enterprise"
active_user_count_restriction: "Màxim nombre d'usuaris actius"
grids/grid:
page: "Pàgina"
row_count: "Nombre de files"
column_count: "Nombre de columnes"
widgets: "Widgets"
journal:
notes: "Notes"
cause_type: "Cause type"
ldap_auth_source:
account: "Compte"
attr_firstname: "Atribut Nom"
attr_lastname: "Atribut Cognom"
attr_login: "Atribut Nom d'usuari"
attr_mail: "Atribut de Correu electrònic"
filter_string: "Filter string"
admin: "Administrador"
base_dn: "Base DN"
host: "Servidor"
onthefly: "Creació d'usuari automàtica"
port: "Port"
tls_certificate_string: "Servidor LDAP del certificat SSL"
member:
roles: "Rol"
notification:
read_ian: "Read in-app"
resource: "Resource"
oauth_client:
client: "ID de client"
project:
active_value:
true: "desarxivat"
false: "arxivat"
description: "Descripció"
enabled_modules: "Mòduls habilitats"
identifier: "Identificador"
latest_activity_at: "Última activitat al"
parent: "Subprojecte de"
public_value:
title: "Visibilitat"
true: "públic"
false: "privat"
queries: "Consultes"
status_code: "Estat del projecte"
status_explanation: "Descripció de l'estat del projecte"
status_codes:
not_started: "No començat"
on_track: "Pel bon camí"
at_risk: "En risc"
off_track: "Pel mal camí"
finished: "Acabat"
discontinued: "Discontinuat"
templated: "Plantilla de projecte"
templated_value:
true: "marca com a plantilla"
false: "desmarca com a plantilla"
types: "Tipus"
versions: "Versions"
work_packages: "Paquets de treball"
project_custom_field:
is_required: "Required for all projects"
custom_field_section: Secció
project/phase:
date_range: "Date range"
definition: "Definition"
project/phase_definition:
name: "Name"
color: "Color"
start_gate: "Start phase gate"
start_gate_name: "Start phase gate name"
finish_gate: "Finish phase gate"
finish_gate_name: "Finish phase gate name"
query:
sums: "Sums"
columns: "Columnes"
column_names: "Columnes"
relations_to_type_column: "Relacions a %{type}"
relations_of_type_column: "relacions %{type}"
child_work_packages: "Child work packages"
group_by: "Agrupa els resultats per"
sort_by: "Sort results by"
filters: "Filtres"
timeline_labels: "Etiquetes de cronologia"
timeline_visible: "Mostra el diagrama de Gantt"
timeline_zoom_level: "Gantt chart zoom level"
timestamps: "Baseline timestamps"
sort_criteria: "Sort criteria"
highlighted_attributes: "Highlighted attributes"
highlighting_mode: "Highlight mode"
display_representation: "Display mode"
show_hierarchies: "Display mode"
starred: "Preferit"
hidden: "Hidden"
manual_sorting: "Manual sort order"
ordered_work_packages: "Work packages order"
include_subprojects: "Inclou subprojectes"
results: "Resultats"
relation:
lag: "Retard"
from: "Paquet de treball relacionat"
to: "Paquet de treball relacionat"
relation_type: "Relation type"
reminder:
remindable: "Reminded object"
remind_at: "Remind at"
remind_at_date: "Data"
remind_at_time: "Hora"
reminder_notification:
notification: "Notificació"