@voyantjs/i18n 0.16.0
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/dist/admin/app-dmc.d.ts +22 -0
- package/dist/admin/app-dmc.d.ts.map +1 -0
- package/dist/admin/app-dmc.js +29 -0
- package/dist/admin/app-operator.d.ts +23 -0
- package/dist/admin/app-operator.d.ts.map +1 -0
- package/dist/admin/app-operator.js +17 -0
- package/dist/admin/auth.d.ts +247 -0
- package/dist/admin/auth.d.ts.map +1 -0
- package/dist/admin/auth.js +166 -0
- package/dist/admin/availability.d.ts +689 -0
- package/dist/admin/availability.d.ts.map +1 -0
- package/dist/admin/availability.js +686 -0
- package/dist/admin/bookings.d.ts +1067 -0
- package/dist/admin/bookings.d.ts.map +1 -0
- package/dist/admin/bookings.js +1064 -0
- package/dist/admin/chrome.d.ts +36 -0
- package/dist/admin/chrome.d.ts.map +1 -0
- package/dist/admin/chrome.js +24 -0
- package/dist/admin/contacts.d.ts +269 -0
- package/dist/admin/contacts.d.ts.map +1 -0
- package/dist/admin/contacts.js +266 -0
- package/dist/admin/core-dmc.d.ts +21 -0
- package/dist/admin/core-dmc.d.ts.map +1 -0
- package/dist/admin/core-dmc.js +14 -0
- package/dist/admin/core-operator.d.ts +117 -0
- package/dist/admin/core-operator.d.ts.map +1 -0
- package/dist/admin/core-operator.js +78 -0
- package/dist/admin/crm-operator.d.ts +579 -0
- package/dist/admin/crm-operator.d.ts.map +1 -0
- package/dist/admin/crm-operator.js +576 -0
- package/dist/admin/dashboard-operator.d.ts +83 -0
- package/dist/admin/dashboard-operator.d.ts.map +1 -0
- package/dist/admin/dashboard-operator.js +80 -0
- package/dist/admin/distribution-dmc.d.ts +1804 -0
- package/dist/admin/distribution-dmc.d.ts.map +1 -0
- package/dist/admin/distribution-dmc.js +1181 -0
- package/dist/admin/dmc-nav.d.ts +55 -0
- package/dist/admin/dmc-nav.d.ts.map +1 -0
- package/dist/admin/dmc-nav.js +38 -0
- package/dist/admin/finance.d.ts +377 -0
- package/dist/admin/finance.d.ts.map +1 -0
- package/dist/admin/finance.js +374 -0
- package/dist/admin/operator-nav.d.ts +76 -0
- package/dist/admin/operator-nav.d.ts.map +1 -0
- package/dist/admin/operator-nav.js +52 -0
- package/dist/admin/organizations.d.ts +87 -0
- package/dist/admin/organizations.d.ts.map +1 -0
- package/dist/admin/organizations.js +84 -0
- package/dist/admin/pricing-operator.d.ts +233 -0
- package/dist/admin/pricing-operator.d.ts.map +1 -0
- package/dist/admin/pricing-operator.js +230 -0
- package/dist/admin/products-dmc.d.ts +239 -0
- package/dist/admin/products-dmc.d.ts.map +1 -0
- package/dist/admin/products-dmc.js +236 -0
- package/dist/admin/products-operator.d.ts +999 -0
- package/dist/admin/products-operator.d.ts.map +1 -0
- package/dist/admin/products-operator.js +996 -0
- package/dist/admin/resources.d.ts +653 -0
- package/dist/admin/resources.d.ts.map +1 -0
- package/dist/admin/resources.js +650 -0
- package/dist/admin/settings-operator.d.ts +251 -0
- package/dist/admin/settings-operator.d.ts.map +1 -0
- package/dist/admin/settings-operator.js +248 -0
- package/dist/admin/suppliers-operator.d.ts +325 -0
- package/dist/admin/suppliers-operator.d.ts.map +1 -0
- package/dist/admin/suppliers-operator.js +322 -0
- package/dist/admin/suppliers.d.ts +259 -0
- package/dist/admin/suppliers.d.ts.map +1 -0
- package/dist/admin/suppliers.js +256 -0
- package/dist/admin/team.d.ts +102 -0
- package/dist/admin/team.d.ts.map +1 -0
- package/dist/admin/team.js +68 -0
- package/dist/index.d.ts +28 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +27 -0
- package/dist/package-formatters.d.ts +9 -0
- package/dist/package-formatters.d.ts.map +1 -0
- package/dist/package-formatters.js +56 -0
- package/dist/package-runtime.d.ts +39 -0
- package/dist/package-runtime.d.ts.map +1 -0
- package/dist/package-runtime.js +60 -0
- package/dist/runtime.d.ts +33 -0
- package/dist/runtime.d.ts.map +1 -0
- package/dist/runtime.js +120 -0
- package/package.json +48 -0
|
@@ -0,0 +1,325 @@
|
|
|
1
|
+
import type { LocaleMessageSchema } from "../runtime.js";
|
|
2
|
+
export declare const operatorAdminSuppliersMessages: {
|
|
3
|
+
en: {
|
|
4
|
+
suppliers: {
|
|
5
|
+
title: string;
|
|
6
|
+
description: string;
|
|
7
|
+
newSupplier: string;
|
|
8
|
+
searchPlaceholder: string;
|
|
9
|
+
nameColumn: string;
|
|
10
|
+
typeColumn: string;
|
|
11
|
+
statusColumn: string;
|
|
12
|
+
cityColumn: string;
|
|
13
|
+
countryColumn: string;
|
|
14
|
+
currencyColumn: string;
|
|
15
|
+
typeLabels: {
|
|
16
|
+
hotel: string;
|
|
17
|
+
transfer: string;
|
|
18
|
+
guide: string;
|
|
19
|
+
experience: string;
|
|
20
|
+
airline: string;
|
|
21
|
+
restaurant: string;
|
|
22
|
+
other: string;
|
|
23
|
+
};
|
|
24
|
+
statusLabels: {
|
|
25
|
+
active: string;
|
|
26
|
+
inactive: string;
|
|
27
|
+
pending: string;
|
|
28
|
+
};
|
|
29
|
+
serviceTypeLabels: {
|
|
30
|
+
accommodation: string;
|
|
31
|
+
transfer: string;
|
|
32
|
+
experience: string;
|
|
33
|
+
guide: string;
|
|
34
|
+
meal: string;
|
|
35
|
+
other: string;
|
|
36
|
+
};
|
|
37
|
+
rateUnitLabels: {
|
|
38
|
+
per_person: string;
|
|
39
|
+
per_group: string;
|
|
40
|
+
per_night: string;
|
|
41
|
+
per_vehicle: string;
|
|
42
|
+
flat: string;
|
|
43
|
+
};
|
|
44
|
+
dialogs: {
|
|
45
|
+
supplier: {
|
|
46
|
+
validationNameRequired: string;
|
|
47
|
+
validationIsoCurrency: string;
|
|
48
|
+
editTitle: string;
|
|
49
|
+
newTitle: string;
|
|
50
|
+
typeLabel: string;
|
|
51
|
+
statusLabel: string;
|
|
52
|
+
nameLabel: string;
|
|
53
|
+
namePlaceholder: string;
|
|
54
|
+
descriptionLabel: string;
|
|
55
|
+
descriptionPlaceholder: string;
|
|
56
|
+
emailLabel: string;
|
|
57
|
+
emailPlaceholder: string;
|
|
58
|
+
phoneLabel: string;
|
|
59
|
+
phonePlaceholder: string;
|
|
60
|
+
websiteLabel: string;
|
|
61
|
+
websitePlaceholder: string;
|
|
62
|
+
addressLabel: string;
|
|
63
|
+
addressPlaceholder: string;
|
|
64
|
+
cityLabel: string;
|
|
65
|
+
cityPlaceholder: string;
|
|
66
|
+
countryLabel: string;
|
|
67
|
+
defaultCurrencyLabel: string;
|
|
68
|
+
defaultCurrencyPlaceholder: string;
|
|
69
|
+
primaryContactTitle: string;
|
|
70
|
+
contactNameLabel: string;
|
|
71
|
+
contactNamePlaceholder: string;
|
|
72
|
+
contactEmailLabel: string;
|
|
73
|
+
contactEmailPlaceholder: string;
|
|
74
|
+
contactPhoneLabel: string;
|
|
75
|
+
contactPhonePlaceholder: string;
|
|
76
|
+
cancel: string;
|
|
77
|
+
save: string;
|
|
78
|
+
create: string;
|
|
79
|
+
};
|
|
80
|
+
service: {
|
|
81
|
+
validationNameRequired: string;
|
|
82
|
+
editTitle: string;
|
|
83
|
+
newTitle: string;
|
|
84
|
+
serviceTypeLabel: string;
|
|
85
|
+
nameLabel: string;
|
|
86
|
+
namePlaceholder: string;
|
|
87
|
+
descriptionLabel: string;
|
|
88
|
+
descriptionPlaceholder: string;
|
|
89
|
+
durationLabel: string;
|
|
90
|
+
durationPlaceholder: string;
|
|
91
|
+
capacityLabel: string;
|
|
92
|
+
capacityPlaceholder: string;
|
|
93
|
+
activeLabel: string;
|
|
94
|
+
cancel: string;
|
|
95
|
+
save: string;
|
|
96
|
+
create: string;
|
|
97
|
+
};
|
|
98
|
+
rate: {
|
|
99
|
+
validationNameRequired: string;
|
|
100
|
+
validationIsoCurrency: string;
|
|
101
|
+
validationNonNegative: string;
|
|
102
|
+
editTitle: string;
|
|
103
|
+
newTitle: string;
|
|
104
|
+
seasonNameLabel: string;
|
|
105
|
+
seasonNamePlaceholder: string;
|
|
106
|
+
currencyLabel: string;
|
|
107
|
+
currencyPlaceholder: string;
|
|
108
|
+
amountLabel: string;
|
|
109
|
+
amountPlaceholder: string;
|
|
110
|
+
unitLabel: string;
|
|
111
|
+
validFromLabel: string;
|
|
112
|
+
validToLabel: string;
|
|
113
|
+
minPaxLabel: string;
|
|
114
|
+
minPaxPlaceholder: string;
|
|
115
|
+
maxPaxLabel: string;
|
|
116
|
+
maxPaxPlaceholder: string;
|
|
117
|
+
notesLabel: string;
|
|
118
|
+
notesPlaceholder: string;
|
|
119
|
+
cancel: string;
|
|
120
|
+
save: string;
|
|
121
|
+
create: string;
|
|
122
|
+
};
|
|
123
|
+
};
|
|
124
|
+
details: {
|
|
125
|
+
notFound: string;
|
|
126
|
+
backToSuppliers: string;
|
|
127
|
+
edit: string;
|
|
128
|
+
delete: string;
|
|
129
|
+
deleteConfirm: string;
|
|
130
|
+
supplierDetailsTitle: string;
|
|
131
|
+
descriptionLabel: string;
|
|
132
|
+
emailLabel: string;
|
|
133
|
+
phoneLabel: string;
|
|
134
|
+
websiteLabel: string;
|
|
135
|
+
addressLabel: string;
|
|
136
|
+
cityLabel: string;
|
|
137
|
+
countryLabel: string;
|
|
138
|
+
defaultCurrencyLabel: string;
|
|
139
|
+
primaryContactTitle: string;
|
|
140
|
+
noContactInfo: string;
|
|
141
|
+
createdLabel: string;
|
|
142
|
+
updatedLabel: string;
|
|
143
|
+
servicesTitle: string;
|
|
144
|
+
addService: string;
|
|
145
|
+
noServices: string;
|
|
146
|
+
serviceDeleteConfirm: string;
|
|
147
|
+
rateDeleteConfirm: string;
|
|
148
|
+
ratesTitle: string;
|
|
149
|
+
addRate: string;
|
|
150
|
+
noRates: string;
|
|
151
|
+
validColumn: string;
|
|
152
|
+
paxColumn: string;
|
|
153
|
+
inactiveBadge: string;
|
|
154
|
+
maxPaxLabel: string;
|
|
155
|
+
notesTitle: string;
|
|
156
|
+
addNotePlaceholder: string;
|
|
157
|
+
saving: string;
|
|
158
|
+
add: string;
|
|
159
|
+
noNotes: string;
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
};
|
|
163
|
+
ro: {
|
|
164
|
+
suppliers: {
|
|
165
|
+
title: string;
|
|
166
|
+
description: string;
|
|
167
|
+
newSupplier: string;
|
|
168
|
+
searchPlaceholder: string;
|
|
169
|
+
nameColumn: string;
|
|
170
|
+
typeColumn: string;
|
|
171
|
+
statusColumn: string;
|
|
172
|
+
cityColumn: string;
|
|
173
|
+
countryColumn: string;
|
|
174
|
+
currencyColumn: string;
|
|
175
|
+
typeLabels: {
|
|
176
|
+
hotel: string;
|
|
177
|
+
transfer: string;
|
|
178
|
+
guide: string;
|
|
179
|
+
experience: string;
|
|
180
|
+
airline: string;
|
|
181
|
+
restaurant: string;
|
|
182
|
+
other: string;
|
|
183
|
+
};
|
|
184
|
+
statusLabels: {
|
|
185
|
+
active: string;
|
|
186
|
+
inactive: string;
|
|
187
|
+
pending: string;
|
|
188
|
+
};
|
|
189
|
+
serviceTypeLabels: {
|
|
190
|
+
accommodation: string;
|
|
191
|
+
transfer: string;
|
|
192
|
+
experience: string;
|
|
193
|
+
guide: string;
|
|
194
|
+
meal: string;
|
|
195
|
+
other: string;
|
|
196
|
+
};
|
|
197
|
+
rateUnitLabels: {
|
|
198
|
+
per_person: string;
|
|
199
|
+
per_group: string;
|
|
200
|
+
per_night: string;
|
|
201
|
+
per_vehicle: string;
|
|
202
|
+
flat: string;
|
|
203
|
+
};
|
|
204
|
+
dialogs: {
|
|
205
|
+
supplier: {
|
|
206
|
+
validationNameRequired: string;
|
|
207
|
+
validationIsoCurrency: string;
|
|
208
|
+
editTitle: string;
|
|
209
|
+
newTitle: string;
|
|
210
|
+
typeLabel: string;
|
|
211
|
+
statusLabel: string;
|
|
212
|
+
nameLabel: string;
|
|
213
|
+
namePlaceholder: string;
|
|
214
|
+
descriptionLabel: string;
|
|
215
|
+
descriptionPlaceholder: string;
|
|
216
|
+
emailLabel: string;
|
|
217
|
+
emailPlaceholder: string;
|
|
218
|
+
phoneLabel: string;
|
|
219
|
+
phonePlaceholder: string;
|
|
220
|
+
websiteLabel: string;
|
|
221
|
+
websitePlaceholder: string;
|
|
222
|
+
addressLabel: string;
|
|
223
|
+
addressPlaceholder: string;
|
|
224
|
+
cityLabel: string;
|
|
225
|
+
cityPlaceholder: string;
|
|
226
|
+
countryLabel: string;
|
|
227
|
+
defaultCurrencyLabel: string;
|
|
228
|
+
defaultCurrencyPlaceholder: string;
|
|
229
|
+
primaryContactTitle: string;
|
|
230
|
+
contactNameLabel: string;
|
|
231
|
+
contactNamePlaceholder: string;
|
|
232
|
+
contactEmailLabel: string;
|
|
233
|
+
contactEmailPlaceholder: string;
|
|
234
|
+
contactPhoneLabel: string;
|
|
235
|
+
contactPhonePlaceholder: string;
|
|
236
|
+
cancel: string;
|
|
237
|
+
save: string;
|
|
238
|
+
create: string;
|
|
239
|
+
};
|
|
240
|
+
service: {
|
|
241
|
+
validationNameRequired: string;
|
|
242
|
+
editTitle: string;
|
|
243
|
+
newTitle: string;
|
|
244
|
+
serviceTypeLabel: string;
|
|
245
|
+
nameLabel: string;
|
|
246
|
+
namePlaceholder: string;
|
|
247
|
+
descriptionLabel: string;
|
|
248
|
+
descriptionPlaceholder: string;
|
|
249
|
+
durationLabel: string;
|
|
250
|
+
durationPlaceholder: string;
|
|
251
|
+
capacityLabel: string;
|
|
252
|
+
capacityPlaceholder: string;
|
|
253
|
+
activeLabel: string;
|
|
254
|
+
cancel: string;
|
|
255
|
+
save: string;
|
|
256
|
+
create: string;
|
|
257
|
+
};
|
|
258
|
+
rate: {
|
|
259
|
+
validationNameRequired: string;
|
|
260
|
+
validationIsoCurrency: string;
|
|
261
|
+
validationNonNegative: string;
|
|
262
|
+
editTitle: string;
|
|
263
|
+
newTitle: string;
|
|
264
|
+
seasonNameLabel: string;
|
|
265
|
+
seasonNamePlaceholder: string;
|
|
266
|
+
currencyLabel: string;
|
|
267
|
+
currencyPlaceholder: string;
|
|
268
|
+
amountLabel: string;
|
|
269
|
+
amountPlaceholder: string;
|
|
270
|
+
unitLabel: string;
|
|
271
|
+
validFromLabel: string;
|
|
272
|
+
validToLabel: string;
|
|
273
|
+
minPaxLabel: string;
|
|
274
|
+
minPaxPlaceholder: string;
|
|
275
|
+
maxPaxLabel: string;
|
|
276
|
+
maxPaxPlaceholder: string;
|
|
277
|
+
notesLabel: string;
|
|
278
|
+
notesPlaceholder: string;
|
|
279
|
+
cancel: string;
|
|
280
|
+
save: string;
|
|
281
|
+
create: string;
|
|
282
|
+
};
|
|
283
|
+
};
|
|
284
|
+
details: {
|
|
285
|
+
notFound: string;
|
|
286
|
+
backToSuppliers: string;
|
|
287
|
+
edit: string;
|
|
288
|
+
delete: string;
|
|
289
|
+
deleteConfirm: string;
|
|
290
|
+
supplierDetailsTitle: string;
|
|
291
|
+
descriptionLabel: string;
|
|
292
|
+
emailLabel: string;
|
|
293
|
+
phoneLabel: string;
|
|
294
|
+
websiteLabel: string;
|
|
295
|
+
addressLabel: string;
|
|
296
|
+
cityLabel: string;
|
|
297
|
+
countryLabel: string;
|
|
298
|
+
defaultCurrencyLabel: string;
|
|
299
|
+
primaryContactTitle: string;
|
|
300
|
+
noContactInfo: string;
|
|
301
|
+
createdLabel: string;
|
|
302
|
+
updatedLabel: string;
|
|
303
|
+
servicesTitle: string;
|
|
304
|
+
addService: string;
|
|
305
|
+
noServices: string;
|
|
306
|
+
serviceDeleteConfirm: string;
|
|
307
|
+
rateDeleteConfirm: string;
|
|
308
|
+
ratesTitle: string;
|
|
309
|
+
addRate: string;
|
|
310
|
+
noRates: string;
|
|
311
|
+
validColumn: string;
|
|
312
|
+
paxColumn: string;
|
|
313
|
+
inactiveBadge: string;
|
|
314
|
+
maxPaxLabel: string;
|
|
315
|
+
notesTitle: string;
|
|
316
|
+
addNotePlaceholder: string;
|
|
317
|
+
saving: string;
|
|
318
|
+
add: string;
|
|
319
|
+
noNotes: string;
|
|
320
|
+
};
|
|
321
|
+
};
|
|
322
|
+
};
|
|
323
|
+
};
|
|
324
|
+
export type OperatorAdminSuppliersMessages = LocaleMessageSchema<(typeof operatorAdminSuppliersMessages)["en"]>;
|
|
325
|
+
//# sourceMappingURL=suppliers-operator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"suppliers-operator.d.ts","sourceRoot":"","sources":["../../src/admin/suppliers-operator.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,eAAe,CAAA;AAExD,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiU1C,CAAA;AAED,MAAM,MAAM,8BAA8B,GAAG,mBAAmB,CAC9D,CAAC,OAAO,8BAA8B,CAAC,CAAC,IAAI,CAAC,CAC9C,CAAA"}
|
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
export const operatorAdminSuppliersMessages = {
|
|
2
|
+
en: {
|
|
3
|
+
suppliers: {
|
|
4
|
+
title: "Suppliers",
|
|
5
|
+
description: "Manage your hotels, transfers, guides, and service providers.",
|
|
6
|
+
newSupplier: "New Supplier",
|
|
7
|
+
searchPlaceholder: "Search suppliers...",
|
|
8
|
+
nameColumn: "Name",
|
|
9
|
+
typeColumn: "Type",
|
|
10
|
+
statusColumn: "Status",
|
|
11
|
+
cityColumn: "City",
|
|
12
|
+
countryColumn: "Country",
|
|
13
|
+
currencyColumn: "Currency",
|
|
14
|
+
typeLabels: {
|
|
15
|
+
hotel: "Hotel",
|
|
16
|
+
transfer: "Transfer",
|
|
17
|
+
guide: "Guide",
|
|
18
|
+
experience: "Experience",
|
|
19
|
+
airline: "Airline",
|
|
20
|
+
restaurant: "Restaurant",
|
|
21
|
+
other: "Other",
|
|
22
|
+
},
|
|
23
|
+
statusLabels: {
|
|
24
|
+
active: "Active",
|
|
25
|
+
inactive: "Inactive",
|
|
26
|
+
pending: "Pending",
|
|
27
|
+
},
|
|
28
|
+
serviceTypeLabels: {
|
|
29
|
+
accommodation: "Accommodation",
|
|
30
|
+
transfer: "Transfer",
|
|
31
|
+
experience: "Experience",
|
|
32
|
+
guide: "Guide",
|
|
33
|
+
meal: "Meal",
|
|
34
|
+
other: "Other",
|
|
35
|
+
},
|
|
36
|
+
rateUnitLabels: {
|
|
37
|
+
per_person: "Per Person",
|
|
38
|
+
per_group: "Per Group",
|
|
39
|
+
per_night: "Per Night",
|
|
40
|
+
per_vehicle: "Per Vehicle",
|
|
41
|
+
flat: "Flat",
|
|
42
|
+
},
|
|
43
|
+
dialogs: {
|
|
44
|
+
supplier: {
|
|
45
|
+
validationNameRequired: "Name is required",
|
|
46
|
+
validationIsoCurrency: "Use 3-letter ISO code",
|
|
47
|
+
editTitle: "Edit Supplier",
|
|
48
|
+
newTitle: "New Supplier",
|
|
49
|
+
typeLabel: "Type",
|
|
50
|
+
statusLabel: "Status",
|
|
51
|
+
nameLabel: "Name",
|
|
52
|
+
namePlaceholder: "Supplier name",
|
|
53
|
+
descriptionLabel: "Description",
|
|
54
|
+
descriptionPlaceholder: "Brief description...",
|
|
55
|
+
emailLabel: "Email",
|
|
56
|
+
emailPlaceholder: "info@supplier.com",
|
|
57
|
+
phoneLabel: "Phone",
|
|
58
|
+
phonePlaceholder: "+1 234 567 890",
|
|
59
|
+
websiteLabel: "Website",
|
|
60
|
+
websitePlaceholder: "https://supplier.com",
|
|
61
|
+
addressLabel: "Address",
|
|
62
|
+
addressPlaceholder: "123 Main St",
|
|
63
|
+
cityLabel: "City",
|
|
64
|
+
cityPlaceholder: "Dubrovnik",
|
|
65
|
+
countryLabel: "Country",
|
|
66
|
+
defaultCurrencyLabel: "Default Currency",
|
|
67
|
+
defaultCurrencyPlaceholder: "EUR",
|
|
68
|
+
primaryContactTitle: "Primary Contact",
|
|
69
|
+
contactNameLabel: "Name",
|
|
70
|
+
contactNamePlaceholder: "John Doe",
|
|
71
|
+
contactEmailLabel: "Email",
|
|
72
|
+
contactEmailPlaceholder: "john@supplier.com",
|
|
73
|
+
contactPhoneLabel: "Phone",
|
|
74
|
+
contactPhonePlaceholder: "+1 234 567 890",
|
|
75
|
+
cancel: "Cancel",
|
|
76
|
+
save: "Save Changes",
|
|
77
|
+
create: "Create Supplier",
|
|
78
|
+
},
|
|
79
|
+
service: {
|
|
80
|
+
validationNameRequired: "Name is required",
|
|
81
|
+
editTitle: "Edit Service",
|
|
82
|
+
newTitle: "Add Service",
|
|
83
|
+
serviceTypeLabel: "Service Type",
|
|
84
|
+
nameLabel: "Name",
|
|
85
|
+
namePlaceholder: "Deluxe Sea View Room",
|
|
86
|
+
descriptionLabel: "Description",
|
|
87
|
+
descriptionPlaceholder: "Service description...",
|
|
88
|
+
durationLabel: "Duration",
|
|
89
|
+
durationPlaceholder: "3 hours, per night, etc.",
|
|
90
|
+
capacityLabel: "Capacity (max pax)",
|
|
91
|
+
capacityPlaceholder: "10",
|
|
92
|
+
activeLabel: "Active",
|
|
93
|
+
cancel: "Cancel",
|
|
94
|
+
save: "Save Changes",
|
|
95
|
+
create: "Add Service",
|
|
96
|
+
},
|
|
97
|
+
rate: {
|
|
98
|
+
validationNameRequired: "Name is required",
|
|
99
|
+
validationIsoCurrency: "Use 3-letter ISO code",
|
|
100
|
+
validationNonNegative: "Amount must be non-negative",
|
|
101
|
+
editTitle: "Edit Rate",
|
|
102
|
+
newTitle: "Add Rate",
|
|
103
|
+
seasonNameLabel: "Name / Season",
|
|
104
|
+
seasonNamePlaceholder: "Summer 2025",
|
|
105
|
+
currencyLabel: "Currency",
|
|
106
|
+
currencyPlaceholder: "EUR",
|
|
107
|
+
amountLabel: "Amount",
|
|
108
|
+
amountPlaceholder: "150.00",
|
|
109
|
+
unitLabel: "Unit",
|
|
110
|
+
validFromLabel: "Valid From",
|
|
111
|
+
validToLabel: "Valid To",
|
|
112
|
+
minPaxLabel: "Min Pax",
|
|
113
|
+
minPaxPlaceholder: "1",
|
|
114
|
+
maxPaxLabel: "Max Pax",
|
|
115
|
+
maxPaxPlaceholder: "50",
|
|
116
|
+
notesLabel: "Notes",
|
|
117
|
+
notesPlaceholder: "Additional pricing notes...",
|
|
118
|
+
cancel: "Cancel",
|
|
119
|
+
save: "Save Changes",
|
|
120
|
+
create: "Add Rate",
|
|
121
|
+
},
|
|
122
|
+
},
|
|
123
|
+
details: {
|
|
124
|
+
notFound: "Supplier not found",
|
|
125
|
+
backToSuppliers: "Back to Suppliers",
|
|
126
|
+
edit: "Edit",
|
|
127
|
+
delete: "Delete",
|
|
128
|
+
deleteConfirm: "Are you sure you want to delete this supplier?",
|
|
129
|
+
supplierDetailsTitle: "Supplier Details",
|
|
130
|
+
descriptionLabel: "Description",
|
|
131
|
+
emailLabel: "Email",
|
|
132
|
+
phoneLabel: "Phone",
|
|
133
|
+
websiteLabel: "Website",
|
|
134
|
+
addressLabel: "Address",
|
|
135
|
+
cityLabel: "City",
|
|
136
|
+
countryLabel: "Country",
|
|
137
|
+
defaultCurrencyLabel: "Default Currency",
|
|
138
|
+
primaryContactTitle: "Primary Contact",
|
|
139
|
+
noContactInfo: "No contact information.",
|
|
140
|
+
createdLabel: "Created",
|
|
141
|
+
updatedLabel: "Updated",
|
|
142
|
+
servicesTitle: "Services",
|
|
143
|
+
addService: "Add Service",
|
|
144
|
+
noServices: "No services yet.",
|
|
145
|
+
serviceDeleteConfirm: "Delete this service and all its rates?",
|
|
146
|
+
rateDeleteConfirm: "Delete this rate?",
|
|
147
|
+
ratesTitle: "Rates",
|
|
148
|
+
addRate: "Add Rate",
|
|
149
|
+
noRates: "No rates yet.",
|
|
150
|
+
validColumn: "Valid",
|
|
151
|
+
paxColumn: "Pax",
|
|
152
|
+
inactiveBadge: "Inactive",
|
|
153
|
+
maxPaxLabel: "max {count} pax",
|
|
154
|
+
notesTitle: "Notes",
|
|
155
|
+
addNotePlaceholder: "Add a note...",
|
|
156
|
+
saving: "Saving...",
|
|
157
|
+
add: "Add",
|
|
158
|
+
noNotes: "No notes yet.",
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
},
|
|
162
|
+
ro: {
|
|
163
|
+
suppliers: {
|
|
164
|
+
title: "Furnizori",
|
|
165
|
+
description: "Administreaza hoteluri, transferuri, ghizi si prestatori de servicii.",
|
|
166
|
+
newSupplier: "Furnizor nou",
|
|
167
|
+
searchPlaceholder: "Cauta furnizori...",
|
|
168
|
+
nameColumn: "Nume",
|
|
169
|
+
typeColumn: "Tip",
|
|
170
|
+
statusColumn: "Status",
|
|
171
|
+
cityColumn: "Oras",
|
|
172
|
+
countryColumn: "Tara",
|
|
173
|
+
currencyColumn: "Moneda",
|
|
174
|
+
typeLabels: {
|
|
175
|
+
hotel: "Hotel",
|
|
176
|
+
transfer: "Transfer",
|
|
177
|
+
guide: "Ghid",
|
|
178
|
+
experience: "Experienta",
|
|
179
|
+
airline: "Companie aeriana",
|
|
180
|
+
restaurant: "Restaurant",
|
|
181
|
+
other: "Altul",
|
|
182
|
+
},
|
|
183
|
+
statusLabels: {
|
|
184
|
+
active: "Activ",
|
|
185
|
+
inactive: "Inactiv",
|
|
186
|
+
pending: "In asteptare",
|
|
187
|
+
},
|
|
188
|
+
serviceTypeLabels: {
|
|
189
|
+
accommodation: "Cazare",
|
|
190
|
+
transfer: "Transfer",
|
|
191
|
+
experience: "Experienta",
|
|
192
|
+
guide: "Ghid",
|
|
193
|
+
meal: "Masa",
|
|
194
|
+
other: "Altul",
|
|
195
|
+
},
|
|
196
|
+
rateUnitLabels: {
|
|
197
|
+
per_person: "Per persoana",
|
|
198
|
+
per_group: "Per grup",
|
|
199
|
+
per_night: "Per noapte",
|
|
200
|
+
per_vehicle: "Per vehicul",
|
|
201
|
+
flat: "Tarif fix",
|
|
202
|
+
},
|
|
203
|
+
dialogs: {
|
|
204
|
+
supplier: {
|
|
205
|
+
validationNameRequired: "Numele este obligatoriu",
|
|
206
|
+
validationIsoCurrency: "Foloseste cod ISO din 3 litere",
|
|
207
|
+
editTitle: "Editeaza furnizorul",
|
|
208
|
+
newTitle: "Furnizor nou",
|
|
209
|
+
typeLabel: "Tip",
|
|
210
|
+
statusLabel: "Status",
|
|
211
|
+
nameLabel: "Nume",
|
|
212
|
+
namePlaceholder: "Numele furnizorului",
|
|
213
|
+
descriptionLabel: "Descriere",
|
|
214
|
+
descriptionPlaceholder: "Descriere scurta...",
|
|
215
|
+
emailLabel: "Email",
|
|
216
|
+
emailPlaceholder: "info@furnizor.com",
|
|
217
|
+
phoneLabel: "Telefon",
|
|
218
|
+
phonePlaceholder: "+40 721 234 567",
|
|
219
|
+
websiteLabel: "Website",
|
|
220
|
+
websitePlaceholder: "https://furnizor.com",
|
|
221
|
+
addressLabel: "Adresa",
|
|
222
|
+
addressPlaceholder: "Strada Principala 123",
|
|
223
|
+
cityLabel: "Oras",
|
|
224
|
+
cityPlaceholder: "Bucuresti",
|
|
225
|
+
countryLabel: "Tara",
|
|
226
|
+
defaultCurrencyLabel: "Moneda implicita",
|
|
227
|
+
defaultCurrencyPlaceholder: "EUR",
|
|
228
|
+
primaryContactTitle: "Contact principal",
|
|
229
|
+
contactNameLabel: "Nume",
|
|
230
|
+
contactNamePlaceholder: "Ion Popescu",
|
|
231
|
+
contactEmailLabel: "Email",
|
|
232
|
+
contactEmailPlaceholder: "ion@furnizor.com",
|
|
233
|
+
contactPhoneLabel: "Telefon",
|
|
234
|
+
contactPhonePlaceholder: "+40 721 234 567",
|
|
235
|
+
cancel: "Anuleaza",
|
|
236
|
+
save: "Salveaza modificarile",
|
|
237
|
+
create: "Creeaza furnizorul",
|
|
238
|
+
},
|
|
239
|
+
service: {
|
|
240
|
+
validationNameRequired: "Numele este obligatoriu",
|
|
241
|
+
editTitle: "Editeaza serviciul",
|
|
242
|
+
newTitle: "Adauga serviciu",
|
|
243
|
+
serviceTypeLabel: "Tip serviciu",
|
|
244
|
+
nameLabel: "Nume",
|
|
245
|
+
namePlaceholder: "Camera deluxe cu vedere la mare",
|
|
246
|
+
descriptionLabel: "Descriere",
|
|
247
|
+
descriptionPlaceholder: "Descrierea serviciului...",
|
|
248
|
+
durationLabel: "Durata",
|
|
249
|
+
durationPlaceholder: "3 ore, pe noapte etc.",
|
|
250
|
+
capacityLabel: "Capacitate (max pax)",
|
|
251
|
+
capacityPlaceholder: "10",
|
|
252
|
+
activeLabel: "Activ",
|
|
253
|
+
cancel: "Anuleaza",
|
|
254
|
+
save: "Salveaza modificarile",
|
|
255
|
+
create: "Adauga serviciul",
|
|
256
|
+
},
|
|
257
|
+
rate: {
|
|
258
|
+
validationNameRequired: "Numele este obligatoriu",
|
|
259
|
+
validationIsoCurrency: "Foloseste cod ISO din 3 litere",
|
|
260
|
+
validationNonNegative: "Suma trebuie sa fie pozitiva sau zero",
|
|
261
|
+
editTitle: "Editeaza tariful",
|
|
262
|
+
newTitle: "Adauga tarif",
|
|
263
|
+
seasonNameLabel: "Nume / sezon",
|
|
264
|
+
seasonNamePlaceholder: "Vara 2025",
|
|
265
|
+
currencyLabel: "Moneda",
|
|
266
|
+
currencyPlaceholder: "EUR",
|
|
267
|
+
amountLabel: "Suma",
|
|
268
|
+
amountPlaceholder: "150.00",
|
|
269
|
+
unitLabel: "Unitate",
|
|
270
|
+
validFromLabel: "Valabil de la",
|
|
271
|
+
validToLabel: "Valabil pana la",
|
|
272
|
+
minPaxLabel: "Min pax",
|
|
273
|
+
minPaxPlaceholder: "1",
|
|
274
|
+
maxPaxLabel: "Max pax",
|
|
275
|
+
maxPaxPlaceholder: "50",
|
|
276
|
+
notesLabel: "Note",
|
|
277
|
+
notesPlaceholder: "Note suplimentare despre tarif...",
|
|
278
|
+
cancel: "Anuleaza",
|
|
279
|
+
save: "Salveaza modificarile",
|
|
280
|
+
create: "Adauga tariful",
|
|
281
|
+
},
|
|
282
|
+
},
|
|
283
|
+
details: {
|
|
284
|
+
notFound: "Furnizorul nu a fost gasit",
|
|
285
|
+
backToSuppliers: "Inapoi la furnizori",
|
|
286
|
+
edit: "Editeaza",
|
|
287
|
+
delete: "Sterge",
|
|
288
|
+
deleteConfirm: "Sigur vrei sa stergi acest furnizor?",
|
|
289
|
+
supplierDetailsTitle: "Detalii furnizor",
|
|
290
|
+
descriptionLabel: "Descriere",
|
|
291
|
+
emailLabel: "Email",
|
|
292
|
+
phoneLabel: "Telefon",
|
|
293
|
+
websiteLabel: "Website",
|
|
294
|
+
addressLabel: "Adresa",
|
|
295
|
+
cityLabel: "Oras",
|
|
296
|
+
countryLabel: "Tara",
|
|
297
|
+
defaultCurrencyLabel: "Moneda implicita",
|
|
298
|
+
primaryContactTitle: "Contact principal",
|
|
299
|
+
noContactInfo: "Nu exista informatii de contact.",
|
|
300
|
+
createdLabel: "Creat",
|
|
301
|
+
updatedLabel: "Actualizat",
|
|
302
|
+
servicesTitle: "Servicii",
|
|
303
|
+
addService: "Adauga serviciu",
|
|
304
|
+
noServices: "Nu exista servicii momentan.",
|
|
305
|
+
serviceDeleteConfirm: "Stergi acest serviciu si toate tarifele asociate?",
|
|
306
|
+
rateDeleteConfirm: "Stergi acest tarif?",
|
|
307
|
+
ratesTitle: "Tarife",
|
|
308
|
+
addRate: "Adauga tarif",
|
|
309
|
+
noRates: "Nu exista tarife momentan.",
|
|
310
|
+
validColumn: "Valabilitate",
|
|
311
|
+
paxColumn: "Pax",
|
|
312
|
+
inactiveBadge: "Inactiv",
|
|
313
|
+
maxPaxLabel: "max {count} pax",
|
|
314
|
+
notesTitle: "Note",
|
|
315
|
+
addNotePlaceholder: "Adauga o nota...",
|
|
316
|
+
saving: "Se salveaza...",
|
|
317
|
+
add: "Adauga",
|
|
318
|
+
noNotes: "Nu exista note momentan.",
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
},
|
|
322
|
+
};
|