-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathen.json
1171 lines (1171 loc) · 78.1 KB
/
en.json
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
{
"access_control.about_header": "About access control",
"access_control.bankruptcyEstate": "Bankruptcy Estate",
"access_control.header": "Administer Access Control",
"access_control.organisation": "Organisation",
"access_control.party_type": "Choose what parties can instantiate the applicaiton. If you choose none, all parties may instantiate the application.",
"access_control.party_type_header": "Party type requirements",
"access_control.person": "Person",
"access_control.subUnit": "Sub unit",
"access_control.test_initiation": "To test all settings for initiation we recommend that you test in a test environment.",
"access_control.test_initiation_header": "Test of initiation",
"access_control.test_what": "Party list will be filtered in altinn studio preview based on the party type requirements.",
"access_control.test_what_header": "What can you test in Altinn Studio?",
"address_component.validation_error_house_number": "Property number is invalid",
"address_component.validation_error_zipcode": "Zip code is invalid",
"administration.administration": "About",
"administration.copied_app_header": "Welcome to your copied app",
"administration.copied_app_information": "Before you start developing there are some minor adjustments that needs to be done. Read more about these in our <0 href=\"https://docs.altinn.studio/app/getting-started/copy-app/\">user documentation</0>",
"administration.created_by": "Created by:",
"administration.datamodels_info1": "Click the \"Data model\" tab to edit data models.",
"administration.datamodels_info2": "Choose \"Open repository\" from the user menu (click the user icon on the top right of the screen to see all data model files.",
"administration.datamodels_info3": "Documentation for data modeling tool",
"administration.datamodels_info_link": "can be found here.",
"administration.download_repo": "Download all changes as zip file",
"administration.download_repo_changes": "Download only changed files as zip file",
"administration.download_repo_full": "Download full copy of server changes as zip file",
"administration.download_repo_heading": "Download all changes?",
"administration.download_repo_info": "If the designer crashes and <em>push</em> fails, you might try to salvage your changes by downloading this .zip file, extracting it over a git repo and manually commit your changes.",
"administration.repo_owner_is": "Created for:",
"administration.reset_repo_button": "Delete my changes",
"administration.reset_repo_completed": "All changes are deleted.",
"administration.reset_repo_confirm_heading": "Delete changes?",
"administration.reset_repo_confirm_info": "You are about to reset any changes you have done on {{repositoryName}}. Once deleted, you cannot recover these changes.",
"administration.reset_repo_confirm_repo_name": "Please type the app name to confirm",
"administration.reset_repo_heading": "Delete my changes",
"administration.reset_repo_info_i1": "This will reset all files to the version in the central repository",
"administration.reset_repo_info_i2": "Any changes that have not been pushed to the central repository will be lost",
"administration.reset_repo_info_i3": "You cannot undo this operation",
"administration.service_comment": "Comments",
"administration.service_comment_description": "Here you can describe the app, provide important information to others who will work with it, or note other things that are relevant.",
"administration.service_id": "Alternate id",
"administration.service_id_description": "This can be used if your app has an alternate ID in addition to the app name, for example: REF number",
"administration.service_name_administration_description": "This name will appear to the end user and should be descriptive of what the app is about. Make sure it is understandable and recognizable. If possible, use keywords that you can search for.",
"administration.service_name_empty_message": "The app name must be filled out. The name can be changed right up to publication.",
"administration.service_owner_is": "This app was created for:",
"administration.service_saved_name_administration_description": "Used (with owner) as an unique identifier for the app, both in URLs and APIs. Cannot be changed after the app is in production.",
"app_create_release.application_builds_based_on": "The application build is based on",
"app_create_release.build_version": "Build version",
"app_create_release.check_status": "Checking status of your application",
"app_create_release.last_commit_to_master": "last commit to master",
"app_create_release.local_changes_can_build": "All changes are not pushed to master. You have to push your local changes for it to be included in a new version of the application.",
"app_create_release.local_changes_cant_build": "All changes are not pushed to master. You have to push your local changes to build a new version of the application.",
"app_create_release.no_changes_on_current_release": "No changes on current release",
"app_create_release.release_creating": "Building a new version of the application, started by",
"app_create_release.release_description": "Describe the build",
"app_create_release.release_versionnumber": "Version number",
"app_create_release.release_versionnumber_validation": "Must be a unique combination of numbers, lowercased letters (a-z) and special characters \".\" and \"-\". Max 128 characters.",
"app_create_release.still_building_release": "Still building release: {{version}}",
"app_create_release_errors.altinn_servicedesk": "Altinn servicedesk",
"app_create_release_errors.build_cannot_be_saved": "Oh no! We're experiencing some technical issues which results into that the app will not be built. Try to reload the page(f5). If the issue persists, contact",
"app_create_release_errors.build_cannot_start": "Oh no! We're experiencing some technical issues that leads to builds not starting. Try to reload the page(f5). If the issue persists, contact",
"app_create_release_errors.check_status_on_build_error": "Oh no! We're experiencing some technical issues and cannot fetch the updated state on the build. Retrying...",
"app_create_release_errors.fetch_release_failed": "Oh no! We're experiencing some technical issues that makes it not possible for you to create releases or deploy. Try again later. If the issue persists, contant <0 href=\"mailto:[email protected]\">Altinn servicedesk</0>.",
"app_create_release_errors.technical_error_code": "Technical errorcode",
"app_data_modelling.landing_dialog_create": "Create a new data model",
"app_data_modelling.landing_dialog_header": "Upload or make a new data model",
"app_data_modelling.landing_dialog_paragraph": "You have now come to the data modelling tool. Here you can upload an existing data model or create a new one for your Altinn app.",
"app_data_modelling.landing_dialog_upload": "Upload data model",
"app_data_modelling.select_xsd": "Select XSD",
"app_data_modelling.upload_xsd": "Upload",
"app_data_modelling.uploading_xsd": "Uploading XSD...",
"app_deploy_messages.see_build_log": "For more information see <0 href=\"{{buildResultUrl}}\" >the build log</0>.",
"app_publish.deployment_in_progress": "Deployment in progress",
"app_publish.missing_rights": "You do not have permissions to deploy to the {{envName}} environment. Permissions can be granted by owners in {{orgName}}.",
"app_publish.no_env_1": "To create environments, so you can test and deploy to production, please contact <0>Altinn servicedesk</0>. Please specify organization name and which environments you want access to.",
"app_publish.no_env_2": "Until a test environment is ready, remember that you can test an application <0 href=\"https://docs.altinn.studio/app/testing/local/\">locally</0>.",
"app_publish.no_env_title": "Your organization has not ordered access to test- and production environments.",
"app_publish.no_team": "You do not belong to any team in your organisation.",
"app_publish.no_team_info": "In order to get access to deploy your application to an environment you need to be added to a team that has deploy access to that specific environment.",
"app_publish.no_versions": "You do not have any versions to deploy",
"app_release.earlier_releases": "Earlier builds of your application",
"app_release.release_build_log": "Buildlog",
"app_release.release_header": "Available versions of your application",
"app_release.release_see_commit": "Commit",
"app_release.release_tab_versions": "Versions",
"app_release.release_title": "The app is built on",
"app_release.release_title_link": "the last commit to master",
"app_release.release_version": "Version:",
"dashboard.all_apps": "All applications",
"dashboard.all_datamodels": "All data models",
"dashboard.app_already_exists": "An app with that name already exists.",
"dashboard.application": "Application",
"dashboard.apps": "Applications",
"dashboard.clear_search": "Clear searchfield",
"dashboard.copy_application": "Copy application",
"dashboard.copy_application_description": "Give a name to the copy. This name is used for the repository as well as all urls in the Altinn APIs and should therefore be short and concise, for instance \"sick-leave\" or \"tax-return-2019\".",
"dashboard.create_service_btn": "Create application",
"dashboard.created_by": "Created by",
"dashboard.created_time": "Created:",
"dashboard.creating_your_cop": "Creating your copy",
"dashboard.creating_your_service": "Your app is being created",
"dashboard.datamodelling_description_json": "Choose JSON Schema if you want to use JSON Schema as the primary format and the modelling tool in Altinn Studio.",
"dashboard.datamodelling_description_read_more": "Read more on Altinn Studio Docs",
"dashboard.datamodelling_description_xsd": "Choose XSD if you want XSD as the primary format and want to use other data modelling tools outside Altinn Studio, f.ex. SERES, XML Spy or others.",
"dashboard.datamodelling_format_json": "JSON Schema",
"dashboard.datamodelling_format_xsd": "XSD",
"dashboard.datamodels": "Data models",
"dashboard.description": "Description",
"dashboard.edit_app": "Edit app",
"dashboard.edit_datamodels": "Edit models",
"dashboard.edit_service": "Edit app",
"dashboard.error_when_creating_app": "Something went wrong when trying to create the app",
"dashboard.favourites": "Favourites",
"dashboard.field_cannot_be_empty": "Field cannot be empty",
"dashboard.last_modified": "Last modified",
"dashboard.logout": "Log out",
"dashboard.make_copy": "Make a copy",
"dashboard.my_apps": "My applications",
"dashboard.my_datamodels": "My data models",
"dashboard.name": "Name",
"dashboard.new_service": "Create new application",
"dashboard.new_service_copy": "Name of your copy",
"dashboard.new_service_header": "New app",
"dashboard.no_repos_result": "No applications found",
"dashboard.open_in_new": "Open in new tab",
"dashboard.open_repository": "Open repository",
"dashboard.org_apps": "{{orgName}} applications",
"dashboard.org_datamodels": "{{orgName}} datamodels",
"dashboard.repository": "Repository",
"dashboard.resource_design_description": "Get access to Figma to prototype and user test your application before starting development. The prototype kit includes everything you need.",
"dashboard.resource_design_label": "Design / usertest",
"dashboard.resource_docs_description": "Documentation for Altinn Studio. Here you will find resources on how to develop your application.",
"dashboard.resource_docs_label": "docs.altinn.studio",
"dashboard.resource_organisations_description": "Look at what other organisations are making. You can both look at and clone repositories.",
"dashboard.resource_organisations_label": "All organisations",
"dashboard.resource_roadmap_description": "Altinn is under continuous development. Find out whats being worked on and what we are planning for in the future.",
"dashboard.resource_roadmap_label": "Roadmap",
"dashboard.resource_slack_description": "In our Slack-chanel you can talk directly with the people working with Altinn Studio and other app developers.",
"dashboard.resource_slack_label": "Contact / Slack",
"dashboard.resource_status_description": "We keep you updated on new releases and service announcements that might be relevant for you when developing apps.",
"dashboard.resource_status_label": "Service announcements",
"dashboard.resources": "Resources",
"dashboard.rows_per_page": "Rows per page",
"dashboard.search": "Search for application",
"dashboard.search_result": "Search result",
"dashboard.select_datamodelling_format": "Select data modelling format",
"dashboard.service_name_has_illegal_characters": "App name is illegal. Can only contain lowercase alphanumeric and hyphen (-) characters, and must begin with a letter character and end with a number or letter.",
"dashboard.service_name_is_too_long": "App name must contain at most 30 characters",
"dashboard.service_saved_name_description": "Used (with owner) as an unique identifier for the app. Also used as name of repository, in all URLs and in the Altinn APIs. Should therefore be both short and descriptive, such as \"sick-leave\" or \"taxform-2019\".",
"dashboard.service_saved_name_description_cannot_be_changed": "This name cannot be changed.",
"dashboard.sorte_services": "Sort",
"dashboard.star": "Make favourite",
"dashboard.unknown_error_copy": "An unknown error caused the copying to stop. No copy was made. If the problem persists contact Altinn servicedesk.",
"dashboard.unstar": "Remove favourite",
"date_picker.aria_label_icon": "Open date picker",
"date_picker.aria_label_left_arrow": "Last month.",
"date_picker.aria_label_right_arrow": "Next month.",
"date_picker.cancel_label": "Cancel",
"date_picker.clear_label": "Clear",
"date_picker.invalid_date_message": "Invalid date format. Use the format {{0}}.",
"date_picker.max_date_exeeded": "Date should not be after maximal date",
"date_picker.min_date_exeeded": "Date should not be before minimal date",
"date_picker.today_label": "Today",
"deploy_to_test.altinn_test_env_url": "URL to Altinn test environment:",
"deploy_to_test.available_version": "Available version:",
"deploy_to_test.changes_made_by_others_in_your_organisation_is_not_visible_in_altinn_studio": "These are not visible to you in Altinn Studio but will appear in the test environment",
"deploy_to_test.changes_made_by_others_in_your_organisation_title": "Someone else has made changes to your app",
"deploy_to_test.check_csharp_compiles_false_body_part1": "You can edit the files on the",
"deploy_to_test.check_csharp_compiles_false_body_part2": "organisations repo",
"deploy_to_test.check_csharp_compiles_false_title": "Your app does not compile. These files contain errors:",
"deploy_to_test.check_csharp_compiles_true_title": "The C# files in the app compiles",
"deploy_to_test.current_version_title": "App in test environment",
"deploy_to_test.deploy_button_text_deploy_to_test_env": "Deploy the app in the test environment",
"deploy_to_test.deploy_helper_text_service_will_be_replaced": "The previous version will be replaced when you re-deploy the app",
"deploy_to_test.deploy_in_progress": "Deploying the app to the test environment, it will take approx. 1 minute.",
"deploy_to_test.error_a_problem_has_occured": "There has been a problem",
"deploy_to_test.error_service_was_not_deployed_check_title": "Something went wrong and the app was not deployed to the test environment. Try deploying it again.",
"deploy_to_test.error_service_was_not_deployed_title": "The app was not deployed to the test environment",
"deploy_to_test.error_there_is_something_wrong_with_your_environment_part1": "There is something wrong with your",
"deploy_to_test.error_there_is_something_wrong_with_your_environment_part2": "-environment. Please contact support.",
"deploy_to_test.general_click_to_see_error_log": "Click here to see error logs.",
"deploy_to_test.general_service_is_deployed_from_org": "The app that is deployed is retrieved from your organization",
"deploy_to_test.general_service_will_be_deployed_from_org": "The app that is deployed is retrieved from your organization",
"deploy_to_test.master_and_deploy_in_sync_title": "The latest version of the app is in the test environment",
"deploy_to_test.service_is_ready_for_test": "Your app is ready for testing",
"deploy_to_test.service_is_ready_for_test_open_service_in_new_window": "Open the app in a new window",
"deploy_to_test.service_is_ready_to_deploy_title_false": "The app is not ready to be deployed to a test environment",
"deploy_to_test.service_is_ready_to_deploy_title_true": "The app is ready to be deployed to a test environment",
"deploy_to_test.service_not_available_in_test_env": "The app is not available in the test environment",
"deploy_to_test.service_url": "URL to the app:",
"deploy_to_test.shared_with_org_false": "You have not shared your changes with your organization",
"deploy_to_test.shared_with_org_false_changes_will_not_be_visible_in_test_env": "Your changes will therefore not be visible in the test environment.",
"deploy_to_test.shared_with_org_true": "You have shared your changes with your organization",
"deploy_to_test.write_permission_checking": "Checking if you have access to deploy the app",
"deploy_to_test.write_permission_false": "You do not have access to deploy the app",
"form_filler.error_report_header": "There is a problem",
"form_filler.error_required": "Field is required",
"form_filler.file_upload_valid_file_format_all": "all",
"form_filler.file_uploader_add_attachment": "Add more attachments",
"form_filler.file_uploader_drag": "Drag and drop or",
"form_filler.file_uploader_find": "find a file",
"form_filler.file_uploader_list_delete": "Delete attachment",
"form_filler.file_uploader_list_header_delete_sr": "Delete",
"form_filler.file_uploader_list_header_file_size": "File size",
"form_filler.file_uploader_list_header_name": "Name",
"form_filler.file_uploader_list_header_status": "Status",
"form_filler.file_uploader_list_status_done": "Uploaded",
"form_filler.file_uploader_max_size": "Maximum file size",
"form_filler.file_uploader_mb": "MB",
"form_filler.file_uploader_number_of_files": "Number of files",
"form_filler.file_uploader_upload": "Upload file",
"form_filler.file_uploader_valid_file_format": "Valid file types are:",
"form_filler.file_uploader_validation_error_delete": "Something went wrong trying to delete the file, please try again.",
"form_filler.file_uploader_validation_error_exceeds_max_files_1": "You can not upload more than",
"form_filler.file_uploader_validation_error_exceeds_max_files_2": "files. No files was uploaded.",
"form_filler.file_uploader_validation_error_file_number_1": "You need to upload",
"form_filler.file_uploader_validation_error_file_number_2": "attachement(s) to continue",
"form_filler.file_uploader_validation_error_file_size": "exeeds the valid file size.",
"form_filler.file_uploader_validation_error_general_1": "There was a problem with the file",
"form_filler.file_uploader_validation_error_general_2": ". Make sure the file has correct file type and does not exeed the size limit.",
"form_filler.file_uploader_validation_error_upload": "Something went wrong trying to upload the file, please try again.",
"form_filler.placeholder_receipt_header": "The form has been submitted",
"form_filler.placeholder_user": "OLA PRIVATPERSON",
"general.action": "Action",
"general.add": "Add",
"general.add_connection": "Add connection",
"general.back": "Back",
"general.cancel": "Cancel",
"general.choose": "Choose",
"general.choose_label": "Choose label",
"general.choose_method": "Choose method",
"general.close": "Close",
"general.close_schema": "Close schema",
"general.contains": "Contains{{0}}",
"general.continue": "Continue",
"general.control_submit": "Control and submit",
"general.create": "Create",
"general.create_new": "Create new",
"general.customer_service_phone_number": "+47 75 00 60 00",
"general.dataModel": "data model",
"general.delete": "Delete",
"general.details": "details",
"general.disabled": "Disabled",
"general.edit": "Edit",
"general.enabled": "Enabled",
"general.error_message": "An error has occurred!",
"general.error_message_with_colon": "Error message:",
"general.fetch_error_message": "Failed to load required data for this page. Please reload the page to try again",
"general.fetch_error_title": "An error occurred while loading",
"general.for": "for",
"general.label": "Label",
"general.language": "language",
"general.layout": "layout",
"general.loading": "Loading...",
"general.no_options": "No options available",
"general.optional": "Optional",
"general.options": "Options",
"general.page": "Page",
"general.preview": "Preview",
"general.profile_icon": "Profile icon",
"general.required": "Required",
"general.save": "Save",
"general.saved": "Saved!",
"general.saving": "Saving",
"general.search": "Search",
"general.select_component": "Select component",
"general.select_field": "Select field",
"general.service_description_header": "Description",
"general.service_name": "Name",
"general.service_owner": "Owner",
"general.service_saved_name": "Repository name",
"general.sign_out": "Sign out",
"general.submit": "Submit",
"general.text": "Text",
"general.try_again": "Try again",
"general.unknown_error": "Unknown error ocurred while loading data.",
"general.validate_changes": "Validate changes",
"general.value": "Value",
"general.version": "Version",
"general.widget": "widget",
"general.yes": "Yes",
"handle_merge_conflict.abort_merge_button": "Abort merge without solving conflict",
"handle_merge_conflict.abort_merge_button_cancel": "Cancel",
"handle_merge_conflict.abort_merge_button_confirm": "Abort merge without solving conflict",
"handle_merge_conflict.abort_merge_message": "If you choose to abort, you will return to your previous local version of the app. Remember, the merge conflict can happen again the next time you pull or share changes.",
"handle_merge_conflict.container_message_has_conflict": "Changes have been made to the same file you have worked on and you have to choose which changes you want to keep. Here you see all files with merge conflicts, open them and remove the code you do not want. The conflict is resolved when all the files are stored and all crocodile characters (>, <) and equals (=) are removed.",
"handle_merge_conflict.container_message_no_conflict": "You have solved the merge conflict and you can choose to share the changes with your organization or continue working on the app.",
"handle_merge_conflict.container_message_no_files": "You have no files with merge conflict",
"handle_merge_conflict.container_title": "Files with merge conflict",
"handle_merge_conflict.discard_changes_button": "Discard all changes",
"handle_merge_conflict.discard_changes_button_cancel": "Cancel",
"handle_merge_conflict.discard_changes_button_confirm": "Discard all changes",
"handle_merge_conflict.discard_changes_message": "Are you sure you want to discard all changes? All of your changes since last sharing will be deleted permanently.",
"language.aa": "Afar",
"language.ab": "Abkhazian",
"language.ae": "Avestan",
"language.af": "Afrikaans",
"language.ak": "Akan",
"language.am": "Amharic",
"language.an": "Aragonese",
"language.ar": "Arabic",
"language.as": "Assamese",
"language.av": "Avaric",
"language.ay": "Aymara",
"language.az": "Azerbaijani",
"language.ba": "Bashkir",
"language.be": "Belarusian",
"language.bg": "Bulgarian",
"language.bh": "Bihari",
"language.bi": "Bislama",
"language.bm": "Bambara",
"language.bn": "Bengali",
"language.bo": "Tibetan",
"language.br": "Breton",
"language.bs": "Bosnian",
"language.ca": "Catalan",
"language.ce": "Chechen",
"language.ch": "Chamorro",
"language.co": "Corsican",
"language.cr": "Cree",
"language.cs": "Czech",
"language.cu": "Church Slavic",
"language.cv": "Chuvash",
"language.cy": "Welsh",
"language.da": "Danish",
"language.de": "German",
"language.dv": "Divehi",
"language.dz": "Dzongkha",
"language.ee": "Ewe",
"language.el": "Greek",
"language.en": "English",
"language.eo": "Esperanto",
"language.es": "Spanish",
"language.et": "Estonian",
"language.eu": "Basque",
"language.fa": "Persian",
"language.ff": "Fulah",
"language.fi": "Finnish",
"language.fj": "Fijian",
"language.fo": "Faroese",
"language.fr": "French",
"language.fy": "Western Frisian",
"language.ga": "Irish",
"language.gd": "Gaelic",
"language.gl": "Galician",
"language.gn": "Guarani",
"language.gu": "Gujarati",
"language.gv": "Manx",
"language.ha": "Hausa",
"language.he": "Hebrew",
"language.hi": "Hindi",
"language.ho": "Hiri Motu",
"language.hr": "Croatian",
"language.ht": "Haitian",
"language.hu": "Hungarian",
"language.hy": "Armenian",
"language.hz": "Herero",
"language.ia": "Interlingua",
"language.id": "Indonesian",
"language.ie": "Interlingue",
"language.ig": "Igbo",
"language.ii": "Sichuan Yi",
"language.ik": "Inupiaq",
"language.io": "Ido",
"language.is": "Icelandic",
"language.it": "Italian",
"language.iu": "Inuktitut",
"language.ja": "Japanese",
"language.jv": "Javanese",
"language.ka": "Georgian",
"language.kg": "Kongo",
"language.ki": "Kikuyu",
"language.kj": "Kuanyama",
"language.kk": "Kazakh",
"language.kl": "Kalaallisut",
"language.km": "Central Khmer",
"language.kn": "Kannada",
"language.ko": "Korean",
"language.kr": "Kanuri",
"language.ks": "Kashmiri",
"language.ku": "Kurdish",
"language.kv": "Komi",
"language.kw": "Cornish",
"language.ky": "Kirghiz",
"language.la": "Latin",
"language.lb": "Luxembourgish",
"language.lg": "Ganda",
"language.li": "Limburgan",
"language.ln": "Lingala",
"language.lo": "Lao",
"language.lt": "Lithuanian",
"language.lu": "Luba-Katanga",
"language.lv": "Latvian",
"language.mg": "Malagasy",
"language.mh": "Marshallese",
"language.mi": "Maori",
"language.mk": "Macedonian",
"language.ml": "Malayalam",
"language.mn": "Mongolian",
"language.mr": "Marathi",
"language.ms": "Malay",
"language.mt": "Maltese",
"language.my": "Burmese",
"language.na": "Nauru",
"language.nb": "Bokmål",
"language.nd": "North Ndebele",
"language.ne": "Nepali",
"language.ng": "Ndonga",
"language.nl": "Dutch",
"language.nn": "Nynorsk",
"language.no": "Norwegian",
"language.nr": "South Ndebele",
"language.nv": "Navajo",
"language.ny": "Chichewa",
"language.oc": "Occitan",
"language.oj": "Ojibwa",
"language.om": "Oromo",
"language.or": "Oriya",
"language.os": "Ossetian",
"language.pa": "Panjabi",
"language.pi": "Pali",
"language.pl": "Polish",
"language.ps": "Pushto",
"language.pt": "Portuguese",
"language.qu": "Quechua",
"language.rm": "Romansh",
"language.rn": "Rundi",
"language.ro": "Romanian",
"language.ru": "Russian",
"language.rw": "Kinyarwanda",
"language.sa": "Sanskrit",
"language.sc": "Sardinian",
"language.sd": "Sindhi",
"language.se": "Northern Sami",
"language.sg": "Sango",
"language.si": "Sinhala",
"language.sk": "Slovak",
"language.sl": "Slovenian",
"language.sm": "Samoan",
"language.sn": "Shona",
"language.so": "Somali",
"language.sq": "Albanian",
"language.sr": "Serbian",
"language.ss": "Swati",
"language.st": "Southern Sotho",
"language.su": "Sundanese",
"language.sv": "Swedish",
"language.sw": "Swahili",
"language.ta": "Tamil",
"language.te": "Telugu",
"language.tg": "Tajik",
"language.th": "Thai",
"language.ti": "Tigrinya",
"language.tk": "Turkmen",
"language.tl": "Tagalog",
"language.tn": "Tswana",
"language.to": "Tonga (Tonga Islands)",
"language.tr": "Turkish",
"language.ts": "Tsonga",
"language.tt": "Tatar",
"language.tw": "Twi",
"language.ty": "Tahitian",
"language.ug": "Uighur",
"language.uk": "Ukrainian",
"language.ur": "Urdu",
"language.uz": "Uzbek",
"language.ve": "Venda",
"language.vi": "Vietnamese",
"language.vo": "Volapük",
"language.wa": "Walloon",
"language.wo": "Wolof",
"language.xh": "Xhosa",
"language.yi": "Yiddish",
"language.yo": "Yoruba",
"language.za": "Zhuang",
"language.zh": "Chinese",
"language.zu": "Zulu",
"left_menu.components": "Components",
"left_menu.configure_layout_sets": "Convert form to handle multiple groups of pages",
"left_menu.configure_layout_sets_info": "NB, this action will change the folder structure of your application. Read more at <0 href=\"{{layoutSetsDocs}}\" >Altinn Docs</0> for details of what this involves.",
"left_menu.configure_layout_sets_name": "Name of first group:",
"left_menu.layout_sets": "Groups of pages",
"left_menu.layout_sets_add": "Add new group",
"left_menu.page": "Page",
"left_menu.page_delete_confirm": "Yes, delete page",
"left_menu.page_delete_text": "Are you sure you want to delete this page?",
"left_menu.page_delete_information": "All content on the page will be deleted.",
"left_menu.page_menu_delete": "Delete",
"left_menu.page_menu_down": "Move down",
"left_menu.page_menu_edit": "Edit name",
"left_menu.page_menu_up": "Move up",
"left_menu.pages": "Pages",
"left_menu.pages.invalid_page_data": "The page contains invalid data and cannot be shown. Please check all component IDs and references to components from groups.",
"left_menu.pages_add": "Add new page",
"left_menu.pages_error_empty": "Can not be empty",
"left_menu.pages_error_format": "Must consist of letters (a-z), numbers, or \"-\", \"_\" and \".\"",
"left_menu.pages_error_length": "Can not be more than 30 characters",
"left_menu.pages_error_unique": "Must be unique",
"merge_conflict.body1": "There are breaking changes in the application that blocks further work.",
"merge_conflict.body2": "You can fix these by either download the application as a zip-file and delete the changes, or just blast the application directly.",
"merge_conflict.download_zip_file": "Download as zip-file",
"merge_conflict.download_edited_files": "Download changed file(s)",
"merge_conflict.download_entire_repo": "Download entire repo",
"merge_conflict.download": "Download",
"merge_conflict.headline": "It's a merge conflict in the application",
"merge_conflict.remove_my_changes": "Remove my changes",
"party_selection.binding_word": "or",
"party_selection.caption_prefix": "Feil",
"party_selection.change_party": "change party here",
"party_selection.header": "Who do you want to represent?",
"party_selection.invalid_selection_first_part": "You started this app as",
"party_selection.invalid_selection_second_part": "This app is available for",
"party_selection.invalid_selection_third_part": "Choose another party below.",
"party_selection.load_more": "Load more",
"party_selection.no_valid_selection_binding_word": "and",
"party_selection.no_valid_selection_first_part": "This is a app for {{0}}",
"party_selection.no_valid_selection_second_part": "It looks like you do not have access to a party who is allowed to start {{0}}.",
"party_selection.no_valid_selection_third_part": "To start this app, you must have accesses associated with {{0}}.",
"party_selection.read_more_roles_link": "You can read more about roles and rights here.",
"party_selection.search_placeholder": "Search for a party",
"party_selection.show_deleted": "Show deleted",
"party_selection.show_sub_unit": "Show sub units",
"party_selection.subheader": "Parties you can represent:",
"party_selection.unit_deleted": "deleted",
"party_selection.unit_org_number": "org. number",
"party_selection.unit_personal_number": "pers. number",
"party_selection.unit_type_bankruptcy_state": "bankruptcy state",
"party_selection.unit_type_company": "company",
"party_selection.unit_type_private_person": "private person",
"party_selection.unit_type_subunit": "subunit",
"party_selection.unit_type_subunit_plural": "subunits",
"popover.popover_button_helptext": "Click here for help text popover",
"popover.popover_open": "Popover open",
"preview.iframe_title": "Preview",
"receipt.attachments": "Attachments",
"receipt.body": "A mechanical check has been completed while filling in, but we reserve the right to detect errors during the processing of the case and that other documentation may be necessary. Please provide the reference number in case of any inquiries to the agency.",
"receipt.create": "Create receipt page",
"receipt.date_sent": "Date sent",
"receipt.receipt": "Receipt",
"receipt.receiver": "Receiver",
"receipt.ref_num": "Reference number",
"receipt.sender": "Sender",
"receipt.subtitle": "A copy of your receipt has been sent to your archive",
"receipt.title_part_is_submitted": "is submitted",
"receipt.title_submitted": "The following is submitted:",
"receipt_platform.attachments": "Attachments",
"receipt_platform.date_sent": "Date sent",
"receipt_platform.helper_text": "A mechanical check has been completed while filling in, but we reserve the right to detect errors during the processing of the case and that other documentation may be necessary. Please provide the reference number in case of any inquiries to the agency.",
"receipt_platform.is_sendt": "is submitted",
"receipt_platform.log_out": "Log out",
"receipt_platform.profile_icon_aria_label": "Profile icon button",
"receipt_platform.receipt": "Receipt",
"receipt_platform.receiver": "Receiver",
"receipt_platform.reference_number": "Reference number:",
"receipt_platform.sender": "Sender",
"receipt_platform.sent_content": "The following is submitted:",
"process_editor.fetch_bpmn_error_title": "An error occurred while loading BPMN",
"process_editor.fetch_bpmn_error_message": "The BPMN file you're looking for could not be found. You might want to consider refreshing the page to attempting to refetch the BPMN file.",
"process_editor.loading": "Retrieving your BPMN file",
"process_editor-view_mode": "View mode",
"process_editor.edit_mode": "Edit mode",
"process_editor.save": "Save",
"process_editor.unsaved_changes": "You have {{count}} unsaved changes",
"right_menu.calculations": "Calculations",
"right_menu.content": "Content",
"right_menu.content_empty": "No component selected...",
"right_menu.dynamics": "Dynamics",
"right_menu.dynamics_complex_dynamic_message": "This expression is too complex to be edited in Studio, but manual editing is possible.",
"right_menu.dynamics_description": "Edit dynamics that can be used in the rules for calculations and show/hide fields.",
"right_menu.dynamics_edit": "Edit dynamics",
"right_menu.dynamics_edit_comment": "This link opens in Gitea",
"right_menu.dynamics_link": "More information",
"right_menu.rules_calculations": "Rule for calculations",
"right_menu.rules_calculations_add_alt": "Add rule for calculations",
"right_menu.rules_conditional_rendering": "Rule for showing/hiding fields",
"right_menu.rules_conditional_rendering_add_alt": "Add rule for showing/hiding fields",
"right_menu.rules_empty": "No rules have been added...",
"schema_editor.add": "Add",
"schema_editor.add_combination": "Add oneOf/allOf/anyOf",
"schema_editor.add_element": "Add element",
"schema_editor.add_enum": "Add valid value",
"schema_editor.add_field": "Add field",
"schema_editor.add_property": "Add field",
"schema_editor.add_reference": "Add reference",
"schema_editor.add_restriction": "Add restriction",
"schema_editor.add_root_item": "Add root item",
"schema_editor.all_of": "All of",
"schema_editor.any_of": "Any of",
"schema_editor.array": "List",
"schema_editor.boolean": "Yes/no",
"schema_editor.choose_type": "Choose type",
"schema_editor.close_type": "Close type",
"schema_editor.combination": "Combination",
"schema_editor.combination_inline_object_disclaimer": "Currently we only support references as sub schemas when combining schemas (allOf, anyOf and oneOf). Sub schemas that are not references will be displayed in the gray area above, but it will be possible to edit these in the editor yet.",
"schema_editor.confirm_deletion": "Yes, delete data model",
"schema_editor.convert_to_field": "Convert to field",
"schema_editor.create_model_button": "Create new",
"schema_editor.create_model_confirm_button": "Create model",
"schema_editor.create_model_description": "Enter the name of the data model",
"schema_editor.create_model_title": "Create new model",
"schema_editor.custom_props": "Externally defined properties",
"schema_editor.custom_props_help": "These are properties that are not supported by Altinn Studio, but set on the datamodel with other tools. Here it is possible to delete the properties or change their values, but it is not possible to add new ones. Be aware that properties that are deleted from this list cannot be added again with Altinn Studio.",
"schema_editor.custom_props_unknown_format": "Unknown format",
"schema_editor.custom_props_unknown_format_help": "This property has a format that cannot be previewed or edited in Altinn Studio.",
"schema_editor.datamodel_field_deletion_text": "Are you sure you want to delete this field?",
"schema_editor.datamodel_field_deletion_info": "Please ensure that the field is not linked to any layouts or rules before deleting it.",
"schema_editor.datamodel_field_deletion_confirm": "Yes, delete field",
"schema_editor.definitions": "Definitions",
"schema_editor.delete": "Delete",
"schema_editor.delete_data_model": "Delete data model",
"schema_editor.delete_field": "Delete field",
"schema_editor.delete_model_confirm": "Are you sure you want to delete {{schemaName}}?",
"schema_editor.delete_text_id_error": "An error occurred while deleting the text.",
"schema_editor.depth_error": "It is not possible to put the group here because it will make the form exceed the maximum allowed depth.",
"schema_editor.description": "Description",
"schema_editor.descriptive_fields": "Descriptive fields",
"schema_editor.enum": "Valid values",
"schema_editor.enum_empty": "The list is empty—all values will be approved.",
"schema_editor.enum_error_duplicate": "The values must be unique.",
"schema_editor.enum_legend": "List of valid values",
"schema_editor.error_model_name_exists": "A model with the name {{newModelName}} already exists.",
"schema_editor.field": "Field",
"schema_editor.field_name": "Field name",
"schema_editor.fields": "Fields",
"schema_editor.format": "Format",
"schema_editor.format_date": "Date",
"schema_editor.format_date-time": "Date and time",
"schema_editor.format_date_after_excl": "Later than",
"schema_editor.format_date_after_incl": "Earliest",
"schema_editor.format_date_before_excl": "Earlier than",
"schema_editor.format_date_before_incl": "Latest",
"schema_editor.format_date_inclusive": "Inclusive",
"schema_editor.format_duration": "Duration",
"schema_editor.format_email": "E-mail address",
"schema_editor.format_hostname": "Internet hostname",
"schema_editor.format_idn-email": "E-mail address with international charset",
"schema_editor.format_idn-hostname": "Internet hostname with international charset",
"schema_editor.format_ipv4": "IP address version 4",
"schema_editor.format_ipv6": "IP address version 6",
"schema_editor.format_iri": "URI with international charset",
"schema_editor.format_iri-reference": "URI or relative reference with international charset",
"schema_editor.format_json-pointer": "JSON pointer",
"schema_editor.format_none": "None",
"schema_editor.format_regex": "Regex",
"schema_editor.format_relative-json-pointer": "Relative JSON pointer",
"schema_editor.format_time": "Time",
"schema_editor.format_uri": "URI",
"schema_editor.format_uri-reference": "URI or relative reference",
"schema_editor.format_uri-template": "URI template",
"schema_editor.format_uuid": "UUID",
"schema_editor.generate_model_files": "Generate models",
"schema_editor.go_to_type": "Go to type",
"schema_editor.import": "Import",
"schema_editor.in_use_error": "Cannot be deleted, is in use",
"schema_editor.integer": "Integer",
"schema_editor.keyword": "Keyword",
"schema_editor.language_add_language": "Add language:",
"schema_editor.language_confirm_deletion": "Yes, delete language",
"schema_editor.language_delete_button": "Delete",
"schema_editor.language_display_confirm_delete": "Are you sure you want to delete this language?",
"schema_editor.language_info_message": "We recommend adding translations for Bokmål, Nynorsk and English. If necessary, you can also add other languages.",
"schema_editor.loading": "Loading",
"schema_editor.maxItems": "Maximum items",
"schema_editor.maxLength": "Maximum length",
"schema_editor.maxProperties": "Maximum properties",
"schema_editor.maximum": "Less than or equal",
"schema_editor.minItems": "Minimum items",
"schema_editor.minLength": "Minimum length",
"schema_editor.minProperties": "Minimum properties",
"schema_editor.minimum": "Larger than or equal",
"schema_editor.model": "Model",
"schema_editor.multipleOf": "Multiple of",
"schema_editor.multiple_answers": "Multiple answers",
"schema_editor.name": "Name",
"schema_editor.nameError_alreadyInUse": "Field name is already in use",
"schema_editor.nameError_invalidCharacter": "Field name must start with a letter, and cannot contain special characters or spaces",
"schema_editor.no_item_selected": "No item selected",
"schema_editor.nullable": "Can be unanswered",
"schema_editor.number": "Decimal number",
"schema_editor.object": "Object",
"schema_editor.object_kind_label": "What kind of property is this",
"schema_editor.one_of": "One of",
"schema_editor.pattern": "Regex pattern",
"schema_editor.pattern_does_not_match": "Does not match",
"schema_editor.pattern_matches": "Matches",
"schema_editor.pattern_test_field": "Test field for regex",
"schema_editor.promote": "Promote",
"schema_editor.properties": "Properties",
"schema_editor.reference": "Reference",
"schema_editor.reference_to": "Reference to",
"schema_editor.regex": "Regex",
"schema_editor.required": "Required",
"schema_editor.restrictions": "Restrictions",
"schema_editor.save_data_model": "Save",
"schema_editor.string": "Text",
"schema_editor.title": "Title",
"schema_editor.type": "Type",
"schema_editor.types": "Types",
"schema_editor.types_editing": "You are now editing {{type}}",
"schema_editor.uniqueItems": "Unique elements only",
"schema_editor.value": "Value",
"schema_editor.textRow-deletion-confirm": "Yes, delete row",
"schema_editor.textRow-deletion-text": "Are you sure you want to delete this row?",
"session.expires": "You will soon be signed out",
"session.inactive": "You have been inactive for too long and will soon be signed out. Press \"continue\" if you wish to stay signed in.",
"shared.header_all": "All",
"shared.header_button_alt": "Altinn profile menu",
"shared.header_for": "for",
"shared.header_go_to_gitea": "Go to Gitea",
"shared.header_logout": "Log out",
"shared.header_user_for_org": "{{user}} for {{org}}",
"shared.submit_upload": "Upload",
"shared.wip_link_github_url": "https://github.com/Altinn/altinn-studio",
"shared.wip_link_text": "Go to Altinn Studio github",
"shared.wip_subtext_1": "Some parts of Altinn Studio are still under construction and will be available soon.",
"shared.wip_subtext_2": "If you would like to know what we are working on, you can follow us on github to get an overview of what is coming up next in the solution.",
"shared.wip_title": "Under construction...",
"sync_header.changes_made_samme_place_as_user": "It looks like someone else has made changes to the app in the same places as you",
"sync_header.changes_made_samme_place_submessage": "You have do describe your changes before fetching the latest version of your app.",
"sync_header.changes_made_samme_place_subsubmessage": "Good descriptions about what has been changed might make it easier to find previous versions of your app.",
"sync_header.changes_to_share": "Share changes",
"sync_header.clone": "Clone",
"sync_header.clone_https": "Clone using HTTPS",
"sync_header.clone_https_button": "Copy link",
"sync_header.controlling_service_status": "Fetching the status of your app",
"sync_header.data_model_missing": "Datamodel missing",
"sync_header.data_model_missing_helper": "It is recommended to upload a datamodel before cloning the app repo.",
"sync_header.data_model_missing_link": "Go to the datamodel page",
"sync_header.describe_and_validate": "Describe and validate the changes you have done",
"sync_header.describe_and_validate_btnText": "Validate changes",
"sync_header.describe_and_validate_submessage": "Good descriptions about what has been changed might make it easier to find previous versions of your app.",
"sync_header.describe_and_validate_subsubmessage": "Before the changes can be shared you must validate so that no one else has made updates in the same place.",
"sync_header.favourite_tool": "Work using your favourite development tool.",
"sync_header.favourite_tool_link": "Read more at Altinn Studio docs",
"sync_header.fetch_changes": "Fetch",
"sync_header.fetch_changes_btn": "Fetch",
"sync_header.fetching_latest_version": "Fetching latest version of your app",
"sync_header.merge_conflict": "Mergeconflict",
"sync_header.merge_conflict_btn": "Solve conflict",
"sync_header.merge_conflict_occured": "Someone else has made changes in the same place as you in the app.",
"sync_header.merge_conflict_occured_submessage": "These are in conflict with your changes. Click the button to resolve the conflict.",
"sync_header.no_changes_to_share": "Push",
"sync_header.nothing_to_push": "You have pushed your latest changes",
"sync_header.repo_is_offline": "Repo is offline",
"sync_header.service_updated_to_latest": "Your app is updated to the latest version",
"sync_header.service_updated_to_latest_submessage": "It is important to fetch changes often if there are multiple people working on the same app. This reduces the chances of merge conflicts.",
"sync_header.share_changes": "Push",
"sync_header.sharing_changes": "Sharing changes",
"sync_header.sharing_changes_completed": "You have shared your changes and your app is updated to the latest version",
"sync_header.sharing_changes_completed_submessage": "You have shared your changes and everyone working on this app can now see them. You are working on the latest version of the app.",
"sync_header.sharing_changes_no_access": "You do not have the neccessary rights for sharing your changes for this app",
"sync_header.sharing_changes_no_access_submessage": "You may still work on the app and save changes locally, however you will not be able to share you changes with your organization",
"sync_header.validating_changes": "Validating changes",
"sync_header.validation_completed": "The changes are now validated and can be shared with other",
"testing.testing_in_testenv_body": "Here you can test your app from A to Z in a production-like test environment.",
"testing.testing_in_testenv_title": "Testing in test environment",
"top_menu.about": "About",
"top_menu.create": "Create",
"top_menu.datamodel": "Data model",
"top_menu.deploy": "Deploy",
"top_menu.preview": "Preview",
"top_menu.preview_back_to_editing": "Back to editing",
"top_menu.preview_is_beta_message": "This functionality is in beta. We are working to improve it.",
"top_menu.texts": "Texts",
"top_menu.texts_old": "Texts *",
"top_menu.process-editor": "Process",
"top_menu.policy-editor": "Policy",
"ux_editor.add_map_layer": "Add map layer",
"ux_editor.add_option": "Add option",
"ux_editor.add_option_description_add": "Add description",
"ux_editor.add_option_description_placeholder": "Description is missing",
"ux_editor.add_option_label": "Text",
"ux_editor.add_option_label_add": "Add text",
"ux_editor.add_option_label_placeholder": "Text is missing",
"ux_editor.add_option_value": "Value",
"ux_editor.add_option_value_error_duplicate": "The value must be unique.",
"ux_editor.add_option_value_error_empty": "The value cannot be empty.",
"ux_editor.add_subdomain": "Add subdomain",
"ux_editor.adjust_zoom": "Default zoom",
"ux_editor.api_connection_header": "API connections",
"ux_editor.attribution_label": "Attribution",
"ux_editor.center_location": "Center location",
"ux_editor.checkboxes_description_add": "Add descrption",
"ux_editor.checkboxes_description_placeholder": "No description",
"ux_editor.checkboxes_error_DuplicateValues": "All values must be unique.",
"ux_editor.checkboxes_error_NoOptions": "There must be at least one checkbox.",
"ux_editor.checkboxes_legend_add": "Add title",
"ux_editor.checkboxes_legend_placeholder": "Title is missing",
"ux_editor.checkboxes_option_description_add": "Add description",
"ux_editor.checkboxes_option_description_placeholder": "Description is missing",
"ux_editor.checkboxes_option_label": "Text",
"ux_editor.checkboxes_option_label_add": "Add text",
"ux_editor.checkboxes_option_label_placeholder": "Text is missing",
"ux_editor.checkboxes_option_value": "Value",
"ux_editor.checkboxes_option_value_error_duplicate": "There is already another checkbox with this value.",
"ux_editor.checkboxes_option_value_error_empty": "The value cannot be empty.",
"ux_editor.choose_variant": "Choose message variant",
"ux_editor.collapsable_schema_components": "Form",
"ux_editor.collapsable_text_advanced_components": "Advanced",
"ux_editor.collapsable_text_components": "Text",
"ux_editor.collapsable_text_thirdparty_components": "Custom components",
"ux_editor.collapsable_text_widgets": "Widgets",
"ux_editor.component_advanced_address": "Address",
"ux_editor.component_attachment_list": "Attachment list",
"ux_editor.component_button": "Button",
"ux_editor.component_checkbox": "Checkbox",
"ux_editor.component_container": "Container",
"ux_editor.component_datepicker": "Datepicker",
"ux_editor.component_dropdown": "Drop-down-list",
"ux_editor.component_dropdown_set_preselected": "Set pre-selected value in dropdown list",
"ux_editor.component_file_upload": "Attachment",
"ux_editor.component_group": "Group",
"ux_editor.component_group_header": "Group - {{id}}",
"ux_editor.component_header": "Title",
"ux_editor.component_image": "Image",
"ux_editor.component_information_panel": "Informative message",
"ux_editor.component_input": "Short answer",
"ux_editor.component_map": "Location marker in map",
"ux_editor.component_navigation_bar": "Navigation bar",
"ux_editor.component_navigation_buttons": "Navigation buttons",
"ux_editor.component_paragraph": "Paragraph",
"ux_editor.component_radio_button": "Radio Button",
"ux_editor.component_text_area": "Long answer",
"ux_editor.component_unknown": "Unknown component",
"ux_editor.component_deletion_confirm": "Yes, delete the component",
"ux_editor.component_deletion_text": "Are you sure you want to delete this component?",
"ux_editor.conditional_rendering_connection_header": "Conditional Rendering Connections",
"ux_editor.container_empty": "Empty, drag something in here...",
"ux_editor.edit_text_resource": "Edit text",
"ux_editor.field_id": "Text ID: {{id}}",
"ux_editor.form_designer": "Form designer",
"ux_editor.helper_text_default": "More information about this component will be available at a later date.",
"ux_editor.helper_text_for_attachment_list": "Shows a list of the uploaded attachments for the process task the end user is currently in.",
"ux_editor.helper_text_for_check_box": "More information about this component will be available at a later date.",
"ux_editor.helper_text_for_header": "More information about this component will be available at a later date.",
"ux_editor.helper_text_for_image": "The image component is a component that presents images in your application. The source for the image can either be an absolute URL, or a relative URL if your app is set up to host static files. Read more about how to set up static hosting in the documentation. If you want to change the image size, you can use other valid CSS units, not just «%». Example: 150px.",
"ux_editor.helper_text_for_input": "More information about this component will be available at a later date.",
"ux_editor.helper_text_for_nav_bar": "The Navigation Bar gives easy access to all pages in an application. All pages in the application are listed, so this component is not suited for use with the tracks feature.",
"ux_editor.helper_text_for_radio_button": "More information about this component will be available at a later date.",
"ux_editor.helper_text_for_select": "More information about this component will be available at a later date.",
"ux_editor.info": "Information",
"ux_editor.information_altinn_library": "This component is part of the Altinn component library",
"ux_editor.information_more_info_link": "Read more about experiences and where this component is used",
"ux_editor.information_third_party_library": "This component is developed by a third party, and is not part of the Altinn component library.",
"ux_editor.latitude_label": "Latitude",
"ux_editor.list_all": "ALL",
"ux_editor.list_favourites": "FAVOURITES",
"ux_editor.longitude_label": "Longitude",
"ux_editor.map_layer": "Map layer",
"ux_editor.modal_check_box_add_label": "Add text",
"ux_editor.modal_check_box_increment": "Check box",
"ux_editor.modal_check_box_set_preselected": "Set pre-selected check box",
"ux_editor.modal_configure_address_component_address": "Street Address",
"ux_editor.modal_configure_address_component_care_of": "C/O or other additional address",
"ux_editor.modal_configure_address_component_house_number": "House Number",
"ux_editor.modal_configure_address_component_house_number_helper": "If several residents share the same address you must provide house number. It consists of one letter and four numbers and should be listed at your front door.",
"ux_editor.modal_configure_address_component_post_place": "Post Place",
"ux_editor.modal_configure_address_component_simplified": "Simplified",
"ux_editor.modal_configure_address_component_title_text_binding": "Search for title for address component",
"ux_editor.modal_configure_address_component_zip_code": "Zip Code",
"ux_editor.modal_configure_api_code_list": "Code list",
"ux_editor.modal_configure_api_extermnal_api": "External API",
"ux_editor.modal_configure_api_header": "Configure API connection",
"ux_editor.modal_configure_conditional_rendering_configure_add_new_field_mapping": "Add new component mapping",
"ux_editor.modal_configure_conditional_rendering_configure_input_data_model_helper": "Choose field from the data model",
"ux_editor.modal_configure_conditional_rendering_configure_input_header": "Configure input parameters",
"ux_editor.modal_configure_conditional_rendering_configure_input_param_helper": "Input param name",
"ux_editor.modal_configure_conditional_rendering_configure_output_action_helper": "Select action",
"ux_editor.modal_configure_conditional_rendering_configure_output_field_helper": "that should be performed on the following components if method returns true",
"ux_editor.modal_configure_conditional_rendering_configure_output_header": "Configure output and action",
"ux_editor.modal_configure_conditional_rendering_header": "Configure conditional rendering rule",
"ux_editor.modal_configure_conditional_rendering_helper": "Conditional rendering rule",
"ux_editor.modal_configure_rules_configure_input_data_model_helper": "Choose field from the data model",
"ux_editor.modal_configure_rules_configure_input_header": "Configure input parameters",
"ux_editor.modal_configure_rules_configure_input_param_helper": "Input param name",
"ux_editor.modal_configure_rules_configure_output_header": "Configure output parameters",
"ux_editor.modal_configure_rules_configure_output_param_helper": "Out param name",
"ux_editor.modal_configure_rules_header": "Configure rules",
"ux_editor.modal_configure_rules_helper": "Rule",
"ux_editor.modal_data_model_helper": "Select field in data model",
"ux_editor.modal_data_model_input": "Select field",
"ux_editor.modal_header_type_h2": "Section Title (H2)",
"ux_editor.modal_header_type_h3": "Subtitle (H3)",
"ux_editor.modal_header_type_h4": "Subtitle (H4)",
"ux_editor.modal_header_type_helper": "Choose header type",
"ux_editor.modal_new_option": "Add new option",
"ux_editor.modal_options": "Options",
"ux_editor.modal_properties_add_check_box_options": "How would you like to add check boxes?",
"ux_editor.modal_properties_add_radio_button_options": "How would you like to add radio buttons?",
"ux_editor.modal_properties_button_helper": "Search for text for button",
"ux_editor.modal_properties_button_type_back": "Back",
"ux_editor.modal_properties_button_type_helper": "Button type",
"ux_editor.modal_properties_button_type_navigation": "Navigation",
"ux_editor.modal_properties_button_type_next": "Next",
"ux_editor.modal_properties_button_type_submit": "Submit",
"ux_editor.modal_properties_code_list_helper": "Select code list",
"ux_editor.modal_properties_code_list_id": "Code list ID",
"ux_editor.modal_properties_code_list_read_more": "\"<0 href=\\\"{{optionsDocs}}\\\" >Read more about code lists</0>\",",
"ux_editor.modal_properties_component_change_id": "Component ID",
"ux_editor.modal_properties_component_id_not_unique_error": "The component ID must be unique",
"ux_editor.modal_properties_component_id_not_valid": "The component ID can only contain letters, digits and the '-' character.",
"ux_editor.modal_properties_custom_code_list_id": "Custom code list ID",
"ux_editor.modal_properties_data_model_helper": "Link to data model",
"ux_editor.modal_properties_description": "Description:",
"ux_editor.modal_properties_description_add": "Add description",
"ux_editor.modal_properties_description_helper": "Write or search for description",
"ux_editor.modal_properties_error_message": "An error occured while loading the component",
"ux_editor.modal_properties_file_upload_list": "List (Expects several attachments)",
"ux_editor.modal_properties_file_upload_simple": "Simple (Expects one attachment)",
"ux_editor.modal_properties_group_add_button": "Text for “add new” button (Optional)",
"ux_editor.modal_properties_group_add_button_description": "The text places itself on the end of the button text. “Add new (your text)”",
"ux_editor.modal_properties_group_add_components": "Add components to the group",
"ux_editor.modal_properties_group_change_id": "Group ID",
"ux_editor.modal_properties_group_id_not_unique_error": "The ID of the group must be unique",
"ux_editor.modal_properties_group_id_not_valid": "The group id can only contain letters, digits and the '-' character.",
"ux_editor.modal_properties_group_max_occur": "Maximum number of repetitions",
"ux_editor.modal_properties_group_repeating": "Repeating group",
"ux_editor.modal_properties_group_table_headers": "Mark the headers that should be visible in the table view.",
"ux_editor.modal_properties_group_table_headers_error": "The group must containt atleast one header in the table view.",
"ux_editor.modal_properties_header": "Edit properties",
"ux_editor.modal_properties_header_helper": "Write or search for header",
"ux_editor.modal_properties_helptext": "Help text:",
"ux_editor.modal_properties_helptext_add": "Add help text",
"ux_editor.modal_properties_image_alt_text_label": "Alternative text",
"ux_editor.modal_properties_image_placement_center": "Center",
"ux_editor.modal_properties_image_placement_label": "Placement",
"ux_editor.modal_properties_image_placement_left": "Left",
"ux_editor.modal_properties_image_placement_right": "Right",
"ux_editor.modal_properties_image_read_more": "Read more about images",
"ux_editor.modal_properties_image_src_value_label": "Source",
"ux_editor.modal_properties_image_width_label": "Width",
"ux_editor.modal_properties_label": "Label:",
"ux_editor.modal_properties_label_add": "Legg til ledetekst",
"ux_editor.modal_properties_label_helper": "Write or search for label",
"ux_editor.modal_properties_maximum_file_size_helper": "MB.",
"ux_editor.modal_properties_maximum_files": "Maximum attachments",
"ux_editor.modal_properties_maxium_file_size": "Maximum file size",
"ux_editor.modal_properties_minimum_files": "Minimum attachments",
"ux_editor.modal_properties_no_options_found_message": "Your application does not contain any static code lists. Upload a code list to select from the list or enter the name of a custom code list.",
"ux_editor.modal_properties_paragraph_edit_helper": "Or write paragraph text",
"ux_editor.modal_properties_paragraph_helper": "Search for paragraph text",
"ux_editor.modal_properties_read_only": "Read-only.",
"ux_editor.modal_properties_read_only_description": "If this field should not be editable you can set it to read-only.",
"ux_editor.modal_properties_tag_helper": "Write or search for tag description",
"ux_editor.modal_properties_textResourceBindings_back": "Text on back button",
"ux_editor.modal_properties_textResourceBindings_back_add": "Add text on back button",
"ux_editor.modal_properties_textResourceBindings_body": "Text content",
"ux_editor.modal_properties_textResourceBindings_body_add": "Add text content",
"ux_editor.modal_properties_textResourceBindings_description": "Description",
"ux_editor.modal_properties_textResourceBindings_description_add": "Add description",
"ux_editor.modal_properties_textResourceBindings_help": "Help text",
"ux_editor.modal_properties_textResourceBindings_help_add": "Add help text",
"ux_editor.modal_properties_textResourceBindings_next": "Text on next button",
"ux_editor.modal_properties_textResourceBindings_next_add": "Add text on next button",
"ux_editor.modal_properties_textResourceBindings_tag": "Tag description:",
"ux_editor.modal_properties_textResourceBindings_tag_add": "Add tag description",
"ux_editor.modal_properties_textResourceBindings_title": "Label",
"ux_editor.modal_properties_textResourceBindings_title_add": "Add label",
"ux_editor.modal_properties_trigger_validation_label": "Skal feltet trigge en validering?",
"ux_editor.modal_properties_valid_file_endings": "Valid file types",
"ux_editor.modal_properties_valid_file_endings_all": "All file types",
"ux_editor.modal_properties_valid_file_endings_custom": "Custom file types",
"ux_editor.modal_properties_valid_file_endings_helper": "Write valid file types",
"ux_editor.modal_radio_button_add_label": "Add text",
"ux_editor.modal_radio_button_increment": "Radio button",
"ux_editor.modal_radio_button_set_preselected": "Set pre-selected radio button",
"ux_editor.modal_restrictions": "Restrictions from data model",
"ux_editor.modal_restrictions_empty": "No restrictions to show",
"ux_editor.modal_restrictions_helper": "Please select a field in the data model",
"ux_editor.modal_selection_set_preselected_placeholder": "Choose index (0-indexed)",
"ux_editor.modal_text": "Text",
"ux_editor.modal_text_input": "Choose text",
"ux_editor.modal_text_key": "Text key",
"ux_editor.modal_text_resource_body": "Text content",
"ux_editor.modal_text_resource_body_add": "Add text",
"ux_editor.no_text": "No text",
"ux_editor.radios_description_add": "Add descrption",
"ux_editor.radios_description_placeholder": "No description",
"ux_editor.radios_error_DuplicateValues": "All values must be unique.",
"ux_editor.radios_error_NoOptions": "There must be at least one radio button.",
"ux_editor.radios_legend_add": "Add title",
"ux_editor.radios_legend_placeholder": "Title is missing",
"ux_editor.radios_option_description_add": "Add description",
"ux_editor.radios_option_description_placeholder": "Description is missing",
"ux_editor.radios_option_label": "Text",
"ux_editor.radios_option_label_add": "Add text",
"ux_editor.radios_option_label_placeholder": "Text is missing",
"ux_editor.radios_option_value": "Value",
"ux_editor.radios_option_value_error_duplicate": "There is already another radio button with this value.",
"ux_editor.radios_option_value_error_empty": "The value cannot be empty.",
"ux_editor.read_only": "Read-only",
"ux_editor.repeating": "Repeating",
"ux_editor.repeating_group_add": "Add group",
"ux_editor.repeating_group_delete": "Delete group",
"ux_editor.rule_connection_header": "Rule Connections",
"ux_editor.search_text_resources_close": "Close text search",
"ux_editor.search_text_resources_label": "Choose existing text based on ID",
"ux_editor.search_text_resources_none": "None",
"ux_editor.service_logic": "Logic",
"ux_editor.service_logic_calculations": "Calculations",