-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathit.json
1903 lines (1903 loc) · 104 KB
/
it.json
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Buy now": "Acquista adesso",
"Apps": "Apps",
"Apps settings": "Apps settings",
"Sort order updated": "Sort order updated",
"There is not enough PHP memory_limit. Please refer to docs on how to increase to at least 512MB": "There is not enough PHP memory_limit. Please refer to docs on how to increase to at least 512MB",
"User is not a driver!": "User is not a driver!",
"Driver not found!": "Driver not found!",
"Driver now off line": "Driver now off line",
"Driver now online": "Driver now online",
"Order not on this driver": "Order not on this driver",
"Driver accepts order": "Driver accepts order",
"Driver reject order": "Driver reject order",
"Driver account created. Please wait for a call from us to activate your account.": "Driver account created. Please wait for a call from us to activate your account.",
"error_500": "Error 500 on system!",
"error_500_reasons": "There could be multiple reasons for this to happen. Misconfiguration, error in the code or some other server error.",
"error_500_resolve": "If you are the administrator, please follow the product documentation - FAQ section, to debug the problem. If you are not the administrator, sorry for experiencing this, we will work on resolving this issue.",
"error_404": "Error 404 - Not found!",
"error_404_reasons": "There could be multiple reasons for this to happen.",
"error_404_resolve": "Either you have no access to this resource or the URL is not available",
"Send order on WhatsApp": "Send order on WhatsApp",
"Pay now": "Pay now",
"The payment attempt failed": "The payment attempt failed.",
"Regenerate sitemap": "Regenerate sitemap",
"Sitemap Regenerated": "Sitemap Regenerated",
"Make": "Make",
"default": "default",
"Money conversion": "Conversione valuta",
"Some currencies need this field to be unselected. By default it should be selected": "Some currencies need this field to be unselected. By default it should be selected",
"Currency": "Valuta",
"Default Language": "Lingua di Default",
"Localisation": "Localizzazione",
"Manage languages": "Gestione lingue",
"Add new language": "Aggiungi una nuova lingua",
"Select Language": "Seleziona Lingua",
"New language successfully created.": "Una nuova lingua è stata creata con successo.",
"Hi": "Ciao",
"Your verification code is": "Il codice di verifica è",
"No options values selected": "Nessun valore è stato selezionato",
"current password": "password corrente",
"No Access": "Nessun accesso",
"Address successfully added.": "Indirizzo aggiunto con successo.",
"Address successfully deactivated.": "Indirizzo disattivato con successo.",
"Jan": "Gen",
"Feb": "Feb",
"Mar": "Mar",
"Apr": "Apr",
"May": "Mag",
"Jun": "Giu",
"Jul": "Lug",
"Aug": "Ago",
"Sep": "Set",
"Oct": "Ott",
"Nov": "Nov",
"Dec": "Dic",
"User successfully created.": "Utente creato con successo.",
"User successfully updated.": "Utente aggiornato con successo.",
"User successfully deleted.": "Utente cancellato con successo.",
"Please subscribe to a plan first": "Sottoscrivi un piano prima di continuare",
"Item successfully updated.": "Articolo aggiornato con successo.",
"Item successfully deleted.": "Articolo cancellato con successo.",
"Items successfully imported": "Articoli importati con successo.",
"Extras successfully added\/modified.": "Extra added\/modified con successo.",
"Extras successfully updated.": "Extra aggiornato con successo.",
"Extras successfully deleted.": "Extra cancellato con successo.",
"Driver name": "Driver name",
"Driver email": "Driver email",
"Driver phone": "Driver phone",
"Select city": "Seleziona città",
"Driver successfully created.": "Driver successfully created.",
"Driver successfully deleted.": "Driver successfully deleted.",
"Driver": "Driver",
"City image ( 200x200 )": "City image ( 200x200 )",
"Back": "Indietro",
"Cities": "Città",
"New": "Nuovo",
"City was added": "Città aggiunta con successo",
"Edit city": "Modifica città",
"City was updated": "Città aggiornata con successo",
"Item was deleted.": "Articolo cancellato con successo.",
"Coupon code applied successfully.": "Codice coupon applicato con successo.",
"The coupon promotion code has been expired or the limit is exceeded.": "Il codice coupon non è più attivo.",
"Plan successfully created!": "Piano creato con successo!",
"Plan successfully updated!": "Piano aggiornato con successo!",
"Plan successfully deleted!": "Piano cancellato con successo!",
"Plan update!": "Piano aggiornato!",
"Plan successfully updated.": "Piano aggiornato con successo.",
"No": "No",
"Yes": "Sì",
"Profile successfully updated.": "Profilo aggiornato con successo.",
"Password successfully updated.": "Password aggiornata con successo.",
"Restaurant QR Generators": "Generatore QR per Ristoranti",
"SELECT QR STYLE": "SELEZIONA STILE QR",
"SELECT QR COLOR": "SELEZIONA COLORE QR",
"Color 1": "Colore 1",
"Color 2": "Colore 2",
"QR Downloader": "Download QR",
"Download JPG": "Download JPG",
"Menu Print template": "Menu Print template",
"Download Print Templates": "Download Print Templates",
"Please select address first.": "Please select address first.",
"Please select table.": "Please select table.",
"Please enter phone number.": "Please enter phone number.",
"The minimmum order value is": "The minimum order value is",
"Automatically approved by admin": "Automatically approved by admin",
"Order updated.": "Order updated.",
"Order created.": "Order created.",
"No Access.": "No Access.",
"Order status succesfully changed.": "Order status successfully changed.",
"Order succesfully rated!": "Order successfully rated!",
"Client successfully deleted.": "Client successfully deleted.",
"Automatically apprved by admin": "Automatically apprved by admin",
"Order reviews": "Order reviews",
"reviews": "reviews",
"Rating has been removed": "Rating has been removed",
"Customer name": "Customer name",
"Customer email": "Customer email",
"Customer phone": "Customer phone",
"Custom note": "Custom note",
"customers_him_self": "Customer",
"customers_by_restaurant": "Restaurant",
"customers_created_by": "Created by",
"customers_visit_time": "Visit time",
"Areas": "Areas",
"Category successfully created.": "Category successfully created.",
"Category name successfully updated.": "Category name successfully updated.",
"Category successfully deleted.": "Category successfully deleted.",
"Settings not allowed to be updated in DEMO mode!": "Settings not allowed to be updated in DEMO mode!",
"Settings successfully updated!": "Settings successfully updated!",
"Restaurant successfully created.": "Restaurant successfully created.",
"Restaurant successfully updated.": "Restaurant successfully updated.",
"Restaurant successfully deactivated.": "Restaurant successfully deactivated.",
"Restaurant successfully removed from database.": "Restaurant successfully removed from database.",
"Restaurant successfully imported.": "Restaurant successfully imported.",
"Working hours successfully updated!": "Working hours successfully updated!",
"Restaurant successfully activated.": "Restaurant successfully activated.",
"Demo resturants removed.": "Demo restaurants removed.",
"Menu": "Menu",
"Variants": "Varianti",
"Variants for": "Varianti per",
"New variant for": "Nuova variante per",
"Add new variant": "Aggiungi nuova variante",
"First, you will need to add some options. Add the item first option now": "Aggiungi alcune opzioni. Aggiungi l'articolo della prima opzione",
"Variant has been added": "Variante aggiunta con successo",
"Edit variant": "Modifica variante",
"Variant has been updated": "Variante aggiornata con successo",
"Variant has been removed": "Variante cancellata con successo",
"Options for": "Opzioni per",
"Options": "Opzioni",
"New option for": "Nuova opzione per",
"Option has been added": "Opzione aggiunta con successo",
"Edit option": "Modifica opzione",
"Option has been updated": "Opzione aggiornata con successo",
"Option has been removed": "Opzione rimossa con successo",
"You can't add items from other restaurant!": "Non puoi aggiungere articoli per altri ristoranti!",
"Cart clear.": "Cart clear.",
"Find us in these cities and many more!": "Find us in these cities and many more!",
"where you can find": "where you can find",
"Restaurants in": "Restaurants in",
"Featured restaurants": "Featured restaurants",
"Popular restaurants near you": "Popular restaurants near you",
"All restaurants delivering to your address": "All restaurants delivering to your address",
"All restaurants": "Tutti i ristoranti",
"Popular restaurants": "Ristoranti più popolari",
"The selected restaurant is not active at this moment!": "Il ristorante selezionato non è attivo in questo momento!",
"Page successfully created!": "Pagina creata con successo!",
"Page successfully updated!": "Pagina aggiornata con successo!",
"Page successfully deleted!": "Pagina cancellata con successo!",
"The current password field does not match your password": "The current password field does not match your password",
"You have just received an order": "Hai ricevuto un ordine",
"Your order has been accepted. We are now working on it!": "Il tuo ordine è stato accettato ed è in lavorazione!",
"There is new order assigned to you.": "There is new order assigned to you.",
"Your order is ready for delivery. Expect us soon.": "Your order is ready for delivery. Expect us soon.",
"Your order is ready for pickup. We are expecting you.": "Your order is ready for pickup. We are expecting you.",
"Unfortunately your order is rejected. There where issues with the order and we need to reject it. Pls contact us for more info.": "Unfortunately your order is rejected. There where issues with the order and we need to reject it. Pls contact us for more info.",
"Your order has been accepted": "Your order has been accepted",
"We are now working on it!": "We are now working on it!",
"There is new order": "There is new order",
"There is new order for you.": "There is new order for you.",
"Your order is ready.": "Your order is ready.",
"Order rejected": "Order rejected",
"View Order": "View Order",
"Order notification": "Order notification",
"Order items": "Order items",
"________________": "________________",
"Delivery": "Delivery",
"Total": "Totale",
"order": "ordine",
"Hello ": "Hello ",
"This is a test email from ": "This is a test email from ",
"Visit": "Visit",
"We are happy that email works now.": "We are happy that email works now.",
"QR": "QR",
"Minimum order": "Ordine minimo",
"Hmmm... Nothing found!": "Hmmm... Nothing found!",
"Clients": "Clienti",
"Name": "Nome",
"Owner": "Proprietario",
"Owner email": "Email",
"Creation Date": "Creato",
"Birth Date": "Data di Compleanno",
"Are you sure you want to deactivate this user?": "Are you sure you want to deactivate this user?",
"Deactivate": "Disattiva",
"Add new address": "Add new address",
"Address": "Address",
"Address number": "Address number",
"Apartment number": "Aparment number",
"Intercom": "Intercom",
"Floor": "Floor",
"Entry number": "Entry number",
"Close": "Chiudi",
"Save": "Salva",
"Finalize order": "Finalize order",
"You don`t have any address. Please add new one": "You don`t have any address. Please add new one",
"Or add new": "Or add new",
"Add new": "Add new",
"Phone": "Telefono",
"Your phone here": "Your phone here",
"Comment": "Commento",
"Your comment here": "Your comment here",
"Demo Stripe Credentials": "Demo Stripe Credentials",
"Payment method": "Payment method",
"Cash on delivery": "Cash on delivery",
"Pay with card": "Pay with card",
"Pay via iDeal": "Pay via iDeal",
"Place order": "Place order",
"Name on card": "Name on card",
"Submit payment": "Submit payment",
"Clients Management": "Clients Management",
"Edit Client": "Edit Client",
"Client Management": "Client Management",
"Back to list": "Back to list",
"Client information": "Client information",
"Client Name": "Client Name",
"Client Email": "Client Email",
"Client Phone": "Client Phone",
"Settings": "Settings",
"Settings Management": "Settings Management",
"Remove demo data": "Remove demo data",
"Latest version": "Latest version",
"Social Links": "Social Links",
"Mobile App": "Mobile App",
"Site Logo": "Logo Sito",
"Restaurant Default Image": "Restaurant Default Image",
"Restaurant Details Cover Image": "Restaurant Details Cover Image",
"Favicon": "Favicon",
"Search Cover": "Search Cover",
"Site Logo Dark": "Logo sito Dark",
"Front QR": "Front QR",
"Flayer image": "Flayer image",
"Feature image #1": "Feature image #1",
"Feature image #2": "Feature image #2",
"Feature image #3": "Feature image #3",
"Feature image #4": "Feature image #4",
"Feature image #5": "Feature image #5",
"Feature image #6": "Feature image #6",
"Drivers": "Drivers",
"Add driver": "Add driver",
"Email": "Email",
"Acceptance rating": "Acceptance rating",
"Are you sure you want to delete this user?": "Are you sure you want to delete this user?",
"Drivers Management": "Drivers Management",
"Edit Driver": "Edit Driver",
"Driver Management": "Driver Management",
"Driver information": "Driver information",
"Driver Name": "Driver Name",
"Driver Email": "Driver Email",
"Driver Phone": "Driver Phone",
"Add Driver": "Add Driver",
"Realtime map": "Realtime map",
"Delivery activities": "Delivery activities",
"Plan period": "Piano di rinnovo",
"Monthly": "Mensile",
"Anually": "Annuale",
"Ordering": "Ordinamento",
"Enabled": "Abilitato",
"Disabled": "Disabilitato",
"Update plan": "Aggiorna piano",
"SAVE": "SALVA",
"Pages": "Pagine",
"Plans": "Piani",
"Add plan": "Aggiungi piano",
"Price": "Prezzo",
"Period": "Periodo",
"Items limit": "Limete articoli",
"Paddle ID": "Paddle ID",
"Stripe ID": "Stripe ID",
"PayPal ID": "PayPal ID",
"Mollie ID": "Mollie ID",
"Paystack ID": "Paystack ID",
"Unlimited": "Unlimited",
"Edit": "Edit",
"Are you sure you want to delete this plan?": "Sei sicuro di voler cancellare questo piano?",
"Delete": "Cancella",
"You don`t have any plans": "Sleziona un piano",
"Plan": "Piano",
"Plans Management": "Gestione Piani",
"Back to plans": "Indietro",
"Plan information": "Informazioni Piano",
"m": "m",
"y": "y",
"Features": "Features",
"Current Plan": "Piano Corrente",
"Switch to ": "Switch to ",
"Plan price ": "Piani Prezzi ",
"Subscribe to": "Iscriviti a",
"Subscribe": "Iscriviti",
"Your current plan": "Il tuo piano corrente",
"You are currently using the ": "Attualmente stai usando il ",
"plan": "piano",
"Status": "Stato",
"Update subscription": "Aggiorna sottoscrizione",
"Cancel subscription": "Cancella sottoscrizione",
"Password": "Password",
"Confirm Password": "Conferma Password",
"Date of Birth": "Data di Nascita",
"Create account": "Crea account",
"Forgot password?": "Recupera password?",
"Back to login": "Torna al login",
"Reset password": "Resetta password",
"Send Password Reset Link": "Invia link per reimpostare la password",
"Reset Password": "Resetta Password",
"Verify Your Email Address": "Verifica il tuo indirizzo Email",
"A fresh verification link has been sent to your email address.": "Un nuovo link di verifica è stato inviato al tuo indirizzo email.",
"Before proceeding, please check your email for a verification link.": "Prima di procedere, controlla la tua email per un link di verifica.",
"If you did not receive the email": "Se non hai ricevuto l'email",
"click here to request another": "clicca qui per richiedere un altro",
"DEMO credentials:": "DEMO credenziali:",
"ADMIN": "ADMIN",
"Username": "Username",
"OWNER": "PROPRIETARIO",
"DRIVER": "DRIVER",
"CLIENT": "CLIENTE",
"Sign in with": "Sign in with",
"Remember me": "Remember me",
"Sign in": "Sign in",
"Create new account": "Create new account",
"Verify your profile": "Verify your profile",
"Thanks for registering with our platform. We will sent you message on your phone number. Provide the code below.": "Thanks for registering with our platform. We will sent you message on your phone number. Provide the code below.",
"Verification Code": "Verification Code",
"Enter your verification code": "Enter your verification code",
"Verify profile": "Verify profile",
"Update": "Update",
"Insert": "Insert",
"User Profile": "User Profile",
"Active from": "Active from",
"Active to": "Active to",
"Image": "Image",
"Banner": "Banner",
"Edit banner": "Edit banner",
"New banner": "New banner",
"Banner information": "Banner information",
"Coupon": "Coupon",
"Edit coupon": "Edit coupon",
"New coupon": "New coupon",
"Coupon information": "Coupon information",
"Dashboard": "Dashboard",
"Overview": "Overview",
"Sales value": "Sales value",
"No sales right now!": "No sales right now!",
"Performance": "Performance",
"Total orders": "Total orders",
"No orders right now!": "No orders right now!",
"Add Restaurant": "Aggiungi Ristorante",
"Import from CSV": "Import from CSV",
"Logo": "Logo",
"Active": "Attivo",
"Deleted": "Cancellato",
"Not active": "Non attivo",
"Login as": "Login come...",
"Activate": "Activate",
"Are you sure you want to deactivate this restaurant?": "Are you sure you want to deactivate this restaurant?",
"Register your restaurant": "Registra il tuo ristorante",
"Information": "Informazioni",
"Restaurant Name": "Nome Ristorante",
"Restaurant information": "Dati del Ristorante",
"Restaurant Name here": "+",
"Owner information": "Infomazioni aziendali",
"Owner Name": "Denominazione",
"Owner Name here": "+",
"Owner Email": "Email",
"Owner Email here": "+",
"Owner Phone": "Telefono",
"Owner Phone here": "+",
"Orders": "Orders",
"Management": "Management",
"View it": "View it",
"Go back": "Go back",
"Share Menu": "Share Menu",
"Share your menu with your audience": "Share your menu with your audience",
"Download QR Code": "Download QR Code",
"Subscription plan": "Subscription plan",
"Location": "Location",
"Delivery Area": "Delivery Area",
"Clear Delivery Area": "Clear Delivery Area",
"Select your options": "Select your options",
"Extras": "Extras",
"Quantity": "Quantity",
"Add To Cart": "Add To Cart",
"Import restaurants from CSV": "Import restaurants from CSV",
"Open": "Open",
"About": "About",
"Reviews": "Reviews",
"Review": "Review",
"There are no reviews yet.": "There are no reviews yet.",
"Working Hours": "Working Hours",
"Time": "Time",
"Enter Minimum order value": "Enter Minimum order value",
"Fee percent": "Fee percent",
"Static fee": "Static fee",
"Is Featured": "Is Featured",
"Restaurant Image": "Restaurant Image",
"Restaurant Cover Image": "Restaurant Cover Image",
"All categories": "All categories",
"Call Waiter": "Call Waiter",
"Call Now": "Call Now",
"Edit Profile": "Modifica Profilo",
"User information": "Informazioni utente",
"Current Password": "Password corrente",
"New Password": "Nuova Password",
"Confirm New Password": "Conferma nuova Password",
"Change password": "Cambia password",
"Close Account": "Close Account",
"Are you sure you want to cancel the account and all their data?": "Are you sure you want to cancel the account and all their data?",
"Deliveries": "Deliveries",
"Pickup": "Pickup",
"Search for restaurant, cuisines, and dishes": "Search for restaurant, cuisines, and dishes",
"Search": "Cerca",
"days": "giorni",
"Sales Volume": "Sales Volume",
"Number of restaurants": "Number of restaurants",
"restaurants": "restaurants",
"Number of items": "Number of items",
"items": "items",
"Views": "Views",
"views": "views",
"Delivery Fee": "Delivery Fee",
"Static Fee": "Static Fee",
"Dynamic Fee": "Dynamic Fee",
"Total Fee": "Total Fee",
"Change location": "Change location",
"Enter your street or address": "Enter your street or address",
"Get my current location": "Get my current location",
"or": "or",
"Find your meal": "Find your meal",
"DELIVERING TO": "DELIVERING TO",
"change": "change",
"Like us on Facebook": "Like us on Facebook",
"Facebook": "Facebook",
"Follow us on Instagram": "Follow us on Instagram",
"Instagram": "Instagram",
"Cart": "Cart",
"Profile": "Profile",
"Live Orders": "Live Orders",
"Pricing plans": "Piani",
"Finances": "Finances",
"My Orders": "I Miei Ordini",
"My Addresses": "I Miei Indirizzi",
"Logout": "Logout",
"Login": "Login",
"Register visit": "Registro visite",
"Welcome!": "Welcome!",
"My profile": "Il Mio Profilo",
"Banners": "Banners",
"Translations": "Traduzioni",
"Site Settings": "Impostazioni sito",
"Tables": "Tavoli",
"QR Builder": "Genera QR",
"Customers log": "Log Clienti",
"Coupons": "Coupons",
"Share": "Condividi",
"Shopping Cart": "Carrello",
"Cart is empty": "Il carrelo è vuoto",
"Subtotal": "Sub totale",
"Checkout": "Cassa",
"Continue Shopping": "Continua lo shopping",
"External plugins": "Plugins Esterni",
"Loyalty Platform": "Piattaforma di fidelizzazione",
"Version": "Version",
"latest": "ultima",
"Short name": "Nome breve",
"Actions": "Azioni",
"You don`t have any addresses": "Non hai nessun indirizzo",
"New address here": "Nuovo indirizzo",
"User Management": "Gestione Utente",
"Users": "Utenti",
"Add user": "Aggiungi utente",
"Edit User": "Modifica utente",
"Add User": "Aggiungi utente",
"Table": "Tavolo",
"Dine In \/ Takeaway": "Takeaway \/ Asporto",
"Dine In": "Pranzo \/ Cena In",
"Takeaway": "Takeaway",
"Place an order": "Effettuare un ordine",
"Delivery \/ Pickup": "Delivery \/ Pickup",
"Delivery Address": "Delivery Address",
"-- select an option -- ": "-- select an option -- ",
"Today working hours": "Orario di lavoro di oggi",
"Items": "Articoli",
"Delivery time": "Delivery time",
"Pickup time": "Pickup time",
"Order can not be placed since restaurant will be \/ is closed.": "Order can not be placed since restaurant will be \/ is closed.",
"HAVE A PROMO CODE?": "HAI UN CODICE PROMOZIONALE?",
"Enter your promo code here": "Inserisci il codice promozionale",
"Only one promo code may be user per order": "Per ogni ordine puoi usare un solo codice promozionale",
"Apply": "Applica",
"Cancel Order": "Cancella Ordine",
"TOTAL": "TOTALE",
"Cash \/ Card Terminal": "Cash \/ Card Terminal",
"Cash on pickup": "Cash on pickup",
"Pay with PayPal": "Paga con PayPal",
"Pay with Paystack": "Pay with Paystack",
"Pay with Mollie": "Pay with Mollie",
"Send Whatsapp Order": "Send Whatsapp Order",
"Send Facebook Order": "Send Facebook Order",
"I agree to the Terms and Conditions and Privacy Policy": "I agree to the Terms and Conditions and Privacy Policy",
"Demo cards": "Demo cards",
"You're all set!": "You're all set!",
"Order": "Ordine",
"Go back to restaurant": "Torna al ristorante",
"Assign Driver": "Assign Driver",
"Go Back": "Go Back",
"Refresh": "Refresh",
"Live orders": "Live orders",
"New Orders": "New Orders",
"Accepted": "Accepted",
"Done": "Done",
"Status History": "Status History",
"Details": "Details",
"Your overall rating": "Your overall rating",
"Order time to prepare in minutes": "Order time to prepare in minutes",
"Status from": "Status from",
"ID": "ID",
"Created": "Created",
"Time Slot": "Time Slot",
"Method": "Method",
"Last status": "Last status",
"Client": "Client",
"Client Information": "Client Information",
"Contact": "Contact",
"Table Information": "Table Information",
"Table:": "Table:",
"Area:": "Area:",
"VAT ": "VAT ",
"Time to prepare": "Time to prepare",
"minutes": "minutes",
"NET": "NET",
"VAT": "VAT",
"Sub Total": "Sub Total",
"Payment status": "Payment status",
"Delivery method": "Delivery method",
"Time slot": "Time slot",
"Dine method": "Dine method",
"Dine in": "Dine in",
"Accept": "Accept",
"Reject": "Reject",
"Assign to driver": "Assign to driver",
"No actions for you right now!": "No actions for you right now!",
"Prepared": "Prepared",
"Delivered": "Delivered",
"Picked Up": "Picked Up",
"Date From": "Date From",
"Date from": "Date from",
"Date to": "Date to",
"Filter by Restaurant": "Filter by Restaurant",
"Select an option": "Select an option",
"Filter by Client": "Filter by Client",
"Filter by Driver": "Filter by Driver",
"Clear Filters": "Clear Filters",
"Download report": "Download report",
"Filter": "Filter",
"You don`t have any orders": "You don`t have any orders",
"Table \/ Method": "Table \/ Method",
"Order Review": "Order Review",
"Poor": "Poor",
"Fair": "Fair",
"Good": "Good",
"Excellent": "Excellent",
"WOW": "WOW",
"Order comment": "Order comment",
"Order comment here": "Order comment here",
"Order tracking": "Order tracking",
"Fee information": "Fee information",
"Your current static fee on each order is:": "Your current static fee on each order is:",
"Your current percentage fee on each order is:": "Your current percentage fee on each order is:",
"on the order value": "on the order value",
"Fees": "Fees",
"Platform fee": "Platform fee",
"Processor fee": "Processor fee",
"Platform profit": "Platform profit",
"Net Price + VAT": "Net Price + VAT",
"Net Price": "Net Price",
"Total Price": "Total Price",
"Stripe connect": "Stripe connect",
"We use Stripe to collect payments. Connect now, and we will send your funds from cart payments dirrectly to your Stripe account": "We use Stripe to collect payments. Connect now, and we will send your funds from cart payments dirrectly to your Stripe account",
"Connect with Stripe Connect": "Connect with Stripe Connect",
"Stripe account": "Stripe account",
"Stripe details submited": "Stripe details submited",
"Update Stripe connection": "Update Stripe connection",
"Restaurant Menu Management": "Restaurant Menu Management",
"Edit Restaurant Menu": "Modifica Menu Ristorante",
"Add new category": "Add new category",
"Add item": "Add item",
"Menu size limit reaced": "Menu size limit reached",
"Edit category": "Edit category",
"Are you sure you want to delete this category?": "Are you sure you want to delete this category?",
"AVAILABLE": "AVAILABLE",
"UNAVAILABLE": "UNAVAILABLE",
"Add new extras": "Add new extras",
"Select variant or leave empty for all": "Select variant or leave empty for all",
"Item Management": "Item Management",
"Back to items": "Back to items",
"Item information": "Item information",
"Item Name": "Item Name",
"Item Description": "Item Description",
"Item Description here ... ": "Item Description here ... ",
"Item Price": "Item Price",
"VAT percentage( calculated into item price )": "VAT percentage( calculated into item price )",
"Item VAT percentage": "Item VAT percentage",
"Item Image": "Item Image",
"Are you sure you want to delete this item?": "Are you sure you want to delete this item?",
"Edit Options": "Modifica Opzioni",
"Add Variant": "Add Variant",
"For": "For",
"All variants": "All variants",
"Selected": "Selected",
"Are you sure you want to delete this extras?": "Are you sure you want to delete this extras?",
"Edit Item": "Modifica articolo",
"Item available": "Articolo disponibile",
"Category name": "Nome categoria",
"Add new item": "Aggiungi un nuovo articolo",
"Item name": "Nome",
"Item description": "Descrizione",
"Select image": "Seleziona immagine",
"Change": "Change",
"Import items from CSV": "Import items from CSV",
"Import your file": "Importa file",
"Add page": "Aggiungi pagina",
"Title": "Titolo",
"Content": "Contenuto",
"Show as link": "Show as link",
"Click for details": "Click for details",
"Are you sure you want to delete this page?": "Are you sure you want to delete this page?",
"You don`t have any pages": "You don`t have any pages",
"Page": "Pagina",
"Page Management": "Gestione Pagina",
"Back to pages": "Indietro",
"Page information": "Informazioni Pagina",
"Title here ...": "Titolo qui ....",
"Rating": "Valutazione",
"User": "Utente",
"notifications_email": "Email",
"notifications_thanks": "Thanks for registering on :app_name",
"notifications_hello": "Hello :username",
"notifications_visit": "Visit :app_name",
"notifications_regdone": "We are happy to have you onboard.",
"notifications_adminapprove": "Soon as admin approves your account, we will let you know.",
"notifications_acc_create": "Account created in :app_name",
"notifications_rest_acc_created": "We have create a owner account for :restoname",
"notifications_driver_acc_created": "We have create a driver account for :app_name",
"notifications_manager_acc_created": "We have create a manager account for :app_name",
"notifications_login": "Login",
"notifications_username": "Username: :email",
"notifications_password": "Password: :password",
"notifications_reset_pass": "You can reset your initial password",
"notifications_thanks_for_using_us": "Thank you for using our service!",
"notifications_thanks_andcheckemail": "Thanks for registering. Please check your email for login information!",
"notifications_thanks_and_review": "Thanks you for submitting your profile. We will review it and contact you shortly!",
"notifications_acc_closed": "Closed Account on :app_name",
"notifications_acc_closed_sub": "Your account has been deleted. Thank you for being an :app_name customer. We sincerely appreciate your business and hope you come back soon!",
"notifications_acc_closed_attachment": "Find attached to this mail a copy of the data associated to this account.",
"notifications_acc_closed_msg": "Account has been successfully deleted. Please check your email!",
"notifications_notification_callwaiter": "You have new customer on",
"notifications_notification_neworder": "You have new order with ID",
"settings_system_status": "System status",
"settings_how_to_fix_this": "How to fix this",
"settings_setup_progress": "Setup Progress",
"settings_default_admin_email": "Check for default admin email.",
"settings_default_admin_email_ok": "Your email is changed correctly. Thanks",
"settings_using_default_admin_solution": "You are using default email and this is security risk. Please read in the documentation how to set up your own email.",
"settings_smtp": "Mail sending",
"settings_smtp_not_ok": "We where not able to send test email. Please make sure that you have entered correct SMTP credentials. Please note that you can use both SSL and no SSL ports. When using SSL, make sure MAIL_MAILER is not smtp, but sendmail, as in the docs.",
"settings_paddle": "Paddle",
"settings_paddle_error": "Look like you haven't setup your paddle. Paddle.com is used for subscriptions and payments. Please follow the docs and add your paddle credentials in settings",
"settings_stripe": "Stripe",
"settings_stripe_error": "Look like you haven't setup your stripe. Stripe is used for subscriptions and payments. Please follow the docs and add your stripe credentials in settings",
"You do not have any address, please add new one.": "You do not have any address, please add new one.",
"You don't have any address, please add new one.": "You don't have any address, please add new one.",
"New address added successfully!": "New address added successfully!",
"Address successfully deactivated!": "Address successfully deactivated!",
"You can not delete this address!": "You can not delete this address!",
"Feature image ( 128x128 )": "Feature image ( 128x128 )",
"Enter title": "Enter title",
"Enter description": "Enter description",
"Add new feature": "Add new feature",
"Landing Page": "Landing Page",
"New feature": "New feature",
"Feature was added": "Feature was added",
"Edit this feature": "Edit this feature",
"Feature was updated": "Feature was updated",
"Feature was deleted.": "Feature was deleted.",
"Enter link name": "Enter link name",
"Enter link URL": "Enter link URL",
"Processes": "Processes",
"Add new process": "Add new process",
"New process": "New process",
"Process was added": "Process was added",
"Edit this process": "Edit this process",
"Process was updated": "Process was updated",
"Process was deleted.": "Process was deleted.",
"Successfully migrated to multi language menus": "Successfully migrated to multi language menus",
"Successfully updated to version v": "Successfully updated to version v",
"There is nothing to update!": "There is nothing to update!",
"Author image ( 48x48 )": "Author image ( 48x48 )",
"Enter author name": "Enter author name",
"Enter short description": "Enter short description",
"Enter testimonial comment": "Enter testimonial comment",
"Testimonials": "Testimonials",
"Add new testimonial": "Add new testimonial",
"New testimonial": "New testimonial",
"Testimonial was added": "Testimonial was added",
"Edit this testimonial": "Edit this testimonial",
"Testimonial was updated": "Testimonial was updated",
"Testimonial was deleted.": "Testimonial was deleted.",
"Hi, I'd like to place an order": "Hi, I'd like to place an order",
"Delivery Order No": "Delivery Order No",
"Pickup Order No": "Pickup Order No",
"Variant": "Variant:",
"Delivery Details": "Delivery Details",
"Pickup Details": "Pickup Details",
"will confirm your order upon receiving the message.": "will confirm your order upon receiving the message.",
"Payment Options": "Payment Options",
"Payment for order on ": "Payment for order on ",
"Customer Info": "Customer Info",
"Delivery Info": "Delivery Info",
"Go home": "Go home",
"Sections": "Sections",
"All rights reserved": "All rights reserved",
"Accepting Payments": "Accepting Payments",
"WhatsApp number": "WhatsApp number",
"Hero image": "Hero image",
"Migrate to multilanguge menu": "Migrate to multilanguge menu",
"AuthO is the new Authentication Mechanizm": "AuthO is the new Authentication Mechanizm",
"Sync Existing Users to AuthO (So they need to do Password Reset)": "Sync Existing Users to AuthO (So they need to do Password Reset)",
"Do not Sync Existing Users to AuthO (So they need to do Sign Up)": "Do not Sync Existing Users to AuthO (So they need to do Sign Up)",
"Pagination Navigation": "Pagination Navigation",
"to": "to",
"of": "of",
"results": "results",
"Go to page :page": "Go to page :page",
"Variant:": "Variant:",
"Total: ": "Total: ",
"Your order is created. You will be notified for further information.": "Your order is created. You will be notified for further information.",
"Thanks for your purchase": "Thanks for your purchase",
"I agree to the": "I agree to the",
"and": "and",
"Terms of Service": "Terms of Service",
"Privacy Policy": "Privacy Policy",
"Earnings": "Earnings",
"Are you sure you want to deactivate this driver?": "Are you sure you want to deactivate this driver?",
"just_created": "Just created",
"accepted_by_admin": "Accepted by admin",
"accepted_by_restaurant": "Accept",
"assigned_to_driver": "Assigned to driver",
"prepared": "Prepared",
"picked_up": "Picked up",
"delivered": "Delivered",
"rejected_by_admin": "Reject",
"rejected_by_restaurant": "Reject",
"updated": "Updated",
"closed": "Closed",
"rejected_by_driver": "Reject",
"accepted_by_driver": "Accept",
"prepared_order": "Order prepared",
"Updates": "Updates",
"Updates Management": "Updates Management",
"New version available": "New version available",
"Changelog": "Changelog",
"Restaurant description": "Restaurant description",
"Restaurant address": "Restaurant address",
"Restaurant phone": "Restaurant phone",
"Whatsapp phone": "Whatsapp phone",
"Whatsapp phone to receive orders on": "Whatsapp phone to receive orders on",
"Monday": "Monday",
"Tuesday": "Tuesday",
"Wednesday": "Wednesday",
"Thursday": "Thursday",
"Friday": "Friday",
"Saturday": "Saturday",
"Sunday": "Sunday",
"Plan name": "Nome del Piano",
"Plan description": "Descrizione del piano",
"Features list (separate features with comma)": "Elenco delle funzionalità (separale con la virgola)",
"Plan Features comma separated": "separale con la virgola",
"Plan price": "Prezzi dei Piani",
"Paddle ID here": "Paddle ID here",
"PayPal Pricing Plan ID": "PayPal Pricing Plan ID",
"Product price plan id from PayPal starting with P-xxxxxx": "Product price plan id from PayPal starting with P-xxxxxx",
"Stripe Pricing Plan ID": "Stripe Pricing Plan ID",
"Product price plan id from Stripe starting with price_xxxxxx": "Product price plan id from Stripe starting with price_xxxxxx",
"Mollie Pricing Plan ID": "Mollie Pricing Plan ID",
"Product price plan id from Mollie": "Product price plan id from Mollie",
"Paystack Pricing Plan ID": "Paystack Pricing Plan ID",
"Product price plan id from Paystack": "Product price plan id from Paystack",
"Delivery income": "Delivery income",
"Size": "Size",
"Area": "Area",
"Tables management": "Tables management",
"Enter table name or internal id, ex Table 8": "Enter table name or internal id, ex Table 8",
"Enter table person size, ex 4": "Enter table person size, ex 4",
"Selec rest area id": "Selec rest area id",
"Just created": "Just created",
"Accepted by admin": "Accepted by admin",
"Accepted by restaurant": "Accepted by restaurant",
"Assigned to driver": "Assigned to driver",
"Picked up": "Picked up",
"Rejected by admin": "Rejected by admin",
"Rejected by restaurant": "Rejected by restaurant",
"Updated": "Updated",
"Closed": "Closed",
"Rejected by driver": "Rejected by driver",
"Accepted by driver": "Accepted by driver",
"Site Name": "Nome del sito",
"Site Name here": "Nome del sito qui",
"Site Description": "Descrizione",
"Site Description here": "Descrizione sito qui",
"Header Title": "Titolo",
"Header Title here": "Titolo qui",
"Header Subtitle": "Sottotitolo",
"Delivery cost - fixed": "Delivery cost - fixed",
"Fixed delivery": "Fixed delivery",
"Info Title": "Info Title",
"Info Subtitle": "Info Subtitle",
"Info Subtitle text here": "Info Subtitle text here",
"Play Store": "Play Store",
"Play Store link here": "Play Store link here",
"App Store": "App Store link here",
"Facebook link here": "Facebook link here",
"Instagram link here": "Instagram link here",
"System": "System",
"Project name": "Project name",
"Link to your site": "Link to your site",
"Subdomains": "Subdomains",
"Subdomain your app works in. ex if your subdomain is app.yourdomain.com, here you should have www,app": "Subdomain your app works in. ex if your subdomain is app.yourdomain.com, here you should have www,app",
"App debugging": "App debugging",
"Enable if you experince error 500": "Enable if you experince error 500",
"Wildcard domain": "Wildcard domain",
"If you have followed the procedure to enable wildcard domain, select this so you can have shopname.yourdomain.com": "If you have followed the procedure to enable wildcard domain, select this so you can have shopname.yourdomain.com",
"Enable guest log": "Enable guest log",
"Hide project branding on menu page": "Hide project branding on menu page",
"Disable the landing page": "Disabilita landing page",
"When landing page is disabled, the project will start from the login page. In this case it is best to have the system in subdomain": "When landing page is disabled, the project will start from the login page. In this case it is best to have the system in subdomain",
"Ordering and items": "Ordering and items",
"Completely disable ordering": "Completely disable ordering",
"If this is selected, then cart, and orders will not be shown": "If this is selected, then cart, and orders will not be shown",
"Disable continues orders": "Disable continues orders",
"Enable pickup , system wide": "Enable pickup , system wide",
"Hide cash on delivery, system wide": "Hide cash on delivery, system wide",
"Delivery \/ time intervals in minutes": "Delivery \/ time intervals in minutes",
"Separate the time slots into N Minutes. ex 09:00-09-15 , 09:15-09:30 - value is 15": "Separate the time slots into N Minutes. ex 09:00-09-15 , 09:15-09:30 - value is 15",
"Default payment type": "Default payment type",
"Enable import via CSV for restaurant items": "Enable import via CSV for restaurant items",
"Enable call waiter button": "Enable call waiter button",
"When enabled, there will be notification in the backend when user click on the button to call waiter": "When enabled, there will be notification in the backend when user click on the button to call waiter",
"Other settings": "Other settings",
"Demo restaurant slug": "Demo restaurant slug",
"Enter the domain - slug of your demo restaurant that will show on the landing page": "Enter the domain - slug of your demo restaurant that will show on the landing page",
"Url route for restaurant": "Url route for restaurant",
"If you want to change the link the restaurant is open in. ex yourdomain.com\/shop\/shopname. shop - should be the value here": "If you want to change the link the restaurant is open in. ex yourdomain.com\/shop\/shopname. shop - should be the value here",
"Print templates images": "Print templates images",
"Links to images representing the images for the templates. You can use remote images": "Links to images representing the images for the templates. You can usee remote images",
"Print templates zip": "Print templates zip",
"Link to .zip representing the template for download. You can use remote file": "Link to .zip representing the template for download. You can use remote file",
"Enable multi language menus": "Enable multi language menus",
"When enabled, restaurants can add language version to the menu": "When enabled, restaurants can add language version to the menu",
"Enable change log in update screen": "Enable change log in update screen",
"App environment": "App environment",
"Links": "Links",
"Link to terms and services": "Link to terms and services",
"Link to privacy policy": "Link to privacy policy",
"Custom fields on order": "Custom fields on order",
"Label on the custom fields": "Label on the custom fields",
"Custom fileds in JSON format": "Custom fileds in JSON format",
"Please check docs on how to define the custom fields on order.": "Please check docs on how to define the custom fields on order.",
"Tool used for subscriptions": "Tool used for subscriptions",
"Enable Finance dasboard for owner": "Enable Finance dasboard for owner",
"More advance, finance related reports for owner": "More advance, finance related reports for owner",
"Enable Finance dasboard for admin": "Enable Finance dasboard for admin",
"More advance, finance related reports for admin": "More advance, finance related reports for admin",
"Stripe": "Stripe",
"Enable stripe for payments when ordering": "Enable stripe for payments when ordering",
"Stripe API key": "Stripe API key",
"Stripe API Secret": "Stripe API Secret",
"Enable Stripe connect": "Enable Stripe connect",
"If enabled, restaurants will be able to connect, and money to be send directly to them": "If enabled, restaurants will be able to connect, and money to be send directly to them",
"Paypal": "Paypal",
"Enable paypal for payments when ordering": "Enable paypal for payments when ordering",
"Paypal client id": "Paypal client id",
"Paypal secret": "Paypal secret",
"Paypal mode": "Paypal mode",
"Mollie": "Mollie",
"Enable mollie for payments when ordering": "Enable mollie for payments when ordering",
"Mollie client key": "Mollie client key",
"Local bank transfer": "Local bank transfer",
"Local bank transfer explanation": "Local bank transfer explanation",
"Bank Account": "Bank Account",
"Paystack": "Paystack",
"Paystak payments enabled": "Paystak payments enabled",
"Public key": "Public key",
"Secret key": "Secret key",
"Merchant email": "Merchant email",
"Paystack payment url": "Paystack payment url",
"Paddle": "Paddle",
"Vendor ID obtained from Paddle.com": "Vendor ID obtained from Paddle.com",
"Site Info": "Site Info",
"Setup": "Setup",
"Images": "Images",
"Default language": "Default language",
"If you make change, make sure you first have added the new language in Translations and you have done the translations.": "If you make change, make sure you first have added the new language in Translations and you have done the translations.",
"List of available language on the landing page": "List of available language on the landing page",
"Define a list of Language shortcode and the name. If only one language is listed, the language picker will not show up": "Define a list of Language shortcode and the name. If only one language is listed, the language picker will not show up",
"Time zone": "Time zone",
"This value is important for correct vendors opening and closing times": "This value is important for correct vendors opening and closing times",
"Default currency": "Default currency",
"Time format": "Time format",
"Date and time display": "Date and time display",
"Apps & Plugins": "Apps & Plugins",
"WhatsApp ordering": "WhatsApp ordering",
"Enable WhatsApp order submit": "Enable WhatsApp order submit",
"When activated, if owner has entered his whatsapp phone a send to whatsapp order will be shown on order completed page. Order will be sent to owner whatsapp phone": "When activated, if owner has entered his whatsapp phone a send to whatsapp order will be shown on order completed page. Order will be sent to owner whatsapp phone",
"Google plugins": "Google plugins",
"Recaptcha site key": "Recaptcha site key",
"Make empty if you can't make submition on register screen": "Make empty if you can't make submition on register screen",
"Recaptcha secret": "Recaptcha secret",
"Google maps api key": "Google maps api key",
"Google analytics key": "Google analytics key",
"Notifications": "Notifications",
"Onesignal App id": "Onesignal App id",
"Onesignal rest api key": "Onesignal rest api key",
"Pusher live notifications": "Pusher live notifications",
"Pusher app id": "Pusher app id",
"Pusher is used for notification for call waiter and new orders avaialbe": "Pusher is used for notification for call waiter and new orders avaialbe",
"Pusher app key": "Pusher app key",
"Pusher app secret": "Pusher app secret",
"Pusher app cluster": "Pusher app cluster",
"Broadcast Driver": "Broadcast Driver",
"Cookies": "Cookies",
"Cookie Consent": "Cookie Consent",
"Cookie consent popup - you can import other via js": "Cookie consent popup - you can import other via js",
"Share this": "Share this",
"Share this property id": "Share this property id",
"You can find this number in Share this import link": "You can find this number in Share this import link",
"Futy": "Futy",
"Futy key": "Futy key",
"SMTP": "SMTP",
"Mail driver": "Mail driver",
"Host": "Host",
"Port": "Port",
"Common ports are 26, 465, 587": "Common ports are 26, 465, 587",
"Encryption": "Encryption",
"From address": "From address",
"From Name": "From Name",
"CSS & JS": "CSS & JS",
"JavaScript - Frontend": "JavaScript - Frontend",
"CSS - Frontend": "CSS - Frontend",
"JavaScript - Backend": "JavaScript - Backend",
"CSS - Backend": "CSS - Backend",
"Note": "Note",
"There are no customers visits...": "There are no customers visits...",
"There are no tables": "There are no tables",
"Add new customer visit": "Add new customer visit",
"Self Delivery": "Self Delivery",
"Free Delivery": "Free Delivery",
"New customer visit": "New customer visit",
"This password reset link will expire in 60 minutes.": "This password reset link will expire in 60 minutes.",
"If you’re having trouble clicking the \":actionText\" button, copy and paste the URL below\ninto your web browser:": "Caso não seja possível clicar no botão \":actionText\", copie e cole no seu navegador o endereço a seguir:",
"Directly approve order": "Directly approve order",
"When selected admin does not have to approve order": "When selected admin does not have to approve order",
"Assign orders to drivers automatically": "Assign orders to drivers automatically",
"Allow restaurant to do their own delivery": "Allow restaurant to do their own delivery",
"Time for order to be prepared": "Time for order to be prepared",
"Average time order is prepared, so users can not order before restaurant or shop is closing": "Average time order is prepared, so users can not order before restaurant or shop is closing",
"Search radius for restaurants": "Search radius for restaurants",
"Maximum distance that restaurants are shown to user": "Maximum distance that restaurants are shown to user",
"Search radius for drivers": "Search radius for drivers",
"When you have automatic assign to driver, this is a way to show the system for the maximum range to look for driver": "When you have automatic assign to driver, this is a way to show the system for the maximum range to look for driver",
"Is your project multi city": "Is your project multi city",
"When selected, the frontpage will display list of cities": "When selected, the frontpage will display list of cities",
"Single mode - run this site for one restaurant only": "Single mode - run this site for one restaurant only",
"The id of the restaurant for single mode": "The id of the restaurant for single mode",
"If you have single mode selected, than this restaurant id will be shown": "If you have single mode selected, than this restaurant id will be shown",
"Delivery costs": "Delivery costs",
"Enable cost per distance": "Enable cost per distance",
"Cost per kilometer": "Cost per kilometer",
"Enable cost based on range": "Enable cost based on range",
"If you have enable cost based on range, the delivery cost will be calucalted based on what range the distance for delivery is in": "If you have enable cost based on range, the delivery cost will be calucalted based on what range the distance for delivery is in",
"First range": "First range",
"Range in kilometers ex from 0km - 5km will be 0-5": "Range in kilometers ex from 0km - 5km will be 0-5",
"Second range": "Second range",
"Third range": "Third range",