@jealous-robot-dev/shared-types-responses 1.8.17 → 1.8.21
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.
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { PhrasedEventType } from './events';
|
|
2
|
+
import { Language, Month, Weekday } from '../common';
|
|
3
|
+
export interface SearchEventsPhrases {
|
|
4
|
+
common: {
|
|
5
|
+
languages: Language[];
|
|
6
|
+
event_types: PhrasedEventType[];
|
|
7
|
+
months: Month[];
|
|
8
|
+
days: Weekday[];
|
|
9
|
+
load_more: string;
|
|
10
|
+
show_more: string;
|
|
11
|
+
clear_all: string;
|
|
12
|
+
show_results: string;
|
|
13
|
+
save: string;
|
|
14
|
+
clear: string;
|
|
15
|
+
timing: {
|
|
16
|
+
AM: string;
|
|
17
|
+
PM: string;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
filter: {
|
|
21
|
+
labels: {
|
|
22
|
+
filters: string;
|
|
23
|
+
times: string;
|
|
24
|
+
};
|
|
25
|
+
filters: {
|
|
26
|
+
price_range: {
|
|
27
|
+
label: string;
|
|
28
|
+
currency: string;
|
|
29
|
+
min_price: string;
|
|
30
|
+
max_price: string;
|
|
31
|
+
};
|
|
32
|
+
language: {
|
|
33
|
+
label: string;
|
|
34
|
+
};
|
|
35
|
+
start_time: {
|
|
36
|
+
label: string;
|
|
37
|
+
time_mode: string;
|
|
38
|
+
};
|
|
39
|
+
duration: {
|
|
40
|
+
label: string;
|
|
41
|
+
};
|
|
42
|
+
avarage_raiting: {
|
|
43
|
+
label: string;
|
|
44
|
+
};
|
|
45
|
+
tags: {
|
|
46
|
+
label: string;
|
|
47
|
+
placeholder: string;
|
|
48
|
+
add: string;
|
|
49
|
+
selected_tags: string;
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -111,6 +111,7 @@ export interface EventManagerPhrases {
|
|
|
111
111
|
single_session: string;
|
|
112
112
|
multiple_sessions: string;
|
|
113
113
|
select_weekdays: string;
|
|
114
|
+
select_duration: string;
|
|
114
115
|
minutes: string;
|
|
115
116
|
hours: string;
|
|
116
117
|
compose_schedule: string;
|
|
@@ -128,6 +129,10 @@ export interface EventManagerPhrases {
|
|
|
128
129
|
time_is_taken: string;
|
|
129
130
|
};
|
|
130
131
|
};
|
|
132
|
+
capacity: {
|
|
133
|
+
description: string;
|
|
134
|
+
guests: string;
|
|
135
|
+
};
|
|
131
136
|
pics: {
|
|
132
137
|
warning: string;
|
|
133
138
|
description: string;
|
|
@@ -147,7 +152,6 @@ export interface EventManagerPhrases {
|
|
|
147
152
|
suspend: {
|
|
148
153
|
description: string;
|
|
149
154
|
note: string;
|
|
150
|
-
cannot: string;
|
|
151
155
|
};
|
|
152
156
|
unsuspend: {
|
|
153
157
|
description: string;
|