Newer
Older
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
{
"column.selection.link.all": "All",
"column.selection.link.none": "None",
"column.selection.link.show": "Show columns",
"column.selection.link.hide": "Hide columns",
"cancel.dialog.text": "Do you want to cancel all unsaved operations?",
"cancel.dialog.title": "Unsaved data",
"certificate.dialog.button.close": "Close",
"certificate.dialog.title": "Certificate details",
"confirmation.dialog.button.no": "No",
"confirmation.dialog.button.yes": "Yes",
"credentials.dialog.button.close": "Close",
"credentials.dialog.button.copy.access.token": "Copy Access token value",
"credentials.dialog.button.import": "Import",
"credentials.dialog.button.generate.access.token": "Generate new Access token",
"credentials.dialog.button.save.certificate": "Save Certificate",
"credentials.dialog.error.read.certificate": "Error occurred while reading certificate. Check if uploaded file has valid certificate type",
"credentials.dialog.error.upload.certificate": "Error uploading certificate file [{{fileName}}]. {{errorDescription}}",
"credentials.dialog.success.generate.token": "Token with ID: \"{{responseIdentifier}}\" and value: \"{{responseValue}}\" was generated!<br /><br />Copy the access token's value and save it in a safe space.<br /><br />You won't be able to see your token's value once you click <b>Close.</b>",
"credentials.dialog.label.active": "Active",
"credentials.dialog.label.certificate.validity.period": "Certificate validity period",
"credentials.dialog.label.description": "Description",
"credentials.dialog.label.subject.name": "Subject Name",
"credentials.dialog.label.smp.certificate.id": "SMP certificate ID",
"credentials.dialog.label.invalid.from": "Invalid active from date",
"credentials.dialog.label.invalid.expire.on": "Invalid expire on date",
"credentials.dialog.label.issuer.name": "Issuer Name",
"credentials.dialog.label.serial.number": "Serial Number",
"credentials.dialog.label.validity": "Validity period of the credentials",
"credentials.dialog.placeholder.end.date": "End date",
"credentials.dialog.placeholder.expire.on": "Expire On",
"credentials.dialog.placeholder.start.date": "Start date",
"credentials.dialog.placeholder.valid.from": "Valid from",
"dialog.button.close": "Close",
"dialog.button.no": "No",
"dialog.button.ok": "OK",
"dialog.button.yes": "Yes",
"document.property.dialog.button.ok": "OK",
"document.property.dialog.button.cancel": "Cancel",
"document.property.dialog.error.property.already.exists": "The property name already exists!",
"document.property.dialog.label.close": "Close",
"document.property.dialog.label.property.description": "Property Description:",
"document.property.dialog.label.property.name": "Property name:",
"document.property.dialog.label.property.type": "Property Type:",
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
"document.property.dialog.label.property.value": "Property value:",
"document.property.dialog.title.new.mode": "Create Document Property",
"document.property.dialog.title.edit.mode": "Edit Document Property",
"expired.password.dialog.text": "Your password is more than three months old. Please change it as soon as possible!",
"expired.password.dialog.title": "Password about to expire",
"manage.members.dialog.button.close": "Close",
"manage.members.dialog.title.invite.mode": "Invite {{membershipType}} member",
"manage.members.dialog.title.edit.mode": "Edit {{membershipType}} member",
"member.dialog.button.close": "Close",
"member.dialog.button.save": "Save",
"member.dialog.hint.choose.role": "Choose member role",
"member.dialog.hint.type.username": "Type username or name to locate the user and select user from the list",
"member.dialog.label.choose.user": "Choose User to invite",
"member.dialog.label.invite.members": "You're inviting members to {{target}}.",
"member.dialog.placeholder.role.type": "Role for the member",
"manage.dialog.title.invite.mode": "Invite {{membershipType}} member",
"manage.dialog.title.edit.mode": "Edit {{membershipType}} member",
"member.dialog.tooltip.role.type": "Role type for the member.",
"object.properties.dialog.button.close": "Close",
"object.properties.dialog.header.key": "Key",
"object.properties.dialog.header.value": "Value",
"password.change.dialog.button.confirm": "Set/change password",
"password.change.dialog.button.close": "Close",
"password.change.dialog.error.old.password.reused": "New password must not be equal than old current password!",
"password.change.dialog.error.passwords.mismatch": "Confirm password value does not match new password!",
"password.change.dialog.label.username": "Change password for Username",
"password.change.dialog.label.new.password": "New Password",
"password.change.dialog.label.password.admin": "Admin password for user [{{username}}]",
"password.change.dialog.label.password.user": "Current password",
"password.change.dialog.legend.required.fields": "* required fields",
"password.change.dialog.title": "Set/Change password dialog",
"password.change.dialog.success.password.change.admin": "Password has been successfully set/changed.",
"password.change.dialog.success.password.change.user": "Password has been successfully set/changed. Login again to the application with the new password!",
"property.details.dialog.button.ok": "OK",
"property.details.dialog.button.cancel": "Cancel",
"property.details.dialog.error.invalid.property": "Invalid property",
"property.details.dialog.error.validation": "Error occurred on Validation the property",
"property.details.dialog.label.use.system.default.value": "Use System default value",
"property.details.dialog.label.property.value": "Property value:",
"property.details.dialog.legend.description": "Description:",
"property.details.dialog.title.edit.mode": "{{type}} Property Edit",
"property.details.dialog.title.new.mode": "New {{type}} Property",
"session.expiration.dialog.button.expire": "Extend",
"session.expiration.dialog.button.logout": "Logout",
"session.expiration.dialog.title": "Extend session",
"session.expiration.dialog.label.session.about.to.expire": "Your session is about to expire in <b>{{data.timeLeft}}</b> seconds!<br />Would you like to logout now or extend it for another <b>{{data.timeout}}</b> seconds?",
"alert.panel.title": "Alerts",
"alert.panel.user.title": "{{value}} (Email: '{{mailTo}}')",
"certificate.panel.title": "Selected certificate data",
"certificate.panel.label.alias": "Alias",
"certificate.panel.label.crl": "Certificate revocation list URL",
"certificate.panel.label.issuer": "Issuer",
"certificate.panel.label.public.key.type": "Public key type",
"certificate.panel.label.serial.number": "Serial Number",
"certificate.panel.label.smp.certificate.id": "SMP certificate ID",
"certificate.panel.label.subject.name": "Subject Name",
"certificate.panel.label.valid.from": "Valid from date",
"certificate.panel.label.valid.to": "Valid to date",
"certificate.panel.placeholder.alias": "Alias",
"certificate.panel.placeholder.crl": "Certificate revocation list URL",
"certificate.panel.placeholder.issuer": "Issuer",
"certificate.panel.placeholder.public.key.type": "Public key type",
"certificate.panel.placeholder.smp.certificate.id": "SMP certificate ID",
"certificate.panel.placeholder.serial.number": "Serial Number",
"certificate.panel.placeholder.subject.name": "Subject Name",
"certificate.panel.placeholder.valid.from": "Valid from date",
"certificate.panel.placeholder.valid.to": "Valid to date",
"document.properties.panel.label.filter": "Filter",
"document.properties.panel.label.property": "Property",
"document.properties.panel.label.value": "Value",
"document.properties.panel.label.no.properties.found": "No Document properties found",
"document.properties.panel.label.select.page": "Select page of properties",
"document.properties.panel.label.expand.collapse": "Expand/Collapse",
"document.properties.panel.tooltip.expand.collapse": "Expand/Collapse property panel",
"document.properties.panel.label.create": "Create",
"document.properties.panel.tooltip.create": "Create new property",
"document.properties.panel.label.edit": "Edit",
"document.properties.panel.tooltip.edit": "Edit property",
"document.properties.panel.label.delete.remove": "Delete/Remove",
"document.properties.panel.tooltip.delete.remove": "Delete selected property",
"document.properties.panel.label.reset": "Reset changes",
"document.properties.panel.tooltip.reset": "Reset changes",
"membership.panel.button.invite.member": "Invite member",
"membership.panel.button.edit.membership": "Edit",
"membership.panel.button.delete.membership": "Remove",
"membership.panel.delete.confirmation.dialog.title": "Remove member",
"membership.panel.delete.confirmation.dialog.description": "Action will remove member [\"{{username}}\"]!<br/><br/>Do you wish to continue?",
"membership.panel.label.filter": "Member filter",
"membership.panel.label.full.name": "Full name",
"membership.panel.label.member.of": "Member of",
"membership.panel.label.no.filter.results": "No direct members matching the filter \"{{filterValue}}\"",
"membership.panel.label.no.data.found": "No direct members for the domain",
"membership.panel.label.role.type": "Role type",
"membership.panel.label.username": "Username",
"membership.panel.placeholder.filter": "Member filter",
"membership.panel.title.domain": "Direct Domain members {{value}}",
"membership.panel.title.group": "Direct Group members {{value}}",
"membership.panel.title.resource": "Resource direct members",
"membership.panel.tooltip.invite.member": "Invite new member",
"membership.panel.tooltip.edit.membership": "Edit membership of selected user",
"membership.panel.tooltip.delete.membership": "Delete selected membership",
"user.profile.panel.button.reset": "Reset",
"user.profile.panel.button.save": "Save",
"user.profile.panel.button.update.password": "Set/change password",
"user.profile.panel.hint.choose.member.role": "Choose member role",
"user.profile.panel.error.email": "Email is invalid!",
"user.profile.panel.label.active": "Active",
"user.profile.panel.label.application.role": "Application role",
"user.profile.panel.label.email": "E-Mail Address",
"user.profile.panel.label.example": "Example of Date/time",
"user.profile.panel.label.full.name": "Full name (name and last name)",
"user.profile.panel.label.language.bg": "Bulgarian",
"user.profile.panel.label.language.cs": "Czech",
"user.profile.panel.label.language.da": "Danish",
"user.profile.panel.label.language.de": "German",
"user.profile.panel.label.language.el": "Greek",
"user.profile.panel.label.language.en": "English",
"user.profile.panel.label.language.es": "Spanish",
"user.profile.panel.label.language.et": "Estonian",
"user.profile.panel.label.language.fi": "Finnish",
"user.profile.panel.label.language.fr": "French",
"user.profile.panel.label.language.hr": "Croatian",
"user.profile.panel.label.language.hu": "Hungarian",
"user.profile.panel.label.language.it": "Italian",
"user.profile.panel.label.language.lt": "Lithuanian",
"user.profile.panel.label.language.lv": "Latvian",
"user.profile.panel.label.language.mt": "Maltese",
"user.profile.panel.label.language.nl": "Dutch",
"user.profile.panel.label.language.pl": "Polish",
"user.profile.panel.label.language.pt": "Portuguese",
"user.profile.panel.label.language.ro": "Romanian",
"user.profile.panel.label.language.sk": "Slovak",
"user.profile.panel.label.language.sl": "Slovenian",
"user.profile.panel.label.language.sv": "Swedish",
"user.profile.panel.label.last.set": "Last set",
"user.profile.panel.label.locale": "Locale (Date/time formatting)",
"user.profile.panel.label.login.failed.attempts": "Seq. failed attempts",
"user.profile.panel.label.login.last.failed.attempt": "Last failed attempt",
"user.profile.panel.label.new.user": "Please fill user details and click \"Save\" to create a new user",
"user.profile.panel.label.username": "Username",
"user.profile.panel.label.password.expiration.date": "Password expire on",
"user.profile.panel.label.suspended.until.date": "Suspended until",
"user.profile.panel.label.theme": "Theme",
"user.profile.panel.placeholder.choose.date": "Choose a date",
"user.profile.panel.placeholder.password.expiration.date": "Valid until",
"user.profile.panel.placeholder.login.failed.attempts": "Seq. failed attempts",
"user.profile.panel.text.account": "Account data",
"user.profile.panel.text.credentials": "Reset username password for the UI login",
"user.profile.panel.text.user.profile": "User profile data and settings",
"user.profile.panel.title.account": "Account",
"user.profile.panel.title.credentials": "Username/password credentials",
"user.profile.panel.title.user.profile": "User profile",
"user.profile.panel.tooltip.application.role": "application role for the user.",
"user.profile.panel.tooltip.password.expiration.date": "Default password set by system admin! User must change password immediately!",
"user.profile.panel.value.password.expiration.date": "Default or null password",
"row.limiter.placeholder": "Rows",
"search.table.button.cancel": "Cancel",
"search.table.button.delete": "Delete",
"search.table.button.edit": "Edit",
"search.table.button.new": "New",
"search.table.button.save": "Save",
"search.table.button.search": "Search",
"search.table.dirty.confirmation.dialog.title": "Not persisted data",
"search.table.dirty.confirmation.dialog.description": "Action will refresh all data and not saved data will be lost.<br/><br/>Do you wish to continue?",
"search.table.error.delete": "Delete validation error",
"search.table.error.update": "The operation 'update' not completed successfully.",
"search.table.tooltip.edit": "Edit",
"search.table.tooltip.delete": "Delete",
"search.table.success.update": "The operation 'update' completed successfully",
"group.dialog.button.close": "Close",
"group.dialog.button.save": "Save",
"group.dialog.description": "To create a new group enter unique group name for the domain and click save.",
"group.dialog.hint.group.name": "Unique group name for the domain",
"group.dialog.hint.group.visibility": "Choose group visibility",
"group.dialog.label.group.name": "Group name",
"group.dialog.label.group.description": "Group description",
"group.dialog.label.group.visibility": "Group visibility",
"group.dialog.placeholder.group.visibility": "Group visibility",
"group.dialog.tooltip.group.visibility": "Group visibility.",
"domain.group.button.create": "Create",
"domain.group.button.delete": "Delete",
"domain.group.button.edit": "Edit data",
"domain.group.button.group.members": "Group members",
"domain.group.delete.confirmation.dialog.title": "Delete Group {{groupName}} from DomiSMP",
"domain.group.delete.confirmation.dialog.description": "Action will permanently delete group!<br/><br/>Do you wish to continue?",
"domain.group.error.delete": "Can not delete group because of invalid domain data. Is group selected?",
"domain.group.group.details.dialog.title": "Group details dialog",
"domain.group.label.filter": "Member filter",
"domain.group.label.group.name": "Group name",
"domain.group.label.group.description": "Description",
"domain.group.label.group.visibility": "Visibility",
"domain.group.label.no.filter.results": "No groups matching the filter \"{{filterValue}}\"",
"domain.group.label.no.data.found": "The domain has no groups",
"domain.group.label.select.pages": "Select pages",
"domain.group.manage.members.dialog.title": "Resource members management dialog",
"domain.group.success.delete": "Domain group [{{groupName}}] deleted",
"domain.group.title.domains.groups": "Domain groups",
"domain.group.title.domains.groups.for.domain.code": "Domain groups for [{{domainCode}}]",
"domain.group.tooltip.create": "Create new group",
"domain.group.tooltip.delete": "Delete selected group",
"domain.group.tooltip.edit": "Edit selected group",
"domain.group.tooltip.filter": "Member filter",
"domain.group.tooltip.group.members": "Group members",
"edit.domain.label.configuration": "Configuration",
"edit.domain.label.domain.code": "Domain code",
"edit.domain.label.domain.members": "Domain Members",
"edit.domain.label.filter": "Filter by domain code",
"edit.domain.label.group": "Group",
"edit.domain.label.no.filter.results": "No data matching the filter \"{{filterValue}}\"",
"edit.domain.label.user.not.administrator": "User is not administrator of any of the domains",
"edit.domain.placeholder.domain.code": "Domain code",
"edit.domain.text": "Edit Domains administration panel is a tool for domain administrators to manage domain members and domain groups",
"edit.domain.title": "Edit Domains",
"resource.dialog.button.close": "Close",
"resource.dialog.button.save": "Save",
"resource.dialog.description": "To create a new resource enter unique identifier and scheme and click save.",
"resource.dialog.label.resource.type": "Selected resource type",
"resource.dialog.label.resource.id": "Resource identifier",
"resource.dialog.label.resource.id.mandatory": "Participant identifier must not be empty and must be up to 255 characters long.",
"resource.dialog.label.resource.id.already.exists": "Participant identifier for given scheme is already defined in database!",
"resource.dialog.label.resource.scheme": "Resource scheme",
"resource.dialog.label.resource.scheme.mandatory": "Participant scheme must not be empty.",
"resource.dialog.label.resource.visibility": "Resource visibility",
"resource.dialog.placeholder.resource.type": "Select resource type for the resource",
"resource.dialog.placeholder.resource.visibility": "Resource visibility",
"resource.dialog.tooltip.resource.type": "Select type for the resource.",
"resource.dialog.tooltip.resource.visibility": "Resource visibility.",
"group.resource.panel.button.create": "Create",
"group.resource.panel.button.delete": "Delete",
"group.resource.panel.button.edit": "Edit",
"group.resource.panel.button.members": "Resource members",
"group.resource.panel.delete.confirmation.dialog.title": "Delete Resource with scheme from DomiSMP",
"group.resource.panel.delete.confirmation.dialog.description": "Action will permanently delete resource [{{identifierScheme}}] and identifier: [{{identifierValue}}]!<br/><br/>Do you wish to continue?",
"group.resource.panel.label.filter": "Resource filter",
"group.resource.panel.label.identifier.scheme": "Scheme",
"group.resource.panel.label.identifier.value": "Identifier",
"group.resource.panel.label.no.filter.results": "No resources matching the filter \"{{filterValue}}\"",
"group.resource.panel.label.no.data.found": "The group has no resources",
"group.resource.panel.label.select.pages": "Select pages",
"group.resource.panel.manage.members.dialog.title": "Resource members management dialog",
"group.resource.panel.placeholder.filter": "Resource filter",
"group.resource.panel.resource.details.dialog.title": "Resource details dialog",
"group.resource.panel.error.delete.group": "Can not delete group because of invalid domain data. Is group selected?",
"group.resource.panel.error.delete.resource": "Can not delete resource because of invalid resource data. Is resource selected?",
"group.resource.panel.success.delete": "Resource [{{identifierScheme}}] and identifier [{{identifierValue}}] deleted.",
"group.resource.panel.title": "Group resources {{groupName}}",
"group.resource.panel.tooltip.create": "Create",
"group.resource.panel.tooltip.delete": "Delete selected resource",
"group.resource.panel.tooltip.edit": "Edit data",
"group.resource.panel.tooltip.members": "Group members",
"edit.group.label.resources": "Resources",
"edit.group.label.members": "Members",
"edit.group.label.user.not.administrator": "User is not administrator of any of the groups",
"edit.group.label.select.domain": "Selected domain",
"edit.group.label.select.group": "Selected Group",
"edit.group.placeholder.select.domain": "Selected domain",
"edit.group.placeholder.select.group": "Select group",
"edit.group.text": "Edit group administration panel is a tool for group administrators to manage group members and resources",
"edit.group.title": "Edit Group",
"edit.group.tooltip.select.domain": "Selected domain.",
"edit.group.tooltip.select.group": "Select group.",
"document.wizard.dialog.button.cancel": "Cancel",
"document.wizard.dialog.button.ok": "OK",
"document.wizard.dialog.title": "Resource Extension Wizard",
"resource.details.panel.label.resource.id": "Resource identifier",
"resource.details.panel.label.resource.name": "Edit resource document",
"resource.details.panel.label.resource.scheme": "Resource scheme",
"resource.details.panel.label.resource.type": "Resource type",
"resource.details.panel.label.resource.visibility": "Resource visibility",
"resource.details.panel.label.resource.visibility.private": "The private resource is accessible only to the resource members!",
"resource.details.panel.label.resource.visibility.private.group": "The resource belongs to the private group. Only the group members and group resource members can access the resource!",
"resource.details.panel.label.resource.visibility.private.domain": "The resource belongs to the private domain. Only the domain members, domain group members and its resource members can access the resource!",
"resource.details.panel.label.resource.visibility.public": "The resource is public on the public group and the public domain. The resource data is accessible to all users.",
"resource.details.panel.button.edit": "Edit document",
"resource.details.panel.placeholder.resource.type": "Resource type for the resource",
"resource.details.panel.tooltip.resource.type": "Select type for the resource.",
"resource.details.panel.tooltip.resource.visibility": "Resource visibility.",
"resource.details.panel.tooltip.show.resource": "Show resource",
"resource.details.panel.title": "Resources",
"resource.document.panel.button.back": "Back",
"resource.document.panel.button.cancel": "Cancel",
"resource.document.panel.button.document.wizard": "Document wizard",
"resource.document.panel.button.generate": "Generate",
"resource.document.panel.button.validate": "Validate",
"resource.document.panel.button.save": "Save",
"resource.document.panel.cancel.confirmation.dialog.description": "Do you want to cancel all changes on the document?",
"resource.document.panel.cancel.confirmation.dialog.title": "Cancel changes",
"resource.document.panel.document.wizard.dialog.title": "Resource wizard",
"resource.document.panel.label.created.on": "Created on:",
"resource.document.panel.label.show.version": "Show version:",
"resource.document.panel.placeholder.version": "All document version",
"resource.document.panel.success.save": "Document is saved with current version [{{currentResourceVersion}}].",
"resource.document.panel.success.generate": "Document is generated.",
"resource.document.panel.success.valid": "Document is Valid.",
"resource.document.panel.title": "Resources",
"resource.document.panel.tooltip.document.wizard": "Show document wizard dialog",
"resource.document.panel.tooltip.generate": "Generate resource",
"resource.document.panel.tooltip.save": "Save resource",
"resource.document.panel.tooltip.validate": "Validate resource",
"resource.document.panel.tooltip.version": "Select version to display.",
"subresource.document.panel.button.back": "Back",
"subresource.document.panel.button.cancel": "Cancel",
"subresource.document.panel.button.document.wizard": "Document wizard",
"subresource.document.panel.button.generate": "Generate",
"subresource.document.panel.button.validate": "Validate",
"subresource.document.panel.button.save": "Save",
"subresource.document.panel.cancel.confirmation.dialog.description": "Do you want to cancel all changes on the document?",
"subresource.document.panel.cancel.confirmation.dialog.title": "Cancel changes",
"subresource.document.panel.label.created.on": "Created on:",
"subresource.document.panel.label.show.version": "Show version:",
"subresource.document.panel.placeholder.show.version": "All document version",
"subresource.document.panel.success.generate": "Document is generated.",
"subresource.document.panel.success.save": "Document is saved with current version [{{currentResourceVersion}}].",
"subresource.document.panel.success.valid": "Document is Valid.",
"subresource.document.panel.tooltip.document.wizard": "Show document wizard dialog",
"subresource.document.panel.tooltip.generate": "Generate resource",
"subresource.document.panel.tooltip.save": "Save resource",
"subresource.document.panel.tooltip.show.version": "Select version to display.",
"subresource.document.panel.tooltip.validate": "Validate resource",
"subresource.document.wizard.button.cancel": "Cancel",
"subresource.document.wizard.button.ok": "OK",
"subresource.document.wizard.error.read": "Error occurred while reading certificate. Check if uploaded file has valid certificate type",
"subresource.document.wizard.error.upload": "Error uploading certificate file [{{fileName}}] {{errorDescription}}",
"subresource.document.wizard.button.upload.certificate": "Upload certificate",
"subresource.document.wizard.label.access.point": "Access point URL",
"subresource.document.wizard.label.access.point.mandatory": "Access point URL is required!",
"subresource.document.wizard.label.process.id": "Process identifier",
"subresource.document.wizard.label.process.id.mandatory": "Process identifier is required!",
"subresource.document.wizard.label.process.scheme": "Process scheme",
"subresource.document.wizard.label.service.description": "Service description",
"subresource.document.wizard.label.technical.contact.url": "Technical Contact URL",
"subresource.document.wizard.label.transport.profile": "Transport profile",
"subresource.document.wizard.label.transport.profile.mandatory": "Transport profile (as example: bdxr-transport-ebms3-as4-v1p0) is required!",
"subresource.document.wizard.label.upload.certificate.mandatory": "Valid x509 Certificate is required!",
"subresource.document.wizard.legend.required.fields": "* required fields",
"subresource.document.wizard.placeholder.upload.certificate": "Upload a certificate or paste the value inside the field",
"subresource.document.wizard.title": "Subresource Wizard",
"subresource.document.wizard.tooltip.access.point": "The address of an endpoint, as a URL.",
"subresource.document.wizard.tooltip.process.id": "The value part of the identifier of the process.",
"subresource.document.wizard.tooltip.process.scheme": "The scheme part of the identifier of the process.",
"subresource.document.wizard.tooltip.service.description": "Service description",
"subresource.document.wizard.tooltip.technical.contact.url": "Technical contact for the service",
"subresource.document.wizard.tooltip.transport.profile": "Indicates the type of transport method that is being used between access points for message exchange. See the message exchange network technical specifications for correct values.",
"subresource.dialog.button.close": "Close",
"subresource.dialog.button.create": "Create",
"subresource.dialog.description": "To create a new subresource enter unique identifier and scheme and click save.",
"subresource.dialog.label.resource.type": "Selected resource type",
"subresource.dialog.label.subresource.id": "Subresource identifier",
"subresource.dialog.label.subresource.scheme": "Subresource scheme",
"subresource.dialog.placeholder.resource.type": "Select type for the subresource",
"subresource.dialog.tooltip.resource.type": "Select type for the subresource.",
"subresource.panel.button.create": "Create",
"subresource.panel.button.delete": "Delete",
"subresource.panel.button.edit": "Edit",
"subresource.panel.error.delete.resource.data": "Can not delete subresource because of invalid resource data. Is resource selected?",
"subresource.panel.error.delete.subresource.data": "Can not delete subresource because of invalid subresource data. Is subresource selected?",
"subresource.panel.delete.confirmation.dialog.description": "Action will permanently delete subresource [{{identifierScheme}}] and identifier: [{{identifierValue}}]!<br/><br/>Do you wish to continue?",
"subresource.panel.delete.confirmation.dialog.title": "Delete Resource with scheme from DomiSMP",
"subresource.panel.label.filter": "Resource filter",
"subresource.panel.label.identifier.scheme": "Scheme",
"subresource.panel.label.identifier.value": "Identifier",
"subresource.panel.label.no.filter.results": "No resources matching the filter \"{{filterValue}}\"",
"subresource.panel.label.no.data.found": "The resource has no subresources",
"subresource.panel.label.subresource.name": "Edit subresource document",
"subresource.panel.label.select.pages": "Select pages",
"subresource.panel.subresource.dialog.title": "Create Subresource Dialog",
"subresource.panel.placeholder.filter": "Resource filter",
"subresource.panel.success.delete": "Subresource [{{identifierScheme}}] and identifier: [{{identifierValue}}] deleted.",
"subresource.panel.title": "Subresources",
"subresource.panel.tooltip.create": "Create",
"subresource.panel.tooltip.delete": "Delete selected resource",
"subresource.panel.tooltip.edit": "Edit",
"edit.resource.label.filter": "Resource filter",
"edit.resource.label.identifier.scheme": "Scheme",
"edit.resource.label.identifier.value": "Identifier",
"edit.resource.label.members": "Members",
"edit.resource.label.no.filter.results": "No resources matching the filter \"{{filterValue}}\"",
"edit.resource.label.no.filter.results.admin": "No resources for give filter",
"edit.resource.label.no.data.found": "The group has no resources",
"edit.resource.label.resource.details": "Resource details",
"edit.resource.label.select.pages": "Select pages",
"edit.resource.label.selected.domain": "Selected domain",
"edit.resource.label.selected.group": "Selected Group",
"edit.resource.label.subresources": "Subresources",
"edit.resource.label.user.not.administrator": "User is not administrator of any of the resources",
"edit.resource.placeholder.filter": "Resource filter",
"edit.resource.placeholder.selected.domain": "Select domain",
"edit.resource.placeholder.selected.group": "Select group",
"edit.resource.text": "Edit resource administration panel is a tool for resource administrators to administer the resource",
"edit.resource.title": "Edit Resource",
"edit.resource.tooltip.selected.domain": "Select domain.",
"edit.resource.tooltip.selected.group": "Select group.",
"login.button.login": "Login",
"login.button.password.reset": "Request reset password",
"login.button.sso.login": "Request reset password",
"login.dialog.password.expiration.dialog.description": "Your password is about to expire on {{expirationDate}}! Please change the password before the expiration date!",
"login.dialog.password.expiration.dialog.title": "Warning! Your password is about to expire",
"login.error.generic.error": "Default error ({{errorStatus}}) occurred during login.",
"login.error.inactive.user": "The user is inactive. Please contact your administrator.",
"login.error.invalid.credentials": "{{errorStatus}} The username/password combination you provided are not valid. Please try again or contact your administrator.",
"login.error.invalid.username": "Please enter a valid username.",
"login.error.invalid.username.or.password": "Please enter a valid username and password.",
"login.error.smp.not.running": "Unable to login. SMP is not running.",
"login.label.login": "Login",
"login.label.logout": "Logout",
"login.label.password": "Password",
"login.label.password.reset": "Request password reset",
"login.label.sso.login": "SSO Login",
"login.label.login.username": "Username",
"login.label.password.reset.username": "Username",
"login.title.smp.login": "SMP Login",
"login.title.sso.login": "SSO Login:",
"login.success.confirmation.email.sent": "A confirmation email has been sent to your registered email address for user [{{userId}}]. Please follow the instructions in the email to complete the account reset process. If you did not receive mail try later or contact administrator",
"resource.search.button.clear.all": "Clear All",
"resource.search.error.fetch.resource.metadata": "Error occurred while retrieving the resource metadata",
"resource.search.label.document.type": "Document Type",
"resource.search.label.domain": "Domain",
"resource.search.label.no.subresources": "No subresources",
"resource.search.label.open.url": "Open URL",
"resource.search.label.resource.id": "Resource Identifier",
"resource.search.label.resource.scheme": "Resource scheme",
"resource.search.label.column.document.type": "Document type",
"resource.search.label.column.domain": "Domain",
"resource.search.label.column.resource.id": "Resource identifier",
"resource.search.label.column.resource.scheme": "Resource scheme",
"resource.search.label.column.resource.url": "Resource URL",
"resource.search.label.column.subresource.count": "Sr. Cnt.",
"resource.search.label.subresource.id": "Subresource identifier",
"resource.search.label.subresource.id.scheme": "Subresource identifier scheme",
"resource.search.placeholder.document.type": "Document type",
"resource.search.placeholder.domain": "Domain",
"resource.search.title": "Search",
"resource.search.tooltip.document.type": "Document type",
"resource.search.tooltip.domain": "Domain",
"default.password.dialog.button.ok": "OK",
"default.password.dialog.title": "You are using the default password for this user. We strongly recommend you to change it using the user console.",
"reset.credentials.button.cancel": "Cancel",
"reset.credentials.button.update.password": "Set/change password",
"reset.credentials.error.passwords.mismatch": "Confirm value does not match new password!",
"reset.credentials.error.old.password.reused": "New password must not be equal than old current password!",
"reset.credentials.label.username": "Enter Username",
"reset.credentials.label.new.password": "New Password",
"reset.credentials.label.new.password.confirmation": "Confirm New Password",
"reset.credentials.legend.required.fields": "* required fields",
"reset.credentials.success.password.reset": "Password has been reset successfully. Please login with new password",
"domain.panel.button.reset": "Reset",
"domain.panel.button.save": "Save",
"domain.panel.label.domain": "Domain Code [{{value}}]",
"domain.panel.label.domain.already.exists": "The Domain code already exists!",
"domain.panel.label.domain.default.resource.type": "Default resource type for the domain",
"domain.panel.label.domain.mandatory": "Domain code must contain only chars and numbers and must be less than 63 chars long.",
"domain.panel.label.domain.visibility": "Visibility of the domain",
"domain.panel.label.signature.cert.alias": "Response signature Certificate (Signature CertAlias)",
"domain.panel.text": "Enter data and click 'Save' to create new domain",
"domain.panel.title": "Domain details",
"domain.panel.hint.domain": "For WS API integration: the Domain property",
"domain.panel.hint.domain.visibility": "Domain visibility. In case of Internal user must be authenticated to get read the domain resources",
"domain.panel.hint.signature.cert.alias": "Empty value will cause that Resource responses will not be signed by SMP!",
"domain.panel.tooltip.domain": "The SMP's domain code. The code must be unique and is used in HTTP header 'Domain' or URL path sequence when retrieving/creating the resource using the webservice API",
"domain.panel.tooltip.domain.default.resource.type": "Default resource type for the domain.",
"domain.panel.tooltip.domain.visibility": "Visibility of the domain.",
"domain.panel.tooltip.signature.cert.alias": "Certificate is used for signing REST responses for the domain.",
"domain.panel.warning.domain.configuration.option.admin.member": "<li>add a domain member with 'ADMIN' role from the Members tab!</li>",
"domain.panel.warning.domain.configuration.option.resource.type": "<li>select at least one resource type from the Resource Types tab</li>",
"domain.panel.warning.domain.configuration.option.signature.key": "<li>select the signature key to be used for signing the domain's responses!</li>",
"domain.panel.warning.domain.configuration.prefix": "To complete domain configuration, please: <ul>",
"domain.properties.button.reset": "Reset",
"domain.properties.button.save": "Save",
"domain.properties.label.domain.property": "Domain property",
"domain.properties.label.domain.value": "Domain value",
"domain.properties.label.system.default": "Sys. Def.",
"domain.properties.label.no.properties.found": "No Domain properties found",
"domain.properties.panel.title": "Domain properties",
"domain.resource.type.panel.button.reset": "Reset",
"domain.resource.type.panel.button.save": "Save",
"domain.resource.type.label.domain.resource.type.configuration": "Domain resource type configuration",
"domain.sml.integration.panel.button.register": "Register",
"domain.sml.integration.panel.button.reset": "Reset",
"domain.sml.integration.panel.button.save": "Save",
"domain.sml.integration.panel.button.unregister": "Unregister",
"domain.sml.integration.panel.hint.sml.domain": "The domain-specific part of the SML DNS zone (e.g., ‘mydomain’ for mydomain.sml.dns.zone).",
"domain.sml.integration.panel.hint.smp.id": "SMP ID used for SML",
"domain.sml.integration.panel.label.smp.id": "SML SMP identifier",
"domain.sml.integration.panel.label.smp.id.already.exists": "SML SMP ID already exists!",
"domain.sml.integration.panel.label.smp.id.mandatory": "SML SMP ID should be up to 63 characters long, should only contain alphanumeric and hyphen characters, should not start with a digit nor a hyphen and should not end with a hyphen.",
"domain.sml.integration.panel.label.smp.client.certificate.alias": "SML Client Certificate Alias",
"domain.sml.integration.panel.label.sml.client.certificate.toggle": "Use ClientCert HTTP header authentication.",
"domain.sml.integration.panel.label.sml.domain": "SML domain",
"domain.sml.integration.panel.label.sml.domain.already.exists": "Domain with empty SML subdomain already exists!",
"domain.sml.integration.panel.label.sml.domain.mandatory": "SML domain should be up to 63 characters long, should only contain alphanumeric and hyphen characters, should not start with a digit nor a hyphen and should not end with a hyphen.",
"domain.sml.integration.panel.label.sml.subdomain.already.exists": "The SML subdomain is already defined!",
"domain.sml.integration.panel.register.confirmation.dialog.description": "Action will register domain: [{{domainCode}}] and all its resources to SML.<br/><br/>Do you wish to continue?",
"domain.sml.integration.panel.register.confirmation.dialog.title": "Register domain to SML",
"domain.sml.integration.panel.error.register": "Error occurred while registering domain: {{domainCode}}",
"domain.sml.integration.panel.error.register.unknown.error": "Unknown error. Check logs.",
"domain.sml.integration.panel.error.unregister": "Error occurred while unregistering domain: {{domainCode}}",
"domain.sml.integration.panel.error.unregister.unknown.error": "Unknown error. Check logs.",
"domain.sml.integration.panel.success.register": "Domain [{{domainCode}}] registered to SML!",
"domain.sml.integration.panel.success.unregister": "Domain [{{domainCode}}] unregistered from SML!",
"domain.sml.integration.panel.text": "Domain is registered to SML!</p>The Registered domain can not be deleted or changed the SMP SML identifier",
"domain.sml.integration.panel.title": "SML integration data",
"domain.sml.integration.panel.tooltip.sml.domain": "The domain-specific part of the SML DNS zone (e.g., ‘mydomain’ for mydomain.sml.dns.zone or leave empty for sml.dns.zone). Note: has informative value only, SML DNS zone used for publishing is based on SML configuration.",
"domain.sml.integration.panel.tooltip.smp.client.certificate.alias": "Client Certificate used for SML authentication. The SML Client-Cert http Header is also generated from the certificate",
"domain.sml.integration.panel.tooltip.smp.client.certificate.alias.default.option": "Choose certificate for signing soap response",
"domain.sml.integration.panel.unregister.confirmation.dialog.description": "Action will unregister domain: [{{domainCode}}] and all its resources from SML.<br/><br/>Do you wish to continue?",
"domain.sml.integration.panel.unregister.confirmation.dialog.title": "Unregister domain to SML",
"admin.domain.button.create": "Create domain",
"admin.domain.button.delete": "Delete selected",
"admin.domain.label.configuration": "Configuration",
"admin.domain.label.domain.data": "Domain data",
"admin.domain.label.domain.code": "Domain code",
"admin.domain.label.filter": "Filter by domain code",
"admin.domain.label.no.filter.results": "No data matching the filter {{filterValue}}",
"admin.domain.label.no.data.found": "No data",
"admin.domain.label.members": "Members",
"admin.domain.label.select.page": "Select page",
"admin.domain.label.no.domains.selected": "No domain selected.",
"admin.domain.label.resource.type": "Resource Types",
"admin.domain.label.sml.integration": "SML integration",
"admin.domain.error": "Error: {{actionMessage}}",
"admin.domain.success.create": "Domain: [{{domainCode}}] was created!",
"admin.domain.success.remove": "Domain: [{{domainCode}}] is removed!",
"admin.domain.text": "System Domain administration panel is a tool for creating and removing domains from DomiSMP",
"admin.domain.title": "System Domain administration",
"extension.panel.extension.description": "Description",
"extension.panel.label.description": "Description",
"extension.panel.label.extension.name": "Extension name",
"extension.panel.label.extension.version": "Extension version",
"extension.panel.label.resource.definitions": "Resource definitions",
"extension.panel.label.name": "Name",
"extension.panel.label.id": "Identifier",
"extension.panel.label.url.segment": "URL Segment",
"extension.panel.label.mime.type": "Mime Type",
"extension.panel.label.select.page": "Select page",
"extension.panel.label.show.selected.resources": "Show selected resource",
"extension.panel.placeholder.extension.name": "Extension name",
"extension.panel.placeholder.extension.version": "Version",
"extension.panel.title": "Selected extension data",
"resource.details.dialog.button.cancel": "Cancel",
"resource.details.dialog.resource.description": "Selected Resource definition data",
"resource.details.dialog.subresources.description": "SubResource definitions",
"resource.details.dialog.extension.description": "Description",
"resource.details.dialog.label.name": "Name",
"resource.details.dialog.label.id": "Identifier",
"resource.details.dialog.label.url.segment": "URL Segment",
"resource.details.dialog.label.mime.type": "Mime Type",
"resource.details.dialog.label.description": "Description",
"resource.details.dialog.label.resource.id": "Resource identifier",
"resource.details.dialog.label.resource.name": "Resource name",
"resource.details.dialog.label.resource.mime.type": "Resource MIME Type",
"resource.details.dialog.label.select.page": "Select page",
"resource.details.dialog.label.url": "URL path segment/HTTP header",
"resource.details.dialog.placeholder.resource.id": "Resource identifier",
"resource.details.dialog.placeholder.resource.name": "Resource name",
"resource.details.dialog.placeholder.resource.mime.type": "Resource MIME Type",
"resource.details.dialog.placeholder.url": "URL path segment/HTTP header",
"resource.details.dialog.title": "Resource definition details",
"extensions.label.filter": "Filter by extension name",
"extensions.label.no.filter.results": "No data matching the filter \"{{filterValue}}\"",
"extensions.label.no.data.found": "No data",
"extensions.label.name": "Name",
"extensions.label.version": "Version",
"extensions.label.select.page": "Select page",
"extensions.label.no.extension.selected": "No extension selected.",
"extensions.text": "Registered DomiSMP extensions.<br />DomiSMP supports document types via custom designed extension. The extensions implements tools for validating and generating the resources and subresources. <br /> Extensions can also implement custom logic for the payload scaning eg. virus detections.",
"extensions.title": "Extensions",
"keystore.import.dialog.button.import": "Import",
"keystore.import.dialog.button.cancel": "Cancel",
"keystore.import.dialog.error.import": "Error occurred while importing keystore: {{fileName}}",
"keystore.import.dialog.error.upload": "Error uploading keystore file {{fileName}}",
"keystore.import.dialog.error.generic": "Error occurred while reading keystore.",
"keystore.import.dialog.error.generic.message": "Check if uploaded file has valid keystore type.",
"keystore.import.dialog.hint.password": "Keys and keystore must have the same password!",
"keystore.import.dialog.label.choose": "Choose keystore",
"keystore.import.dialog.label.keystore.file.name": "Choose a file - keystore!",
"keystore.import.dialog.label.keystore.type.mandatory": "Keystore type is required!",
"keystore.import.dialog.label.password.mandatory": "Password is required! (Keys and keystore must have the same password!)",
"keystore.import.dialog.legend.required.fields": "* required fields",
"keystore.import.dialog.placeholder.keystore.file.name": "Keystore filename",
"keystore.import.dialog.placeholder.keystore.type": "Keystore type",
"keystore.import.dialog.placeholder.keystore.type.jks": "Java keystore (JKS)",
"keystore.import.dialog.placeholder.keystore.type.pkcs12": "PKCS #12 (PKCS12)",
"keystore.import.dialog.placeholder.password": "Password",
"keystore.import.dialog.title": "Keystore import dialog",
"keystore.import.dialog.warning.ignored.aliases": "The following aliases have been ignored because they were already present in the current keystore: {{ignoredAliases}}",
"admin.keystore.button.import.keystore": "Import keystore",
"admin.keystore.button.delete.key": "Delete selected key",
"admin.keystore.label.alias": "Alias",
"admin.keystore.label.certificate": "Certificate",
"admin.keystore.label.key.pair": "Key Pair",
"admin.keystore.label.type": "Type",
"admin.keystore.label.no.certificate.selected": "No certificate selected.",
"admin.keystore.label.invalid.certificate": "Invalid certificate: {{reason}}",
"admin.keystore.label.filter": "Filter certificate/keys by alias",
"admin.keystore.label.no.filter.results": "No data matching the filter \"{{filterValue}}\"",
"admin.keystore.label.no.data.found": "No data",
"admin.keystore.label.select.page": "Select page",
"admin.keystore.delete.confirmation.dialog.description": "Action will permanently delete key from keystore!<br/><br/>Do you wish to continue?",
"admin.keystore.delete.confirmation.dialog.title": "Delete key [{{alias}}] from keystore",
"admin.keystore.success.certificates.added": "Certificates added [{{aliases}}]",
"admin.keystore.success.certificates.deleted": "Certificates deleted [{{aliases}}]",
"admin.keystore.success.errors.detected": "Errors detected [{{errors}}]",
"admin.keystore.placeholder.filter": "alias name",
"admin.keystore.text": "Keystore contains keys for signing responses and Client keys for SML integrations.",
"admin.keystore.title": "Keystore administration",
"property.label.column.property": "Property",
"property.label.column.value": "Value",
"property.label.column.title.property": "Property key.",
"property.label.column.title.value": "Property value.",
"property.label.filter": "Filter by property name",
"property.label.new.value": "New Value: '{{value}}'.",
"property.label.server.restart.needed": "Server restart is needed!",
"property.label.server.restart.time": "Scheduled update time: {{date}}",
"property.title": "Properties",
"property.tooltip.filter": "Filter by property name",
"admin.truststore.button.add.certificate": "Add certificate",
"admin.truststore.button.delete.certificate": "Delete selected",
"admin.truststore.error": "Error: {{actionMessage}}",
"admin.truststore.delete.confirmation.dialog.description": "Action will permanently delete certificate from truststore!<br/><br/>Do you wish to continue?",
"admin.truststore.delete.confirmation.dialog.title": "Delete certificate {{alias}} from truststore",
"admin.truststore.label.alias": "Alias",
"admin.truststore.label.certificate.trustiness": "When truststore is empty, the trustiness of the certificate is not validated!",
"admin.truststore.label.filter": "Filter certificate by alias",
"admin.truststore.label.invalid.certificate": "Invalid certificate: {{reason}}",
"admin.truststore.label.no.filter.results": "No data matching the filter \"{{filterValue}}\"",
"admin.truststore.label.no.data.found": "No data",
"admin.truststore.label.no.certificates.selected": "No certificate selected.",
"admin.truststore.label.select.page": "Select page",
"admin.truststore.placeholder.filter": "Alias name",
"admin.truststore.success.import": "Certificate: [{{certificateId}}] with alias [{{alias}}] is imported!",
"admin.truststore.success.remove": "Certificate: [{{certificateId}}] with alias [{{alias}}] is removed!",
"admin.truststore.text": "Truststore is contains certificate trust anchors. <br /> Certificates used for authentication must have trust anchors in the truststore.",
"admin.truststore.title": "Truststore administration",
"admin.user.button.create": "Create user",
"admin.user.button.delete": "Delete selected",
"admin.user.delete.confirmation.dialog.description": "Action will permanently delete user!<br/><br/>Do you wish to continue?",
"admin.user.delete.confirmation.dialog.title": "Delete user {{username}} from DomiSMP",
"admin.user.label.filter": "Filter by username",
"admin.user.label.full.name": "Full name",
"admin.user.label.username": "Username",
"admin.user.label.no.filter.results": "No users matching the filter \"{{filterValue}}\"",
"admin.user.label.no.data.found": "No data",
"admin.user.label.select.page": "Select page",
"admin.user.label.no.user.selected": "No user selected.",
"admin.user.placeholder.filter": "User name or full name",
"admin.user.success.create": "User [{{username}}] has been created!",
"admin.user.success.delete": "User [{{username}}] has been deleted!",
"admin.user.success.password.updated": "User password changed!",
"admin.user.success.update": "User [{{username}}] updated!",
"admin.user.text": "System User administration panel is a tool for creating and removing users from DomiSMP",
"admin.user.title": "System User administration",
"dns.query.panel.label.dns.query": "DNS query not resolved",
"dns.query.panel.label.resolved.dns.entries": "Resolved DNS entries",
"dns.query.panel.title": "DNS domain",
"dns.tools.button.generate.lookup.query": "Generate lookup query",
"dns.tools.label.resource.id": "Resource Identifier",
"dns.tools.label.resource.scheme": "Resource scheme",
"dns.tools.label.resource.top.domain": "Top domain",
"dns.tools.description": "Enter the DNS data to create DNS query",
"dns.tools.title": "DNS lookup",
"access.token.panel.button.delete": "Delete",
"access.token.panel.button.save": "Save",
"access.token.panel.error.invalid.end.date": "Invalid expire on date",
"access.token.panel.error.invalid.start.date": "Invalid active from date",
"access.token.panel.label.active": "Active",
"access.token.panel.label.description": "Description",
"access.token.panel.label.login.failed.attempts": "Seq. failed attempts",
"access.token.panel.label.login.last.failed.attempt": "Last failed attempt",
"access.token.panel.label.token.expired": "Access token is expired",
"access.token.panel.label.suspended.until": "Suspended until",
"access.token.panel.label.validity.dates": "Enter a valid date range",
"access.token.panel.placeholder.end.date": "End date",
"access.token.panel.placeholder.start.date": "Start date",
"user.access.tokens.button.create": "Create access Token",
"user.access.tokens.label.access.tokens": "Access Tokens",
"user.access.tokens.label.select.page": "Select page",
"user.access.tokens.text": "You can generate a access token for each application you use that needs access to the DomiSMP API.",
"user.access.tokens.title": "Access token",
"user.access.tokens.credentials.dialog.title": "New Access token created",
"user.access.tokens.delete.confirmation.dialog.description": "Action will delete access token: \"{{credentialName}}\"!<br /><br />Do you wish to continue?",
"user.access.tokens.delete.confirmation.dialog.title": "Delete Access token",
"user.access.tokens.update.confirmation.dialog.description": "Action will update access token: \"{{credentialName}}\"!<br /><br />Do you wish to continue?",
"user.access.tokens.update.confirmation.dialog.title": "Update Access token",
"user.access.tokens.tooltip.create": "Create new Access token",
"user.certificate.panel.button.delete": "Delete",
"user.certificate.panel.button.show.details": "Show Details",
"user.certificate.panel.button.save": "Save",
"user.certificate.panel.label.active": "Active",
"user.certificate.panel.label.certificate.id": "Certificate ID",
"user.certificate.panel.label.description": "Description",
"user.certificate.panel.label.invalid.end.date": "Invalid expire on date",
"user.certificate.panel.label.invalid.certificate": "Invalid certificate: {{reason}}",
"user.certificate.panel.label.invalid.start.date": "Invalid active from date",
"user.certificate.panel.label.validity.dates": "Validity period of the certificate",
"user.certificate.panel.placeholder.end.date": "End date",
"user.certificate.panel.placeholder.start.date": "Start date",
"user.certificates.button.import": "Import new certificate",
"user.certificates.label.user.certificate": "User Certificates",
"user.certificates.label.select.page": "Select page",
"user.certificates.credentials.dialog.title": "Import Certificate",
"user.certificates.delete.confirmation.dialog.description": "Action will delete certificate: \"{{credentialName}}\"!<br /><br />Do you wish to continue?",
"user.certificates.delete.confirmation.dialog.title": "Delete Certificate",
"user.certificates.update.confirmation.dialog.description": "Action will update Certificate data:<br />{{credentialName}}!<br /><br />Do you wish to continue?",
"user.certificates.update.confirmation.dialog.title": "Update Certificate",
"user.certificates.text": "Register a Client X509 certificates to access the DomiSMP API using the mutual TLS authentication.",
"user.certificates.title": "User X509 Certificates",
"user.certificates.tooltip.import": "Import new certificate",
"toolbar.component.button.change.password": "Change password",
"toolbar.component.button.logout": "Logout",
"toolbar.component.button.not.logged.in": "Not logged in",
"toolbar.component.button.open.cas.profile": "Open CAS user data",
"toolbar.component.label.system.administrator.role": "System administrator",
"toolbar.component.label.user.role": "SMP user",
"app.component.button.collapse": "Collapse sidebar",
"app.component.tooltip.collapse": "Collapse",
"app.component.tooltip.expand": "Expand"
}