-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathconversation.php
62 lines (61 loc) · 1.91 KB
/
conversation.php
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
<?php
return [
'selectSurvey' => 'Which form do you want to complete?',
'surveySelected' => 'You selected :name. :description',
'oops' => 'Oops, something went wrong on our side. Try again later.',
'thanksForSubmitting' => 'Thanks for submitting your response.',
'chooseALanguage' => 'Choose one of the available languages:',
'showMoreInfo' => 'Send ? to show more information. ',
'cancel' => 'Cancel',
'goToListOfSurveys' => 'Go to list of surveys',
'cancelValue' => 'cancel',
'goToListOfSurveysValue' => 'list',
'sorryIDidntCatchThat' => "Sorry, I didn't catch that",
'whatDoYouWantToDo' => 'What do you want to do?',
'thankYou' => 'Thank you!',
'shouldSendResponses' => 'There are no more questions. Would you like to send your responses?',
'yes' => 'YES',
'no' => 'NO',
'requestToFillIn' => 'Please, fill in the question.',
'hints' => [
'checkboxes' => 'Hint: Select all that apply using a comma separated format. Example: 1,2',
'location' => 'Hint: Add as much detail as possible about the address to improve the results. Example: Upper Hill, Nairobi, Kenya',
'date' => 'Supported date format: YYYY-MM-DD',
'locationGroup' => 'Which country does this address belong to?',
],
'screen' => [
'next' => [
'value' => 'N',
'text' => 'Next',
],
'previous' => [
'value' => 'P',
'text' => 'Previous',
],
'skip' => [
'value' => 'S',
'text' => 'Skip',
],
'info' => [
'value' => '?',
'text' => 'Show more information',
],
'ok' => [
'value' => 'O',
'text' => 'Ok',
],
'cancel' => [
'value' => 'C',
'text' => 'Cancel',
],
],
'omissionIndicator' => '...',
'geolocation' => [
'noResults' => 'We could not match that address.',
'chooseAddress' => 'Select a match address',
'searchAgain' => 'Search again',
'groupTypes' => [
'country' => 'country',
],
],
];