-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathda.dictionary.itop.ui.php
More file actions
1562 lines (1524 loc) · 90.6 KB
/
da.dictionary.itop.ui.php
File metadata and controls
1562 lines (1524 loc) · 90.6 KB
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
<?php
/**
* Localized data
*
* @copyright Copyright (C) 2010-2024 Combodo SAS
* @license https://opensource.org/licenses/AGPL-3.0
*
*/
/**
*
*/
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:AuditCategory' => 'Audit-kategori',
'Class:AuditCategory+' => 'Udsnit af alle Audits',
'Class:AuditCategory/Attribute:name' => 'Kategori navn',
'Class:AuditCategory/Attribute:name+' => 'Kort navn for denne kategori',
'Class:AuditCategory/Attribute:description' => 'Beskrivelse af Audit-kategori',
'Class:AuditCategory/Attribute:description+' => 'Udførlig beskrivelse af denne Audit-kategori',
'Class:AuditCategory/Attribute:definition_set' => 'Definition Set',
'Class:AuditCategory/Attribute:definition_set+' => 'OQL begreber, der definerer omfanget af objekter, der skal auditeres',
'Class:AuditCategory/Attribute:rules_list' => 'Audit-regler',
'Class:AuditCategory/Attribute:rules_list+' => 'Audit-regler for denne kategori',
'Class:AuditCategory/Attribute:ok_error_tolerance' => 'Warning threshold~~',
'Class:AuditCategory/Attribute:ok_error_tolerance+' => 'Percentage of invalid objects below which the result is a warning (orange)~~',
'Class:AuditCategory/Attribute:warning_error_tolerance' => 'Error threshold~~',
'Class:AuditCategory/Attribute:warning_error_tolerance+' => 'Percentage of invalid objects below which the result is in error (red)~~',
'Class:AuditCategory/Attribute:domains_list' => 'Domains~~',
'Class:AuditCategory/Attribute:domains_list+' => 'Domains which include this category~~',
]);
//
// Class: AuditRule
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:AuditRule' => 'Audit-regel',
'Class:AuditRule+' => 'En regel til at efterprøve den angivne Audit-kategori med',
'Class:AuditRule/Attribute:name' => 'Regel Navn',
'Class:AuditRule/Attribute:name+' => 'Kort navn for denne regel',
'Class:AuditRule/Attribute:description' => 'Audit-regel beskrivelse',
'Class:AuditRule/Attribute:description+' => 'Udførlig beskrivelse af denne Audit-regel',
'Class:AuditRule/Attribute:query' => 'Søgning at udføre',
'Class:AuditRule/Attribute:query+' => 'Den OQL forespørgsel, der skal udføres',
'Class:AuditRule/Attribute:valid_flag' => 'Gyldige objekter?',
'Class:AuditRule/Attribute:valid_flag+' => 'Sand, hvis reglen returnerer et gyldigt objekt, ellers Falsk',
'Class:AuditRule/Attribute:valid_flag/Value:true' => 'Sand',
'Class:AuditRule/Attribute:valid_flag/Value:true+' => 'Sand',
'Class:AuditRule/Attribute:valid_flag/Value:false' => 'Falsk',
'Class:AuditRule/Attribute:valid_flag/Value:false+' => 'Falsk',
'Class:AuditRule/Attribute:category_id' => 'Kategori',
'Class:AuditRule/Attribute:category_id+' => 'Kategori for denne regel',
'Class:AuditRule/Attribute:category_name' => 'Kategori',
'Class:AuditRule/Attribute:category_name+' => 'Kategorinavn for denne regel',
]);
//
// Class: AuditDomain
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:AuditDomain' => 'Audit Domain~~',
'Class:AuditDomain+' => 'Audit domains allow to group the audit categories.
Domain usually correspond to who is responsible for checking and fixing errors~~',
'Class:AuditDomain/Attribute:name' => 'Name~~',
'Class:AuditDomain/Attribute:name+' => 'Its a segmentation of the Audit by who is in charge of fixing it or just interested~~',
'Class:AuditDomain/Attribute:description' => 'Description~~',
'Class:AuditDomain/Attribute:description+' => '~~',
'Class:AuditDomain/Attribute:icon' => 'Icon~~',
'Class:AuditDomain/Attribute:icon+' => '~~',
'Class:AuditDomain/Attribute:categories_list' => 'Categories~~',
'Class:AuditDomain/Attribute:categories_list+' => 'Related audit categories. When running the audit on a domain, all related audit categories are checked and only those.~~',
]);
//
// Class: lnkAuditCategoryToAuditDomain
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:lnkAuditCategoryToAuditDomain' => 'Link AuditCategory / AuditDomain~~',
'Class:lnkAuditCategoryToAuditDomain+' => '~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:category_id' => 'Category~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:category_id+' => 'Audit Category~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:category_name' => 'Category name~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:category_name+' => 'Audit category name~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:domain_id' => 'Domain~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:domain_id+' => 'Audit domain~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:domain_name' => 'Domain name~~',
'Class:lnkAuditCategoryToAuditDomain/Attribute:domain_name+' => 'Audit domain name~~',
]);
//
// Class: QueryOQL
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:Query' => 'Forespørgsel',
'Class:Query+' => '',
'Class:Query/Attribute:name' => 'Navn',
'Class:Query/Attribute:name+' => '',
'Class:Query/Attribute:description' => 'Beskrivelse',
'Class:Query/Attribute:description+' => '',
'Class:Query/Attribute:is_template' => 'Template for OQL fields~~',
'Class:Query/Attribute:is_template+' => 'Usable as source for recipient OQL in Notifications~~',
'Class:Query/Attribute:is_template/Value:yes' => 'Yes~~',
'Class:Query/Attribute:is_template/Value:no' => 'No~~',
'Class:Query/Attribute:export_count' => 'Export counter~~',
'Class:Query/Attribute:export_count+' => 'Counter reflecting the number of time this query has been executed~~',
'Class:Query/Attribute:export_last_date' => 'Last export~~',
'Class:Query/Attribute:export_last_date+' => 'Date and time of the last export execution~~',
'Class:Query/Attribute:export_last_user_id' => 'User~~',
'Class:Query/Attribute:export_last_user_id+' => 'The user who executed the last export~~',
'Class:Query/Attribute:export_last_user_contact' => 'Contact~~',
'Class:Query/Attribute:export_last_user_contact+' => 'The contact who executed the last export~~',
'Query:baseinfo' => 'General information~~',
'Query:exportInfo' => 'Export information~~',
'Class:QueryOQL/Attribute:fields' => 'Felter',
'Class:QueryOQL/Attribute:fields+' => '',
'Class:QueryOQL' => 'OQL forespørgsel',
'Class:QueryOQL+' => '',
'Class:QueryOQL/Attribute:oql' => 'Udtryk',
'Class:QueryOQL/Attribute:oql+' => '',
]);
//////////////////////////////////////////////////////////////////////
// Classes in 'addon/userrights'
//////////////////////////////////////////////////////////////////////
//
//
// Class: User
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:User' => 'Bruger',
'Class:User+' => 'Bruger log in',
'Class:User/Attribute:finalclass' => 'Type af brugerkonto',
'Class:User/Attribute:finalclass+' => '',
'Class:User/Attribute:contactid' => 'kontakt (person)',
'Class:User/Attribute:contactid+' => 'Personlige oplysninger og virksomheds data',
'Class:User/Attribute:org_id' => 'Organisation',
'Class:User/Attribute:org_id+' => 'Organization of the associated person~~',
'Class:User/Attribute:last_name' => 'Efternavn',
'Class:User/Attribute:last_name+' => 'Kontaktens efternavn',
'Class:User/Attribute:first_name' => 'Fornavn',
'Class:User/Attribute:first_name+' => 'Kontaktens fornavn',
'Class:User/Attribute:email' => 'Email-adresse',
'Class:User/Attribute:email+' => 'Kontaktens Email-adresse',
'Class:User/Attribute:login' => 'Login',
'Class:User/Attribute:login+' => 'Bruger navn',
'Class:User/Attribute:language' => 'Sprog',
'Class:User/Attribute:language+' => 'Bruger valgt sprog',
'Class:User/Attribute:language/Value:EN US' => 'Englsk',
'Class:User/Attribute:language/Value:EN US+' => 'English (U.S.)',
'Class:User/Attribute:language/Value:FR FR' => 'Fransk',
'Class:User/Attribute:language/Value:FR FR+' => 'French (France)',
'Class:User/Attribute:profile_list' => 'Profiler',
'Class:User/Attribute:profile_list+' => 'Roller, rettighedsstyring for denne person',
'Class:User/Attribute:allowed_org_list' => 'Tilladte organisation(er)',
'Class:User/Attribute:allowed_org_list+' => 'Brugeren har tilladelse til at se data om følgende organisationer. Hvis ingen organisation er vist, er der ingen indskrænkninger',
'Class:User/Attribute:status' => 'Status~~',
'Class:User/Attribute:status+' => 'Whether the user account is enabled or disabled.~~',
'Class:User/Attribute:status/Value:enabled' => 'Enabled~~',
'Class:User/Attribute:status/Value:disabled' => 'Disabled~~',
'Class:User/Error:LoginMustBeUnique' => 'Login skal være entydig - "%1s" er allerede i brug.',
'Class:User/Error:AtLeastOneProfileIsNeeded' => 'Mindst en profil skal knyttes til denne bruger.',
'Class:User/Error:ProfileNotAllowed' => 'Profile "%1$s" cannot be added it will deny the access to backoffice~~',
'Class:User/Error:StatusChangeIsNotAllowed' => 'Changing status is not allowed for your own User~~',
'Class:User/Error:AllowedOrgsMustContainUserOrg' => 'Allowed organizations must contain User organization~~',
'Class:User/Error:CurrentProfilesHaveInsufficientRights' => 'The current list of profiles does not give sufficient access rights (Users are not modifiable anymore)~~',
'Class:User/Error:PortalPowerUserHasInsufficientRights' => 'The Portal power user profile does not give sufficient access rights (another profile must be added)~~',
'Class:User/Error:AtLeastOneOrganizationIsNeeded' => 'At least one organization must be assigned to this user.~~',
'Class:User/Error:OrganizationNotAllowed' => 'Organization not allowed.~~',
'Class:User/Error:UserOrganizationNotAllowed' => 'The user account does not belong to your allowed organizations.~~',
'Class:User/Error:PersonIsMandatory' => 'The Contact is mandatory.~~',
'Class:User/Warning:NoOrganizationMeansFullAccess' => 'No "Allowed Organizations" defined for this user, this means they have access to all organizations~~',
'Class:User/Warning:NoContactHasImpact' => 'Cautious: there is no Person defined on this User, this prevents access to portals, news notifications and other side effects in back-office~~',
'Class:UserInternal' => 'User Internal~~',
'Class:UserInternal+' => 'User defined within '.ITOP_APPLICATION_SHORT.'~~',
]);
//
// Class: URP_Profiles
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_Profiles' => 'Profil',
'Class:URP_Profiles+' => 'Brugerprofil',
'Class:URP_Profiles/Attribute:name' => 'Navn',
'Class:URP_Profiles/Attribute:name+' => 'Label',
'Class:URP_Profiles/Attribute:description' => 'Beskrivele',
'Class:URP_Profiles/Attribute:description+' => 'Kort beskrivelse',
'Class:URP_Profiles/Attribute:user_list' => 'Brugere',
'Class:URP_Profiles/Attribute:user_list+' => 'Personer, der har denne Rolle',
]);
//
// Class: URP_Dimensions
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_Dimensions' => 'Dimension',
'Class:URP_Dimensions+' => 'Anvendelsesdimension (Fastlæggelse af siloer)',
'Class:URP_Dimensions/Attribute:name' => 'Navn',
'Class:URP_Dimensions/Attribute:name+' => 'Label',
'Class:URP_Dimensions/Attribute:description' => 'Beskrivelse',
'Class:URP_Dimensions/Attribute:description+' => 'Kort beskrivelse',
'Class:URP_Dimensions/Attribute:type' => 'Type',
'Class:URP_Dimensions/Attribute:type+' => 'Klassenavn eller datatype',
]);
//
// Class: URP_UserProfile
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_UserProfile' => 'Brugerprofil',
'Class:URP_UserProfile+' => 'Brugerprofil',
'Class:URP_UserProfile/Name' => 'Link mellem %1$s and %2$s',
'Class:URP_UserProfile/Attribute:userid' => 'Bruger',
'Class:URP_UserProfile/Attribute:userid+' => 'Brugerkonto',
'Class:URP_UserProfile/Attribute:userlogin' => 'Login',
'Class:URP_UserProfile/Attribute:userlogin+' => 'Bruger login',
'Class:URP_UserProfile/Attribute:profileid' => 'Profil',
'Class:URP_UserProfile/Attribute:profileid+' => 'Anvend profil',
'Class:URP_UserProfile/Attribute:profile' => 'Profil',
'Class:URP_UserProfile/Attribute:profile+' => 'Profilnavn',
'Class:URP_UserProfile/Attribute:reason' => 'Begrundelse',
'Class:URP_UserProfile/Attribute:reason+' => 'Begrundelse, hvorfor denne bruger skal have denne profil',
]);
//
// Class: URP_UserOrg
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_UserOrg' => 'Bruger organisation(er)',
'Class:URP_UserOrg+' => 'Tilladte organisation(er)',
'Class:URP_UserOrg/Name' => 'Link mellem %1$s og %2$s',
'Class:URP_UserOrg/Attribute:userid' => 'Bruger',
'Class:URP_UserOrg/Attribute:userid+' => '',
'Class:URP_UserOrg/Attribute:userlogin' => 'Login',
'Class:URP_UserOrg/Attribute:userlogin+' => '',
'Class:URP_UserOrg/Attribute:allowed_org_id' => 'Organisation',
'Class:URP_UserOrg/Attribute:allowed_org_id+' => '',
'Class:URP_UserOrg/Attribute:allowed_org_name' => 'Organisation',
'Class:URP_UserOrg/Attribute:allowed_org_name+' => '',
'Class:URP_UserOrg/Attribute:reason' => 'Begrundelse',
'Class:URP_UserOrg/Attribute:reason+' => '',
]);
//
// Class: URP_ProfileProjection
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_ProfileProjection' => 'Profil_projection',
'Class:URP_ProfileProjection+' => 'Profilbillede',
'Class:URP_ProfileProjection/Attribute:dimensionid' => 'Dimension',
'Class:URP_ProfileProjection/Attribute:dimensionid+' => 'Anvendelsesdimension',
'Class:URP_ProfileProjection/Attribute:dimension' => 'Dimension',
'Class:URP_ProfileProjection/Attribute:dimension+' => 'Anvendelsesdimension',
'Class:URP_ProfileProjection/Attribute:profileid' => 'Profile',
'Class:URP_ProfileProjection/Attribute:profileid+' => 'Profil vilkår',
'Class:URP_ProfileProjection/Attribute:profile' => 'Profil',
'Class:URP_ProfileProjection/Attribute:profile+' => 'Profilnavn',
'Class:URP_ProfileProjection/Attribute:value' => 'Værdi udtryk',
'Class:URP_ProfileProjection/Attribute:value+' => 'OQL-udtryk (Benyttes af $user) | konstant | | + Attribut-Code',
'Class:URP_ProfileProjection/Attribute:attribute' => 'Attribut',
'Class:URP_ProfileProjection/Attribute:attribute+' => 'Mål for Attribut-kode (valgfri)',
]);
//
// Class: URP_ClassProjection
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_ClassProjection' => 'Klasse_projection',
'Class:URP_ClassProjection+' => 'Klassebillede',
'Class:URP_ClassProjection/Attribute:dimensionid' => 'Dimension',
'Class:URP_ClassProjection/Attribute:dimensionid+' => 'Anvendelsesdimension',
'Class:URP_ClassProjection/Attribute:dimension' => 'Dimension',
'Class:URP_ClassProjection/Attribute:dimension+' => 'Anvendelsesdimension',
'Class:URP_ClassProjection/Attribute:class' => 'Klasse',
'Class:URP_ClassProjection/Attribute:class+' => 'Målklasse',
'Class:URP_ClassProjection/Attribute:value' => 'Værdi udtryk',
'Class:URP_ClassProjection/Attribute:value+' => 'OQL-udtryk (Benyttes af $this) | konstant | | + Attribut-Code',
'Class:URP_ClassProjection/Attribute:attribute' => 'Attribut',
'Class:URP_ClassProjection/Attribute:attribute+' => 'Mål for Attribut-kode (valgfri)',
]);
//
// Class: URP_ActionGrant
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_ActionGrant' => 'Handlings godkendelser',
'Class:URP_ActionGrant+' => 'Tilladelser på klasser',
'Class:URP_ActionGrant/Attribute:profileid' => 'Profil',
'Class:URP_ActionGrant/Attribute:profileid+' => 'Anvendelsesprofil',
'Class:URP_ActionGrant/Attribute:profile' => 'Profil',
'Class:URP_ActionGrant/Attribute:profile+' => 'Anvendelsesprofil',
'Class:URP_ActionGrant/Attribute:class' => 'Klasse',
'Class:URP_ActionGrant/Attribute:class+' => 'Målklasse',
'Class:URP_ActionGrant/Attribute:permission' => 'Tilladelse',
'Class:URP_ActionGrant/Attribute:permission+' => 'Tilladt eller nægtet?',
'Class:URP_ActionGrant/Attribute:permission/Value:yes' => 'Ja',
'Class:URP_ActionGrant/Attribute:permission/Value:yes+' => 'Ja',
'Class:URP_ActionGrant/Attribute:permission/Value:no' => 'Nej',
'Class:URP_ActionGrant/Attribute:permission/Value:no+' => 'Nej',
'Class:URP_ActionGrant/Attribute:action' => 'Handling',
'Class:URP_ActionGrant/Attribute:action+' => 'Handling som skal udføres på den valgte klasse',
]);
//
// Class: URP_StimulusGrant
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_StimulusGrant' => 'Tilladels til påvirkning',
'Class:URP_StimulusGrant+' => 'Tilladelserne til påvirkning af livscyklus af objektet',
'Class:URP_StimulusGrant/Attribute:profileid' => 'Profil',
'Class:URP_StimulusGrant/Attribute:profileid+' => 'Anvendelsesprofil',
'Class:URP_StimulusGrant/Attribute:profile' => 'Profil',
'Class:URP_StimulusGrant/Attribute:profile+' => 'Anvendelsesprofil',
'Class:URP_StimulusGrant/Attribute:class' => 'Klasse',
'Class:URP_StimulusGrant/Attribute:class+' => 'Målklasse',
'Class:URP_StimulusGrant/Attribute:permission' => 'Tilladelse',
'Class:URP_StimulusGrant/Attribute:permission+' => 'Tilladt eller nægtet?',
'Class:URP_StimulusGrant/Attribute:permission/Value:yes' => 'Js',
'Class:URP_StimulusGrant/Attribute:permission/Value:yes+' => 'Ja',
'Class:URP_StimulusGrant/Attribute:permission/Value:no' => 'Nej',
'Class:URP_StimulusGrant/Attribute:permission/Value:no+' => 'Nej',
'Class:URP_StimulusGrant/Attribute:stimulus' => 'Påvirkning',
'Class:URP_StimulusGrant/Attribute:stimulus+' => 'Påvirknings-kode',
]);
//
// Class: URP_AttributeGrant
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:URP_AttributeGrant' => 'Godkendelse af Attributter',
'Class:URP_AttributeGrant+' => 'Godkendelse af Attributter',
'Class:URP_AttributeGrant/Attribute:actiongrantid' => 'Tillad handling',
'Class:URP_AttributeGrant/Attribute:actiongrantid+' => 'Tillad handling',
'Class:URP_AttributeGrant/Attribute:attcode' => 'Attribut',
'Class:URP_AttributeGrant/Attribute:attcode+' => 'Attribut-kode',
]);
//
// Class: UserDashboard
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Class:UserDashboard' => 'User dashboard~~',
'Class:UserDashboard+' => '~~',
'Class:UserDashboard/Attribute:user_id' => 'User~~',
'Class:UserDashboard/Attribute:user_id+' => '~~',
'Class:UserDashboard/Attribute:menu_code' => 'Menu code~~',
'Class:UserDashboard/Attribute:menu_code+' => '~~',
'Class:UserDashboard/Attribute:contents' => 'Contents~~',
'Class:UserDashboard/Attribute:contents+' => '~~',
]);
//
// Duplicated into itop-welcome-itil ( will be removed from here...)
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'Menu:WelcomeMenu' => 'Velkomen',
'Menu:WelcomeMenu+' => 'Velkommen til '.ITOP_APPLICATION_SHORT, 'Menu:WelcomeMenuPage' => 'Velkomen',
'Menu:WelcomeMenuPage+' => 'Velkommen til '.ITOP_APPLICATION_SHORT, 'Menu:AdminTools' => 'Admin værktøjer',
'Menu:AdminTools+' => 'Administration tools~~',
'Menu:AdminTools?' => 'Værktøjer kun tilgængelige for brugere med administrator profil',
'Menu:CSVImportMenu' => 'CSV import',
'Menu:CSVImportMenu+' => '',
'Menu:DataModelMenu' => 'Data model~~',
'Menu:DataModelMenu+' => 'Overview of the data model~~',
'Menu:ExportMenu' => 'Export~~',
'Menu:ExportMenu+' => 'Export the results of any query in HTML, CSV or XML~~',
'Menu:NotificationsMenu' => 'Notifikationer',
'Menu:NotificationsMenu+' => 'Configuration of the Notifications~~',
'Menu:MyShortcuts' => 'Mine Genveje',
'Menu:Notifications:Title' => 'Audit Kategorier',
'Menu:DataAdministration' => 'Data administration~~',
'Menu:DataAdministration+' => '~~',
]);
//
// String from the User Interface: menu, messages, buttons, etc...
//
Dict::Add('DA DA', 'Danish', 'Dansk', [
'BooleanLabel:yes' => 'yes~~',
'BooleanLabel:no' => 'no~~',
'UI:WelcomeMenu:Title' => 'Velkommen til '.ITOP_APPLICATION_SHORT, 'UI:WelcomeMenu:AllOpenRequests' => 'Åbne anmodninger: %1$d',
'UI:WelcomeMenu:MyCalls' => 'Mine brugerhenvendelser',
'UI:WelcomeMenu:OpenIncidents' => 'Åbne Incidents: %1$d',
'UI:WelcomeMenu:AllConfigItems' => 'Configuration Items: %1$d',
'UI:WelcomeMenu:MyIncidents' => 'Incidents tildelt mig',
'UI:AllOrganizations' => ' Alle Organisationer',
'UI:YourSearch' => 'Din Søgning',
'UI:LoggedAsMessage' => 'Logget ind som %1$s (%2$s)',
'UI:LoggedAsMessage+Admin' => 'Logget ind som %1$s (%2$s, Administrator)',
'UI:Button:Logoff' => 'Log ud',
'UI:Button:GlobalSearch' => 'Søg',
'UI:Button:Search' => ' Søg ',
'UI:Button:Clear' => ' Clear ~~',
'UI:Button:Confirm' => ' Confirm ~~',
'UI:Button:SearchInHierarchy' => 'Search in hierarchy~~',
'UI:Button:Query' => ' Forespørgsel ',
'UI:Button:Ok' => 'Ok',
'UI:Button:Save' => 'Gem',
'UI:Button:SaveAnd' => 'Save and %1$s~~',
'UI:Button:Cancel' => 'Afbryd',
'UI:Button:Close' => 'Close~~',
'UI:Button:Apply' => 'Anvend',
'UI:Button:Send' => 'Send~~',
'UI:Button:SendAnd' => 'Send and %1$s~~',
'UI:Button:Back' => ' << Tilbage ',
'UI:Button:Restart' => ' |<< Start igen ',
'UI:Button:Next' => ' Næste >> ',
'UI:Button:Finish' => ' Afslut ',
'UI:Button:DoImport' => ' Kør Importen ! ',
'UI:Button:Done' => ' Færdig ',
'UI:Button:SimulateImport' => ' Simuler Importen ',
'UI:Button:Test' => 'Test!',
'UI:Button:Evaluate' => ' Evaluér ',
'UI:Button:Evaluate:Title' => ' Evaluér (Ctrl+Enter)',
'UI:Button:AddObject' => ' Tilføj... ',
'UI:Button:BrowseObjects' => ' Gennemse... ',
'UI:Button:Add' => ' Tilføj ',
'UI:Button:AddToList' => ' << Tilføj ',
'UI:Button:RemoveFromList' => ' Fjern >> ',
'UI:Button:FilterList' => ' Filter... ',
'UI:Button:Create' => ' Opret ',
'UI:Button:Delete' => ' Slet ',
'UI:Button:Rename' => ' Omdøb... ',
'UI:Button:ChangePassword' => ' Skift Password ',
'UI:Button:ResetPassword' => ' Reset Password ',
'UI:Button:Insert' => 'Insert~~',
'UI:Button:More' => 'More~~',
'UI:Button:Less' => 'Less~~',
'UI:Button:Wait' => 'Please wait while updating fields~~',
'UI:Treeview:CollapseAll' => 'Collapse All~~',
'UI:Treeview:ExpandAll' => 'Expand All~~',
'UI:UserPref:DoNotShowAgain' => 'Do not show again~~',
'UI:InputFile:NoFileSelected' => 'No File Selected~~',
'UI:InputFile:SelectFile' => 'Select a file~~',
'UI:SearchToggle' => 'Søg',
'UI:ClickToCreateNew' => 'Opret nyt objekt af typen %1$s',
'UI:SearchFor_Class' => 'Søg efter objekter af typen %1$s',
'UI:NoObjectToDisplay' => 'Ingen objekter at vise.',
'UI:Error:SaveFailed' => 'The object cannot be saved :~~',
'UI:Error:MandatoryTemplateParameter_object_id' => 'Parameter objekt_id er obligatorisk når link_attr er specificeret. Tjek definitionen af display skabelonen.',
'UI:Error:MandatoryTemplateParameter_target_attr' => 'Parameter objekt_id er obligatorisk når link_attr er specificeret. Tjek definitionen af display skabelonen.',
'UI:Error:MandatoryTemplateParameter_group_by' => 'Parameter group_by er obligatorisk. Tjek definitionen af display skabelonen.',
'UI:Error:InvalidGroupByFields' => 'Ugyldig liste af felter at gruppere efter: "%1$s".',
'UI:Error:UnsupportedStyleOfBlock' => 'Fejl: ikke understøttet blokform: "%1$s".',
'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'Ukorrekt link definition: klassen af objekter, der skal styres: %1$s blev ikke fundet som fremmednøgle i klassen %2$s',
'UI:Error:Object_Class_Id_NotFound' => 'Objekt: %1$s:%2$d ikke fundet.',
'UI:Error:WizardCircularReferenceInDependencies' => 'Fejl: Circulær reference i afhængigheder mellem felterne, tjek datamodellen.',
'UI:Error:UploadedFileTooBig' => 'Den uploadede fil er for stor. (Max tilladt størrelse er %1$s). Kontakt din '.ITOP_APPLICATION_SHORT.' administrator for at få ændret denne grænse limit. (Tjek PHP konfigurationen for upload_max_filesize og post_max_size på serveren).',
'UI:Error:UploadedFileTruncated.' => 'Den uploadede fil er blevet afkortet !',
'UI:Error:NoTmpDir' => 'Det midlertidige bibliotek er ikke defineret.',
'UI:Error:CannotWriteToTmp_Dir' => 'Kan ikke skrive den midlertidige fil til disken: upload_tmp_dir = "%1$s".',
'UI:Error:UploadStoppedByExtension_FileName' => 'Upload stoppet på grund af filtype. (Original fil navn = "%1$s").',
'UI:Error:UploadFailedUnknownCause_Code' => 'Fil upload fejlede, ukendt årsag. (Fejl kode = "%1$s").',
'UI:Error:1ParametersMissing' => 'Fejl: følgende parameter skal angives for denne operation: %1$s.',
'UI:Error:2ParametersMissing' => 'Fejl: følgende parametre skal angives for denne operation: %1$s and %2$s.',
'UI:Error:3ParametersMissing' => 'Fejl: følgende parametre skal angives for denne operation: %1$s, %2$s and %3$s.',
'UI:Error:4ParametersMissing' => 'Fejl: følgende parametre skal angives for denne operation: %1$s, %2$s, %3$s and %4$s.',
'UI:Error:IncorrectOQLQuery_Message' => 'Fejl: Ukorrekt OQL forespørgsel: %1$s',
'UI:Error:AnErrorOccuredWhileRunningTheQuery_Message' => 'Der opstod en fejl ved afvikling af forespørgslen: %1$s',
'UI:Error:ObjectAlreadyUpdated' => 'Fejl: objektet er allerede opdateret.',
'UI:Error:ObjectCannotBeUpdated' => 'Fejl: objektet kan ikke opdateres.',
'UI:Error:ObjectsAlreadyDeleted' => 'Fejl: objekterne er allerede slettet!',
'UI:Error:BulkDeleteNotAllowedOn_Class' => 'Du har ikke tilladelse til at foretage en masse sletning af objekter i klassen %1$s',
'UI:Error:DeleteNotAllowedOn_Class' => 'Du har ikke tilladelse til at slette objekter af klassen %1$s',
'UI:Error:ReadNotAllowedOn_Class' => 'You are not allowed to view objects of class %1$s~~',
'UI:Error:BulkModifyNotAllowedOn_Class' => 'Du har ikke tilladelse til at foretage en masse opdatering af objekter i klassen %1$s',
'UI:Error:ObjectAlreadyCloned' => 'Fejl: objektet er allerede klonet!',
'UI:Error:ObjectAlreadyCreated' => 'Fejl: objektet er allerede oprettet!',
'UI:Error:Invalid_Stimulus_On_Object_In_State' => 'Fejl: ikke lovlig påvirkning "%1$s" på objekt %2$s i tilstand "%3$s".',
'UI:Error:InvalidDashboardFile' => 'Error: invalid dashboard file~~',
'UI:Error:InvalidDashboard' => 'Error: invalid dashboard~~',
'UI:Error:MaintenanceMode' => 'Application is currently in maintenance~~',
'UI:Error:MaintenanceTitle' => 'Maintenance~~',
'UI:Error:InvalidToken' => 'Error: the requested operation has already been performed (CSRF token not found)~~',
'UI:Error:SMTP:UnknownVendor' => 'OAuth SMTP provider %1$s does not exist (email_transport_smtp.oauth.provider)~~',
'UI:GroupBy:Count' => 'Antal',
'UI:GroupBy:Count+' => 'Antal af elementer',
'UI:CountOfObjects' => '%1$d objekter opfylder kriteriet.',
'UI_CountOfObjectsShort' => '%1$d objekter.',
'UI:NoObject_Class_ToDisplay' => 'Ingen objekter af typen %1$s at vise.',
'UI:History:LastModified_On_By' => 'Sidst ændret den %1$s af %2$s.',
'UI:HistoryTab' => 'Historik',
'UI:NotificationsTab' => 'Bemærkninger',
'UI:History:BulkImports' => 'Historik',
'UI:History:BulkImports+' => '',
'UI:History:BulkImportDetails' => 'Ændringer som følge af CSV import foretaget den %1$s (af %2$s)',
'UI:History:Date' => 'Dato',
'UI:History:Date+' => 'Dato for ændring',
'UI:History:User' => 'Bruger',
'UI:History:User+' => 'Bruger, som gennemførte ændringen',
'UI:History:Changes' => 'Ændringer',
'UI:History:Changes+' => 'Ændringer som er gennemført på objektet',
'UI:History:StatsCreations' => 'Oprettet',
'UI:History:StatsCreations+' => 'Antal oprettede objekter',
'UI:History:StatsModifs' => 'Modified',
'UI:History:StatsModifs+' => 'Antal modificerede objekter',
'UI:History:StatsDeletes' => 'Slettet',
'UI:History:StatsDeletes+' => 'Antal slettede objekter',
'UI:Loading' => 'Henter...',
'UI:Menu:Actions' => 'Handlinger',
'UI:Menu:OtherActions' => 'Andre handlinger',
'UI:Menu:Transitions' => 'Transitions~~',
'UI:Menu:OtherTransitions' => 'Other Transitions~~',
'UI:Menu:View' => 'View this object~~',
'UI:Menu:New' => 'Ny...',
'UI:Menu:Add' => 'Tilføj...',
'UI:Menu:Manage' => 'Administrer...',
'UI:Menu:EMail' => 'eMail',
'UI:Menu:CSVExport' => 'CSV Eksport...',
'UI:Menu:OpenOQL' => 'View the OQL query~~',
'UI:Menu:Modify' => 'Modificer...',
'UI:Menu:Delete' => 'Slet...',
'UI:Menu:BulkDelete' => 'Slet...',
'UI:Menu:BulkDelete_Class' => 'Delete %1$s objects...~~',
'UI:Menu:BulkDelete_Link' => 'Delete %1$s...~~',
'UI:Menu:BulkDelete_Remote' => 'Delete %1$s...~~',
'UI:UndefinedObject' => 'Ikke defineret',
'UI:Document:OpenInNewWindow:Download' => 'Åben i nyt vindue: %1$s, Download: %2$s',
'UI:SplitDateTime-Date' => 'Dato',
'UI:SplitDateTime-Time' => 'Tid',
'UI:TruncatedResults' => '%1$d objekter vist ud af %2$d',
'UI:DisplayAll' => 'Vis Alle',
'UI:CollapseList' => 'Fold sammen',
'UI:CountOfResults' => '%1$d objekt(er)',
'UI:ChangesLogTitle' => 'Ændrings log (%1$d):',
'UI:EmptyChangesLogTitle' => 'Ændrings log er tom',
'UI:SearchFor_Class_Objects' => 'Søg efter %1$s Objekter',
'UI:OQLQueryBuilderTitle' => 'OQL Query Builder',
'UI:OQLQueryTab' => 'OQL Query',
'UI:SimpleSearchTab' => 'Simpel Søgning',
'UI:Details+' => 'Detaljer',
'UI:SearchValue:Any' => '* Enhver *',
'UI:SearchValue:Mixed' => '* Blandet *',
'UI:SearchValue:NbSelected' => '# Valgte',
'UI:SearchValue:CheckAll' => 'Check All~~',
'UI:SearchValue:UncheckAll' => 'Uncheck All~~',
'UI:SelectOne' => '-- Vælg venligst --',
'UI:AccessRO-All' => ITOP_APPLICATION_SHORT.' er skrivebeskyttet',
'UI:AccessRO-Users' => ITOP_APPLICATION_SHORT.' er skrivebeskyttet for slutbrugere',
'UI:ApplicationEnvironment' => 'Applikations miljø: %1$s',
'UI:CSVImport:MappingSelectOne' => '-- Vælg venligst --',
'UI:CSVImport:MappingNotApplicable' => '-- ignorer dette felt --',
'UI:CSVImport:NoData' => 'Tomt data sæt..., venligst angiv nogle data!',
'UI:Title:DataPreview' => 'Data Preview',
'UI:CSVImport:ErrorOnlyOneColumn' => 'Fejl: Data indeholder kun en kolonne. Har du valgt den korrekte separator?',
'UI:CSVImport:FieldName' => 'Felt %1$d',
'UI:CSVImport:DataLine1' => 'Data Linje 1',
'UI:CSVImport:DataLine2' => 'Data Linje 2',
'UI:CSVImport:idField' => 'id (Primær Nøgle)',
'UI:Title:BulkImport' => ITOP_APPLICATION_SHORT.' - Bulk import',
'UI:Title:BulkImport+' => 'CSV-Import assistent',
'UI:Title:BulkSynchro_nbItem_ofClass_class' => 'Synchronisering af %1$d objekter af klasse %2$s',
'UI:CSVImport:ClassesSelectOne' => '-- Vælg venligst --',
'UI:CSVImport:ErrorExtendedAttCode' => 'Intern fejl: "%1$s" er en ukorrekt kode fordi "%2$s" er IKKE en fremmed nøgle af klassen "%3$s"',
'UI:CSVImport:ObjectsWillStayUnchanged' => '%1$d objekt(er) vil forblive uændrede.',
'UI:CSVImport:ObjectsWillBeModified' => '%1$d objekt(er) vil blive ændret.',
'UI:CSVImport:ObjectsWillBeAdded' => '%1$d objekt(er) vil blive tilføjet.',
'UI:CSVImport:ObjectsWillHaveErrors' => '%1$d objekt(er) har fejl.',
'UI:CSVImport:ObjectsRemainedUnchanged' => '%1$d objekt(er) forbliver uændrede.',
'UI:CSVImport:ObjectsWereModified' => '%1$d objekt(er) blev ændret.',
'UI:CSVImport:ObjectsWereAdded' => '%1$d objekt(er) blev tilføjet.',
'UI:CSVImport:ObjectsHadErrors' => '%1$d objekt(er) har fejl.',
'UI:Title:CSVImportStep2' => 'Step 2 af 5: CSV data muligheder',
'UI:Title:CSVImportStep3' => 'Step 3 of 5: Data mapping',
'UI:Title:CSVImportStep4' => 'Step 4 of 5: Import simulering',
'UI:Title:CSVImportStep5' => 'Step 5 of 5: Import fuldført',
'UI:CSVImport:LinesNotImported' => 'Linjer som ikke kunne loades:',
'UI:CSVImport:LinesNotImported+' => 'Dele som ikke kunne importeres, da de indeholder fejl',
'UI:CSVImport:SeparatorComma+' => ', (komma)',
'UI:CSVImport:SeparatorSemicolon+' => '; (semikolon)',
'UI:CSVImport:SeparatorTab+' => 'Tabulator',
'UI:CSVImport:SeparatorOther' => 'Andre:',
'UI:CSVImport:QualifierDoubleQuote+' => '" (anførselstegn)',
'UI:CSVImport:QualifierSimpleQuote+' => '\' (enkelt citationstegn)',
'UI:CSVImport:QualifierOther' => 'Andre:',
'UI:CSVImport:TreatFirstLineAsHeader' => 'Betragt første linje som overskrift (kolonnenavne)',
'UI:CSVImport:Skip_N_LinesAtTheBeginning' => 'Spring %1$s linje(r) over i begyndelsen af filen.',
'UI:CSVImport:CSVDataPreview' => 'CSV Data eksempel',
'UI:CSVImport:Column' => 'Column %1$s~~',
'UI:CSVImport:SelectFile' => 'Vælg den fil , der skal importeres:',
'UI:CSVImport:Tab:LoadFromFile' => 'Indlæs fra fil',
'UI:CSVImport:Tab:CopyPaste' => 'Kopier og indsæt data',
'UI:CSVImport:Tab:Templates' => 'Skabelon(er)',
'UI:CSVImport:PasteData' => 'Indsæt de data der skal importeres:',
'UI:CSVImport:PickClassForTemplate' => 'Vælg den skabelon der skal hentes: ',
'UI:CSVImport:SeparatorCharacter' => 'Separator karakter:',
'UI:CSVImport:TextQualifierCharacter' => 'Tekst qualifier karakter',
'UI:CSVImport:CommentsAndHeader' => 'Kommentarer og header',
'UI:CSVImport:SelectClass' => 'Vælg den klasse, der skal importeres: ',
'UI:CSVImport:AdvancedMode' => 'Advanceret tilstand',
'UI:CSVImport:AdvancedMode+' => 'I den avancerede tilstand, kan "ID" (primær nøgle) af objekter bruges til at opdatere eller omdøbe ojekter. Allers kan kolonnen "ID" (hvis nogen) kun bruges som en søgekriterium og kan ikke kombineres med andre søgekriterier.',
'UI:CSVImport:SelectAClassFirst' => 'For at konfigurere mapning, vælg først en klasse.',
'UI:CSVImport:HeaderFields' => 'Felter',
'UI:CSVImport:HeaderMappings' => 'Mapninger',
'UI:CSVImport:HeaderSearch' => 'Søg?',
'UI:CSVImport:AlertIncompleteMapping' => 'Vælg venligst en mapning for hvert felt.',
'UI:CSVImport:AlertMultipleMapping' => 'Please make sure that a target field is mapped only once.~~',
'UI:CSVImport:AlertNoSearchCriteria' => 'Vælg venligst mindst et søgekriterie',
'UI:CSVImport:Encoding' => 'Karakter encoding',
'UI:CSVImport:ViewAllPossibleValues' => 'View all possible values~~',
'UI:CSVImport:ViewAllAmbiguousValues' => 'View all ambiguous values~~',
'UI:UniversalSearchTitle' => ITOP_APPLICATION_SHORT.' - Universal Søgning',
'UI:UniversalSearch:Error' => 'Fejl: %1$s',
'UI:UniversalSearch:LabelSelectTheClass' => 'Vælg klasse at søge efter: ',
'UI:CSVReport-Value-Modified' => 'Ændret',
'UI:CSVReport-Value-SetIssue' => 'invalid value for attribute',
'UI:CSVReport-Value-ChangeIssue' => '\'%1$s\' is an invalid value~~',
'UI:CSVReport-Value-NoMatch' => 'No match for value \'%1$s\'~~',
'UI:CSVReport-Value-NoMatch-PossibleValues' => 'Some possible \'%1$s\' value(s): %2$s~~',
'UI:CSVReport-Value-NoMatch-NoObject' => 'There are no \'%1$s\' objects~~',
'UI:CSVReport-Value-NoMatch-NoObject-ForCurrentUser' => 'There are no \'%1$s\' objects found with your current profile~~',
'UI:CSVReport-Value-NoMatch-SomeObjectNotVisibleForCurrentUser' => 'There are some \'%1$s\' objects not visible with your current profile~~',
'UI:CSVReport-Value-Missing' => 'Mangler obligatorisk værdi',
'UI:CSVReport-Value-Ambiguous' => 'Tvetydig: fandt %1$s objekter',
'UI:CSVReport-Row-Unchanged' => 'Uændret',
'UI:CSVReport-Row-Created' => 'Oprettet',
'UI:CSVReport-Row-Updated' => 'Opdateret %1$d kolonne(r)',
'UI:CSVReport-Row-Disappeared' => 'Forsvundet, ændrede %1$d kolonne(r)',
'UI:CSVReport-Row-Issue' => 'Emne: %1$s',
'UI:CSVReport-Value-Issue-Null' => 'Null ikke tilladt',
'UI:CSVReport-Value-Issue-NotFound' => 'Objekt ikke fundet',
'UI:CSVReport-Value-Issue-FoundMany' => 'Fandt %1$d emner',
'UI:CSVReport-Value-Issue-Readonly' => 'Attributten \'%1$s\' er skrivebeskyttet og kan ikke ændres (nuværende værdi: %2$s, foreslået værdi: %3$s)',
'UI:CSVReport-Value-Issue-Format' => 'Fejl i behandling af input: %1$s',
'UI:CSVReport-Value-Issue-NoMatch' => 'Uventet værdi for attribut \'%1$s\': ingen emner fundet, tjek stavningen',
'UI:CSVReport-Value-Issue-AllowedValues' => 'Allowed \'%1$s\' value(s): %2$s~~',
'UI:CSVReport-Value-Issue-Unknown' => 'Uventet værdi for attribut \'%1$s\': %2$s',
'UI:CSVReport-Row-Issue-Inconsistent' => 'Attributterne er ikke i overensstemmelse med hinanden: %1$s',
'UI:CSVReport-Row-Issue-Attribute' => 'Uventet attribut værdi(er)',
'UI:CSVReport-Row-Issue-MissingExtKey' => 'Kunne ikke oprettes, på grund af manglende fremmednøgle(r): %1$s',
'UI:CSVReport-Row-Issue-DateFormat' => 'Forkert dato format',
'UI:CSVReport-Row-Issue-ExpectedDateFormat' => 'Expected format: %1$s~~',
'UI:CSVReport-Row-Issue-Reconciliation' => 'Fejl ved forening',
'UI:CSVReport-Row-Issue-Ambiguous' => 'Tvetydig forening',
'UI:CSVReport-Row-Issue-Internal' => 'Intern fejl: %1$s, %2$s',
'UI:CSVReport-Icon-Unchanged' => 'Uændret',
'UI:CSVReport-Icon-Modified' => 'Ændret',
'UI:CSVReport-Icon-Missing' => 'Mangler',
'UI:CSVReport-Object-MissingToUpdate' => 'Mangler objekt: vil blive opdateret',
'UI:CSVReport-Object-MissingUpdated' => 'Manglende objekt: opdateret',
'UI:CSVReport-Icon-Created' => 'Oprettet',
'UI:CSVReport-Object-ToCreate' => 'Objekt vil blive oprettet',
'UI:CSVReport-Object-Created' => 'Objekt oprettet',
'UI:CSVReport-Icon-Error' => 'Fejl',
'UI:CSVReport-Object-Error' => 'FEJL: %1$s',
'UI:CSVReport-Object-Ambiguous' => 'TVETYDIG: %1$s',
'UI:CSVReport-Stats-Errors' => '%1$.0f %% af de hentede objekter har fejl og vil blive ignoreret',
'UI:CSVReport-Stats-Created' => '%1$.0f %% af de hentede objekter vil blive oprettet.',
'UI:CSVReport-Stats-Modified' => '%1$.0f %% af de hentede objekter vil blive ændret.',
'UI:CSVExport:AdvancedMode' => 'Advanceret tilstand',
'UI:CSVExport:AdvancedMode+' => '',
'UI:CSVExport:LostChars' => 'Encoding problem',
'UI:CSVExport:LostChars+' => '',
'UI:Audit:Title' => ITOP_APPLICATION_SHORT.' - CMDB Audit',
'UI:Audit:Interactive:All:Title' => 'Audit results~~',
'UI:Audit:Interactive:All:SubTitle' => 'Full audit: includes all rules, all categories, all domains~~',
'UI:Audit:Interactive:All:BreadCrumb' => 'Full audit~~',
'UI:Audit:Interactive:All:BreadCrumb+' => 'Audit results for all rules~~',
'UI:Audit:Interactive:Categories:Title' => 'Audit results for categories: %1$s~~',
'UI:Audit:Interactive:Categories:SubTitle' => 'Audit results for all the rules belonging to one of those %1$s categories~~',
'UI:Audit:Interactive:Categories:BreadCrumb' => 'Categories~~',
'UI:Audit:Interactive:Categories:BreadCrumb+' => 'Audit categories: %1$s~~',
'UI:Audit:Interactive:Domain:Title' => 'Audit results for Domain: %1$s~~',
'UI:Audit:Interactive:Domain:SubTitle' => 'Audit results for all the rules belonging to a category related to the domain: %1$s~~',
'UI:Audit:Interactive:Domain:BreadCrumb' => '%1$s~~',
'UI:Audit:Interactive:Domain:BreadCrumb+' => 'Audit for Domain: %1$s~~',
'UI:Audit:Interactive:Selection:Title' => 'Selection of an audit~~',
'UI:Audit:InteractiveAudit' => 'Interaktiv Audit',
'UI:Audit:Interactive:Selection:SubTitle' => 'Select a domain to get the results limited to this domain or select "All categories" to get a full audit (can take time or even fail if too much data to audit)~~',
'UI:Audit:Interactive:Selection:BreadCrumb' => 'Selection~~',
'UI:Audit:Interactive:Selection:BreadCrumb+' => 'Selection of an Audit to run~~',
'UI:Audit:Interactive:Selection:BadgeAll' => 'All categories~~',
'UI:Audit:Interactive:Button:Back' => 'Back to the audit~~',
'UI:Audit:Interactive:Button:Configuration' => 'Audit configuration~~',
'UI:Audit:ViewRules' => 'Check the rules~~',
'UI:Audit:HeaderAuditRule' => 'Audit Regel',
'UI:Audit:HeaderNbObjects' => '# Objekt(er)',
'UI:Audit:HeaderNbErrors' => '# Fejl',
'UI:Audit:PercentageOk' => '% Ok',
'UI:Audit:OqlError' => 'OQL Error~~',
'UI:Audit:Error:ValueNA' => 'n/a~~',
'UI:Audit:ErrorIn_Rule' => 'Error in Rule~~',
'UI:Audit:ErrorIn_Rule_Reason' => 'OQL Fejl i regel %1$s: %2$s.',
'UI:Audit:ErrorIn_Category' => 'Error in Category~~',
'UI:Audit:ErrorIn_Category_Reason' => 'OQL Fejl i kategorien %1$s: %2$s.',
'UI:Audit:AuditErrors' => 'Audit Errors~~',
'UI:Audit:Dashboard:ObjectsAudited' => 'Objects audited~~',
'UI:Audit:Dashboard:ObjectsInError' => 'Objects in errors~~',
'UI:Audit:Dashboard:ObjectsValidated' => 'Objects validated~~',
'UI:Audit:AuditCategory:Subtitle' => '%1$s errors ouf of %2$s - %3$s%% of the object are valid~~',
'UI:RunQuery:Title' => ITOP_APPLICATION_SHORT.' - OQL Query Evaluering',
'UI:RunQuery:QueryExamples' => 'Query Eksempler',
'UI:RunQuery:QueryResults' => 'Query Results~~',
'UI:RunQuery:HeaderPurpose' => 'Formål',
'UI:RunQuery:HeaderPurpose+' => 'Beskrivelse af forespørgslen',
'UI:RunQuery:HeaderOQLExpression' => 'OQL Udtryk',
'UI:RunQuery:HeaderOQLExpression+' => 'Forespørgslen i OQL syntaks',
'UI:RunQuery:ExpressionToEvaluate' => 'Udtryk der skal evalueres: ',
'UI:RunQuery:QueryArguments' => 'Query Arguments~~',
'UI:RunQuery:MoreInfo' => 'Mere information om forespørgslen: ',
'UI:RunQuery:DevelopedQuery' => 'Videreudviklet forespørgselsudtryk: ',
'UI:RunQuery:SerializedFilter' => 'Serielt filter: ',
'UI:RunQuery:DevelopedOQL' => 'Developed OQL~~',
'UI:RunQuery:DevelopedOQLCount' => 'Developed OQL for count~~',
'UI:RunQuery:ResultSQLCount' => 'Resulting SQL for count~~',
'UI:RunQuery:ResultSQL' => 'Resulting SQL~~',
'UI:RunQuery:Error' => 'Der opstod en fejl under afviklingen af forespøgrslen',
'UI:Query:UrlForExcel' => 'URL til brug for MS-Excel web forespøgrsler',
'UI:Query:UrlV1' => 'The list of fields has been left unspecified. The page <em>export-V2.php</em> cannot be invoked without this information. Therefore, the URL suggested here below points to the legacy page: <em>export.php</em>. This legacy version of the export has the following limitation: the list of exported fields may vary depending on the output format and the data model of '.ITOP_APPLICATION_SHORT.'. <br/>Should you want to guarantee that the list of exported columns will remain stable on the long run, then you must specify a value for the attribute "Fields" and use the page <em>export-V2.php</em>.~~',
'UI:Schema:Title' => ITOP_APPLICATION_SHORT.' objekt skema',
'UI:Schema:TitleForClass' => '%1$s skema',
'UI:Schema:CategoryMenuItem' => 'Kategori <b>%1$s</b>',
'UI:Schema:Relationships' => 'Relationer',
'UI:Schema:AbstractClass' => 'Abstrakt klasse: intet objekt fra denne klasse kan instantieres.',
'UI:Schema:NonAbstractClass' => 'Non abstrakt klasse: objekter fra denne klasse kan instantieres.',
'UI:Schema:ClassHierarchyTitle' => 'Klasse hierarki',
'UI:Schema:AllClasses' => 'Alle klasser',
'UI:Schema:ExternalKey_To' => 'Fremmednøgle til %1$s',
'UI:Schema:Columns_Description' => 'Kolonner: <em>%1$s</em>',
'UI:Schema:Default_Description' => 'Standard: "%1$s"',
'UI:Schema:NullAllowed' => 'Null Tilladt',
'UI:Schema:NullNotAllowed' => 'Null IKKE Tilladt',
'UI:Schema:Attributes' => 'Attributter',
'UI:Schema:AttributeCode' => 'Attribut Kode',
'UI:Schema:AttributeCode+' => 'Interne kode for attributter',
'UI:Schema:Label' => 'Label',
'UI:Schema:Label+' => 'Label for attributten',
'UI:Schema:Type' => 'Type',
'UI:Schema:Type+' => 'Datatype for attributten',
'UI:Schema:Origin' => 'Oprindelse',
'UI:Schema:Origin+' => 'Basisklasse, hvor denne attribut er defineret',
'UI:Schema:Description' => 'Beskrivelse',
'UI:Schema:Description+' => 'Beskrivelse af disse attributter',
'UI:Schema:AllowedValues' => 'Tilladte værdier',
'UI:Schema:AllowedValues+' => '',
'UI:Schema:MoreInfo' => 'Mere information',
'UI:Schema:MoreInfo+' => 'Mere information om dette felt',
'UI:Schema:SearchCriteria' => 'Søgekriterie',
'UI:Schema:FilterCode' => 'Filter kode',
'UI:Schema:FilterCode+' => 'Kode for dette søgekriterie',
'UI:Schema:FilterDescription' => 'Beskrivelse',
'UI:Schema:FilterDescription+' => 'Beskrivelse af dette søgekriterie',
'UI:Schema:AvailOperators' => 'Tilgængelige operatorer',
'UI:Schema:AvailOperators+' => 'Mulige operatorer for dette søgekriterie',
'UI:Schema:ChildClasses' => 'Child klasser',
'UI:Schema:ReferencingClasses' => 'Refererende klasser',
'UI:Schema:RelatedClasses' => 'Relaterede klasser',
'UI:Schema:LifeCycle' => 'Livs cyclus',
'UI:Schema:Triggers' => 'Triggere',
'UI:Schema:Relation_Code_Description' => 'Relation <em>%1$s</em> (%2$s)',
'UI:Schema:RelationDown_Description' => 'Ned: %1$s',
'UI:Schema:RelationUp_Description' => 'Op: %1$s',
'UI:Schema:RelationPropagates' => '%1$s: udbred til %2$d niveauer, forespørgsel: %3$s',
'UI:Schema:RelationDoesNotPropagate' => '%1$s: udbred ikke til (%2$d niveauer), forespørsel: %3$s',
'UI:Schema:Class_ReferencingClasses_From_By' => '%1$s bliver refereret af klasse %2$s via feltet %3$s',
'UI:Schema:Class_IsLinkedTo_Class_Via_ClassAndAttribute' => '%1$s er kædet til %2$s via %3$s::<em>%4$s</em>',
'UI:Schema:Links:1-n' => 'Klasser peger på %1$s (1:n links):',
'UI:Schema:Links:n-n' => 'Klasser kædet til %1$s (n:n links):',
'UI:Schema:Links:All' => 'Graf af alle relaterede klasser',
'UI:Schema:NoLifeCyle' => 'Der er ingen livscyclus defineret for denne klasse.',
'UI:Schema:LifeCycleTransitions' => 'Overgange',
'UI:Schema:LifeCyleAttributeOptions' => 'Attribut options',
'UI:Schema:LifeCycleHiddenAttribute' => 'Skjult',
'UI:Schema:LifeCycleReadOnlyAttribute' => 'Skrivebeskyttet',
'UI:Schema:LifeCycleMandatoryAttribute' => 'Obligatorisk',
'UI:Schema:LifeCycleAttributeMustChange' => 'Skal ændres',
'UI:Schema:LifeCycleAttributeMustPrompt' => 'Bruger vil blive bedt om at ændre værdien',
'UI:Schema:LifeCycleEmptyList' => 'Tom liste',
'UI:Schema:ClassFilter' => 'Class:~~',
'UI:Schema:DisplayLabel' => 'Display:~~',
'UI:Schema:DisplaySelector/LabelAndCode' => 'Label and code~~',
'UI:Schema:DisplaySelector/Label' => 'Label~~',
'UI:Schema:DisplaySelector/Code' => 'Code~~',
'UI:Schema:Attribute/Filter' => 'Filter~~',
'UI:Schema:DefaultNullValue' => 'Default null : "%1$s"~~',
'UI:Schema:Events' => 'Events~~',
'UI:Schema:Events:Defined' => 'Defined events~~',
'UI:Schema:Events:NoEvent' => 'No event defined~~',
'UI:Schema:Events:Listeners' => 'Event listeners~~',
'UI:Schema:Events:NoListener' => 'No event listener~~',
'UI:Schema:Events:Event' => 'Event~~',
'UI:Schema:Events:Description' => 'Description~~',
'UI:Schema:Events:Listener' => 'Listener~~',
'UI:Schema:Events:Rank' => 'Rank~~',
'UI:Schema:Events:Module' => 'Module~~',
'UI:LinksWidget:Autocomplete+' => '',
'UI:Edit:SearchQuery' => 'Select a predefined query~~',
'UI:Edit:TestQuery' => 'Test forespørgsel',
'UI:Combo:SelectValue' => '--- vælg en værdi ---',
'UI:Label:SelectedObjects' => 'Valgte objekter: ',
'UI:Label:AvailableObjects' => 'Tilgængelige objekter: ',
'UI:Link_Class_Attributes' => '%1$s attributer',
'UI:SelectAllToggle+' => 'Alle vælg/fravælg',
'UI:AddObjectsOf_Class_LinkedWith_Class_Instance' => 'Tilføj %1$s objekter kædet til %2$s: %3$s',
'UI:AddObjectsOf_Class_LinkedWith_Class' => 'Tilføj %1$s objekter til kæden til %2$s',
'UI:ManageObjectsOf_Class_LinkedWith_Class_Instance' => 'Administrer %1$s objekter kædet til %2$s: %3$s',
'UI:AddLinkedObjectsOf_Class' => 'Tilføj %1$s objekter',
'UI:RemoveLinkedObjectsOf_Class' => 'Fjern valgte objekter',
'UI:Message:EmptyList:UseAdd' => 'Listen er tom, brug "Tilføj..." knappen for at tilføje elementer.',
'UI:Message:EmptyList:UseSearchForm' => 'Brug søgeformularen ovenfor, til søgning efter objekters som skal tilføjes.',
'UI:Wizard:FinalStepTitle' => 'Sidste skridt: bekræftelse',
'UI:Title:DeletionOf_Object' => 'Sletning af %1$s',
'UI:Title:BulkDeletionOf_Count_ObjectsOf_Class' => 'Massesletning af %1$d objekter af klassen %2$s',
'UI:Delete:NotAllowedToDelete' => 'Du har ikke tilladelse til at slette dette objekt',
'UI:Delete:NotAllowedToUpdate_Fields' => 'Du har ikke tilladelse til at opdatere følgende felt(er): %1$s',
'UI:Error:ActionNotAllowed' => 'You are not allowed to do this action~~',
'UI:Error:NotEnoughRightsToDelete' => 'Dette objekt kunne ikke slettes, fordi den nuværende bruger ikke har tilstrækkelige rettigheder',
'UI:Error:CannotDeleteBecause' => 'Dette objekt kunne ikke slettes fordi: %1$s',
'UI:Error:CannotDeleteBecauseOfDepencies' => 'Dette objekt kunne ikke slettes, fordi nogle manuelle operationer skal udføres først',
'UI:Error:CannotDeleteBecauseManualOpNeeded' => 'Dette objekt kunne ikke slettes, fordi nogle manuelle operationer skal udføres først',
'UI:Archive_User_OnBehalfOf_User' => '%1$s på vegne af %2$s',
'UI:Delete:Deleted' => 'Slettet',
'UI:Delete:AutomaticallyDeleted' => 'Automatisk slettet',
'UI:Delete:AutomaticResetOf_Fields' => 'Automatisk reset af felt(er): %1$s',
'UI:Delete:CleaningUpRefencesTo_Object' => 'Oprydning af alle referencer til %1$s...',
'UI:Delete:CleaningUpRefencesTo_Several_ObjectsOf_Class' => 'Oprydning af alle referencer til %1$d objekter af klasse %2$s...',
'UI:Delete:Done+' => '',
'UI:Delete:_Name_Class_Deleted' => '%1$s - %2$s slettet.',
'UI:Delete:ConfirmDeletionOf_Name' => 'Sletning af %1$s',
'UI:Delete:ConfirmDeletionOf_Count_ObjectsOf_Class' => 'Sletning af %1$d objekter af klasse %2$s',
'UI:Delete:CannotDeleteBecause' => 'Kunne ikke slettes: %1$s',
'UI:Delete:ShouldBeDeletedAtomaticallyButNotPossible' => 'Bør automatisk slettes, men dette ikke er muligt: %1$s',
'UI:Delete:MustBeDeletedManuallyButNotPossible' => 'Bør automatisk slettes, men dette ikke er muligt: %1$s',
'UI:Delete:WillBeDeletedAutomatically' => 'Vil automatisk blive slettet',
'UI:Delete:MustBeDeletedManually' => 'Skal slettes manuelt',
'UI:Delete:CannotUpdateBecause_Issue' => 'Skulle blive automatisk opdateret, men: %1$s',
'UI:Delete:WillAutomaticallyUpdate_Fields' => 'Vil blive automatisk opdateret (reset: %1$s)',
'UI:Delete:Count_Objects/LinksReferencing_Object' => '%1$d objekter/links refererer %2$s',
'UI:Delete:Count_Objects/LinksReferencingTheObjects' => '%1$d objekter/links refererer til nogle af de objekter som slettes',
'UI:Delete:ReferencesMustBeDeletedToEnsureIntegrity' => 'For at sikre Database integritet, skal alle referencer slettes',
'UI:Delete:Consequence+' => '',
'UI:Delete:SorryDeletionNotAllowed' => 'Beklager, du har ikke tilladelse til at slette dette objekt, se the detaljeret forklaring ovenfor',
'UI:Delete:PleaseDoTheManualOperations' => 'Venligst foretag den manuelle opreration som er nævnt ovenfor, før sletning af objektet',
'UI:Delect:Confirm_Object' => 'Venligst bekræft at du ønsker at slette %1$s.',
'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Venligst bekræft at du ønsker at slette følgende %1$d objekter af klassen %2$s.',
'UI:WelcomeToITop' => 'Velkommen til '.ITOP_APPLICATION_SHORT, 'UI:DetailsPageTitle' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s detaljer',
'UI:ErrorPageTitle' => ITOP_APPLICATION_SHORT.' - Fejl',
'UI:ObjectDoesNotExist' => 'Beklager, dette objekt eksisterer ikke (eller du har ikke tilladelse til at se det).',
'UI:ObjectArchived' => 'This object has been archived. Please enable the archive mode or contact your administrator.~~',
'Tag:Archived' => 'Archived~~',
'Tag:Archived+' => 'Can be accessed only in archive mode~~',
'Tag:Obsolete' => 'Obsolete~~',
'Tag:Obsolete+' => 'Excluded from the impact analysis and search results~~',
'Tag:Synchronized' => 'Synchronized~~',
'ObjectRef:Archived' => 'Archived~~',
'ObjectRef:Obsolete' => 'Obsolete~~',
'UI:SearchResultsPageTitle' => ITOP_APPLICATION_SHORT.' - Søge Resultater',
'UI:SearchResultsTitle' => 'Søge Resultater',
'UI:SearchResultsTitle+' => 'Full-text search results~~',
'UI:Search:NoSearch' => 'Intet at søge efter',
'UI:Search:NeedleTooShort' => 'The search string "%1$s" is too short. Please type at least %2$d characters.~~',
'UI:Search:Ongoing' => 'Searching for "%1$s"~~',
'UI:Search:Enlarge' => 'Broaden the search~~',
'UI:FullTextSearchTitle_Text' => 'Resultater for "%1$s":',
'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d objekt(er) af klasse %2$s fundet.',
'UI:Search:NoObjectFound' => 'Intet objekt fundet.',
'UI:ModificationPageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - %1$s - %2$s ændring',
'UI:ModificationTitle_Class_Object' => 'Ændring af %1$s: <span class=\\"hilite\\">%2$s</span>',
'UI:ClonePageTitle_Object_Class' => ITOP_APPLICATION_SHORT.' - Clone %1$s - %2$s ændring',
'UI:CloneTitle_Class_Object' => 'Clone af %1$s: <span class=\\"hilite\\">%2$s</span>',
'UI:CreationPageTitle_Class' => ITOP_APPLICATION_SHORT.' - Oprettelse af ny %1$s ',
'UI:CreationTitle_Class' => 'Oprettelse af ny %1$s',
'UI:SelectTheTypeOf_Class_ToCreate' => 'Vælg type af %1$s for oprettelse:',
'UI:Class_Object_NotUpdated' => 'Ingen ændring, %1$s (%2$s) er <strong>not</strong> ændret.',
'UI:Class_Object_Updated' => '%1$s (%2$s) opdateret.',
'UI:BulkDeletePageTitle' => ITOP_APPLICATION_SHORT.' - Massesletning',
'UI:BulkDeleteTitle' => 'Vælg objekt som ønskes slettet:',
'UI:PageTitle:ObjectCreated' => ITOP_APPLICATION_SHORT.' Objekt Oprettet.',
'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s oprettet.',
'UI:Toggle:CustomDashboard' => 'Custom~~',
'UI:Toggle:StandardDashboard' => 'Standard~~',
'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Anvender %1$s på objekt: %2$s i tilstand %3$s for sluttilstand: %4$s.',
'UI:ObjectCouldNotBeWritten' => 'Objektet kunne ikke skrives: %1$s',
'UI:PageTitle:FatalError' => ITOP_APPLICATION_SHORT.' - Fatal Fejl',
'UI:SystemIntrusion' => 'Adgang nægtet. Du prøver at udføre en handling som du ikke har tilladelse til.',
'UI:FatalErrorMessage' => 'Fatal fejl, '.ITOP_APPLICATION_SHORT.' kan ikke fortsætte.',
'UI:Error_Details' => 'Fejl: %1$s.',
'UI:PageTitle:ProfileProjections' => ITOP_APPLICATION_SHORT.' bruger styring - profil projection',
'UI:UserManagement:Class' => 'Klasse',
'UI:UserManagement:Class+' => '',
'UI:UserManagement:ProjectedObject' => 'Objekt',
'UI:UserManagement:ProjectedObject+' => '',
'UI:UserManagement:AnyObject' => '* enhver *',
'UI:UserManagement:User' => 'Bruger',
'UI:UserManagement:User+' => '',
'UI:UserManagement:Action:Read' => 'Læs',
'UI:UserManagement:Action:Read+' => '',
'UI:UserManagement:Action:Modify' => 'Ændring',
'UI:UserManagement:Action:Modify+' => '',
'UI:UserManagement:Action:Delete' => 'Slet',
'UI:UserManagement:Action:Delete+' => '',
'UI:UserManagement:Action:BulkRead' => 'Masselæsning (Export)',
'UI:UserManagement:Action:BulkRead+' => '',
'UI:UserManagement:Action:BulkModify' => 'Masseændring',
'UI:UserManagement:Action:BulkModify+' => '',
'UI:UserManagement:Action:BulkDelete' => 'Massesletning',
'UI:UserManagement:Action:BulkDelete+' => '',
'UI:UserManagement:Action:Stimuli' => 'Påvirkning',
'UI:UserManagement:Action:Stimuli+' => '',
'UI:UserManagement:Action' => 'Handling',
'UI:UserManagement:Action+' => '',
'UI:UserManagement:TitleActions' => 'Handlinger',
'UI:UserManagement:Permission' => 'Tilladelse',
'UI:UserManagement:Permission+' => '',
'UI:UserManagement:Attributes' => 'Attributter',
'UI:UserManagement:ActionAllowed:Yes' => 'Ja',
'UI:UserManagement:ActionAllowed:No' => 'Nej',
'UI:UserManagement:AdminProfile+' => '',
'UI:UserManagement:NoLifeCycleApplicable' => 'N/A',
'UI:UserManagement:NoLifeCycleApplicable+' => '',
'UI:UserManagement:GrantMatrix' => 'Grant Matrix',
'Menu:SystemTools' => 'System~~',
'UI:ChangeManagementMenu' => 'Change Management',
'UI:ChangeManagementMenu+' => '',
'UI:ChangeManagementMenu:Title' => 'Changes Overblik',
'UI-ChangeManagementMenu-ChangesByType' => 'Changes efter type',
'UI-ChangeManagementMenu-ChangesByStatus' => 'Changes efter status',
'UI-ChangeManagementMenu-ChangesNotYetAssigned' => 'Changes endnu ikke tildelt',
'UI:ConfigurationManagementMenu' => 'Configuration Management',
'UI:ConfigurationManagementMenu+' => '',
'UI:ConfigurationManagementMenu:Title' => 'Infrastruktur Overblik',
'UI-ConfigurationManagementMenu-InfraByType' => 'Infrastruktur objekter efter type',
'UI-ConfigurationManagementMenu-InfraByStatus' => 'Infrastruktur objekter efter status',
'UI:ConfigMgmtMenuOverview:Title' => 'Dashboard for Configuration Management',
'UI-ConfigMgmtMenuOverview-FunctionalCIbyStatus' => 'Configuration Items efter status',
'UI-ConfigMgmtMenuOverview-FunctionalCIByType' => 'Configuration Items efter type',
'UI:RequestMgmtMenuOverview:Title' => 'Dashboard for Anmodnings styring',
'UI-RequestManagementOverview-RequestByService' => 'Bruger anmodninger efter service',
'UI-RequestManagementOverview-RequestByPriority' => 'Bruger anmodninger efter prioritet',
'UI-RequestManagementOverview-RequestUnassigned' => 'Bruger anmodninger endnu ikke tildelt',
'UI:IncidentMgmtMenuOverview:Title' => 'Dashboard for Incident Management',
'UI-IncidentManagementOverview-IncidentByService' => 'Incidents efter service',
'UI-IncidentManagementOverview-IncidentByPriority' => 'Incidents efter prioritet',
'UI-IncidentManagementOverview-IncidentUnassigned' => 'Incidents endnu ikke tildelt',
'UI:ChangeMgmtMenuOverview:Title' => 'Dashboard for Change Management~~',
'UI-ChangeManagementOverview-ChangeByType' => 'Changes efter type',
'UI-ChangeManagementOverview-ChangeUnassigned' => 'Changes endnu ikke tildelt',
'UI-ChangeManagementOverview-ChangeWithOutage' => 'Udfald på grund af changes (ændringer)',
'UI:ServiceMgmtMenuOverview:Title' => 'Dashboard for Service Management',
'UI-ServiceManagementOverview-CustomerContractToRenew' => 'Kunde kontrakter til fornyelse indenfor 30 dage',
'UI-ServiceManagementOverview-ProviderContractToRenew' => 'Leverandør kontrakter til fornyelse indenfor 30 dage',
'UI:ContactsMenu' => 'Kontakter',
'UI:ContactsMenu+' => '',
'UI:ContactsMenu:Title' => 'Kontakter Overblik',
'UI-ContactsMenu-ContactsByLocation' => 'Kontakter efter lokation',
'UI-ContactsMenu-ContactsByType' => 'Kontakter efter type',
'UI-ContactsMenu-ContactsByStatus' => 'Kontakter efter status',
'UI:NotificationsMenu:Title' => 'Konfiguration af Notifikationer',
'UI:NotificationsMenu:Help' => 'Hjælp',
'UI:NotificationsMenu:HelpContent' => '<p>I '.ITOP_APPLICATION_SHORT.' er notifikationer fuldt modificerbare. De er baseret på to sæt af objekter: <i>triggers og handlinger</i>.</p>
<p><i><b>Triggers</b></i> define when a notification will be executed. There are different triggers as part of '.ITOP_APPLICATION_SHORT.' core, but others can be brought by extensions:
<ol>
<li>Some triggers are executed when an object of the specified class is <b>created</b>, <b>updated</b> or <b>deleted</b>.</li>
<li>Some triggers are executed when an object of a given class <b>enter</b> or <b>leave</b> a specified </b>state</b>.</li>
<li>Some triggers are executed when a <b>threshold on TTO or TTR</b> has been <b>reached</b>.</li>
</ol>
</p>
<p>
<i><b>Handlinger</b></i> define the actions to be performed when the triggers execute. For now there are only two kind of actions:
<ol>
<li>Sending an email message: Such actions also define the template to be used for sending the email as well as the other parameters of the message like the recipients, importance, etc.<br />
En speciel side: <a href="../setup/email.test.php" target="_blank">email.test.php</a> er til rådighed for test og problemløsning af PHP mail konfigurationen.</li>
<li>Sending a newsroom message: Display a news to user directly in the application through the newsroom (bell icon on the left menu)</li>
<li>Outgoing webhooks: Allow integration with a third-party application by sending structured data to a defined URL.</li>
</ol>
</p>
<p>For udførelse, handlinger skal være knyttet til triggers.
Ved tilknytningen til en trigger, bliver hver handling tildelt et "rækkefølge" nummer, der specificerer i hvilken rækkefølge handlingerne udføres.</p>',
'UI:NotificationsMenu:Triggers' => 'Triggers',
'UI:NotificationsMenu:AvailableTriggers' => 'Tilgængelige triggers',
'UI:NotificationsMenu:OnCreate' => 'Når et objekt oprettes',
'UI:NotificationsMenu:OnStateEnter' => 'Når et objekt indtræder i en give tilstand',
'UI:NotificationsMenu:OnStateLeave' => 'Når et objekt forlader en give tilstand',
'UI:NotificationsMenu:Actions' => 'Handlinger',
'UI:NotificationsMenu:Actions:ActionEmail' => 'Email actions~~',
'UI:NotificationsMenu:Actions:ActionWebhook' => 'Webhook actions (outgoing integrations)~~',
'UI:NotificationsMenu:Actions:Action' => 'Other actions~~',
'UI:NotificationsMenu:AvailableActions' => 'Tilgængelige handlinger',
'Menu:TagAdminMenu' => 'Tags configuration~~',
'Menu:TagAdminMenu+' => 'Tags values management~~',
'UI:TagAdminMenu:Title' => 'Tags configuration~~',
'UI:TagAdminMenu:NoTags' => 'No Tag field configured~~',
'UI:TagSetFieldData:Error' => 'Error: %1$s~~',
'UI:iTopVersion:Short' => '%1$s version %2$s',
'UI:iTopVersion:Long' => '%1$s version %2$s-%3$s built on %4$s',
'UI:PropertiesTab' => 'Egenskaber',