-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathapp-en.json
More file actions
1477 lines (1477 loc) · 85.3 KB
/
Copy pathapp-en.json
File metadata and controls
1477 lines (1477 loc) · 85.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"about": "About",
"aboutActivity": "About Activity",
"aboutActivityFlow": "About Activity Flow",
"aboutApplet": "About Applet",
"aboutAppletPage": "About Applet Page",
"aboutAppletRequired": "About Applet is required",
"aboutAppletTooltip": "This text will be displayed on the “About” tab of the Applet details page in the Respondent's interface.",
"accountType": "Account Type",
"actions": "Actions",
"activateActivitiesScheduled": "All activated Activities are scheduled.",
"activateInBuilder": "Activate in builder",
"activities": "Activities",
"activity": "Activity",
"activityCannotBeOnePageAssessment": "This activity contains variables and cannot be a one page assessment",
"activityCompleted": "Activity Completed",
"activityCount_one": "{{count}} Activity",
"activityCount_other": "{{count}} Activities",
"activityFlowCompleted": "Activity Flow Completed",
"activityDeactivated": "Activity is deactivated in the builder",
"activityDescription": "Activity Description",
"activityFlow": "Activity Flow",
"activityFlowBuilder": "Activity Flow Builder",
"activityFlowDescription": "Activity Flow Description",
"activityFlowIsRequired": "Create an Activity Flow to order the sequence of Activities.",
"activityFlowName": "Activity Flow Name",
"activityFlows": "Activity Flows",
"activityFlowSettings": "Activity Flow Settings",
"activityHasRequiredItems": "This activity contains items that are required and cannot skip all items.",
"activityHasVariableAmongItems": "This activity contains variables and cannot skip all items.",
"activityImageDescription": "This image is displayed next to the activity name in the admin panel, and in the respondent's interface.",
"activityImg": "Activity Image",
"activityIncomplete": "Activity incomplete",
"activityIsMobileOnly": "This activity must be completed on the Mindlogger mobile app.",
"activityIsUnavailableAtThisTime" : "This activity is currently unavailable for completion based on its schedule.",
"activityIsRequired": "At least 1 activity is required.",
"activityItemsFlow": "Item Flow",
"activityItemsFlowDescription": "To determine the order of transition from one Item to another, an Item Flow can be created.",
"activityItemsFlowItemTitle": "Conditional {{- index}}",
"activityMetadata": "Activity Metadata",
"activityName": "Activity Name",
"activityRequired": "Activity is required",
"activitySettings": "Activity Settings",
"activitySplashscreen": "Splash Screen",
"activitySplashScreenDescription": "An image that is displayed to a respondent before the activity.",
"activityUnavailableAtTime": "Activity is unavailable at this time",
"addActivity": "Add Activity",
"addBlankActivity": "Add Blank Activity",
"addActivityFlow": "Add Activity Flow",
"addActivityItemsFlowTooltip": "You need to create at least two Items first",
"addAlert": "Add Alert",
"addApplet": "Add Applet",
"addAudio": "Add Audio",
"addCondition": "Add Condition",
"addConditionalLogic": "Add Conditional Logic",
"addFolder": "Add Folder",
"addFullAccountSuccess": "Sent invitation to <1>{{id}}</1>",
"addImgLink": "Add Image Link",
"addIndividualSchedule": "Add Individual Schedule ",
"addIndividualScheduleText": "Respondent <1>{{respondentName}}</1> is currently using the <1>default schedule</1>. Do you want to create an <1>individual schedule</1> for this respondent instead?",
"addItem": "Add Item",
"addItemFlow": "Add Condition",
"additionalInformation": "Additional Information",
"additionalResponseOptions": "Additional Response Options",
"additionalSettings": "Additional Settings",
"addLimitedAccountSuccess": "Created limited account for <1>{{id}}</1>",
"addLink": "Add Link",
"addNewNote": "Add a New Note",
"addNotePlaceholder": "Add a note which you’ll always see here",
"addNotification": "Add Notification",
"addOption": "Add Option",
"addNoneOption": "Add “None“ Option",
"addParticipant": "Add Participant",
"addPerformanceTask": "Add Performance Task",
"addRecipients": "Add Recipients",
"addReminder": "Add Reminder",
"addRespondent": "Add Respondent",
"addRole": "Add Role",
"addScore": "Add Score",
"addScoreCondition": "Add Score Condition",
"addSection": "Add Section",
"addSelectionRow": "Add Row",
"addSlider": "Add slider",
"addSubscales": "Add Subscale",
"addTeamMember": "Add Team Member",
"addToBuilder": "Add to Builder",
"addToBuilderError": " Cart content has not been added to the builder. Please try again.",
"addToBuilderAccessError": "No Access",
"addToBuilderAppletAccessError": "Your access to the applet was removed.",
"addToBuilderWorkspaceAccessError": "Your access to the workspace was removed.",
"addToCart": "Add to cart",
"addToExistingApplet": "Add to an existing Applet",
"addTotalScoreLookupTable": {
"delete": {
"initDescription": "Are you sure you want to delete the current Total Score Lookup Table?",
"successDescription": "The current Total Score Lookup Table has been deleted successfully."
},
"edit": {
"initDescription": "Current Total Score Lookup Table."
},
"errors": {
"onDelete": "The current Total Score Lookup Table has not been deleted. Please try again."
},
"upload": {
"successDescription": "Your Total Score Lookup Table was parsed successfully."
}
},
"addUser": "Add User",
"addUsers": "Add Users",
"addViaCSV": "Add via CSV",
"advancedSettings": "Advanced Settings",
"ageQuestion": "How old are you?",
"agreement": " I agree to the ",
"agreementAppletAvailability": "I agree that the contents of this Applet will be available for other MindLogger users to use in their own Applets. Only Applet content is shared. No user information is shared.",
"alert": "Alert",
"alertContinuousSlider": "If Respondent selected values between <0></0> and <1></1> when answering this question then send:",
"alertMessage": "Alert Message",
"alerts": "Alerts",
"alertSingleMultipleNonContinuousSlider": "If Respondent selected <0></0> when answering this question then send:",
"alertSingleMultipleSelectionPerRow": "If <0></0> is selected for <1></1> when answering this question then send:",
"alertSliderRows": "If respondent in <0></0> selected <1></1> when answering this question then send:",
"alignCenter": "Center text",
"alignLeft": "Clamp text to the left",
"alignRight": "Clamp text to the right",
"all": "All",
"ALL": "All",
"allDay": "All Day",
"allowAccessBeforeTime": "Allow access before “From” time",
"allowToSkipAllItems": "Allow to skip all items",
"nextDay": "Next day",
"alwaysAvailable": "Always available",
"alwaysAvailableWarning": "Once you set this event to always available, all scheduled events for this activity will be removed.",
"any": "Any",
"and": "and",
"applet_one": "Applet",
"applet_other": "Applets",
"appletActivities": "Applet activities",
"appletColorTheme": "Applet Color Theme",
"appletContent": "Applet Content",
"appletDeletedError": "Applet <1>{{appletName}}</1> has not been deleted. Please try again.",
"appletDeletedSuccessfully": "Applet was deleted",
"appletDescription": "Applet Description",
"appletDuplication": "Duplicate Applet",
"appletHasEmptyRequiredFields": "Please fill in all required fields marked in red",
"appletHasErrorsInFields": "Please fix the errors in all fields marked in red",
"appletHasItemFlowContradictions": "Selected position of the Item in the list contradicts the Item Flow",
"appletImageDescription": "This image is displayed next to the Applet name in the admin panel, and in the respondent's interface.",
"appletImg": "Applet Image",
"appletIsBeingCreated": "Your Applet is being created. Please wait...",
"appletIsBeingUpdated": "Your Applet is being updated. Please wait...",
"appletIsRemovedFromLibrary": "The Applet is removed from the Library",
"appletIsRequiredOneActivity": "At least 1 Activity is required to save and publish the Applet",
"appletIsRequiredOneItem": "At least 1 Item is required to save and publish the Applet",
"appletIsSharedWithLibrary": "Applet is shared with the Library successfully",
"appletLibrary": "Applet library",
"appletMetadata": "Applet Metadata",
"appletName": "Applet Name",
"appletNameAlreadyTaken": "This Applet name is already taken in the Library. Please rename the Applet to share it. <br />Note: This will change the name of the Applet for your users.",
"appletNameRequired": "Applet Name is required",
"appletNavigationActivities": "Activities",
"appletNavigationOverview": "Overview",
"appletNavigationParticipants": "Participants",
"appletNavigationTeam": "Team",
"appletNotFoundPopupText": "Applet not found; it may have been deleted. To refresh the data, please click the button below.",
"appletNotFoundPopupTitle": "Applet Not Found",
"appletNotSavedAndPublished": "<0>We were not able to upload your applet <1>{{name}}</1>. Please double check your applet and try again.</0>",
"appletOverview": {
"columnActivity": "Activity",
"columnRespondent": "Participant",
"columnSubject": "Subject",
"columnSubmissionDate": "Submission Date",
"labelSelf": "Self",
"noDataYet": "No data yet",
"statParticipants": "Total Participants",
"statParticipantsTooltip": "Number of participants involved in this applet (all-time).",
"statSubmissions": "Total Submissions",
"statSubmissionsTooltip": "Number of submissions for this applet (all-time).",
"titleRecentSubmissions": "Recent submissions"
},
"appletPasswordRequirementsError": "Password does not meet the password requirements.",
"appletRequired": "Please select the Applet to proceed.",
"applets": "Applets",
"appletSavedAndPublished": "Your applet {{name}} was successfully uploaded!",
"appletUpdated": "Your applet {{name}} was successfully updated!",
"appletsCatalog": "Applets Catalog",
"appletSettings": "Applet Settings",
"appletWatermark": "Applet Watermark",
"appletWatermarkDescription": "This image is displayed in the corner on each Applet screen in the respondent's interface.",
"apply": "Apply",
"apr": "April",
"assign": "Assign",
"assignActivity": "Assign Activity",
"assessment": "Assessment",
"at": "At",
"lowercaseAt": "at",
"atTime": "At time",
"audio": "Audio",
"audioExceedSize": "Audio is more than {{size}}",
"audioHint": "Audio record task",
"audioLink": "Add Audio Link",
"audioPlayer": "Audio Player",
"audioPlayerDescription": "The respondent will listen to an audio stimulus.",
"audioPlayerDeviceError": "Recording device not found",
"audioPlayerHint": "Add an audio stimulus for the respondent to listen to",
"audioPlayerOptions": "Audio Player Options",
"audioPlayerRecordAudio": "Record Audio",
"audioPlayerRecordAudioDescription": "Record audio using your device microphone.",
"audioPlayerRecordPause": "Pause",
"audioPlayerRecordStart": "Record",
"audioPlayerRecordStop": "Stop",
"audioPlayerUploadAudio": "Upload Audio",
"audioPlayerUploadAudioDescription": "Please upload file in one of the following formats: <1>.mp3, .wav</1>.",
"audioRecordDescription": "The respondent will be able to record audio.",
"audioRecordDuration": "Max Recording Duration (seconds)",
"audioWrongFormat": "Audio file has wrong format",
"aug": "August",
"availability": "Availability",
"availableElements": "Available Elements",
"availableItems": "Available Items",
"averageOfScores": "Average of Item Scores",
"back": "Back",
"backToLogin": "Back to Log In",
"between": "between",
"blockIsNecessary": "This block is necessary",
"bold": "Bold",
"builder": "Builder",
"calculateTotalScore": "Calculate total score",
"calculateTotalScoreTooltip": "Raw Score of the completed Activity will be calculated and represented on the Subscale Scores Chart of the Data tab",
"calculationTypeAverage": "Average",
"calculationTypePercentage": "Percentage",
"calculationTypeSum": "Sum",
"cancel": "Cancel",
"captureVideo": "Capture <br /> Video",
"cart": "Cart",
"change": "Change",
"changes": "Changes:",
"changeScoreId": "Change Score ID",
"changeScoreIdError": "Score ID has not been changed. Please try again.",
"changeScoreIdSuccess": "Score ID has been changed successfully.",
"changeScoreIdText": "You are referencing this score as a variable in the markdown. Changing the Score ID will cause the variable names to update everywhere.",
"changeScoreConditionId": "Change Score Condition ID",
"changeScoreConditionIdError": "Score Condition ID has not been changed. Please try again.",
"changeScoreConditionIdSuccess": "Score Condition ID has been changed successfully.",
"changeScoreConditionIdText": "You are referencing this score condition as a variable in the markdown. Changing the Score Condition ID will cause the variable names to update everywhere.",
"characters": "characters",
"chars": "chars.",
"checkAll": "Check all",
"checkYourEmail": "Check your email",
"chooseLanguage": "Choose a language",
"clear": "Clear",
"clearActivityFlow": "Clear Activity Flow",
"clearActivityFlowDescription": "Are you sure you want to clear the Activity Flow?",
"clearAll": "Clear All",
"clearAllScheduledEvents": "Clear all scheduled events",
"clearEventsSuccess": "<0>Scheduled events within the <1>default schedule</1> for Applet <3>{{appletName}}</3> have been successfully cleared.</0><1>Respondents' <1>individual schedules</1> (if applicable) have not changed.</1>",
"clearFlow": "Clear Flow",
"clearIndividualScheduleSuccess": "<0>Please note that Respondent <1>{{name}}</1> is still using an <3>individual schedule</3>.</0> <1>You may revert this Respondent back to the <1>default schedule</1> by pressing the trash icon on the top-left.</1>",
"clearScheduledEvents": "Clear All Scheduled Events from Calendar",
"colorPalette": "Color Palette",
"combineReportsIntoSingleFile": "Combine reports into a single file",
"compliance": "Compliance",
"conceal": "Conceal",
"concealApplet": "Conceal Applet",
"concealAppletDescription": "Once the Applet is concealed, it disappears for all MindLogger respondents.",
"concealAppletPopupDescription": "Are you sure you want to conceal this Applet for all MindLogger respondents?",
"concealAppletPopupSuccess": "The Applet [Applet name] has been concealed successfully.",
"concealAppletPopupTitle": "Conceal Applet",
"concealed": "concealed",
"conditionalLogic": "Conditional Logic",
"conditionalLogicPanelTitle": "If <1>{{match}}</1> of the “if” rules below are <3>true, show item: {{name}}</3>",
"conditionItem": "Item",
"conditionItemNamePlaceholder": "Item",
"conditionItemSelected": "Item: {{- value}}",
"conditionMatch": "Rule",
"conditionPanelItem": "[Item]",
"conditionPanelType": "[State]",
"conditionPanelType_BETWEEN": "BETWEEN",
"conditionPanelType_EQUAL": "EQUAL",
"conditionPanelType_EQUAL_TO_OPTION": "EQUAL TO",
"conditionPanelType_GREATER_THAN": "GREATER THAN",
"conditionPanelType_INCLUDES_OPTION": "INCLUDES",
"conditionPanelType_LESS_THAN": "LESS THAN",
"conditionPanelType_NOT_EQUAL": "NOT EQUAL",
"conditionPanelType_NOT_EQUAL_TO_OPTION": "NOT EQUAL TO",
"conditionPanelType_NOT_INCLUDES_OPTION": "DOESN'T INCLUDE",
"conditionPanelType_OUTSIDE_OF": "OUTSIDE OF",
"conditionPanelValue": "[Value]",
"conditionPanelValueRange": "{{minValue}} and {{maxValue}}",
"conditionScoreSelected": "Score: {{- value}}",
"conditionTarget": "Item",
"conditionType": "State",
"conditionTypePlaceholder": "State",
"conditionDisabledPlaceholder": "Select Item First",
"conditionValue": "Value",
"conditionalLogicValidation": {
"usageInSummaryRow": "This item is already selected in another Conditional card's summary row. If multiple conditions are necessary, use the same Conditional card with ALL or ANY conditions."
},
"configure": "Configure",
"configureServer": "Please configure the report server to download the report.",
"configureServerForApplet": "Configure Server (for Applet)",
"configureServerForReport": "Server Status: Not Configured. Report can not be generated.",
"configureServerURL": "For Security reasons, you must configure the Server URL (IP Address) and Public Encryption Key to generate and email reports. <1>See here for instructions</1>.",
"confirm": "Confirm",
"confirmChangeOnScheduledAccess": "Activity <1>{{activityName}}</1> will no longer be always available, and the Activity will be a scheduled event. Are you sure you want to continue?",
"confirmClearEvents": "You are about to remove all scheduled events and notifications from the <1>default schedule</1> for Applet <3>{{appletName}}</3>. Are you sure you want to continue?",
"confirmClearIndividualSchedule": "You are about to remove all scheduled events and notifications from the <1>individual schedule</1> for Respondent <3>{{name}}</3>. Are you sure you want to continue?",
"confirmDeleteApplet": "Are you sure that you want to delete this Applet? You won’t be able to restore it.",
"confirmImportIndividualSchedule": "Importing a new individual schedule for respondent <1>{{respondentName}}</1> will replace the respondent’s current individual schedule. Are you sure you want to continue?",
"confirmImportSchedule": "Importing a new default schedule will replace the current default schedule. Are you sure you want to continue?",
"confirmMultipleRemoveAccess": "Are you sure that you want to remove the access for the <1>{{firstName}} {{lastName}} ({{email}})</1> to the list of Applets below?",
"confirmPassword": "Confirm password",
"confirmRemoveAccess": "Are you sure that you want to remove the access for the <1>{{firstName}} {{lastName}} ({{email}})</1> to the Applet <3>{{displayName}}</3>?",
"confirmRemoveAllScheduledEventsForActivity": "All scheduled events for <1>{{activityName}}</1> will be removed, and the activity will become always available to the user. Are you sure you want to continue?",
"confirmRemoveConditionalLogic": "Are you sure you want to remove conditional logic for the <1>{{name}}</1> <2>{{reportName}}</2>?",
"confirmRemoveEmptyIndividualSchedule": "Respondent <1>{{name}}’s individual schedule</1> will be removed, and the Respondent will use the <3>default schedule</3> instead. Are you sure you want to continue?",
"confirmRemoveIndividualSchedule": "<0>You are about to remove Respondent <1>{{name}}</1>’s <3>individual schedule</3> and move the Respondent to a group of Respondents that use the <5>default schedule</5>. All individually scheduled activities and their notifications will be lost.</0> <1>Are you sure you want to continue?</1>",
"confirmRemoveRespondentAccess": "Are you sure you want to to remove <1>{{respondentName}}</1> from Applet <3>{{appletName}}</3>?",
"confirmRemoveRespondentAccessAndData": "Are you sure you want to to remove <1>{{respondentName}}</1> and all of their response data from Applet <3>{{appletName}}</3>?",
"confirmRemoveScheduledEvent": "Are you sure you want to remove this scheduled event for <1>{{activityName}}</1>?",
"confirmScheduledAccess": "Confirm Scheduled Access",
"confirmUpdateDefaultSchedule": {
"createIndividualSchedule": "Create Individual Schedule",
"onDefaultSchedule": "<0>{{respondentName}}</0> is on the Default Schedule. Updating the Default Schedule will affect this schedule for all participants.",
"thisParticipant": "This participant",
"title": "Currently using Default Schedule",
"updateDefaultSchedule": "Update Default Schedule",
"updateOrCreate": "Do you want to update the Default Schedule, or create an Individual Schedule for this participant?",
"updateDefault": "Are you sure you want to update the Default Schedule?"
},
"confirmUpdateIndividualSchedule": "Are you sure you want to update the individual schedule for respondent <1>{{respondentName}}</1> for Applet <3>{{appletName}}</3> and replace the current schedule with information from the <5>{{fileName}}</5> file?",
"confirmUpdateSchedule": "Are you sure you want to update the default schedule for Applet <1>{{appletName}}</1> and replace the current schedule with information from the <1>{{fileName}}</1> file?",
"contentActions": "Select Adding Type",
"continue": "Continue",
"connections": "Connections",
"coordinator": "Coordinator",
"copyAppletLink": "Copy Applet Link",
"copyEmailAddress": "Copy Email Address",
"copyInvitationLink": "Copy Invitation Link",
"correctAnswer": "Correct Answer",
"create": "Create",
"createAccount": "Create Account",
"createActivitySchedule": "Create Activity Schedule",
"createAppletPassword": "Create Applet Password",
"createAppletPasswordRequirements": "Password requirements: minimum 8 characters without spaces with at least one capital letter, a lowercase letter, a number, and a special character.",
"createAppletPasswordWarning": "MindLogger does not store Applet passwords due to privacy reasons. Please ensure this password will not be lost because it can not be changed or recovered.",
"createEvent": "Create Event",
"createNewApplet": "Create a new Applet with selected activities",
"createNewAppletHint": "All cart content will be added to the new applet",
"createNewPassword": "Create New Password",
"createNewPasswordForEmail": "Create a new password for {{email}}",
"credits": "Credits",
"support": "Support",
"current": "current ({{version}})",
"daily": "Daily",
"dashboard": "Dashboard",
"dataExport": "Data Export",
"dataRetention": "Data retention",
"dataRetentionUpdate": "Data Retention Setting Update",
"datavizNotSupportedForPerformanceTasks": "Data visualization for Performance Tasks not supported",
"date": "Date",
"dateHint": "Date selection in the format Month DD, YYYY",
"dateItemDescription": "The respondent will be able to select the date.",
"dateItemTitle": "Date Select",
"datePlaceholder": "DD Mon YYYY",
"dateTimeInvited": "Date & Time Invited",
"day": "Day",
"day_one": "day",
"day_other": "days",
"month_one": "month",
"month_other": "months",
"days": "Days",
"deactivated": "Deactivated",
"dec": "December",
"default": "Default",
"defaultSchedule": "Default Schedule",
"defaultScheduleExport": "The current default schedule will be exported as a <1>.csv</1> file.",
"delete": "Delete",
"deleteActivity": "Delete Activity",
"deleteActivityDescription": "Are you sure you want to delete the Activity <1>{{activityName}}</1>?",
"deleteActivityFlow": "Delete Activity Flow",
"deleteActivityFlowDescription": "Are you sure you want to delete the Activity Flow <1>{{activityFlowName}}</1>?",
"deleteApplet": "Delete Applet",
"deleteAppletDescriptionWithPassword": "To delete type Applet password here.\nAfter deleting you won't be able to restore the Applet.",
"deleteAudio": "Delete Audio",
"deleteDescription": "Once the Applet is deleted, you won't be able to restore it.",
"deleteFolderWarning": "Cannot delete a folder that contains Applets. Remove Applets from folder before deleting.",
"deleteInviteLink": "Delete invite link",
"deleteItem": "Delete Item",
"deleteItemDescription": "Are you sure you want to delete the Item <1>{{itemName}}</1>?",
"deleteItemWithConditionalsDescription": "It will also remove the Conditional(s) below:",
"deleteLinkToNoAllow": "Delete this link no longer allow anyone to access url",
"deleteOption": "Delete Option",
"deleteOptionDescription": "Are you sure you want to delete Option <1>{{name}}</1>? It will also remove the Conditional(s) below",
"deletePublicLink": "Delete Public Link",
"deletePublicLinkDescription": "If deleted, the public link will become invalid, and the respondents will not be able to use it anymore. Are you sure you want to delete it?",
"description": "Description",
"descriptionRequired": "Description is required",
"disableAbilityToChangeResponse": "Disable the respondent's ability to change the response",
"dismiss": "Dismiss",
"display": "Display",
"displayedContent": "Displayed Content",
"displayedContentRequired": "Displayed Content is required",
"dontSave": "Don't Save",
"download": "Download",
"downloadDescription": "<0>Download the Applet content as JSON.</0><1>Please update URL of contexts in Applet schema, Activity schema and change Activity / Item paths in context files after uploading content to GitHub.</1>",
"downloadLatestReport": "Download Latest Report",
"downloadLatestReportCombined": "Download Latest Report (Combined)",
"downloadSchema": "Download Schema",
"downloadTemplate": "Download Template",
"drawing": "Drawing",
"drawingBackground": "Drawing Background",
"drawingBackgroundDescription": "This image is optional will serve as the background for the drawing. The respondent will be able to draw on it.",
"drawingExample": "Drawing Example",
"drawingExampleDescription": "This image is optional and will serve as an example for the drawing. The respondent will not be able to draw on it.",
"drawingDivideFlagDescription": "Evenly Distribute the Drawing Example and Drawing Canvas Area",
"drawingDivideFlagText": "The Drawing Example image and square Drawing Canvas will each take up approximately half of the display. In situations where the original Drawing Example image fits completely inside the space allotted, the image will retain its original dimensions.",
"drawingHint": "Drawing task",
"dropAudio": "Please upload file in one of the following formats: <1>.mp3, .wav</1>.",
"dropCsvFile": "Drop <1>.csv</1> here <br/>or <3>click to browse.</3>",
"dropdown": "Dropdown",
"dropError": "Image is more than <br /> {{size}}.",
"dropFile": "Drop <1>.csv, .xls, .xlsx</1> or <3>.ods</3> here <br/>or <5>click to browse<5>.",
"dropFileSecondary": "Drop <1>.csv</1> or <3>.xlsx</3> here <br/>or <5>click to browse<5>.",
"dropImg": "Drop Image here <br /> or <3>click to browse</3>.",
"duplicate": "Duplicate",
"duplicateApplet": "Duplicate Applet",
"duplicateDescription": "The current Applet's content will be copied and saved as a separate Applet.",
"duration": "Duration (HH:MM)",
"edit": "Edit",
"editAccess": "Edit Access",
"editTeamMember": "Edit Team Member",
"removeTeamMember": "Remove Team Member",
"editAccessNoRespondent": "Please add access to review the Data of at least one Respondent in the {{titles}} for the Reviewer role or remove the role.",
"editActivity": "Edit Activity",
"editActivitySchedule": "Edit Activity Schedule",
"editAnApplet": "Edit an Applet",
"editApplet": "Edit Applet",
"editAppletInBuilder": "Edit Applet in Builder",
"editDescription": "Add, modify, or remove contents of the Applet using the Builder.",
"edited": "Edited",
"editFlow": "Edit flow",
"editing": "Editing",
"editItem": "Edit Item",
"editItemDescription": "Are you sure you want to edit Item <1>{{itemName}}</1>?",
"editor": "Editor",
"editRespondent": "Edit Respondent",
"editParticipant": "Edit Participant",
"editRespondents": "Edit Respondents",
"editUser": "Edit User",
"element": "Element",
"elementsAssociatedWithSubscales": "Elements associated with one or more subscales",
"elementsNotIncludedInSubscale": "Elements not included in any subscale",
"elementsWithinSubscale": "Elements within subscale",
"email": "Email",
"emailBody": "Email Body",
"emailRequired": "Email is required",
"empty": "Empty",
"emptyCart": "You have not added anything to your cart yet. Add Applets from the ",
"emptyReview": "Select the date, Activity Flow or Activity, and response time to review the response data.",
"emptyReviewWithSelectedActivity": "Select the date and response time to review the response data.",
"en": "English",
"endDate": "End date",
"endTime": "End time",
"enterAppletPassword": "Enter Applet Password",
"enterAppletPasswordHint": "Min. 8 characters with at least one capital letter, a number, lowercase letter and a special character.",
"enterDescription": "Enter a description...",
"enterEmailAssociatedWithAccount": "Enter the email associated with your account",
"enterLink": "Enter a link...",
"enterText": "Enter text",
"equal": "is equal to",
"equalToOption": "is equal to",
"errorDuplication": "Applet has not been duplicated. Please try again.",
"exitingAppletHint": "All cart content will be added to the content of the existing applet",
"export": "Export",
"exportData": "Export Data",
"exportDataForApplet": "Export Data for {{name}}",
"exportDefaultSchedule": "Export Default Schedule",
"exportDescription": "Choose what to include:",
"exportDateRange": {
"allTime": "All time",
"last24h": "Last 24 hours",
"lastWeek": "Last week",
"lastMonth": "Last month",
"chooseDates": "Choose dates"
},
"dateRange": "Date Range",
"exportFailed": "Export failed. Please try again.",
"exportIndividualSchedule": "Export Individual Schedule",
"false": "False",
"feb": "February",
"feedback": "Feedback",
"female": "Female",
"fieldRequired": "This field is required.",
"fileSizeExceed": "File is too big. Please upload a file less than {{size}}.",
"fillInAllRequired": "Please fill in all required fields",
"filterByIdentifier": "Filter by identifier",
"filters": "Filters",
"finalSubscaleScore": "Final Subscale Score",
"firstName": "First Name",
"firstNamePlaceholder": "Sally",
"firstNameRequired": "First name is required",
"fixed": "Fixed",
"flagScore": "Flag Score",
"flagScoreTooltip": "The score will be highlighted in red in the summary screen",
"flanker": "Simple & Choice Reaction Time Task Builder",
"flankerButtons": {
"button": "1 button",
"buttonName": "Button Name",
"buttons": "2 buttons",
"leftButtonName": "Left Button Name",
"nameOrImage": "Button Name or Image",
"number": "Number of buttons available to respondent:",
"rightButtonName": "Right Button Name",
"title": "Buttons",
"tooltip": "Button Name or Image is required"
},
"flankerFixation": {
"addBtn": "Add Fixation Screen",
"fixationScreenImg": "Fixation Screen Image",
"showFixationFor": "Show fixation for:",
"title": "Fixation Screen (Optional)",
"tooltip": "Fixation screen will be shown between Stimulus screens. No action from the responded required"
},
"flankerInstructions": {
"general": "## General Instructions\n\n You will see arrows presented at the center of the screen that point either to the left '<' or right '>'.\n Press the left button if the arrow is pointing to the left '<' or press the right button if the arrow is pointing to the right '>'.\n These arrows will appear in the center of a line of other items. Sometimes, these other items will be arrows pointing in the same direction, e.g.. '> > > > >', or in the opposite direction, e.g. '< < > < <'.\n Your job is to respond to the central arrow, no matter what direction the other arrows are pointing.\n For example, you would press the left button for both '< < < < <', and '> > < > >' because the middle arrow points to the left.\n Finally, in some trials dashes ' - ' will appear beside the central arrow.\n Again, respond only to the direction of the central arrow. Please respond as quickly and accurately as possible.",
"generalDesc": "This instruction will be displayed for the respondent before passing the Activity.",
"next": "## Instructions\nPress the Next button to restart block.",
"practice": "## Instructions\n\n Now you will have a chance to practice the task before moving on to the test phase. Remember to respond only to the central arrow.",
"practiceDesc": "This instruction will be displayed for the respondent before passing the practice round of the Activity.",
"test": "## Test Instructions\n\n Good job on the practice blocks.\nYou can now move on to the test blocks.\nYou will do the same task as in the practice, responding to the direction of the central arrow.\nYou will complete 3 blocks, each about 3-5 minutes long.\nYou will have a short break in between these blocks.",
"testDesc": "This instruction will be displayed for the respondent before passing the test round of the Activity."
},
"flankerRound": {
"addStimulus": "Add stimulus screens first",
"block": "Block",
"blockSequences": "Block Sequences",
"downloadExistingSequence": "Download Existing Sequence",
"exampleOfSequence": "Example of the sequence:",
"feedbackTooltip": "An information screen reflecting the result of the response to the Stimulus screen will be shown to the respondent",
"fileCannotBeUploaded": "File can not be uploaded. Please ensure stimulus screens have been uploaded prior to the block sequences and ensure the image name is the same as the file name uploaded.",
"invalidFileFormat": "Invalid file format or empty file. Please upload a sequence table in one of the following formats: <1>.csv</1> or <1>.xlsx.</1>",
"randomize": "Randomize Order of Screens Within a Block",
"sequencesTooltip": "Block Sequence determines the sequence of the Stimulus Screens presentation",
"showFeedback": "Show Feedback For Each Stimulus Screen",
"showStimulusFor": "Show each stimulus for:",
"showSummary": "Show Summary Screen",
"successfullyUploaded": "A sequence of stimulus image files for each block has been successfully uploaded.",
"summaryTooltip": "An information screen reflecting the result of the round will be shown to the respondent",
"threshold": "Threshold to progress to Test Phase:",
"titlePractice": "Practice Round Settings",
"titleTest": "Test Round Settings",
"updateBlockSequences": "Update Block Sequences",
"updateError": "A sequence of stimulus image files have not been updated.",
"uploadBlockSequences": "Upload Block Sequences",
"uploadError": "A sequence of stimulus image files have not been uploaded.",
"uploadSequences": "Please upload a sequence of stimulus image files for each block in one of the following formats: <1>.csv, .xlsx</1>"
},
"flankerStimulus": {
"addBtn": "Add Stimulus Screen",
"addText": "Add at least 1 stimulus screen.",
"correctPress": "Correct Button Press",
"deleteDescription": "Are you sure you want to delete the Stimulus Screen <1>{{imageName}}</1>? You will need to re-upload the Block Sequences.",
"deleteTitle": "Delete Stimulus Screen",
"fileName": "File Name",
"left": "Left",
"right": "Right",
"title": "Stimulus Screen",
"tooltip": "Stimulus screens require action from the respondent"
},
"flow": "Flow",
"flows": "Flows",
"flowDeactivated": "Activity flow is deactivated in the builder",
"footerText": "MindLogger is a product of the",
"forgotPassword": "Forgot Password?",
"fr": "French",
"frequency": "Frequency",
"from": "From",
"fromLibrary": "From Library",
"fromTime": "From time",
"fullscreenMode": "Fullscreen mode",
"full": "Full",
"fullAccount": "Full Account",
"fullAccountDescription": "Allows the participant to perform activities about themselves and others, while also having access to the MindLogger mobile app.",
"fullName": "Full Name",
"genderQuestion": "How do you describe yourself?",
"generalSettings": "General Settings",
"generateLink": "Generate Link",
"generateLinkNo": "No, account is not required",
"generateLinkYes": "Yes, account is required",
"generatePublicLink": "Generate Public Link",
"generateReport": "Generate Report",
"geolocation": "Geolocation",
"geolocationDescription": "The respondent will be able to share geolocation.",
"geolocationHint": "Permission for geolocation",
"greaterThan": "greater than",
"gyroscope": "CST Gyroscope",
"gyroscopeAndTouchDesc": {
"overview": "This instruction will be displayed for the respondent before passing the practice round of the Activity.",
"practice": "This instruction will be displayed for the respondent before passing the practice round of the Activity.",
"test": "This instruction will be displayed for the respondent before passing the test round of the Activity."
},
"gyroscopeAndTouchInstructions": {
"overview": {
"instructionGyroscope": "In this task, you will see a disc that will drift either to the left or right side of the screen.\nYour job will be to keep the disc in the middle of the screen.\nIf the disc is moving to the right, tilt your phone to the left to bring it back to the center.\nIf the disc is moving to the left, tilt your phone to the right to bring the disc back to center.\nDo not let the disc touch the walls to the far left or right of the screen.\nThere will be two phases to this task, a Challenge Phase, and a Focus Phase.",
"instructionTouch": "In this task, you will see a disc that will drift either to the left or right side of the screen.\nYour job will be to keep the disc in the middle of the screen.\nIf the disc is moving to the right, swipe left of control bar to bring it back to the center.\nIf the disc is moving to the left, swipe right of control bar to bring the disc back to center.\nDo not let the disc touch the walls to the far left or right of the screen.\nThere will be two phases to this task, a Challenge Phase, and a Focus Phase.",
"title": "Overview Instructions"
},
"practice": {
"instruction": "This is the Challenge Phase.\nThere will be 3 trials.\nEach trial will begin at an easy level, but it will become more difficult to keep the disc at the center of the screen.\nEventually, you will lose control of the disc.\nWhen it hits a wall at the edge of the screen, the trial ends and the disc will be moved back to the center of the screen.\nTry to keep the disc away from the walls for as long as possible on each trial.",
"title": "Practice Round Instructions"
},
"test": {
"instruction": "This is the Focus Phase.\nThis phase will last 5 minutes.\nThe trial will begin at an easy level, and will increase to a level that should not be very difficult.\nYour task will be to focus on keeping the disc in the center of the screen, without letting it drift off center.\nIf you lose control of the disc and it hits a wall, the disc will be moved back to the center of the screen and the task will continue.",
"title": "Test Round Instructions"
}
},
"hasTheFollowingRole": "has the following role(s) within the Applet",
"hideBadge": "Hide badge",
"hideBadgeTooltip": "The Activity Flow identifier will be hidden from Respondents",
"hideFromCalendar": "Hide from calendar",
"htmlPreview": "Html preview",
"idleTime": "Idle time",
"if": "If",
"ifYouDontReceiveEmail": "If you don’t receive an email, please check your spam.",
"image": "Image",
"import": "Import",
"importDefaultSchedule": "Import Default Schedule",
"importIndividualSchedule": "Import Individual Schedule",
"importScheduleErrors": {
"betweenStartEndTime": "<2>Notification Time</2> should be between <2>Activity Start Time</2> and <2>Activity End Time</2>.",
"date": "<2>Date</2>. Valid data format: <2>DD Month YYYY</2>.",
"endTime": "<2>Activity End Time</2>. Valid data format: <2>HH:mm for Scheduled activity and - for Always available activity</2>.",
"frequency": "<2>Frequency</2>. Valid data format: <2>Always, Once, Daily, Weekly, Monthly, Weekdays</2>.",
"invalidActivityName": "Activity <1>{{activityName}}</1> does not exist in Applet <1>{{appletName}}</1>. Please enter a valid Activity name and reupload the file.",
"invalidActivityNames": "Activities <1>{{activityNames}}</1> do not exist in Applet <1>{{appletName}}</1>. Please enter a valid Activity name and reupload the file.",
"invalidDataFormat": "Invalid data format for the following fields:",
"notificationTime": "<2>Notification Time</2>. Valid data format: <2>HH:mm or -</2>.",
"startEndTime": "<2>Activity End Time</2> should not be equal to <2>Activity Start Time</2>.",
"startTime": "<2>Activity Start Time</2>. Valid data format: <2>HH:mm for Scheduled activity and - for Always available activity</2>.",
"updateReupload": "Please update and reupload the file."
},
"includeInEmail": "In the Subject and Attachment filenames(s) for the email, include:",
"includesOption": "includes",
"incorrectAppletPassword": "Incorrect password",
"incorrectAudioFormat": "Incorrect audio format.",
"incorrectEmail": "Email must be valid",
"incorrectImageFormat": "Image format must be JPEG or PNG.",
"incorrectImageDimensions": "The Image dimensions should range between 100 px and 1920 px for both width and height.",
"incorrectImageSize": "Image is more than {{size}}.",
"incorrectVideoFormat": "Incorrect video format.",
"indefinitely": "Indefinitely",
"individualSchedule": "Individual Schedule",
"individual": "Individual",
"individualScheduleLimited": "Limited accounts cannot have individual schedules",
"individualScheduleExport": "The current individual schedule of respondent <1>{{respondentName}}</1> will be exported as a <1>.csv</1> file.",
"individualScheduleRemoved": "Individual Schedule Removed Successfully",
"individualScheduleSetup": "Individual Schedule Setup",
"inlineCode": "Inline code",
"input": "Input",
"instructions": "Instructions",
"integerBetweenOneAndHundred": "Integer between 1 and 100 required",
"integerError": "Integer between 1 and 99 required",
"invalidFileFormat": "Invalid file format or empty file. Please upload a schedule table in one of the following formats: <1>.csv, .xls, .xlsx, .ods.</1>",
"invalidLink": "It is not possible to add invalid link",
"invalidPasswordResetLink": "This link is invalid or expired. Please click <0>here</0> to reset your password.",
"invitationDate": "Invitation Date",
"dateAdded": "Date Added",
"invitationLanguage": "Invitation Language",
"invitationLink": "Invitation Link",
"isReviewableUnsupported": "Reviewer dashboard assessment supports only Single Selection, Multiple Selection and Slider Items",
"italic": "Italic",
"item": "Item: ",
"item_one": "item",
"item_other": "items",
"itemBody": "Item Body",
"itemConfiguration": "Item Configuration",
"itemFlow": "Item Flow",
"itemIsRequired": "At least 1 item is required.",
"itemLevelSettings": "General Settings",
"itemName": "Item Name",
"itemNameRequired": "Item Name is required",
"itemNameSymbols": "Item Name must contain only alphanumeric characters or underscores",
"items": "Items",
"itemSettings": {
"additionalResponseOption.textInputOption": "Add Text Input Option",
"additionalResponseOption.textInputOption_tooltip": "The respondent will be able to enter additional text response",
"additionalResponseOption.textInputRequired": "Required",
"additionalResponseOption.textInputRequired_tooltip": "The respondent will be required to enter an additional text response",
"addScores": "Add Scores",
"addTooltip": "Add Tooltips",
"continuousSlider": "Use Continuous Slider",
"continuousSlider_tooltip": "The respondent will be able to select a value from a subjective range, a specific value is not required",
"correctAnswerRequired": "Correct answer required",
"correctAnswerRequired_tooltip": "The respondent will not be able to move to the next Item until they enter the correct answer",
"isMediaReplayAllowed": "Allow media replay",
"isNavigationMovedToTheTop": "Move Navigation Buttons To Top Of Screen",
"isUndoRemoved": "Remove Undo Button",
"navigationToTop": "Move Navigation Buttons to the Top",
"navigationToTop_tooltip": "When passing activity in the mobile application, navigation buttons will be located at the top of the screen",
"numericalResponseRequired": "Numerical Response Required",
"numericalResponseRequired_tooltip": "The respondent will be able to enter numeric response only",
"playOnce": "Play Audio Only Once",
"playOnce_tooltip": "The respondent will not be able to replay the audio",
"randomizeOptions": "Randomize Options",
"randomizeOptions_tooltip": "Response options will be shown in random order",
"removeBackButton": "Remove Back Button",
"removeBackButton_tooltip": "The respondent will not be able to go back to the previous Item",
"removeUndoButton": "Remove Undo Button",
"removeUndoButton_tooltip": "The respondent will not be able to undo changes while drawing",
"responseDataIdentifier": "Response Data Identifier",
"responseDataIdentifier_tooltip": "The value entered in the field will be used as a Response Data Identifier filter of the response data collected at this point in time in the data visualization tab",
"responseRequired": "Response Required",
"responseRequired_tooltip": "In Text 'Next button' is hidden until any response has been provided.\nIf enabled, disables the 'Skippable Item' checkbox.",
"setAlerts": "Set Alerts",
"setAlerts_tooltip": "Alerts are notifications that are sent to you automatically every time a new response comes in that matches your Alert criteria",
"setPalette": "Set Color Palette",
"showTickLabels": "Show Tick Marks Labels",
"showTickLabels_tooltip": "Enable display of slider tick marks labels.",
"showTickMarks": "Show Tick Marks",
"showTickMarks_tooltip": "Enable display of slider tick marks",
"skippableItem": "Skippable Item",
"skippableItem_tooltip": "The respondent will be able to leave the Item unanswered",
"timer": "Set Timer",
"timer_tooltip": "Time to complete the Item ",
"autoAdvance": "Auto-advance",
"autoAdvance_tooltip": "The respondent will be automatically moved to the next Item after selecting a response",
"portraitLayout": "Use Portrait Layout",
"portraitLayout_tooltip": "Changes the layout of response options to a vertical rectangular card. The picture (if included) will be larger and sit on top of the text rather than to the left, but the option text will be truncated after approx. 24 characters.",
"portraitLayout_subtext": "Please note: In portrait layout, option text will be truncated after approximately 24 characters."
},
"itemType": "Item Type",
"itemValue": "Item Value",
"jan": "January",
"july": "July",
"june": "June",
"keywords": "Keywords",
"lambdaSlope": "Lambda Slope:",
"lambdaSlopeTooltip": "Percentage increase in disc deflection rate over the selected time",
"language": "Language",
"languageTooltip": "The language in which the email invitation will be created.",
"lastEdit": "Last Edit",
"lastName": "Last Name",
"lastNamePlaceholder": "Rogers",
"lastNameRequired": "Last name is required",
"latestActive": "Latest active",
"latestActivity": "Latest Activity",
"lastActive": "Last active",
"latestFinalSubscaleScore": "Latest Final Subscale Score",
"lengthOfTest": "Length of Test:",
"lessThan": "less than",
"library": "Library",
"limited": "Limited",
"limitedAccount": "Limited Account",
"limitedAccountDescription": "Allows those with Full Accounts to perform activities about/for this individual. Admins can promote this account to a Full Account.",
"link": "Link",
"linkSuccessfullyCopied": "Link successfully copied",
"linkText": "Link text",
"linkUrl": "Link url",
"liveResponseStreaming": "Live Response Streaming",
"liveResponseStreamingDescription": "Send responses to a server of your choice, as they are being entered.",
"liveResponseStreamingLabel": "Enable streaming of response data",
"loadingEllipsis": "Loading...",
"enterServerInfo": "Please enter your server information:",
"defaultIpAddress": "Default IP Address",
"defaultPort": "Default Port",
"invalidIpAddress": "Invalid IP Address",
"invalidPort": "Invalid Port",
"loris": {
"integration": "LORIS Integration",
"description": "Enabling the activation of data collection will subsequently provide you with the option to initiate the upload of data from completed Activities by consented respondents into LORIS for utilization and contextualization. Please note that only Respondents who have agreed to make their responses public will have access to complete the Activities in this Applet.",
"activateDataCollection": "Activate data collection",
"uploadPublicData": "Upload public data into LORIS",
"reportServerTooltip": "Configure the Server first on the Report Configuration tab",
"publishTooltip": "Save & publish the Applet first",
"agreementText": "I agree to decrypt the Respondents' data and upload it to LORIS in an unencrypted format. Only the data from completed Activities by consented Respondents will be uploaded.",
"successMessage": "If any new data has been collected, it has been uploaded successfully."
},
"lockDescription": "You have been inactive for 15 minutes.<br/> Log In to proceed.",
"login": "Log In",
"loginLink": "Login",
"logIntoAccount": "Log into your MindLogger account",
"logOut": "Log out",
"lv1Heading": "Lv1 Heading",
"lv2Heading": "Lv2 Heading",
"lv3Heading": "Lv3 Heading",
"lv4Heading": "Lv4 Heading",
"lv5Heading": "Lv5 Heading",
"lv6Heading": "Lv6 Heading",
"male": "Male",
"manager": "Manager",
"managers": "Team",
"mar": "March",
"mark": "Mark",
"matrixSelect": "Matrix Select",
"maxCharacters": "Max characters",
"maximumTimeAwayFromActivity": "Maximum time away from the activity before it is automatically submitted:",
"leftLabel": "Left Label",
"rightLabel": "Right Label",
"leftValue": "Left Value",
"rightValue": "Right Value",
"maxLabel": "Max Label",
"maxValue": "Max Value",
"maxValueBiggerThanMin": "Max Value should be bigger than Min Value",
"maxValuePositiveInt": "Max Value must be a positive integer",
"may": "May",
"mediaTranscript": "Media transcript",
"mediaUploaderPlaceholder": "Drop <1>.mp3</1> or <3>.wav</3> here <br /> or <7>click to browse</7>.",
"message": "Message",
"messageDoesNotRequireResponse": "Message does not require response",
"messageHint": "Formatted message without response options",
"milliseconds": "milliseconds",
"mindLoggerAdminPanel": "MindLogger Admin Panel",
"minLabel": "Min Label",
"minutes": "minutes",
"minValue": "Min Value",
"minValueLessThanMax": "Min Value should be less than Max Value",
"minValuePositiveInt": "Min Value must be a positive integer",
"mobileOnly": "Mobile Only",
"month": "Month",
"monthly": "Monthly",
"months": "Months",
"more": "More",
"moreFilters": "More Filters",
"moveItem": "Move Item",
"multipleRemoveAccessSuccess": "Access for <1>{{firstName}} {{lastName}} ({{email}})</1> to the list of Applets below has been removed successfully.",
"multipleRemoveAccessError": "Access for <1>{{firstName}} {{lastName}} ({{email}})</1> to the list of Applets below has not been removed. Please try again.",
"multipleSelectionHint": "A list of choices with a multiple answers",
"multipleSelectionPerRowHint": "Matrix format of choices with a multiple answers per row",
"multiSelect": "Multiple Selection",
"multiSelectRows": "Multiple Selection per Row",
"myAccount": "My account",
"myWorkspace": "My Workspace",
"nameAndDescription": "Name and Description",
"nameRequired": "Name is required",
"navigation": "Navigation",
"needToCreateApplet": "You need to create an Applet first",
"new": "New",
"newActivity": "New Activity",
"newActivityFlow": "New Activity Flow",
"newActivityName": "New Activity",
"newApplet": "New Applet",
"newFolder": "New Folder",
"newItem": "Item",
"newItemName": "New Item",
"newPassword": "New password",
"next": "Next",
"nickname": "Nickname",
"nicknamePlaceholder": "Sally R.",
"no": "No",
"noAlerts": "No Alerts",
"noApplets": "No Applets yet. Create your first one by clicking the ‘Add Applet’ button above.",
"noChanges": "No changes.",
"noData": "No Data",
"noAvailableData": "No available Data yet",
"noDataForFilters": "No match was found. Try to adjust filters.",
"noDataForEmptyVersionsFilter": "Select a Version to view the response data.",
"noElementsYet": "No elements yet.",
"noManagers": "No Team Members yet.",
"noManagersForApplet": "No Team Members yet. Invite your first one by clicking the ‘Add Team Member’ button above.",
"noMatchWasFound": "No match was found for '{{searchValue}}'. Try a different search word or phrase.",
"noMatchWasFoundShort": "No match was found for '{{searchValue}}'.",
"noPendingInvitations": "No pending invitations",
"noPermissions": "You do not have permission to view this content.",
"noResponseData": "No response data provided.",
"responseIdentifier": "Response Identifier",
"noResponseIdentifier": "No response identifier yet.",
"viewingResponsesSubmitted": "Viewing responses submitted on:",
"responseIdentifierWithColon": "Response Identifier:",
"versionWithColon": "Version:",
"noRespondents": "No Respondents yet.",
"noParticipants": "No Participants yet.",
"noRespondentsForApplet": "This applet has no respondents",
"noParticipantsForApplet": "This applet has no participants",
"noRespondentsToSelect": "No respondents to select.",
"noRespondentsYet": "No respondents yet.",
"noSelectedItemsYet": "No selected items yet.",
"noSharedWorkspaces": "No shared Workspaces",
"notEqual": "is not equal to",
"notEqualToOption": "is not equal to",
"notes": "Notes",
"notFound": "Nothing was found according to your request. Try wording your request differently.",
"notification": "Notification",
"notifications": "Notifications",
"notificationTime": "Notification time",
"noTimeLimit": "No time limit",
"notIncludesOption": "doesn’t include",
"nov": "November",
"noVersions": "No versions yet.",
"numberOfConsecutiveDays": "Number of consecutive days the user does not complete the activity",
"numberOfConsecutiveMonths": "Number of consecutive months the user does not complete the Activity",
"deadlineForActivityCompletion": "Deadline for Activity completion, otherwise the Reminder will be sent",
"numberOfTrials": "Number Of Trials:",
"numberOfTrialsTooltip": "Number of practice rounds before the test round",
"numberSelect": "Number Selection",
"numberSelection": "Number Selection",
"numberSelectionHint": "Dropdown list of numeric values with a single answer",
"numberValueIsRequired": "Numerical value is required",
"oct": "October",
"of": "of",
"ok": "Ok",
"once": "Once",
"oneTimeCompletion": "One-Time completion",
"onlyAdminPanelActivity": "This Activity is intended for reviewer assessment only",
"onlyAdminPanelActivityTooltip": "This Activity will not be shown to respondents, but only to a reviewer to provide an assessment of the respondent’s answers. Only single selection, multiple selection, and slider items are supported in these types of activities. More info here:",
"option": "Option",
"optionText": "Option Text",
"textForOption": "Text for Option {{- index }}",
"placeholderForNoneOption": "None",
"titleForNoneOption": "“None“ Option",
"descriptionForNoneOption": "If selected, this option will disable other options, and other options already selected by the respondent will not be submitted.",
"orderedList": "Ordered list",
"outsideOf": "outside of",
"overviewInstruction": "Overview Instruction",
"ownerEmail": "Owner email",
"participantAlreadyInvited": "Participant already invited",
"participants": "Participants",
"participantTag": {
"": "No selection",
"Child": "Child",
"Parent": "Parent/Guardian",
"Teacher": "Teacher",
"Team": "Team"
},
"password": "Password",
"passwordBlankSpaces": "Password must not contain spaces.",
"passwordCapitalLetter": "At least one capital letter must be included.",
"passwordConfirmationRequired": "Please confirm your password",
"passwordLowercaseLetter": "At least one lowercase letter must be included.",
"passwordMatchError": "Passwords do not match.",
"passwordMinLength": "Password must be at least {{chars}} characters.",
"passwordNumber": "At least one number must be included.",
"passwordRequired": "Password is required",
"passwordResetLink": "A password reset link is sent to {{email}} <br /> if that email is associated with a MindLogger account.",
"passwordResetSuccessful": "Your password has been reset successfully. Please log in with your new password.",
"passwordSpecialChar": "At least one special character must be included.",
"passwordsMustMatch": "Your passwords do not match",
"pendingInvitations": "Pending Invitations",
"pendingInvite": "Full (Pending)",
"performanceTasks": {
"abTrailsIpad": "A/B Trails iPad",
"abTrailsMobile": "A/B Trails Mobile",
"flanker": "Simple & Choice Reaction Time Task Builder",
"gyroscope": "CST Gyroscope",
"touch": "CST Touch"
},
"performanceTasksDesc": {
"abTrails": "A/B Trails",
"flanker": "This Activity contains Flanker Item. The timestamps collected for an android are not as accurate as iOS devices.",
"gyroscope": "This Activity contains Stability Tracker (Gyroscope) Item.",
"touch": "This Activity contains Stability Tracker (Touch) Item."
},
"periodRequired": "Period is required",
"personalInvitation": "Personal Invitation",
"photo": "Photo",
"photoHint": "Photo capture task",
"photoResponseDescription": "The respondent will be able to take or upload a photo.",
"photoResponseTitle": "Photo Response",
"pleaseSelectActivity": "Please select an Activity",
"pleaseSelectAppletToSchedule": "Please select Applet to schedule for the Respondent: ",
"pleaseSelectAppletToInvite": "Please select the Applet to invite the Respondent: ",
"pleaseSelectArea": "Please select the area to display",
"pleaseSelectItem": "Please select an Item",
"positiveInteger": "Positive Integer",
"practiceInstruction": "Practice Round Instruction",
"preview": "Preview",
"printItems": "Print Items",
"printItemsTooltip": "Respondent’s responses that will be displayed in the report",
"privacy": "Privacy",
"publicEncryptionKey": "Public encryption key",
"publicLink": "Public Link",
"publicLinkAccountNotRequired": "This link allows participants to join the study with a Limited Account.",
"publicLinkAccountRequired": "This link requires participants to create a Full Account to join the study.",
"publicLinkCreate": "Create Public Link",
"publicLinkCreateAccountNotRequired": "No, an account is not required",
"publicLinkCreateAccountRequired": "Yes, an account is required",
"publicLinkCreateDescription": "A public link allows anyone to easily join this study as a participant. Do you want to require those who join via this link to create an account?",
"publicLinkCreateError": "Unable to create public link. Please try again.",
"publicLinkDeleteDescription": "Are you sure you want to delete this public link? Once deleted, the link will become invalid, and participants will no longer be able to join the study through it.",
"publicLinkDeleteError": "Unable to delete public link. Please try again.",
"publicLinkDescription": "Allow anyone to easily join this study as a participant.",
"publicLinkTooltip": "A link that will allow anyone to invite themselves to this study as a respondent",
"publish": "Publish",
"publishApplet": "Publish Applet",
"publishAppletDescription": "Once the Applet is published, it will be added to all MindLogger respondents.",
"publishAppletPopupDescription": "Are you sure you want to add this Applet to all MindLogger respondents?",
"publishAppletPopupErrorDescription": "The Applet <1>{{name}}</1> has not been <3>{{status}}</3>. Please try again.",
"publishAppletPopupSuccess": "The Applet [Applet name] has been published successfully.",
"publishAppletPopupSuccessDescription": "The Applet <1>{{name}}</1> has been <3>{{status}}</3> successfully.",
"publishAppletPopupTitle": "Publish Applet",
"published": "published",
"quote": "Quote",
"random": "Random",
"rangeOfScores": "Possible Range of Scores",
"record": "Record",
"recordAudio": "Record <br /> Audio",
"redo": "Redo",
"refresh": "Refresh",
"reminder": "Reminder",
"reminderTime": "Reminder time",
"remove": "Remove",