-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathda.json
1904 lines (1904 loc) · 105 KB
/
da.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": "Køb nu",
"Apps": "Apps",
"Apps settings": "App indstillinger",
"Sort order updated": "Sorter ordre opdateret",
"There is not enough PHP memory_limit. Please refer to docs on how to increase to at least 512MB": "Der er ikke nok PHP memory_limit. Se venligst dokumenter om, hvordan du øger til mindst 512MB",
"User is not a driver!": "Bruger er ikke en chauffør!",
"Driver not found!": "Chauffør ikke fundet",
"Driver now off line": "Chauffør er nu offline",
"Driver now online": "Chauffør er online",
"Order not on this driver": "Ordre er ikke på denne chauffør",
"Driver accepts order": "Chauffør accepterer ordre",
"Driver reject order": "Chauffør afviser ordre",
"Driver account created. Please wait for a call from us to activate your account.": "Chauffør konto oprettet. Vent venligst på en besked fra os.",
"error_500": "Fejl 500 på systemet",
"error_500_reasons": "Der kan være flere årsager til denne fejl.",
"error_500_resolve": "Hvis du er administratoren, så følg venligst produktdokumentationen - FAQ-sektionen for at fejlsøge problemet. Hvis du ikke er administratoren, beklager vi, at du oplever dette, vi vil arbejde på at løse dette problem.",
"error_404": "Fejl 404 - ikke fundet!",
"error_404_reasons": "Der kan være flere årsager til denne fejl.",
"error_404_resolve": "Enten har du ikke adgang til denne ressource ellers er URL'en ikke tilgængelig.",
"Send order on WhatsApp": "Send ordre på WhatsApp",
"Pay now": "Betal nu",
"The payment attempt failed": "Betalingen mislykkedes",
"Regenerate sitemap": "Regenerer sitemap",
"Sitemap Regenerated": "Sitemap regenereret",
"Make": "Lav",
"default": "Standard",
"Money conversion": "Penge konvertering",
"Some currencies need this field to be unselected. By default it should be selected": "Nogle valutaer kræver at dette felt ikke er valgt. Som standard skal det være valgt.",
"Currency": "Valuta",
"Default Language": "Standard sprog",
"Localisation": "Lokalisering",
"Manage languages": "Håndter sprog",
"Add new language": "Tilføj nyt sprog",
"Select Language": "Vælg sprog",
"New language successfully created.": "Nyt sprog succesfuldt tilføjet",
"Hi": "Hej",
"Your verification code is": "Din bekræftelseskode er",
"No options values selected": "Ingen mulige værdier valgt",
"current password": "Nuværende kodeord",
"No Access": "Ingen adgang",
"Address successfully added.": "Adresse succesfuldt tilføjet",
"Address successfully deactivated.": "Adresse succesfuldt deaktiveret",
"Jan": "Jan",
"Feb": "Feb",
"Mar": "Mar",
"Apr": "Apr",
"May": "Maj",
"Jun": "Jun",
"Jul": "Jul",
"Aug": "Aug",
"Sep": "Sep",
"Oct": "Okt",
"Nov": "Nov",
"Dec": "Dec",
"User successfully created.": "Bruger succesfuldt oprettet",
"User successfully updated.": "Bruger succesfuldt opdateret",
"User successfully deleted.": "Bruger succesfuldt slettet",
"Please subscribe to a plan first": "Venligst tilmed en plan først",
"Item successfully updated.": "Produkt succesfuldt opdateret",
"Item successfully deleted.": "Produkt succesfuldt slettet",
"Items successfully imported": "Produkt succesfuldt importeret",
"Extras successfully added/modified.": "Tilbehør succesfuldt tilføjet/ændret",
"Extras successfully updated.": "Tilbehør succesfuldt opdateret",
"Extras successfully deleted.": "Tilbehør succesfuldt slettet",
"Driver name": "Chauffør navn",
"Driver email": "Chauffør e-mail",
"Driver phone": "Chauffør mobil",
"Select city": "Vælg by",
"Driver successfully created.": "Chauffør succesfuldt oprettet",
"Driver successfully deleted.": "Chauffør succesfuldt slettet",
"Driver": "Chauffør",
"City image ( 200x200 )": "City image ( 200x200 )",
"Back": "Tilbage",
"Cities": "Byer",
"New": "Ny",
"City was added": "By tilføjet",
"Edit city": "Ændre by",
"City was updated": "By blev opdateret",
"Item was deleted.": "Produkt blev slettet",
"Coupon code applied successfully.": "Brug af kupon succesfuldt",
"The coupon promotion code has been expired or the limit is exceeded.": "Kupon koden er enten udløbet eller brugt til grænsen",
"Plan successfully created!": "Plan oprettet!",
"Plan successfully updated!": "Plan opdateret!",
"Plan successfully deleted!": "Plan slettet!",
"Plan update!": "Plan opdatering!",
"Plan successfully updated.": "Plan succesfuldt opdateret",
"No": "Nej",
"Yes": "Ja",
"Profile successfully updated.": "Profile succesfuldt opdateret",
"Password successfully updated.": "Kodeord succesfuldt opdateret",
"Restaurant QR Generators": "Restaurant QR-Generatorer",
"SELECT QR STYLE": "VÆLG QR MODEL",
"SELECT QR COLOR": "VÆLG QR FARVE",
"Color 1": "Farve 1",
"Color 2": "Farve 2",
"QR Downloader": "QR Downloader",
"Download JPG": "Download JPG",
"Menu Print template": "Menu print template",
"Download Print Templates": "Download print templates",
"Please select address first.": "Vælg venligst adresse først",
"Please select table.": "Vælg venligst bord",
"Please enter phone number.": "Udfyld venligst mobil nummer",
"The minimmum order value is": "Minimums orderen er",
"Automatically approved by admin": "Automatisk godkendt af admin",
"Order updated.": "Ordre opdateret",
"Order created.": "Ordre oprettet",
"No Access.": "Ingen adgang",
"Order status succesfully changed.": "Orde status succesfuldt ændret",
"Order succesfully rated!": "Ordre succesfuldt bedømt!",
"Client successfully deleted.": "Kunde succesfuldt slettet",
"Automatically apprved by admin": "Automatisk godkendt af admin",
"Order reviews": "Ordre anmeldelser",
"reviews": "Anmeldelser",
"Rating has been removed": "Bedømmelse fjernet",
"Customer name": "Kunde navn",
"Customer email": "Kunde e-mail",
"Customer phone": "Kunde mobil",
"Custom note": "Kunde notat",
"customers_him_self": "Kunde",
"customers_by_restaurant": "Restaurant",
"customers_created_by": "Oprettet af",
"customers_visit_time": "Besøgstid",
"Areas": "Områder",
"Category successfully created.": "Kategori succesfuldt oprettet",
"Category name successfully updated.": "Kategori navn succesfuldt opdateret",
"Category successfully deleted.": "Kategori succesfuldt slettet",
"Settings not allowed to be updated in DEMO mode!": "Indstillinger er ikke tilladt at blive opdateret i DEMO model!",
"Settings successfully updated!": "Indstillinger succesfuldt opdateret",
"Restaurant successfully created.": "Restaurant succesfuldt oprettet",
"Restaurant successfully updated.": "Restaurant succesfuldt opdateret",
"Restaurant successfully deactivated.": "Restaurant succesfuldt deaktiveret",
"Restaurant successfully removed from database.": "Restaurant succesfuldt fjernet fra database",
"Restaurant successfully imported.": "Restaurant succesfuldt importeret",
"Working hours successfully updated!": "Arbejdstimer succesfuldt opdateret!",
"Restaurant successfully activated.": "Restaurant succesfuldt aktiveret",
"Demo resturants removed.": "Demo restauranter fjernet",
"Menu": "Menu",
"Variants": "Varianter",
"Variants for": "Varianter til",
"New variant for": "Nye varianter til",
"Add new variant": "Tilføj ny variant",
"First, you will need to add some options. Add the item first option now": "Først skal du tilføje nogle muligheder. Tilføj den første valgmulighed/vare nu",
"Variant has been added": "Variant tilføjet",
"Edit variant": "Ændre variant",
"Variant has been updated": "Variant opdateret",
"Variant has been removed": "Variant fjernet",
"Options for": "Muligheder for",
"Options": "Muligheder",
"New option for": "Ny mulighed for",
"Option has been added": "Mulighed er tilføjet",
"Edit option": "Ændre mulighed",
"Option has been updated": "Mulighed er blevet opdateret",
"Option has been removed": "Mulighed er blevet fjernet",
"You can't add items from other restaurant!": "Du kan ikke tilføje produkter fra andre restauranter!",
"Cart clear.": "Tøm kurv",
"Find us in these cities and many more!": "Find os i disse byer og mange flere!",
"where you can find": "hvor du kan finde",
"Restaurants in": "Restauranter i",
"Featured restaurants": "Fremhævede restauranter",
"Popular restaurants near you": "Populære restauranter nær dig",
"All restaurants delivering to your address": "Alle restauranter som leverer til din adresse",
"All restaurants": "Alle restauranter",
"Popular restaurants": "Populære restauranter",
"The selected restaurant is not active at this moment!": "Den valgte restaurant er ikke tilgængelig på nuværende tidspunkt!",
"Page successfully created!": "Side succesfuldt oprettet",
"Page successfully updated!": "Side succesfuldt opdateret",
"Page successfully deleted!": "Side succesfuldt slettet",
"The current password field does not match your password": "Det nuværende kodeordsfelt matcher ikke dit kodeord",
"You have just received an order": "Du har lige modtaget en ordre",
"Your order has been accepted. We are now working on it!": "Din ordre er accepteret. Vi arbejder nu på den!",
"There is new order assigned to you.": "Der er en ny ordre til dig",
"Your order is ready for delivery. Expect us soon.": "Din ordre er klar til levering - glæd dig.",
"Your order is ready for pickup. We are expecting you.": "Din ordre er klar til afhentning",
"Unfortunately your order is rejected. There where issues with the order and we need to reject it. Pls contact us for more info.": "Desværre må vi meddele at din ordre er afvist. Der er problemer med den, kontakt os for yderlige information.",
"Your order has been accepted": "Din ordre er accepteret",
"We are now working on it!": "Vi arbejder nu på den!",
"There is new order": "Der er en ny ordre",
"There is new order for you.": "Der er en ny ordre til dig",
"Your order is ready.": "Din ordre er klar",
"Order rejected": "Ordre afvist",
"View Order": "Vis ordre",
"Order notification": "Ordre notifikation",
"Order items": "Ordre produkter",
"________________": "________________",
"Delivery": "Levering",
"Total": "Samlet",
"order": "Ordre",
"Hello ": "Hello ",
"This is a test email from ": "This is a test email from ",
"Visit": "Besøg",
"We are happy that email works now.": "Vi er glade for mailen virker nu",
"QR": "QR",
"Minimum order": "Minimums ordre",
"Hmmm... Nothing found!": "Hmmm... Intet fundet!",
"Clients": "Klienter",
"Name": "Navn",
"Owner": "Ejer",
"Owner email": "Ejer mail",
"Creation Date": "Oprettelses dag",
"Birth Date": "Fødselsdag",
"Are you sure you want to deactivate this user?": "Er du sikker på at du vil deaktivere denne bruger?",
"Deactivate": "Deaktiver",
"Add new address": "Tilføj ny adresse",
"Address": "Adresse",
"Address number": "Adresse nummer",
"Apartment number": "Lejlighed nummer",
"Intercom": "Boliganlæg",
"Floor": "Sal",
"Entry number": "Skriv nummer",
"Close": "Luk",
"Save": "Gem",
"Finalize order": "Afslut ordre",
"You don`t have any address. Please add new one": "Du har ingen adresse. Tilføj venligst en.",
"Or add new": "Eller tilføj en ny",
"Add new": "Tilføj ny",
"Phone": "Mobil",
"Your phone here": "Din mobil her",
"Comment": "Kommentar",
"Your comment here": "Din kommentar her",
"Demo Stripe Credentials": "Demo Stripe legimentationsoplysninger",
"Payment method": "Betalingsmetode",
"Cash on delivery": "Kontant ved levering",
"Pay with card": "Betal med kort",
"Pay via iDeal": "Betal gennem iDeal",
"Place order": "Gennemfør ordre",
"Name on card": "Navn på kortet",
"Submit payment": "Gennemfør betalling",
"Clients Management": "Klient håndtering",
"Edit Client": "Ændre klient",
"Client Management": "Klient håndtering",
"Back to list": "Tilbage til liste",
"Client information": "Klient information",
"Client Name": "Klient navn",
"Client Email": "Klient mail",
"Client Phone": "Klient mobil",
"Settings": "Indstillinger",
"Settings Management": "Indstillinger håndtering",
"Remove demo data": "Fjern demo data",
"Latest version": "Nyeste version",
"Social Links": "Sociale links",
"Mobile App": "Mobil App",
"Site Logo": "Side logo",
"Restaurant Default Image": "Restaurant standard billede",
"Restaurant Details Cover Image": "Restaurantdetaljer coverbillede",
"Favicon": "Favicon",
"Search Cover": "Søg cover",
"Site Logo Dark": "Side logo mørk",
"Front QR": "Front QR",
"Flayer image": "Flayer billede",
"Feature image #1": "\"Fremhævet billede #1\"",
"Feature image #2": "\"Fremhævet billede #2\"",
"Feature image #3": "\"Fremhævet billede #3\"",
"Feature image #4": "\"Fremhævet billede #4\"",
"Feature image #5": "\"Fremhævet billede #5\"",
"Feature image #6": "\"Fremhævet billede #6\"",
"Drivers": "Chauffører",
"Add driver": "Tilføj chauffør",
"Email": "E-mail",
"Acceptance rating": "Acceptvurdering",
"Are you sure you want to delete this user?": "Er du sikker på at du vil slette denne bruger?",
"Drivers Management": "Chauffør håndtering",
"Edit Driver": "Ændre chauffør",
"Driver Management": "Chauffør håndtering",
"Driver information": "Chauffør information",
"Driver Name": "Chauffør navn",
"Driver Email": "Chauffør e-mail",
"Driver Phone": "Chauffør mobil",
"Add Driver": "Tilføj chauffør",
"Realtime map": "Realtid kort",
"Delivery activities": "Leverings aktiviteter",
"Plan period": "Planlæg periode",
"Monthly": "Månedlig",
"Anually": "Årligt",
"Ordering": "Bestilling",
"Enabled": "Aktiveret",
"Disabled": "Deaktiveret",
"Update plan": "Opdater plan",
"SAVE": "GEM",
"Pages": "Sider",
"Plans": "Planer",
"Add plan": "Tilføj plan",
"Price": "Pris",
"Period": "Periode",
"Items limit": "Produkt begræsning",
"Paddle ID": "Paddle ID",
"Stripe ID": "Stripe ID",
"PayPal ID": "PayPal ID",
"Mollie ID": "Mollie ID",
"Paystack ID": "Paystack ID",
"Unlimited": "Ubegrænset",
"Edit": "Ændre",
"Are you sure you want to delete this plan?": "Er du sikker på at du vil slette denne plan?",
"Delete": "Slet",
"You don`t have any plans": "Du har ingen planer",
"Plan": "Plan",
"Plans Management": "Plan håndtering",
"Back to plans": "Tilbage til planer",
"Plan information": "Plan informationer",
"m": "m",
"y": "y",
"Features": "Funktioner",
"Current Plan": "Nuværende plan",
"Switch to ": "Switch to ",
"Plan price ": "Plan price ",
"Subscribe to": "Tilmeld til",
"Subscribe": "Tilmeld",
"Your current plan": "Din nuværende plan",
"You are currently using the ": "You are currently using the ",
"plan": "plan",
"Status": "Status",
"Update subscription": "Opdater abonnement",
"Cancel subscription": "Afmeld abonnement",
"Password": "Kodeord",
"Confirm Password": "Bekræft kodeord",
"Date of Birth": "Fødselsdato",
"Create account": "Opret bruger",
"Forgot password?": "Glemt kodeord?",
"Back to login": "Tilbage til login",
"Reset password": "Nulstil kodeord",
"Send Password Reset Link": "Send kodeord nulstillingslink",
"Reset Password": "Nulstil kodeord",
"Verify Your Email Address": "Bekræft din e-mail adresse",
"A fresh verification link has been sent to your email address.": "Nyt bekræftelseslink er sendt til din e-mail.",
"Before proceeding, please check your email for a verification link.": "Før du går videre, tjek venligst din mail for et bekræftelseslink",
"If you did not receive the email": "Hvis du ikke modtag mailen",
"click here to request another": "tryk her for at sende en ny",
"DEMO credentials:": "DEMO legimentationsoplysninger",
"ADMIN": "ADMIN",
"Username": "Brugernavn",
"OWNER": "Ejer",
"DRIVER": "Chauffør",
"CLIENT": "Klient",
"Sign in with": "Log ind med",
"Remember me": "Husk mig",
"Sign in": "Log in",
"Create new account": "Opret ny bruger",
"Verify your profile": "Bekræft din profil",
"Thanks for registering with our platform. We will sent you message on your phone number. Provide the code below.": "Tak for at tilmelde dig vores platform. Vi sender en besked enten over mobil/mail. Indtast koden nedenunder",
"Verification Code": "Bekræftelseskode",
"Enter your verification code": "Skriv din bekræftelseskode",
"Verify profile": "Bekræft profil",
"Update": "Opdater",
"Insert": "Tilføj",
"User Profile": "Bruger profil",
"Active from": "Aktiv fra",
"Active to": "Aktiv til",
"Image": "Billede",
"Banner": "Banner",
"Edit banner": "Ændre banner",
"New banner": "Nyt banner",
"Banner information": "Banner information",
"Coupon": "Kupon",
"Edit coupon": "Ændre kupon",
"New coupon": "Ny kupon",
"Coupon information": "Kupon information",
"Dashboard": "Kontrolpanel",
"Overview": "Overblik",
"Sales value": "Salgsværdier",
"No sales right now!": "Ingen salg lige nu!",
"Performance": "Ydeevne",
"Total orders": "Totale ordre",
"No orders right now!": "Ingen ordre lige nu!",
"Add Restaurant": "Tilføj restaurant",
"Import from CSV": "Importer fra CSV",
"Logo": "Logo",
"Active": "Aktiv",
"Deleted": "Slettet",
"Not active": "Ikke aktiv",
"Login as": "Login som",
"Activate": "Aktiv",
"Are you sure you want to deactivate this restaurant?": "Er du sikker på at du vil deaktivere denne restaurant?",
"Register your restaurant": "Registrer din retaurant",
"Information": "Information",
"Restaurant Name": "Restaurant navn",
"Restaurant information": "Restaurant information",
"Restaurant Name here": "Restaurant navn her",
"Owner information": "Ejer information",
"Owner Name": "Ejer navn",
"Owner Name here": "Ejer navn her",
"Owner Email": "Ejer e-mail",
"Owner Email here": "Ejer e-mail her",
"Owner Phone": "Ejer mobil",
"Owner Phone here": "Ejer mobil her",
"Orders": "Ordre",
"Management": "Håndtering",
"View it": "Se den",
"Go back": "Gå tilbage",
"Share Menu": "Del menu",
"Share your menu with your audience": "Del din menu med dine kunder",
"Download QR Code": "Download QR-kode",
"Subscription plan": "Abonnementsplans",
"Location": "Lokation",
"Delivery Area": "Leveringsområde",
"Clear Delivery Area": "Ryd leveringsområde",
"Select your options": "Vælg dine muligheder",
"Extras": "Ekstra tilbehør",
"Quantity": "Antal",
"Add To Cart": "Tilføj til kurv",
"Import restaurants from CSV": "Importer restauranter fra CSV",
"Open": "Åben",
"About": "Om",
"Reviews": "Andmeldelser",
"Review": "Anmeldelse",
"There are no reviews yet.": "Der er endnu ingen anmeldelser",
"Working Hours": "Åbningstider",
"Time": "Tid",
"Enter Minimum order value": "Udfyld minimums ordre værdi",
"Fee percent": "Andel procent",
"Static fee": "Statisk andel",
"Is Featured": "Er Fremhævet",
"Restaurant Image": "Restaurant billede",
"Restaurant Cover Image": "Restaurant cover billede",
"All categories": "Alle kategorier",
"Call Waiter": "Kald på tjener",
"Call Now": "Kald nu",
"Edit Profile": "Ændre profil",
"User information": "Bruger information",
"Current Password": "Nuværende kodeord",
"New Password": "Nyt kodeord",
"Confirm New Password": "Bekræft nyt kodeord",
"Change password": "Skift kodeord",
"Close Account": "Luk konto",
"Are you sure you want to cancel the account and all their data?": "Er du sikker på du vil annulere kontoen og alle dataene derpå?",
"Deliveries": "Deliveries",
"Pickup": "Afhentning",
"Search for restaurant, cuisines, and dishes": "Søg efter restaurant, køkkener og madretter",
"Search": "Søg",
"days": "dage",
"Sales Volume": "Salgs volume",
"Number of restaurants": "Antal restauranter",
"restaurants": "restauranter",
"Number of items": "Antal produkter",
"items": "produkter",
"Views": "Visninger",
"views": "visninger",
"Delivery Fee": "Leveringsgebyr",
"Static Fee": "Statisk betaling",
"Dynamic Fee": "Dynamisk betaling",
"Total Fee": "Total betaling",
"Change location": "Skift lokation",
"Enter your street or address": "Udfyld din adresse",
"Get my current location": "Find min nuværende lokation",
"or": "eller",
"Find your meal": "Find dit måltid",
"DELIVERING TO": "LEVERING TIL",
"change": "skift",
"Like us on Facebook": "Like vores side på Facebook",
"Facebook": "Facebook",
"Follow us on Instagram": "Følg os på Instagram",
"Instagram": "Instagram",
"Cart": "Kurv",
"Profile": "Profil",
"Live Orders": "Live ordre",
"Pricing plans": "Priser på planer",
"Finances": "Økonomi",
"My Orders": "Mine ordre",
"My Addresses": "Mine adresser",
"Logout": "Log ud",
"Login": "Log ind",
"Register visit": "Registrer besøg",
"Welcome!": "Velkommen!",
"My profile": "Min profil",
"Banners": "Bannere",
"Translations": "Oversættelser",
"Site Settings": "Side indstillinger",
"Tables": "Borde",
"QR Builder": "QR-builder",
"Customers log": "Kunde log",
"Coupons": "Kuponer",
"Share": "Del",
"Shopping Cart": "Bestillingskurv",
"Cart is empty": "Kurven er tom",
"Subtotal": "Subtotal",
"Checkout": "Checkout",
"Continue Shopping": "Fortsæt shopping",
"External plugins": "Eksterne plugins",
"Loyalty Platform": "Loyalitets platform",
"Version": "Version",
"latest": "nyeste",
"Short name": "Kort navn",
"Actions": "Handlinger",
"You don`t have any addresses": "Du har ikke nogen adresser",
"New address here": "Ny adresse her",
"User Management": "Bruger håndtering",
"Users": "Brugere",
"Add user": "Tilføj bruger",
"Edit User": "Ændre bruger",
"Add User": "Tilføj bruger",
"Table": "Bord",
"Dine In / Takeaway": "Spis her / Takeaway",
"Dine In": "Spis her",
"Takeaway": "Takeaway",
"Place an order": "Bestil",
"Delivery / Pickup": "Levering / Afhentning",
"Delivery Address": "Leveringsadresse",
"-- select an option -- ": "-- select an option -- ",
"Today working hours": "Dagens arbejdstider",
"Items": "Produkter",
"Delivery time": "Leveringstid",
"Pickup time": "Afhentningstid",
"Order can not be placed since restaurant will be / is closed.": "Ordren kan ikke gennemføres, da restauranten skal/er lukket.",
"HAVE A PROMO CODE?": "HAR DU EN PROMO KODE?",
"Enter your promo code here": "Skriv venligst din promo kode her",
"Only one promo code may be user per order": "Kun en enkelt promo kode pr.ordre",
"Apply": "Tilkobl",
"Cancel Order": "Annuler ordre",
"TOTAL": "SAMLET",
"Cash / Card Terminal": "Kontant / Kort terminal",
"Cash on pickup": "Kontant ved afhentning",
"Pay with PayPal": "Betal med PayPal",
"Pay with Paystack": "Betal med Paystack",
"Pay with Mollie": "Betal med Mollie",
"Send Whatsapp Order": "Send WhatsApp ordre",
"Send Facebook Order": "Send Facebook ordre",
"I agree to the Terms and Conditions and Privacy Policy": "Jeg accepterer vilkår, betingelser og privatlivspolitik",
"Demo cards": "Demo kort",
"You're all set!": "Du er klar!",
"Order": "Ordre",
"Go back to restaurant": "Gå tilbage til restaurant",
"Assign Driver": "Tildel chauffør",
"Go Back": "Gå tilbage",
"Refresh": "Opdater",
"Live orders": "Live ordre",
"New Orders": "Nye ordre",
"Accepted": "Accepteret",
"Done": "Færdig",
"Status History": "Status historie",
"Details": "Detaljer",
"Your overall rating": "Din samlede vurdering",
"Order time to prepare in minutes": "Ordre tid for forberedelse i minutter",
"Status from": "Status fra",
"ID": "ID",
"Created": "Oprettet",
"Time Slot": "Tidsvindue",
"Method": "Metode",
"Last status": "Sidste status",
"Client": "Klient",
"Client Information": "Klient information",
"Contact": "Kontakt",
"Table Information": "Bord information",
"Table:": "Bord:",
"Area:": "Område:",
"VAT ": "VAT ",
"Time to prepare": "Tid til forberedelse",
"minutes": "minutter",
"NET": "NET",
"VAT": "Moms",
"Sub Total": "Samlet",
"Payment status": "Betalingsstatus",
"Delivery method": "Leveringsmetode",
"Time slot": "Tidsvindue",
"Dine method": "Valg af spisning",
"Dine in": "Spis her",
"Accept": "Accepter",
"Reject": "Afvis",
"Assign to driver": "Tildel til chauffør",
"No actions for you right now!": "Ingen handlinger for dig lige nu!",
"Prepared": "Forberedt",
"Delivered": "Leveret",
"Picked Up": "Afhentet",
"Date From": "Dato fra",
"Date from": "Dato fra",
"Date to": "Dato til",
"Filter by Restaurant": "Filtre af restaurant",
"Select an option": "Vælg en mulighed",
"Filter by Client": "Filtre af klient",
"Filter by Driver": "Filtre af chauffør",
"Clear Filters": "Ryd filtre",
"Download report": "Download rapport",
"Filter": "Filtre",
"You don`t have any orders": "Du har ingen ordre",
"Table / Method": "Bord / Metode",
"Order Review": "Ordre overblik",
"Poor": "Dårlig",
"Fair": "Fin",
"Good": "God",
"Excellent": "Fantastisk",
"WOW": "WOW",
"Order comment": "Ordre kommentar",
"Order comment here": "Ordre kommentar her",
"Order tracking": "Ordre tracking",
"Fee information": "Betalingsinformation",
"Your current static fee on each order is:": "Din nuværende statiske betaling på hver ordre er",
"Your current percentage fee on each order is:": "Din nuværende procent procent betaling på hver ordre er",
"on the order value": "på ordre værdi",
"Fees": "Betalinger",
"Platform fee": "Platform betaling",
"Processor fee": "Process betaling",
"Platform profit": "Platform profit",
"Net Price + VAT": "Net pris + MOMS",
"Net Price": "Net pris",
"Total Price": "Total pris",
"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": "Vi bruger Stripe til at opkræve betalinger. Tilslut nu, og vi sender dine penge fra indkøbskurvbetalinger direkte til din Stripe-konto",
"Connect with Stripe Connect": "Tilslut Stripe Connect",
"Stripe account": "Stripe konto",
"Stripe details submited": "Stripe detaljer tilkoblet",
"Update Stripe connection": "Opdater Stripe forbindelse",
"Restaurant Menu Management": "Restaurant menu håndtering",
"Edit Restaurant Menu": "Ændre Restaurant menu",
"Add new category": "Tilføj ny kategori",
"Add item": "Tilføj produkt",
"Menu size limit reaced": "Menu størrelses grænse opnået",
"Edit category": "Ændre kategori",
"Are you sure you want to delete this category?": "Er du sikker på at du vil slette denne kategori?",
"AVAILABLE": "TILGÆNGELIG",
"UNAVAILABLE": "UTILGÆNGELIG",
"Add new extras": "Tilføj nye tilbehør",
"Select variant or leave empty for all": "Vælg variant eller lad alle stå tomme",
"Item Management": "Produkt håndtering",
"Back to items": "Tilbage til produkter",
"Item information": "Produkt information",
"Item Name": "Produkt navn",
"Item Description": "Produkt beskrivelse",
"Item Description here ... ": "Item Description here ... ",
"Item Price": "Produkt pris",
"VAT percentage( calculated into item price )": "MOMS procentdel (udregnet i produkt pris)",
"Item VAT percentage": "Produkt MOMS procentdel",
"Item Image": "Produkt billede",
"Are you sure you want to delete this item?": "Er du sikker på at du vil slette dette produkt?",
"Edit Options": "Ændre muligheder",
"Add Variant": "Tilføj variant",
"For": "Til",
"All variants": "Alle varianter",
"Selected": "Valgte",
"Are you sure you want to delete this extras?": "Er du sikker på at du vil slette disse tilbehør?",
"Edit Item": "Ændre produkt",
"Item available": "Produkt tilgængeligt",
"Category name": "Kategori navn",
"Add new item": "Tilføj nyt prodult",
"Item name": "Produkt navn",
"Item description": "Produkt beskrivelse",
"Select image": "Vælg billede",
"Change": "Skift",
"Import items from CSV": "Importer produkter fra CSV",
"Import your file": "Importer din fil",
"Add page": "Tilføj side",
"Title": "Titel",
"Content": "Indhold",
"Show as link": "Vis som link",
"Click for details": "Klik for detaljer",
"Are you sure you want to delete this page?": "Er du sikker på at du vil slette denne side?",
"You don`t have any pages": "Du har ingen sider",
"Page": "Side",
"Page Management": "Side håndtering",
"Back to pages": "Tilbage til sider",
"Page information": "Side information",
"Title here ...": "Titel her...",
"Rating": "Vurdering",
"User": "Bruger",
"notifications_email": "E-mail",
"notifications_thanks": "Tak for tilmeldingen på :app_name",
"notifications_hello": "Hej :username",
"notifications_visit": "Besøg :app_name",
"notifications_regdone": "Vi er glade for at have dig ombord.",
"notifications_adminapprove": "Så snart Admin godkender din konto, vil du få en besked.",
"notifications_acc_create": "Konto oprettet i :app_name",
"notifications_rest_acc_created": "Vi har oprettet en restaurant ejer konto for :restoname",
"notifications_driver_acc_created": "Vi har oprettet en chauffør konto for :app_name",
"notifications_manager_acc_created": "We have create a manager account for :app_name",
"notifications_login": "Login",
"notifications_username": "Brugernavn: :email",
"notifications_password": "Kodeord: :password",
"notifications_reset_pass": "Du kan ændre dit nuværende kodeord",
"notifications_thanks_for_using_us": "Tak fordi du gør brug af vores service!",
"notifications_thanks_andcheckemail": "Tak for tilmeldingen. Tjek venligst din e-mail for login informationer!",
"notifications_thanks_and_review": "Tak for at tilknytte din restaurant. Vi vil undersøge din restaurant og kontakte dig snarest!",
"notifications_acc_closed": "Lukket konto på :app_name",
"notifications_acc_closed_sub": "Din konto er slettet. Tak for at være en del af :app_name og kunde hos os. Vi værdsætter jeres samarbejde med os og håber på se jer igen!",
"notifications_acc_closed_attachment": "Find vedhæftet i denne mail, en kopi af de data som er forbundet med denne konto.",
"notifications_acc_closed_msg": "Kontoen er succesfuldt slettet. Venligst tjek din e-mail!",
"notifications_notification_callwaiter": "Du har en ny kunde på",
"notifications_notification_neworder": "Du har en ny ordre med ID",
"settings_system_status": "System status",
"settings_how_to_fix_this": "Hvordan man løser dette",
"settings_setup_progress": "Opsætningsfremskridt",
"settings_default_admin_email": "Tjek for standard admin e-mail",
"settings_default_admin_email_ok": "Din e-mail er succesfuldt ændret. Tak",
"settings_using_default_admin_solution": "Du gør brug af en standard mail, hvilket er en sikkerhedsrisiko. Læs venligst i dokumenterne, hvordan man sætter egen mail op.",
"settings_smtp": "Send mail",
"settings_smtp_not_ok": "Vi lykkedes ikke at sende en test e-amil. Undersøg venligst om du har indtastet de korrekte SMTP værdier. Læg venligst mærke til at du kan gøre brug af både SSL eller ingen SSL ports. Når du bruger SSÆ, sørg for at MAIL_MAILER ikke er smtp, men sendmail, som det fremgår af dokumentet.",
"settings_paddle": "Paddle",
"settings_paddle_error": "Det ser ud til, at du ikke har konfigureret din paddle. Paddle.com bruges til abonnementer og betalinger. Følg venligst dokumenterne og tilføj dine paddle-legitimationsoplysninger i indstillinger",
"settings_stripe": "Stripe",
"settings_stripe_error": "Det ser ud til, at du ikke har konfigureret din stripe. Stripe bruges til abonnementer og betalinger. Følg venligst dokumenterne og tilføj dine stripe-legitimationsoplysninger i indstillinger",
"You do not have any address, please add new one.": "Du har ingen adresser, tilføj venligst en ny.",
"You don't have any address, please add new one.": "Du har ingen adresser, tilføj venligst en ny.",
"New address added successfully!": "Ny adresse succesfuldt tilføjet!",
"Address successfully deactivated!": "Adresse succesfuldt deaktiveret!",
"You can not delete this address!": "Du kan ikke slette denne adresse!",
"Feature image ( 128x128 )": "Feature image ( 128x128 )",
"Enter title": "Tilføj titel",
"Enter description": "Tilføj beskrivelse",
"Add new feature": "Tilføj ny funktion",
"Landing Page": "Landingsside",
"New feature": "Ny funktion",
"Feature was added": "Funktion tilføjet",
"Edit this feature": "Ændre denne funktion",
"Feature was updated": "Funktion opdateret",
"Feature was deleted.": "Funktion slettet",
"Enter link name": "Udfyld link navn",
"Enter link URL": "Udfyld URL link",
"Processes": "Processer",
"Add new process": "Tilføj ny process",
"New process": "Ny process",
"Process was added": "Process tilføjet",
"Edit this process": "Ændre process",
"Process was updated": "Process opdateret",
"Process was deleted.": "Process slettet",
"Successfully migrated to multi language menus": "Succesfuldt migreret til multi sprogsmenuer",
"Successfully updated to version v": "Succesfuldt opdateret til version v",
"There is nothing to update!": "Der er intet at opdatere!",
"Author image ( 48x48 )": "Author image ( 48x48 )",
"Enter author name": "Tilføj forfatter navn",
"Enter short description": "Tilføj kort beskrivelse",
"Enter testimonial comment": "Tilføj anmeldelses kommentar",
"Testimonials": "Anmeldelser",
"Add new testimonial": "Tilføj ny anmeldelse",
"New testimonial": "Ny anmeldelse",
"Testimonial was added": "Anmeldelse tilføjet",
"Edit this testimonial": "Ændre denne anmeldelse",
"Testimonial was updated": "Anmeldelse opdateret",
"Testimonial was deleted.": "Anmeldelse slettet",
"Hi, I'd like to place an order": "Hej, jeg kunne godt tænke mig at lave en ordre",
"Delivery Order No": "Leveringsordre Nej",
"Pickup Order No": "Afhentningsordre Nej",
"Variant": "Variant:",
"Delivery Details": "Leverings detaljer",
"Pickup Details": "Afhentnings detaljer",
"will confirm your order upon receiving the message.": "vil bekræfte din ordre ved modtagelse af beskeden.",
"Payment Options": "Betalingsmuligheder",
"Payment for order on ": "Payment for order on ",
"Customer Info": "Kundeinformation",
"Delivery Info": "Leveringsinformation",
"Go home": "Gå hjem",
"Sections": "Sektioner",
"All rights reserved": "Alle rettigheder forbeholdt",
"Accepting Payments": "Accepterer betalinger",
"WhatsApp number": "WhatsApp nummer",
"Hero image": "Hero image",
"Migrate to multilanguge menu": "Migrer til multi sprog menu",
"AuthO is the new Authentication Mechanizm": "AuthO er det nye godkendelsessytem",
"Sync Existing Users to AuthO (So they need to do Password Reset)": "Synkroniser allerede eksisterende brugere til AuthO (så de skal gendanne deres kodeord)",
"Do not Sync Existing Users to AuthO (So they need to do Sign Up)": "Synkroniser ikke allerede eksisterende brugere til AuthO (så de skal oprette en konto)",
"Pagination Navigation": "Pagination Navigation",
"to": "til",
"of": "af",
"results": "resultater",
"Go to page :page": "Gå til side :page",
"Variant:": "Variant:",
"Total: ": "Total: ",
"Your order is created. You will be notified for further information.": "Din ordre er oprettet. Du vil modtage en notifikation med yderligere information.",
"Thanks for your purchase": "Tak for dit køb",
"I agree to the": "Jeg accepterer at",
"and": "og",
"Terms of Service": "Servicevilkår",
"Privacy Policy": "Privatpolitik",
"Earnings": "Indtjeninger",
"Are you sure you want to deactivate this driver?": "Er du sikker på at du vil deaktivere denne chauffør?",
"just_created": "Lige oprettet",
"accepted_by_admin": "Acceperet af admin",
"accepted_by_restaurant": "Accepter",
"assigned_to_driver": "Tildelt til chauffør",
"prepared": "Forberedt",
"picked_up": "Afhentet",
"delivered": "Leveret",
"rejected_by_admin": "Afvis",
"rejected_by_restaurant": "Afvis",
"updated": "Opdateret",
"closed": "Lukket",
"rejected_by_driver": "Afvis",
"accepted_by_driver": "Accepter",
"prepared_order": "Ordre forberedt",
"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": "Plan name",
"Plan description": "Plan description",
"Features list (separate features with comma)": "Features list (separate features with comma)",
"Plan Features comma separated": "Plan Features comma separated",
"Plan price": "Plan pris",
"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": "Site Name",
"Site Name here": "Site Name here",
"Site Description": "Site Description",
"Site Description here": "Site Description here",
"Header Title": "Header Title",
"Header Title here": "Header Title here",
"Header Subtitle": "Header Subtitle",
"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": "Disable the 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",