@feedmepos/mf-kitchen 1.0.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/README.md +23 -0
- package/dist/AdvanceModeView-04b079e0.js +6200 -0
- package/dist/App.vue.d.ts +2 -0
- package/dist/Entry.vue.d.ts +2 -0
- package/dist/NormalModeView-6d512143.js +222 -0
- package/dist/api/index.d.ts +2 -0
- package/dist/api/receipt.d.ts +9 -0
- package/dist/app-7966dca0.js +729 -0
- package/dist/app.d.ts +647 -0
- package/dist/app.js +9 -0
- package/dist/components/EditingPanel.vue.d.ts +211 -0
- package/dist/components/LocalizationWatcher.vue.d.ts +10 -0
- package/dist/components/Navigator.vue.d.ts +2 -0
- package/dist/components/Preview.vue.d.ts +231 -0
- package/dist/components/ReceiptEditor.vue.d.ts +214 -0
- package/dist/components/WidgetView.vue.d.ts +32 -0
- package/dist/components/WidgetsComponent.vue.d.ts +7 -0
- package/dist/components/ZigZagBottom.vue.d.ts +2 -0
- package/dist/components/advance/AdvanceModeLeftPanel.vue.d.ts +277 -0
- package/dist/components/advance/PreviewDialog.vue.d.ts +21 -0
- package/dist/components/normal/NormalModeEditor.vue.d.ts +57 -0
- package/dist/components/type.d.ts +33 -0
- package/dist/components/widgets/CheckboxWidget.vue.d.ts +18 -0
- package/dist/components/widgets/DividerWidget.vue.d.ts +18 -0
- package/dist/components/widgets/ImageWidget.vue.d.ts +16 -0
- package/dist/components/widgets/QrCodeWidget.vue.d.ts +18 -0
- package/dist/components/widgets/SpacerWidget.vue.d.ts +16 -0
- package/dist/components/widgets/TextWidget.vue.d.ts +20 -0
- package/dist/components/widgets/widgetConfig.d.ts +18 -0
- package/dist/editors/CheckboxWidgetEditor.vue.d.ts +233 -0
- package/dist/editors/CommonWidgetEditor.vue.d.ts +229 -0
- package/dist/editors/DividerWidgetEditor.vue.d.ts +234 -0
- package/dist/editors/ImageWidgetEditor.vue.d.ts +232 -0
- package/dist/editors/QrCodeWidgetEditor.vue.d.ts +236 -0
- package/dist/editors/SpacerWidgetEditor.vue.d.ts +228 -0
- package/dist/editors/TextWidgetEditor.vue.d.ts +253 -0
- package/dist/favicon.ico +0 -0
- package/dist/helpers/clone.d.ts +1 -0
- package/dist/helpers/removeImgDialog.d.ts +1 -0
- package/dist/main.d.ts +1 -0
- package/dist/restaurant-aaf7d812.js +40489 -0
- package/dist/router/index.d.ts +2 -0
- package/dist/router/shared.d.ts +2 -0
- package/dist/shared/FormatColorButton.vue.d.ts +22 -0
- package/dist/shared/ImageUpload.vue.d.ts +21 -0
- package/dist/shared/ReceiptSettingBase.vue.d.ts +55 -0
- package/dist/shared/SaveDialogPopUp.vue.d.ts +217 -0
- package/dist/shared/TemplateHeader.vue.d.ts +217 -0
- package/dist/shared/base64ToImgSrc.d.ts +1 -0
- package/dist/shared/resetDialog.d.ts +1 -0
- package/dist/stores/restaurant.d.ts +454 -0
- package/dist/style.css +1 -0
- package/dist/styles/colors.d.ts +7 -0
- package/dist/tsconfig.app.tsbuildinfo +1 -0
- package/dist/views/AdvanceModeView.vue.d.ts +3 -0
- package/dist/views/NormalModeView.vue.d.ts +3 -0
- package/package.json +61 -0
package/dist/app.d.ts
ADDED
|
@@ -0,0 +1,647 @@
|
|
|
1
|
+
import enUS from './locales/en-US.json';
|
|
2
|
+
export { default as FmApp } from './Entry.vue';
|
|
3
|
+
export { router } from '../src/router';
|
|
4
|
+
export type AppMessagesSchema = typeof enUS;
|
|
5
|
+
export declare const i18nMessages: {
|
|
6
|
+
'en-US': {
|
|
7
|
+
"mf-kitchen": {
|
|
8
|
+
title: string;
|
|
9
|
+
count: string;
|
|
10
|
+
advance: string;
|
|
11
|
+
advanceBuilder: string;
|
|
12
|
+
advanceTemplateBuilder: string;
|
|
13
|
+
cancel: string;
|
|
14
|
+
confirmation: string;
|
|
15
|
+
designPanel: string;
|
|
16
|
+
imageUpload: {
|
|
17
|
+
logoSizeError: string;
|
|
18
|
+
};
|
|
19
|
+
preview: string;
|
|
20
|
+
remove: string;
|
|
21
|
+
reset: string;
|
|
22
|
+
resetToDefault: string;
|
|
23
|
+
receiptSetting: string;
|
|
24
|
+
receiptTemplate: string;
|
|
25
|
+
save: string;
|
|
26
|
+
templateBuilder: string;
|
|
27
|
+
template: {
|
|
28
|
+
load: {
|
|
29
|
+
fail: string;
|
|
30
|
+
};
|
|
31
|
+
save: {
|
|
32
|
+
success: string;
|
|
33
|
+
failed: string;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
variables: {
|
|
37
|
+
"bill:billRemark": string;
|
|
38
|
+
"bill:billRounding": string;
|
|
39
|
+
"bill:createdAt": string;
|
|
40
|
+
"bill:itemKey": string;
|
|
41
|
+
"bill:officialReceipt": string;
|
|
42
|
+
"bill:plsPayAtCounter": string;
|
|
43
|
+
"common:amount": string;
|
|
44
|
+
"common:balance": string;
|
|
45
|
+
"common:code": string;
|
|
46
|
+
"common:currentTime": string;
|
|
47
|
+
"common:customer": string;
|
|
48
|
+
"common:date": string;
|
|
49
|
+
"common:dateAndTime": string;
|
|
50
|
+
"common:generatedAt": string;
|
|
51
|
+
"common:item": string;
|
|
52
|
+
"common:numberShort": string;
|
|
53
|
+
"common:poweredBy": string;
|
|
54
|
+
"common:qty": string;
|
|
55
|
+
"common:reason": string;
|
|
56
|
+
"common:ref": string;
|
|
57
|
+
"common:sendBy": string;
|
|
58
|
+
"common:signature": string;
|
|
59
|
+
"common:to": string;
|
|
60
|
+
"common:total": string;
|
|
61
|
+
"common:address": string;
|
|
62
|
+
"common:contact": string;
|
|
63
|
+
"common:email": string;
|
|
64
|
+
"common:name": string;
|
|
65
|
+
"common:discount": string;
|
|
66
|
+
"common:quantity": string;
|
|
67
|
+
"common:price": string;
|
|
68
|
+
"common:remark": string;
|
|
69
|
+
"common:invoiceNo": string;
|
|
70
|
+
"device:counter:counter": string;
|
|
71
|
+
"marketing:feedback:feedbackFooter": string;
|
|
72
|
+
"marketing:feedback:feedbackReminder": string;
|
|
73
|
+
"marketing:membership:credit": string;
|
|
74
|
+
"marketing:membership:creditAsDiscount": string;
|
|
75
|
+
"marketing:membership:creditBalance": string;
|
|
76
|
+
"marketing:membership:creditInfo": string;
|
|
77
|
+
"marketing:membership:creditUsed": string;
|
|
78
|
+
"marketing:membership:creditedTo": string;
|
|
79
|
+
"marketing:membership:freeCredit": string;
|
|
80
|
+
"marketing:membership:level": string;
|
|
81
|
+
"marketing:membership:memberInfo": string;
|
|
82
|
+
"marketing:memberstore:reward": string;
|
|
83
|
+
"marketing:memberstore:title": string;
|
|
84
|
+
"marketing:voucher:voucher": string;
|
|
85
|
+
"menu:unitQuantity": string;
|
|
86
|
+
"menu:subItem": string;
|
|
87
|
+
"menu:takeaway": string;
|
|
88
|
+
"menu:variant": string;
|
|
89
|
+
"order:takeaway": string;
|
|
90
|
+
"order:dineIn": string;
|
|
91
|
+
"order:order": string;
|
|
92
|
+
"order:pax:pax": string;
|
|
93
|
+
"order:move:moved": string;
|
|
94
|
+
"order:bill:newOrder": string;
|
|
95
|
+
"order:voidAction:voidAction": string;
|
|
96
|
+
"order:pickup:pickupInfo": string;
|
|
97
|
+
"order:pickup:pickupRef": string;
|
|
98
|
+
"order:delivery:driver:vehicle": string;
|
|
99
|
+
"order:delivery:delivery": string;
|
|
100
|
+
"order:delivery:deliveryFee": string;
|
|
101
|
+
"order:delivery:deliveryInfo": string;
|
|
102
|
+
"order:delivery:driver:driver": string;
|
|
103
|
+
"restaurant:restaurantTaxRegNo": string;
|
|
104
|
+
"printer:template:variables:paymentAmount": string;
|
|
105
|
+
"printer:template:variables:salesType": string;
|
|
106
|
+
"printer:template:variables:cashier": string;
|
|
107
|
+
"printer:template:variables:changesName": string;
|
|
108
|
+
"printer:template:variables:changesAmount": string;
|
|
109
|
+
"printer:template:variables:balanceName": string;
|
|
110
|
+
"printer:template:variables:balanceAmount": string;
|
|
111
|
+
"printer:template:variables:currency": string;
|
|
112
|
+
"printer:template:variables:itemUnitPrice": string;
|
|
113
|
+
"printer:template:variables:paymentName": string;
|
|
114
|
+
"printer:template:variables:chargeAmount": string;
|
|
115
|
+
"printer:template:variables:chargeName": string;
|
|
116
|
+
"printer:template:variables:parent": string;
|
|
117
|
+
"printer:template:variables:year": string;
|
|
118
|
+
"printer:template:variables:counterCode": string;
|
|
119
|
+
"printer:template:order:orderTemplate": string;
|
|
120
|
+
"printer:template:order:stickerTemplate": string;
|
|
121
|
+
"printer:template:order:textTemplate": string;
|
|
122
|
+
"printer:totalItems": string;
|
|
123
|
+
"printer:totalPrice": string;
|
|
124
|
+
"payment:subtotal": string;
|
|
125
|
+
"payment:change": string;
|
|
126
|
+
"payment:processingFee": string;
|
|
127
|
+
"payment:wTax": string;
|
|
128
|
+
"printer:currentPage": string;
|
|
129
|
+
"printer:print:reprint": string;
|
|
130
|
+
"printer:printStatus": string;
|
|
131
|
+
"printer:printerName": string;
|
|
132
|
+
"printer:totalPage": string;
|
|
133
|
+
"restaurant:restaurantCode": string;
|
|
134
|
+
"restaurant:restaurantName": string;
|
|
135
|
+
"restaurant:restaurantLegalName": string;
|
|
136
|
+
"restaurant:regNo": string;
|
|
137
|
+
"table:table": string;
|
|
138
|
+
"table:tablePax": string;
|
|
139
|
+
"user:role:cashier": string;
|
|
140
|
+
validUntil: string;
|
|
141
|
+
};
|
|
142
|
+
editor: {
|
|
143
|
+
alignment: string;
|
|
144
|
+
alignmentBottom: string;
|
|
145
|
+
alignmentLeft: string;
|
|
146
|
+
alignmentRight: string;
|
|
147
|
+
alignmentTop: string;
|
|
148
|
+
auto: string;
|
|
149
|
+
autoWidth: string;
|
|
150
|
+
body: string;
|
|
151
|
+
checkbox: string;
|
|
152
|
+
checkboxWidget: string;
|
|
153
|
+
column: string;
|
|
154
|
+
columnWidth: string;
|
|
155
|
+
divider: string;
|
|
156
|
+
dividerWidget: string;
|
|
157
|
+
editor: string;
|
|
158
|
+
footer: string;
|
|
159
|
+
footerText: string;
|
|
160
|
+
footerQr: string;
|
|
161
|
+
fontSize: string;
|
|
162
|
+
header: string;
|
|
163
|
+
headerText: string;
|
|
164
|
+
height: string;
|
|
165
|
+
hideAddonWithZeroPrice: string;
|
|
166
|
+
hideItemWithZeroPrice: string;
|
|
167
|
+
hideProductCode: string;
|
|
168
|
+
invoicePrefix: string;
|
|
169
|
+
image: string;
|
|
170
|
+
imageUploadFail: string;
|
|
171
|
+
imageWidget: string;
|
|
172
|
+
logoImage: string;
|
|
173
|
+
logoHeight: string;
|
|
174
|
+
logoWidth: string;
|
|
175
|
+
overallFontSize: string;
|
|
176
|
+
qrCode: string;
|
|
177
|
+
qrCodeFail: string;
|
|
178
|
+
qrCodeWidget: string;
|
|
179
|
+
removeColumn: string;
|
|
180
|
+
removeWidget: string;
|
|
181
|
+
row: string;
|
|
182
|
+
scale: string;
|
|
183
|
+
showAddress: string;
|
|
184
|
+
showContact: string;
|
|
185
|
+
showEmail: string;
|
|
186
|
+
size: string;
|
|
187
|
+
spacer: string;
|
|
188
|
+
spacerWidget: string;
|
|
189
|
+
spacing: string;
|
|
190
|
+
text: string;
|
|
191
|
+
textWidget: string;
|
|
192
|
+
textAlignment: string;
|
|
193
|
+
textStyle: string;
|
|
194
|
+
thick: string;
|
|
195
|
+
thickness: string;
|
|
196
|
+
validation: {
|
|
197
|
+
scale: string;
|
|
198
|
+
minOne: string;
|
|
199
|
+
columnWidthMax: string;
|
|
200
|
+
fontSizeMax: string;
|
|
201
|
+
};
|
|
202
|
+
variable_plural: string;
|
|
203
|
+
widget: string;
|
|
204
|
+
widget_plural: string;
|
|
205
|
+
width: string;
|
|
206
|
+
};
|
|
207
|
+
editorDescription: string;
|
|
208
|
+
removeLogoDesc: string;
|
|
209
|
+
resetDesc: string;
|
|
210
|
+
returnToBasicMode: string;
|
|
211
|
+
saveDialogTitle: string;
|
|
212
|
+
saveDialogDesc: string;
|
|
213
|
+
headerTextPlaceholder: string;
|
|
214
|
+
invoicePrefixPlaceholder: string;
|
|
215
|
+
footerTextPlaceholder: string;
|
|
216
|
+
footerQrPlaceholder: string;
|
|
217
|
+
};
|
|
218
|
+
};
|
|
219
|
+
'zh-CN': {
|
|
220
|
+
"mf-kitchen": {
|
|
221
|
+
title: string;
|
|
222
|
+
count: string;
|
|
223
|
+
advance: string;
|
|
224
|
+
advanceBuilder: string;
|
|
225
|
+
advanceTemplateBuilder: string;
|
|
226
|
+
cancel: string;
|
|
227
|
+
confirmation: string;
|
|
228
|
+
designPanel: string;
|
|
229
|
+
imageUpload: {
|
|
230
|
+
logoSizeError: string;
|
|
231
|
+
};
|
|
232
|
+
preview: string;
|
|
233
|
+
remove: string;
|
|
234
|
+
reset: string;
|
|
235
|
+
resetToDefault: string;
|
|
236
|
+
receiptSetting: string;
|
|
237
|
+
receiptTemplate: string;
|
|
238
|
+
save: string;
|
|
239
|
+
templateBuilder: string;
|
|
240
|
+
template: {
|
|
241
|
+
load: {
|
|
242
|
+
fail: string;
|
|
243
|
+
};
|
|
244
|
+
save: {
|
|
245
|
+
success: string;
|
|
246
|
+
failed: string;
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
variables: {
|
|
250
|
+
"bill:billRemark": string;
|
|
251
|
+
"bill:billRounding": string;
|
|
252
|
+
"bill:createdAt": string;
|
|
253
|
+
"bill:itemKey": string;
|
|
254
|
+
"bill:officialReceipt": string;
|
|
255
|
+
"bill:plsPayAtCounter": string;
|
|
256
|
+
"common:address": string;
|
|
257
|
+
"common:amount": string;
|
|
258
|
+
"common:balance": string;
|
|
259
|
+
"common:code": string;
|
|
260
|
+
"common:contact": string;
|
|
261
|
+
"common:currentTime": string;
|
|
262
|
+
"common:customer": string;
|
|
263
|
+
"common:date": string;
|
|
264
|
+
"common:dateAndTime": string;
|
|
265
|
+
"common:discount": string;
|
|
266
|
+
"common:email": string;
|
|
267
|
+
"common:generatedAt": string;
|
|
268
|
+
"common:invoiceNo": string;
|
|
269
|
+
"common:item": string;
|
|
270
|
+
"common:name": string;
|
|
271
|
+
"common:numberShort": string;
|
|
272
|
+
"common:poweredBy": string;
|
|
273
|
+
"common:price": string;
|
|
274
|
+
"common:qty": string;
|
|
275
|
+
"common:quantity": string;
|
|
276
|
+
"common:reason": string;
|
|
277
|
+
"common:ref": string;
|
|
278
|
+
"common:remark": string;
|
|
279
|
+
"common:sendBy": string;
|
|
280
|
+
"common:signature": string;
|
|
281
|
+
"common:time": string;
|
|
282
|
+
"common:to": string;
|
|
283
|
+
"common:total": string;
|
|
284
|
+
"device:counter:counter": string;
|
|
285
|
+
"marketing:feedback:feedbackFooter": string;
|
|
286
|
+
"marketing:feedback:feedbackReminder": string;
|
|
287
|
+
"marketing:membership:credit": string;
|
|
288
|
+
"marketing:membership:creditAsDiscount": string;
|
|
289
|
+
"marketing:membership:creditBalance": string;
|
|
290
|
+
"marketing:membership:creditInfo": string;
|
|
291
|
+
"marketing:membership:creditUsed": string;
|
|
292
|
+
"marketing:membership:creditedTo": string;
|
|
293
|
+
"marketing:membership:freeCredit": string;
|
|
294
|
+
"marketing:membership:level": string;
|
|
295
|
+
"marketing:membership:memberInfo": string;
|
|
296
|
+
"marketing:memberstore:reward": string;
|
|
297
|
+
"marketing:memberstore:title": string;
|
|
298
|
+
"marketing:voucher:voucher": string;
|
|
299
|
+
"menu:subItem": string;
|
|
300
|
+
"menu:takeaway": string;
|
|
301
|
+
"menu:unitQuantity": string;
|
|
302
|
+
"menu:variant": string;
|
|
303
|
+
"order:bill:newOrder": string;
|
|
304
|
+
"order:delivery:delivery": string;
|
|
305
|
+
"order:delivery:deliveryFee": string;
|
|
306
|
+
"order:delivery:deliveryInfo": string;
|
|
307
|
+
"order:delivery:driver:driver": string;
|
|
308
|
+
"order:delivery:driver:vehicle": string;
|
|
309
|
+
"order:dineIn": string;
|
|
310
|
+
"order:move:moved": string;
|
|
311
|
+
"order:order": string;
|
|
312
|
+
"order:pax:pax": string;
|
|
313
|
+
"order:pickup:pickupInfo": string;
|
|
314
|
+
"order:pickup:pickupRef": string;
|
|
315
|
+
"order:takeaway": string;
|
|
316
|
+
"order:voidAction:voidAction": string;
|
|
317
|
+
"payment:change": string;
|
|
318
|
+
"payment:processingFee": string;
|
|
319
|
+
"payment:subtotal": string;
|
|
320
|
+
"payment:wTax": string;
|
|
321
|
+
"printer:currentPage": string;
|
|
322
|
+
"printer:print:reprint": string;
|
|
323
|
+
"printer:printStatus": string;
|
|
324
|
+
"printer:printerName": string;
|
|
325
|
+
"printer:template:order:orderTemplate": string;
|
|
326
|
+
"printer:template:order:stickerTemplate": string;
|
|
327
|
+
"printer:template:order:textTemplate": string;
|
|
328
|
+
"printer:template:variables:balanceAmount": string;
|
|
329
|
+
"printer:template:variables:balanceName": string;
|
|
330
|
+
"printer:template:variables:cashier": string;
|
|
331
|
+
"printer:template:variables:changesAmount": string;
|
|
332
|
+
"printer:template:variables:changesName": string;
|
|
333
|
+
"printer:template:variables:chargeAmount": string;
|
|
334
|
+
"printer:template:variables:chargeName": string;
|
|
335
|
+
"printer:template:variables:counterCode": string;
|
|
336
|
+
"printer:template:variables:currency": string;
|
|
337
|
+
"printer:template:variables:itemUnitPrice": string;
|
|
338
|
+
"printer:template:variables:parent": string;
|
|
339
|
+
"printer:template:variables:paymentAmount": string;
|
|
340
|
+
"printer:template:variables:paymentName": string;
|
|
341
|
+
"printer:template:variables:salesType": string;
|
|
342
|
+
"printer:template:variables:year": string;
|
|
343
|
+
"printer:totalItems": string;
|
|
344
|
+
"printer:totalPage": string;
|
|
345
|
+
"printer:totalPrice": string;
|
|
346
|
+
"restaurant:regNo": string;
|
|
347
|
+
"restaurant:restaurantCode": string;
|
|
348
|
+
"restaurant:restaurantLegalName": string;
|
|
349
|
+
"restaurant:restaurantName": string;
|
|
350
|
+
"restaurant:restaurantTaxRegNo": string;
|
|
351
|
+
"table:table": string;
|
|
352
|
+
"table:tablePax": string;
|
|
353
|
+
"user:role:cashier": string;
|
|
354
|
+
validUntil: string;
|
|
355
|
+
};
|
|
356
|
+
editor: {
|
|
357
|
+
alignment: string;
|
|
358
|
+
alignmentBottom: string;
|
|
359
|
+
alignmentLeft: string;
|
|
360
|
+
alignmentRight: string;
|
|
361
|
+
alignmentTop: string;
|
|
362
|
+
auto: string;
|
|
363
|
+
autoWidth: string;
|
|
364
|
+
body: string;
|
|
365
|
+
checkbox: string;
|
|
366
|
+
checkboxWidget: string;
|
|
367
|
+
column: string;
|
|
368
|
+
columnWidth: string;
|
|
369
|
+
divider: string;
|
|
370
|
+
dividerWidget: string;
|
|
371
|
+
editor: string;
|
|
372
|
+
footer: string;
|
|
373
|
+
footerText: string;
|
|
374
|
+
footerQr: string;
|
|
375
|
+
fontSize: string;
|
|
376
|
+
header: string;
|
|
377
|
+
headerText: string;
|
|
378
|
+
height: string;
|
|
379
|
+
hideAddonWithZeroPrice: string;
|
|
380
|
+
hideItemWithZeroPrice: string;
|
|
381
|
+
hideProductCode: string;
|
|
382
|
+
invoicePrefix: string;
|
|
383
|
+
image: string;
|
|
384
|
+
imageUploadFail: string;
|
|
385
|
+
imageWidget: string;
|
|
386
|
+
logoImage: string;
|
|
387
|
+
logoHeight: string;
|
|
388
|
+
logoWidth: string;
|
|
389
|
+
overallFontSize: string;
|
|
390
|
+
qrCode: string;
|
|
391
|
+
qrCodeFail: string;
|
|
392
|
+
qrCodeWidget: string;
|
|
393
|
+
removeColumn: string;
|
|
394
|
+
removeWidget: string;
|
|
395
|
+
row: string;
|
|
396
|
+
scale: string;
|
|
397
|
+
showAddress: string;
|
|
398
|
+
showContact: string;
|
|
399
|
+
showEmail: string;
|
|
400
|
+
size: string;
|
|
401
|
+
spacer: string;
|
|
402
|
+
spacerWidget: string;
|
|
403
|
+
spacing: string;
|
|
404
|
+
text: string;
|
|
405
|
+
textWidget: string;
|
|
406
|
+
textAlignment: string;
|
|
407
|
+
textStyle: string;
|
|
408
|
+
thick: string;
|
|
409
|
+
thickness: string;
|
|
410
|
+
validation: {
|
|
411
|
+
scale: string;
|
|
412
|
+
minOne: string;
|
|
413
|
+
columnWidthMax: string;
|
|
414
|
+
fontSizeMax: string;
|
|
415
|
+
};
|
|
416
|
+
variable_plural: string;
|
|
417
|
+
widget: string;
|
|
418
|
+
widget_plural: string;
|
|
419
|
+
width: string;
|
|
420
|
+
};
|
|
421
|
+
editorDescription: string;
|
|
422
|
+
removeLogoDesc: string;
|
|
423
|
+
resetDesc: string;
|
|
424
|
+
returnToBasicMode: string;
|
|
425
|
+
saveDialogTitle: string;
|
|
426
|
+
saveDialogDesc: string;
|
|
427
|
+
headerTextPlaceholder: string;
|
|
428
|
+
invoicePrefixPlaceholder: string;
|
|
429
|
+
footerTextPlaceholder: string;
|
|
430
|
+
footerQrPlaceholder: string;
|
|
431
|
+
};
|
|
432
|
+
};
|
|
433
|
+
'th-TH': {
|
|
434
|
+
"mf-kitchen": {
|
|
435
|
+
title: string;
|
|
436
|
+
count: string;
|
|
437
|
+
advance: string;
|
|
438
|
+
advanceBuilder: string;
|
|
439
|
+
advanceTemplateBuilder: string;
|
|
440
|
+
cancel: string;
|
|
441
|
+
confirmation: string;
|
|
442
|
+
designPanel: string;
|
|
443
|
+
imageUpload: {
|
|
444
|
+
logoSizeError: string;
|
|
445
|
+
};
|
|
446
|
+
preview: string;
|
|
447
|
+
remove: string;
|
|
448
|
+
reset: string;
|
|
449
|
+
resetToDefault: string;
|
|
450
|
+
receiptSetting: string;
|
|
451
|
+
receiptTemplate: string;
|
|
452
|
+
save: string;
|
|
453
|
+
templateBuilder: string;
|
|
454
|
+
template: {
|
|
455
|
+
load: {
|
|
456
|
+
fail: string;
|
|
457
|
+
};
|
|
458
|
+
save: {
|
|
459
|
+
success: string;
|
|
460
|
+
failed: string;
|
|
461
|
+
};
|
|
462
|
+
};
|
|
463
|
+
variables: {
|
|
464
|
+
"bill:billRemark": string;
|
|
465
|
+
"bill:billRounding": string;
|
|
466
|
+
"bill:createdAt": string;
|
|
467
|
+
"bill:itemKey": string;
|
|
468
|
+
"bill:officialReceipt": string;
|
|
469
|
+
"bill:plsPayAtCounter": string;
|
|
470
|
+
"common:address": string;
|
|
471
|
+
"common:amount": string;
|
|
472
|
+
"common:balance": string;
|
|
473
|
+
"common:code": string;
|
|
474
|
+
"common:contact": string;
|
|
475
|
+
"common:currentTime": string;
|
|
476
|
+
"common:customer": string;
|
|
477
|
+
"common:date": string;
|
|
478
|
+
"common:dateAndTime": string;
|
|
479
|
+
"common:discount": string;
|
|
480
|
+
"common:email": string;
|
|
481
|
+
"common:generatedAt": string;
|
|
482
|
+
"common:invoiceNo": string;
|
|
483
|
+
"common:item": string;
|
|
484
|
+
"common:name": string;
|
|
485
|
+
"common:numberShort": string;
|
|
486
|
+
"common:poweredBy": string;
|
|
487
|
+
"common:price": string;
|
|
488
|
+
"common:qty": string;
|
|
489
|
+
"common:quantity": string;
|
|
490
|
+
"common:reason": string;
|
|
491
|
+
"common:ref": string;
|
|
492
|
+
"common:remark": string;
|
|
493
|
+
"common:sendBy": string;
|
|
494
|
+
"common:signature": string;
|
|
495
|
+
"common:time": string;
|
|
496
|
+
"common:to": string;
|
|
497
|
+
"common:total": string;
|
|
498
|
+
"device:counter:counter": string;
|
|
499
|
+
"marketing:feedback:feedbackFooter": string;
|
|
500
|
+
"marketing:feedback:feedbackReminder": string;
|
|
501
|
+
"marketing:membership:credit": string;
|
|
502
|
+
"marketing:membership:creditAsDiscount": string;
|
|
503
|
+
"marketing:membership:creditBalance": string;
|
|
504
|
+
"marketing:membership:creditInfo": string;
|
|
505
|
+
"marketing:membership:creditUsed": string;
|
|
506
|
+
"marketing:membership:creditedTo": string;
|
|
507
|
+
"marketing:membership:freeCredit": string;
|
|
508
|
+
"marketing:membership:level": string;
|
|
509
|
+
"marketing:membership:memberInfo": string;
|
|
510
|
+
"marketing:memberstore:reward": string;
|
|
511
|
+
"marketing:memberstore:title": string;
|
|
512
|
+
"marketing:voucher:voucher": string;
|
|
513
|
+
"menu:subItem": string;
|
|
514
|
+
"menu:takeaway": string;
|
|
515
|
+
"menu:unitQuantity": string;
|
|
516
|
+
"menu:variant": string;
|
|
517
|
+
"order:bill:newOrder": string;
|
|
518
|
+
"order:delivery:delivery": string;
|
|
519
|
+
"order:delivery:deliveryFee": string;
|
|
520
|
+
"order:delivery:deliveryInfo": string;
|
|
521
|
+
"order:delivery:driver:driver": string;
|
|
522
|
+
"order:delivery:driver:vehicle": string;
|
|
523
|
+
"order:dineIn": string;
|
|
524
|
+
"order:move:moved": string;
|
|
525
|
+
"order:order": string;
|
|
526
|
+
"order:pax:pax": string;
|
|
527
|
+
"order:pickup:pickupInfo": string;
|
|
528
|
+
"order:pickup:pickupRef": string;
|
|
529
|
+
"order:takeaway": string;
|
|
530
|
+
"order:voidAction:voidAction": string;
|
|
531
|
+
"payment:change": string;
|
|
532
|
+
"payment:processingFee": string;
|
|
533
|
+
"payment:subtotal": string;
|
|
534
|
+
"payment:wTax": string;
|
|
535
|
+
"printer:currentPage": string;
|
|
536
|
+
"printer:print:reprint": string;
|
|
537
|
+
"printer:printStatus": string;
|
|
538
|
+
"printer:printerName": string;
|
|
539
|
+
"printer:template:order:orderTemplate": string;
|
|
540
|
+
"printer:template:order:stickerTemplate": string;
|
|
541
|
+
"printer:template:order:textTemplate": string;
|
|
542
|
+
"printer:template:variables:balanceAmount": string;
|
|
543
|
+
"printer:template:variables:balanceName": string;
|
|
544
|
+
"printer:template:variables:cashier": string;
|
|
545
|
+
"printer:template:variables:changesAmount": string;
|
|
546
|
+
"printer:template:variables:changesName": string;
|
|
547
|
+
"printer:template:variables:chargeAmount": string;
|
|
548
|
+
"printer:template:variables:chargeName": string;
|
|
549
|
+
"printer:template:variables:counterCode": string;
|
|
550
|
+
"printer:template:variables:currency": string;
|
|
551
|
+
"printer:template:variables:itemUnitPrice": string;
|
|
552
|
+
"printer:template:variables:parent": string;
|
|
553
|
+
"printer:template:variables:paymentAmount": string;
|
|
554
|
+
"printer:template:variables:paymentName": string;
|
|
555
|
+
"printer:template:variables:salesType": string;
|
|
556
|
+
"printer:template:variables:year": string;
|
|
557
|
+
"printer:totalItems": string;
|
|
558
|
+
"printer:totalPage": string;
|
|
559
|
+
"printer:totalPrice": string;
|
|
560
|
+
"restaurant:regNo": string;
|
|
561
|
+
"restaurant:restaurantCode": string;
|
|
562
|
+
"restaurant:restaurantLegalName": string;
|
|
563
|
+
"restaurant:restaurantName": string;
|
|
564
|
+
"restaurant:restaurantTaxRegNo": string;
|
|
565
|
+
"table:table": string;
|
|
566
|
+
"table:tablePax": string;
|
|
567
|
+
"user:role:cashier": string;
|
|
568
|
+
validUntil: string;
|
|
569
|
+
};
|
|
570
|
+
editor: {
|
|
571
|
+
alignment: string;
|
|
572
|
+
alignmentBottom: string;
|
|
573
|
+
alignmentLeft: string;
|
|
574
|
+
alignmentRight: string;
|
|
575
|
+
alignmentTop: string;
|
|
576
|
+
auto: string;
|
|
577
|
+
autoWidth: string;
|
|
578
|
+
body: string;
|
|
579
|
+
checkbox: string;
|
|
580
|
+
checkboxWidget: string;
|
|
581
|
+
column: string;
|
|
582
|
+
columnWidth: string;
|
|
583
|
+
divider: string;
|
|
584
|
+
dividerWidget: string;
|
|
585
|
+
editor: string;
|
|
586
|
+
footer: string;
|
|
587
|
+
footerText: string;
|
|
588
|
+
footerQr: string;
|
|
589
|
+
fontSize: string;
|
|
590
|
+
header: string;
|
|
591
|
+
headerText: string;
|
|
592
|
+
height: string;
|
|
593
|
+
hideAddonWithZeroPrice: string;
|
|
594
|
+
hideItemWithZeroPrice: string;
|
|
595
|
+
hideProductCode: string;
|
|
596
|
+
invoicePrefix: string;
|
|
597
|
+
image: string;
|
|
598
|
+
imageUploadFail: string;
|
|
599
|
+
imageWidget: string;
|
|
600
|
+
logoImage: string;
|
|
601
|
+
logoHeight: string;
|
|
602
|
+
logoWidth: string;
|
|
603
|
+
overallFontSize: string;
|
|
604
|
+
qrCode: string;
|
|
605
|
+
qrCodeFail: string;
|
|
606
|
+
qrCodeWidget: string;
|
|
607
|
+
removeColumn: string;
|
|
608
|
+
removeWidget: string;
|
|
609
|
+
row: string;
|
|
610
|
+
scale: string;
|
|
611
|
+
showAddress: string;
|
|
612
|
+
showContact: string;
|
|
613
|
+
showEmail: string;
|
|
614
|
+
size: string;
|
|
615
|
+
spacer: string;
|
|
616
|
+
spacerWidget: string;
|
|
617
|
+
spacing: string;
|
|
618
|
+
text: string;
|
|
619
|
+
textWidget: string;
|
|
620
|
+
textAlignment: string;
|
|
621
|
+
textStyle: string;
|
|
622
|
+
thick: string;
|
|
623
|
+
thickness: string;
|
|
624
|
+
validation: {
|
|
625
|
+
scale: string;
|
|
626
|
+
minOne: string;
|
|
627
|
+
columnWidthMax: string;
|
|
628
|
+
fontSizeMax: string;
|
|
629
|
+
};
|
|
630
|
+
variable_plural: string;
|
|
631
|
+
widget: string;
|
|
632
|
+
widget_plural: string;
|
|
633
|
+
width: string;
|
|
634
|
+
};
|
|
635
|
+
editorDescription: string;
|
|
636
|
+
removeLogoDesc: string;
|
|
637
|
+
resetDesc: string;
|
|
638
|
+
returnToBasicMode: string;
|
|
639
|
+
saveDialogTitle: string;
|
|
640
|
+
saveDialogDesc: string;
|
|
641
|
+
headerTextPlaceholder: string;
|
|
642
|
+
invoicePrefixPlaceholder: string;
|
|
643
|
+
footerTextPlaceholder: string;
|
|
644
|
+
footerQrPlaceholder: string;
|
|
645
|
+
};
|
|
646
|
+
};
|
|
647
|
+
};
|