@agendize/az-i18n 0.0.97 → 0.0.98-test01
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +25 -25
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -4
- package/dist/langs/en.json +220 -220
- package/dist/langs/fr.json +1773 -1771
- package/package.json +36 -36
package/README.md
CHANGED
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
# Agendize i18n Module
|
|
2
|
-
|
|
3
|
-
## Description
|
|
4
|
-
|
|
5
|
-
i18n module for Agendize Component
|
|
6
|
-
|
|
7
|
-
## Install
|
|
8
|
-
|
|
9
|
-
To install on your project
|
|
10
|
-
|
|
11
|
-
```sh
|
|
12
|
-
yarn add @agendize/az-i18n
|
|
13
|
-
# or
|
|
14
|
-
npm install @agendize/az-i18n
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
**Global**
|
|
18
|
-
|
|
19
|
-
***Components***
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
```js
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
|
|
1
|
+
# Agendize i18n Module
|
|
2
|
+
|
|
3
|
+
## Description
|
|
4
|
+
|
|
5
|
+
i18n module for Agendize Component
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
To install on your project
|
|
10
|
+
|
|
11
|
+
```sh
|
|
12
|
+
yarn add @agendize/az-i18n
|
|
13
|
+
# or
|
|
14
|
+
npm install @agendize/az-i18n
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
**Global**
|
|
18
|
+
|
|
19
|
+
***Components***
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
```js
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare type Locale = 'en' | 'fr';
|
|
2
|
-
declare const messages: Record<Locale, {}>;
|
|
3
|
-
export { Locale, messages };
|
|
1
|
+
declare type Locale = 'en' | 'fr';
|
|
2
|
+
declare const messages: Record<Locale, {}>;
|
|
3
|
+
export { Locale, messages };
|
|
4
4
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import en from './langs/en.json';
|
|
2
|
-
import fr from './langs/fr.json';
|
|
3
|
-
var messages = { 'en': en, 'fr': fr };
|
|
4
|
-
export { messages };
|
|
1
|
+
import en from './langs/en.json';
|
|
2
|
+
import fr from './langs/fr.json';
|
|
3
|
+
var messages = { 'en': en, 'fr': fr };
|
|
4
|
+
export { messages };
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/dist/langs/en.json
CHANGED
|
@@ -1,220 +1,220 @@
|
|
|
1
|
-
{
|
|
2
|
-
"common": {
|
|
3
|
-
"field": {
|
|
4
|
-
"mandatory-not-filled": "Mandatory field(s) not filled in"
|
|
5
|
-
}
|
|
6
|
-
},
|
|
7
|
-
"agenda": {
|
|
8
|
-
"appointment": {
|
|
9
|
-
"new": "New",
|
|
10
|
-
"new-aria-label": "Add a new element",
|
|
11
|
-
"error": {
|
|
12
|
-
"date-not-available": {
|
|
13
|
-
"boxTitle": "New appointment",
|
|
14
|
-
"title": "The staff is already busy in this slot",
|
|
15
|
-
"description": "An appointment is already positioned on this slot.\nYou can modify the time of the appointment by clicking on the button provided for this purpose or confirm the appointment by ignoring the alert.\n\nWould you like to continue this action?",
|
|
16
|
-
"confirm": "Confirm",
|
|
17
|
-
"cancel": "Cancel"
|
|
18
|
-
},
|
|
19
|
-
"staff-not-available": {
|
|
20
|
-
"boxTitle": "New appointment",
|
|
21
|
-
"title": "Staff not available",
|
|
22
|
-
"description": "Staff not available\n\nWould you like to continue this action?",
|
|
23
|
-
"confirm": "Confirm",
|
|
24
|
-
"cancel": "Cancel"
|
|
25
|
-
},
|
|
26
|
-
"unknown": {
|
|
27
|
-
"boxTitle": "Error",
|
|
28
|
-
"title": "An error occurred",
|
|
29
|
-
"cancel": "Cancel"
|
|
30
|
-
}
|
|
31
|
-
},
|
|
32
|
-
"details": {
|
|
33
|
-
"edit-aria-label": "Edit appointment",
|
|
34
|
-
"close-aria-label": "Close appointment details",
|
|
35
|
-
"start": "Start",
|
|
36
|
-
"end": "End",
|
|
37
|
-
"location": {
|
|
38
|
-
"visio": "Join the visio-conference",
|
|
39
|
-
"agence": "Compute the journey",
|
|
40
|
-
"phone": "Call the contact"
|
|
41
|
-
},
|
|
42
|
-
"actions": {
|
|
43
|
-
"inProgress": {
|
|
44
|
-
"0": "Démarrer le rendez-vous",
|
|
45
|
-
"1": "Confirmer le changement de status : démarré",
|
|
46
|
-
"2": "Confirmer le changement de status : démarré",
|
|
47
|
-
"3": "Chargement",
|
|
48
|
-
"4": "Rendez-vous démarré"
|
|
49
|
-
},
|
|
50
|
-
"completed": {
|
|
51
|
-
"0": "Terminer le rendez-vous",
|
|
52
|
-
"1": "Confirmer le changement de status : terminé",
|
|
53
|
-
"2": "Confirmer le changement de status : terminé",
|
|
54
|
-
"3": "Chargement",
|
|
55
|
-
"4": "Rendez-vous terminé"
|
|
56
|
-
},
|
|
57
|
-
"noShow": {
|
|
58
|
-
"0": "Le client n'est pas venu",
|
|
59
|
-
"1": "Confirmer le changement de status : pas venu",
|
|
60
|
-
"2": "Confirmer le changement de status : pas venu",
|
|
61
|
-
"3": "Chargement",
|
|
62
|
-
"4": "Le client n'est pas venu"
|
|
63
|
-
},
|
|
64
|
-
"cancelled": {
|
|
65
|
-
"0": "Annuler le rendez-vous",
|
|
66
|
-
"1": "Confirmer le changement de status : annulé",
|
|
67
|
-
"2": "Confirmer le changement de status : annulé",
|
|
68
|
-
"3": "Chargement",
|
|
69
|
-
"4": "Rendez-vous annulé"
|
|
70
|
-
}
|
|
71
|
-
},
|
|
72
|
-
"section-details": {
|
|
73
|
-
"title": "Appointment details",
|
|
74
|
-
"company": "Company",
|
|
75
|
-
"service": "Service",
|
|
76
|
-
"staff": "Staff",
|
|
77
|
-
"status": "Status",
|
|
78
|
-
"contact": "Your contact",
|
|
79
|
-
"contact-ref": "Reference",
|
|
80
|
-
"contact-email": "Email",
|
|
81
|
-
"contact-phone": "Phone"
|
|
82
|
-
},
|
|
83
|
-
"section-additional-data": {
|
|
84
|
-
"title": "Additional informations"
|
|
85
|
-
},
|
|
86
|
-
"status": {
|
|
87
|
-
"accepted": "Accepted",
|
|
88
|
-
"inProgress": "In progress",
|
|
89
|
-
"completed": "Completed",
|
|
90
|
-
"noShow": "No show",
|
|
91
|
-
"pending": "Pending",
|
|
92
|
-
"cancelled": "Cancelled",
|
|
93
|
-
"declined": "Declined"
|
|
94
|
-
}
|
|
95
|
-
},
|
|
96
|
-
"tooltip": {
|
|
97
|
-
"google": "Google appointment",
|
|
98
|
-
"microsoft": "Microsoft appointment",
|
|
99
|
-
"personal": "Personal appointment"
|
|
100
|
-
}
|
|
101
|
-
},
|
|
102
|
-
"title": {
|
|
103
|
-
"main": "Calendar",
|
|
104
|
-
"day": "{date}",
|
|
105
|
-
"week": "{start} - {end}",
|
|
106
|
-
"week-number": "Week {week}",
|
|
107
|
-
"month": "{date}",
|
|
108
|
-
"daily": "Day",
|
|
109
|
-
"weekly": "Week",
|
|
110
|
-
"view-selector-aria-label": "Select a vue",
|
|
111
|
-
"mobile": {
|
|
112
|
-
"view": "Select a vue",
|
|
113
|
-
"users": "Select users"
|
|
114
|
-
}
|
|
115
|
-
},
|
|
116
|
-
"nav": {
|
|
117
|
-
"menu-aria-label": "Open the menu",
|
|
118
|
-
"previous-aria-label": "Previous period",
|
|
119
|
-
"calendar-aria-label": "Select a custom period",
|
|
120
|
-
"next-aria-label": "Next period"
|
|
121
|
-
},
|
|
122
|
-
"actions": {
|
|
123
|
-
"filter-aria-label": "Open filter menu",
|
|
124
|
-
"fav-aria-label": "Save vue as favorite",
|
|
125
|
-
"settings-aria-label": "Open settings menu",
|
|
126
|
-
"more-options-aria-label": "Open more options menu",
|
|
127
|
-
"users-aria-label": "Add a user"
|
|
128
|
-
},
|
|
129
|
-
"user": {
|
|
130
|
-
"modal": {
|
|
131
|
-
"title": "Add a calendar",
|
|
132
|
-
"subtitle": "Staff selected ({max} maximum):",
|
|
133
|
-
"action": "Add calendars"
|
|
134
|
-
}
|
|
135
|
-
},
|
|
136
|
-
"reschedule": {
|
|
137
|
-
"quick": {
|
|
138
|
-
"title": "Reschedule appointment",
|
|
139
|
-
"message": "The appointment has been modified, do you confirm the modification?",
|
|
140
|
-
"draft-warning": "An appointment is being edited, do you want to leave anyway ?",
|
|
141
|
-
"confirm": "Confirm",
|
|
142
|
-
"start": "Start",
|
|
143
|
-
"end": "End",
|
|
144
|
-
"staff": "Staff"
|
|
145
|
-
},
|
|
146
|
-
"success": "Appointment modification done with success",
|
|
147
|
-
"error": "An error occurred during the reschedule process",
|
|
148
|
-
"error-1000": "Staff not available in this company",
|
|
149
|
-
"error-1001": "Daily quota reached",
|
|
150
|
-
"error-1002": "Weekly quota reached",
|
|
151
|
-
"error-1003": "Scheduling settings violated",
|
|
152
|
-
"error-1004": "Resource not available"
|
|
153
|
-
},
|
|
154
|
-
"filter": {
|
|
155
|
-
"title": "Filters",
|
|
156
|
-
"personalFilter": "Personal appointment",
|
|
157
|
-
"externalFilter": "External appointment",
|
|
158
|
-
"cancelledFilter": "Cancelled appointment"
|
|
159
|
-
},
|
|
160
|
-
"othersAgenda": {
|
|
161
|
-
"title": "Others agendas",
|
|
162
|
-
"add": "Add agenda"
|
|
163
|
-
}
|
|
164
|
-
},
|
|
165
|
-
"form": {
|
|
166
|
-
"submit": "Submit form"
|
|
167
|
-
},
|
|
168
|
-
"queue": {
|
|
169
|
-
"title": "Queue",
|
|
170
|
-
"working-hours": {
|
|
171
|
-
"open-today": "Open today",
|
|
172
|
-
"closed": "Closed",
|
|
173
|
-
"title": "Opening times"
|
|
174
|
-
},
|
|
175
|
-
"location": {
|
|
176
|
-
"itinerary": "Itinerary"
|
|
177
|
-
},
|
|
178
|
-
"contact": {
|
|
179
|
-
"contact-us": "Contact us",
|
|
180
|
-
"call-us": "Call us",
|
|
181
|
-
"send-message": "Send a message"
|
|
182
|
-
},
|
|
183
|
-
"form": {
|
|
184
|
-
"firstname": {
|
|
185
|
-
"title": "Your first name",
|
|
186
|
-
"placeholder": "Enter @.lower:queue.form.firstname.title"
|
|
187
|
-
},
|
|
188
|
-
"lastname": {
|
|
189
|
-
"title": "Your last name",
|
|
190
|
-
"placeholder": "Enter @.lower:queue.form.lastname.title"
|
|
191
|
-
},
|
|
192
|
-
"phone": {
|
|
193
|
-
"title": "Your mobile phone number",
|
|
194
|
-
"placeholder": "Enter a phone number"
|
|
195
|
-
},
|
|
196
|
-
"submit": "Add me to queue"
|
|
197
|
-
},
|
|
198
|
-
"powered": "Powered by Agendize",
|
|
199
|
-
"waiting": {
|
|
200
|
-
"people": "{nb} peoples",
|
|
201
|
-
"waiting-time": "About {time} minute(s) of waiting",
|
|
202
|
-
"number-in-queue": "You are number {nb} in the queue",
|
|
203
|
-
"recap": "There are {nb} people(s) ahead. Your waiting time is estimate to {time} minute(s)"
|
|
204
|
-
}
|
|
205
|
-
},
|
|
206
|
-
"settings": {
|
|
207
|
-
"common": {
|
|
208
|
-
"day": {
|
|
209
|
-
"monday": "Monday",
|
|
210
|
-
"tuesday": "Tuesday",
|
|
211
|
-
"wednesday": "Wednesday",
|
|
212
|
-
"thursday": "Thursday",
|
|
213
|
-
"friday": "Friday",
|
|
214
|
-
"saturday": "Saturday",
|
|
215
|
-
"sunday": "Sunday",
|
|
216
|
-
"closed": "Closed"
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"field": {
|
|
4
|
+
"mandatory-not-filled": "Mandatory field(s) not filled in"
|
|
5
|
+
}
|
|
6
|
+
},
|
|
7
|
+
"agenda": {
|
|
8
|
+
"appointment": {
|
|
9
|
+
"new": "New",
|
|
10
|
+
"new-aria-label": "Add a new element",
|
|
11
|
+
"error": {
|
|
12
|
+
"date-not-available": {
|
|
13
|
+
"boxTitle": "New appointment",
|
|
14
|
+
"title": "The staff is already busy in this slot",
|
|
15
|
+
"description": "An appointment is already positioned on this slot.\nYou can modify the time of the appointment by clicking on the button provided for this purpose or confirm the appointment by ignoring the alert.\n\nWould you like to continue this action?",
|
|
16
|
+
"confirm": "Confirm",
|
|
17
|
+
"cancel": "Cancel"
|
|
18
|
+
},
|
|
19
|
+
"staff-not-available": {
|
|
20
|
+
"boxTitle": "New appointment",
|
|
21
|
+
"title": "Staff not available",
|
|
22
|
+
"description": "Staff not available\n\nWould you like to continue this action?",
|
|
23
|
+
"confirm": "Confirm",
|
|
24
|
+
"cancel": "Cancel"
|
|
25
|
+
},
|
|
26
|
+
"unknown": {
|
|
27
|
+
"boxTitle": "Error",
|
|
28
|
+
"title": "An error occurred",
|
|
29
|
+
"cancel": "Cancel"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"details": {
|
|
33
|
+
"edit-aria-label": "Edit appointment",
|
|
34
|
+
"close-aria-label": "Close appointment details",
|
|
35
|
+
"start": "Start",
|
|
36
|
+
"end": "End",
|
|
37
|
+
"location": {
|
|
38
|
+
"visio": "Join the visio-conference",
|
|
39
|
+
"agence": "Compute the journey",
|
|
40
|
+
"phone": "Call the contact"
|
|
41
|
+
},
|
|
42
|
+
"actions": {
|
|
43
|
+
"inProgress": {
|
|
44
|
+
"0": "Démarrer le rendez-vous",
|
|
45
|
+
"1": "Confirmer le changement de status : démarré",
|
|
46
|
+
"2": "Confirmer le changement de status : démarré",
|
|
47
|
+
"3": "Chargement",
|
|
48
|
+
"4": "Rendez-vous démarré"
|
|
49
|
+
},
|
|
50
|
+
"completed": {
|
|
51
|
+
"0": "Terminer le rendez-vous",
|
|
52
|
+
"1": "Confirmer le changement de status : terminé",
|
|
53
|
+
"2": "Confirmer le changement de status : terminé",
|
|
54
|
+
"3": "Chargement",
|
|
55
|
+
"4": "Rendez-vous terminé"
|
|
56
|
+
},
|
|
57
|
+
"noShow": {
|
|
58
|
+
"0": "Le client n'est pas venu",
|
|
59
|
+
"1": "Confirmer le changement de status : pas venu",
|
|
60
|
+
"2": "Confirmer le changement de status : pas venu",
|
|
61
|
+
"3": "Chargement",
|
|
62
|
+
"4": "Le client n'est pas venu"
|
|
63
|
+
},
|
|
64
|
+
"cancelled": {
|
|
65
|
+
"0": "Annuler le rendez-vous",
|
|
66
|
+
"1": "Confirmer le changement de status : annulé",
|
|
67
|
+
"2": "Confirmer le changement de status : annulé",
|
|
68
|
+
"3": "Chargement",
|
|
69
|
+
"4": "Rendez-vous annulé"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"section-details": {
|
|
73
|
+
"title": "Appointment details",
|
|
74
|
+
"company": "Company",
|
|
75
|
+
"service": "Service",
|
|
76
|
+
"staff": "Staff",
|
|
77
|
+
"status": "Status",
|
|
78
|
+
"contact": "Your contact",
|
|
79
|
+
"contact-ref": "Reference",
|
|
80
|
+
"contact-email": "Email",
|
|
81
|
+
"contact-phone": "Phone"
|
|
82
|
+
},
|
|
83
|
+
"section-additional-data": {
|
|
84
|
+
"title": "Additional informations"
|
|
85
|
+
},
|
|
86
|
+
"status": {
|
|
87
|
+
"accepted": "Accepted",
|
|
88
|
+
"inProgress": "In progress",
|
|
89
|
+
"completed": "Completed",
|
|
90
|
+
"noShow": "No show",
|
|
91
|
+
"pending": "Pending",
|
|
92
|
+
"cancelled": "Cancelled",
|
|
93
|
+
"declined": "Declined"
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"tooltip": {
|
|
97
|
+
"google": "Google appointment",
|
|
98
|
+
"microsoft": "Microsoft appointment",
|
|
99
|
+
"personal": "Personal appointment"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"title": {
|
|
103
|
+
"main": "Calendar",
|
|
104
|
+
"day": "{date}",
|
|
105
|
+
"week": "{start} - {end}",
|
|
106
|
+
"week-number": "Week {week}",
|
|
107
|
+
"month": "{date}",
|
|
108
|
+
"daily": "Day",
|
|
109
|
+
"weekly": "Week",
|
|
110
|
+
"view-selector-aria-label": "Select a vue",
|
|
111
|
+
"mobile": {
|
|
112
|
+
"view": "Select a vue",
|
|
113
|
+
"users": "Select users"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"nav": {
|
|
117
|
+
"menu-aria-label": "Open the menu",
|
|
118
|
+
"previous-aria-label": "Previous period",
|
|
119
|
+
"calendar-aria-label": "Select a custom period",
|
|
120
|
+
"next-aria-label": "Next period"
|
|
121
|
+
},
|
|
122
|
+
"actions": {
|
|
123
|
+
"filter-aria-label": "Open filter menu",
|
|
124
|
+
"fav-aria-label": "Save vue as favorite",
|
|
125
|
+
"settings-aria-label": "Open settings menu",
|
|
126
|
+
"more-options-aria-label": "Open more options menu",
|
|
127
|
+
"users-aria-label": "Add a user"
|
|
128
|
+
},
|
|
129
|
+
"user": {
|
|
130
|
+
"modal": {
|
|
131
|
+
"title": "Add a calendar",
|
|
132
|
+
"subtitle": "Staff selected ({max} maximum):",
|
|
133
|
+
"action": "Add calendars"
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"reschedule": {
|
|
137
|
+
"quick": {
|
|
138
|
+
"title": "Reschedule appointment",
|
|
139
|
+
"message": "The appointment has been modified, do you confirm the modification?",
|
|
140
|
+
"draft-warning": "An appointment is being edited, do you want to leave anyway ?",
|
|
141
|
+
"confirm": "Confirm",
|
|
142
|
+
"start": "Start",
|
|
143
|
+
"end": "End",
|
|
144
|
+
"staff": "Staff"
|
|
145
|
+
},
|
|
146
|
+
"success": "Appointment modification done with success",
|
|
147
|
+
"error": "An error occurred during the reschedule process",
|
|
148
|
+
"error-1000": "Staff not available in this company",
|
|
149
|
+
"error-1001": "Daily quota reached",
|
|
150
|
+
"error-1002": "Weekly quota reached",
|
|
151
|
+
"error-1003": "Scheduling settings violated",
|
|
152
|
+
"error-1004": "Resource not available"
|
|
153
|
+
},
|
|
154
|
+
"filter": {
|
|
155
|
+
"title": "Filters",
|
|
156
|
+
"personalFilter": "Personal appointment",
|
|
157
|
+
"externalFilter": "External appointment",
|
|
158
|
+
"cancelledFilter": "Cancelled appointment"
|
|
159
|
+
},
|
|
160
|
+
"othersAgenda": {
|
|
161
|
+
"title": "Others agendas",
|
|
162
|
+
"add": "Add agenda"
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"form": {
|
|
166
|
+
"submit": "Submit form"
|
|
167
|
+
},
|
|
168
|
+
"queue": {
|
|
169
|
+
"title": "Queue",
|
|
170
|
+
"working-hours": {
|
|
171
|
+
"open-today": "Open today",
|
|
172
|
+
"closed": "Closed",
|
|
173
|
+
"title": "Opening times"
|
|
174
|
+
},
|
|
175
|
+
"location": {
|
|
176
|
+
"itinerary": "Itinerary"
|
|
177
|
+
},
|
|
178
|
+
"contact": {
|
|
179
|
+
"contact-us": "Contact us",
|
|
180
|
+
"call-us": "Call us",
|
|
181
|
+
"send-message": "Send a message"
|
|
182
|
+
},
|
|
183
|
+
"form": {
|
|
184
|
+
"firstname": {
|
|
185
|
+
"title": "Your first name",
|
|
186
|
+
"placeholder": "Enter @.lower:queue.form.firstname.title"
|
|
187
|
+
},
|
|
188
|
+
"lastname": {
|
|
189
|
+
"title": "Your last name",
|
|
190
|
+
"placeholder": "Enter @.lower:queue.form.lastname.title"
|
|
191
|
+
},
|
|
192
|
+
"phone": {
|
|
193
|
+
"title": "Your mobile phone number",
|
|
194
|
+
"placeholder": "Enter a phone number"
|
|
195
|
+
},
|
|
196
|
+
"submit": "Add me to queue"
|
|
197
|
+
},
|
|
198
|
+
"powered": "Powered by Agendize",
|
|
199
|
+
"waiting": {
|
|
200
|
+
"people": "{nb} peoples",
|
|
201
|
+
"waiting-time": "About {time} minute(s) of waiting",
|
|
202
|
+
"number-in-queue": "You are number {nb} in the queue",
|
|
203
|
+
"recap": "There are {nb} people(s) ahead. Your waiting time is estimate to {time} minute(s)"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"settings": {
|
|
207
|
+
"common": {
|
|
208
|
+
"day": {
|
|
209
|
+
"monday": "Monday",
|
|
210
|
+
"tuesday": "Tuesday",
|
|
211
|
+
"wednesday": "Wednesday",
|
|
212
|
+
"thursday": "Thursday",
|
|
213
|
+
"friday": "Friday",
|
|
214
|
+
"saturday": "Saturday",
|
|
215
|
+
"sunday": "Sunday",
|
|
216
|
+
"closed": "Closed"
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
220
|
+
}
|