-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathms_MY.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 3 should actually have 4 columns, instead of 2 in line 2.
1906 lines (1906 loc) · 133 KB
/
ms_MY.csv
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
0,"SALAH","module","WeltPixel_Quickview"
1,"BETUL","module","WeltPixel_Quickview"
" (High -> Low)"," (Tinggi -> Rendah)"
" (Low -> High)"," (Rendah -> Tinggi)"
" is required.","adalah diperlukan","module","WebShopApps_MatrixRate"
" item","item","module","Magento_Checkout"
" items","item-item","module","Magento_Checkout"
" to enter your new message.","untuk masukkan mesej baru."
"--- Please select ---","--- Sila pilih ---"
"-------- Please select a Schedule --------","Sila pilih Jadual","module","Magestore_Storelocator"
"-------- Please select a Store --------","-------- Sila pilih kedai --------","module","Magestore_Storelocator"
"-1%","-1%"
". ' Status'",".'Status'","module","Magestore_Storelocator"
". "" (A -> Z)",". "" (A -> Z)"
". "" (High -> Low)",". "" (Tinggi -> Rendah)"
". "" (Low -> High)",". "" (Rendah -> Tinggi)"
". "" (Z -> A)",". "" (Z -> A)"
"'New order with iPay88: #' .","Pesanan baru dengan iPay88:#'.","module","Ipay88_Ipay88"
"( ' . . ' of Loyalty Points have been redeemed successfully. )","('..' Mata Kesetiaan telah berjaya ditebus.)"
"[edit]","[edit]","module","Amasty_Checkout"
"* I hereby consent to the Processing of my Personal Data for the above Purpose and agree to the terms in this Data Protection and Privacy Policy Notice.","*Saya dengan ini bersetuju dengan Pemprosesan Data Peribadi saya untuk Tujuan di atas dan bersetuju dengan terma di dalam Notis Polisi Peribadi dan Perlindungan Data"
"* I hereby consent to the Processing of my Personal Data for the above Purpose and agree to the terms in this Data Protection and Privacy Policy Notice.","* Dengan ini saya bersetuju dengan Pemprosesan Data Peribadi saya untuk tujuan di atas dan bersetuju dengan terma dalam Notis Polisi Privasi dan Perlindungan Data"
"* Mandatory field","*Ruang Wajib"
"* Required Fields","*Maklumat Diperlukan"
"* Required Fields","* Maklumat diperlukan"
"* Required Fields","* Maklumat diperlukan","module","Mageplaza_SocialLogin"
"* Required Fields","*Maklumat Diperlukan"
"* Required Fields","* Maklumat Diperlukan","module","Magento_Contact"
"* Required Fields","* Maklumat Diperlukan","module","Magento_Customer"
"* Required Fields","* Maklumat Diperlukan","module","Magento_Wishlist"
"%1 %2","%1 %2"
"%1 doesn't extend \Magento\Checkout\CustomerData\ItemInterface","tidak sampai %1 \Magento\Checkout\CustomerData\ItemInterface","module","Magento_Checkout"
"%1 for ""%2"".","%1 untuk ""%2"".","module","Magento_Wishlist"
"%1 has been added to your Wish List.","%1 telah ditambah ke dalam Senarai Hajat.","module","Magento_Wishlist"
"%1 has been moved to your wish list.","%1 telah dipindahkan ke senarai hajat anda"
"%1 has been moved to your wish list.","%1 telah dipindah ke senarai hajat anda.","module","Magento_Wishlist"
"%1 has been updated in your Wish List.","%1 telah dikemas kini di dalam Senarai Hajat anda.","module","Magento_Wishlist"
"%1 items","%1 item","module","Magento_Wishlist"
"%1 Product","Produk %1"
"%1 product(s) have been added to shopping cart: %2.","%1 produk telah ditambah ke troli pembelian: %2.","module","Magento_Wishlist"
"%1 Products","Produk-Produk %1"
"%1 was updated in your shopping cart.","Troli pembelian anda telah dikemas kini sebanyak %1","module","Magento_Checkout"
"%1's Wish List","Senarai Hajat %1's","module","Magento_Wishlist"
"%1's Wishlist","Senarai Hajat %1","module","Magento_Wishlist"
"%1"" is a required value.","%1"" adalah nilai yang diperlukan.","module","Magento_Customer"
"%customer_name wants to share this Wish List from %store_name with you:","%nama_pelanggan ingin kongsi senarai hajat dari %nama_kedai dengan anda:","module","Magento_Wishlist"
"%fieldName is a required field.","%ruang Nama diperlukan","module","Magento_Customer"
"%name,","%nama,"
"%name,","%nama,","theme","adminhtml/Hoatamus/backend"
"%name,","%nama,","module","Magento_Customer"
"%name,","%nama,","module","Magento_User"
"< All my orders","< Kesemua pesanan saya"
"<a href=""%1"" onclick=""this.target='_blank'"" class=""print"">Print receipt</a>","<a href=""%1"" onclick=""this.target='_blank'"" class=""print"">Print receipt</a>"
"<a href=""%1"" onclick=""this.target='blank'"">%2 %3</a> <a href=""mailto:%4"">(%4)</a>","<a href=""%1"" onclick=""this.target='blank'"">%2 %3</a> <a href=""mailto:%4"">(%4)</a>"
"<a href=""%1"">Continue Shopping</a>","<a href=""%1"">Teruskan Membeli</a>"
"<i class=""fa fa-refresh"" aria-hidden=""true""></i>","<i class=""fa fa-refresh"" aria-hidden=""true""></i>"
"<span>I agree with LANCÔME’s no refund policy for engraved items.</span><a target=""_blank"" rel=""nofollow"" class=""txtlink"" href=""%1"">Read Engraving Policy</a>.","<span>Saya bersetuju dengan polisi tiada bayaran balik Lancome untuk item yang diukir.</span><a target=""_blank"" rel=""nofollow"" class=""txtlink"" href=""%1"">Read Engraving Policy</a>."
"<span>Item %1</span> of %2","<span>Item %1</span> of %2","module","Magento_GiftMessage"
"<strong>%1</strong> is successfully redeemed.","<strong>%1</strong> telah berjaya ditebus"
"<strong>Attention</strong>: Captcha is case sensitive.","<strong>Perhatian</strong>: Captcha adalah sensitif pada huruf."
"<strong>Attention</strong>: Captcha is case sensitive.","<strong>Attention</strong>: Huruf Captcha mesti sama.","module","Magento_Captcha"
"√ó Remove","√ó Keluarkan"
"1 item","1 item","module","Magento_Wishlist"
"250 characters left","Tinggal 250 huruf"
"A customer dob cannot be set later than current time.","Tarikh lahir pelanggan tidak boleh ditetapkan lewat daripada waktu semasa."
"A customer with the same email already exists in an associated website.","Pelanggan dengan e-mel yang sama telah wujud dalam laman web bersekutu.","module","Magento_Customer"
"A customer with the same nric already exists in an associated website.","Pelanggan dengan Nombor Kad Pengenalan yang sama wujud di laman web bersekutu."
"A Juristic Person","Orang Juristic"
"A letter with further instructions will be sent to your email.","Surat dengan arahan seterusnya telah dihantar ke e-mel anda.","module","Magento_Checkout"
"A login and a password are required.","Log masuk dan kata laluan diperlukan.","module","Magento_Customer"
"A non-Thai National","Bukan Warganegara Thai"
"A Thai National","Warganegara Thai"
"About this Fragrance","Tentang Haruman ini"
"Account Information","Maklumat Akaun"
"Account Information","Maklumat Akaun","module","Magento_Customer"
"Action","Tindakan"
"Action","Tindakan","module","Magento_Customer"
"Actions","Tindakan-Tindakan"
"Active","Aktif"
"Add","Tambah"
"Add a gift message","Tambah mesej hadiah"
"Add All to Cart","Tambah Semua ke dalam Troli","module","Magento_Wishlist"
"Add Date","Tambah Tarikh","module","Magento_Customer"
"Add Free Custom Engraving","Tambah Ukiran Khas Percuma"
"Add gift options","Tambah pilihan hadiah","module","Magento_GiftMessage"
"Add gift options for Individual Items","Tambah Pilihan Hadiah untuk Item Individu","module","Magento_GiftMessage"
"Add Gift Options for the Entire Order","Tambah Pilihan Hadiah untuk Keseluruhan Pesanan","module","Magento_GiftMessage"
"Add Locale","Tambah Lokasi","module","Magento_Customer"
"Add more Beauty to your Email","Tambah berita Kecantikan pada E-mel anda"
"Add More Item","Tambah Lebih Item"
"Add New Address","Tambah Alamat Baru"
"Add New Address","Tambah Alamat Baru","module","Magento_Customer"
"Add New Customer Group","Tambah Kumpulan Pelanggan Baru","module","Magento_Customer"
"Add to Cart","Tambah ke Troli","module"
"Add to Cart","Tambah ke Troli","module","WeltPixel_Quickview"
"Add to Cart","Tambah ke Troli"
"Add to Cart","Tambah ke Troli","module","Magento_Wishlist"
"Add to Compare","Tambah untuk Membandingkan"
"Add to Compare","Tambah untuk Dibandingkan","module","Magento_Wishlist"
"Add to Wish List","Tambah ke Senarai Hajat"
"Add to Wish List","Tambah ke Senarai Hajat","module","Magento_Wishlist"
"Add to Wishlist","Tambah ke Senarai Hajat","module","WeltPixel_Quickview"
"Add to Wishlist","Tambah ke Senarai Hajat"
"Add Your Review","Tambah Ulasan Anda","module","Magento_Review"
"Added","Berjaya Ditambah"
"Added to wishlist.","Ditambah ke senarai hajat"
"Added to your cart","Ditambah ke dalam troli anda"
"Adding...","Sedang menambah…"
"Additional","Tambahan","module","Amasty_Checkout"
"Additional Address","Alamat Tambahan"
"Additional Address Entries","Kemasukan Alamat Tambahan","module","Magento_Customer"
"Address","Alamat","module","Mageplaza_SocialLogin"
"Address","Alamat","module","Magestore_Storelocator"
"Address","Alamat"
"Address","Alamat","module","Magento_Customer"
"Address Book","Buku Alamat","module","MGS_Mmegamenu"
"Address Book","Buku Alamat"
"Address book","Buku alamat"
"Address Book","Buku Alamat","module","Magento_Customer"
"Address Information","Maklumat Alamat","module","Mageplaza_SocialLogin"
"Address Information","Maklumat Alamat","module","Magento_Customer"
"Address line %1","Alamat baris %1"
"Address line 1","Alamat baris 1"
"Address Line 2","Alamat Baris Kedua"
"Address line 2","Alamat baris 2"
"Address Line 3","Alamat Baris Ketiga"
"Address line 3","Alamat baris 3"
"Address:","Alamat:","module","Magestore_Storelocator"
"Administrator","Pentadbir"
"After number of attempts to login","Selepas berapa kali percubaan untuk log masuk","module","Magento_Captcha"
"All","Semua"
"All countries","Semua negara","module","Magento_Customer"
"Alphabetical order","Mengikut abjad","module","Magestore_Storelocator"
"Already a Member?","Memang Ahli?"
"Always","Sentiasa","module","Magento_Captcha"
"An error has occurred while redeeming %1.","Ralat telah berlaku semasa menebus %1"
"An error occured.","Ralat berlaku","module"
"An error occurred in the process of payment","Ralat semasa proses pembayaran"
"An error occurred on the server. Please try to place the order again.","Terdapat ralat pada pelayan. Sila cuba untuk memesan sekali lagi.","module","Magento_Checkout"
"An error occurred on the server. Please try to place the order again.","Terdapat ralat pada pelayan. Sila cuba untuk meletakkan pesanan sekali lagi.","module","Magento_Quote"
"An item option with code %1 already exists.","Item pilihan dengan kod %1 telah wujud.","module","Magento_Quote"
"An item option with code %1 already exists.","Pilihan item dengan kod %1 sudah ada.","module","Magento_Wishlist"
"An unspecified error occurred. Please contact us for assistance.","Ralat tidak ditentukan telah berlaku. Sila hubungi kami untuk mendapatkan bantuan.","module","Magento_Customer"
"API: %1","API: %1"
"Apply","Guna"
"Apply Discount","Guna Diskaun"
"Apply Discount","Guna Diskaun","module","Magento_Checkout"
"Apply Discount Code","Masukkan Kod Diskaun"
"Apply Discount Code","Guna Kod Diskaun","module","Magento_Checkout"
"Apr","April"
"April","April"
"Are you sure you wan't to delete a ""${ $.$data.title }"" record?","Adakah anda pasti untuk memadam rekod ""${ $.$data.title }""?"
"Are you sure you wan't to delete a ""${ $.$data.title }"" record?","Adakah anda pasti untuk memadam rekod ""${ $.$data.title }""?"
"Are you sure you wan't to delete a ""${ $.$data.title }"" record?","Anda pasti mahu memadam rekod ""${ $.$data.title }""?"
"Are you sure you want to do this?","Anda pasti mahu melakukannya?"
"Are you sure you want to do this?","Adakah anda pasti mahu melakukannya?"
"Are you sure you want to do this?","Adakah anda pasti ?"
"Are you sure you want to remove this item?","Adakah anda pasti mahu mengeluarkan item ini?","module","Magento_Customer"
"Are you sure you want to remove this item?","Adakah anda pasti untuk mengeluarkan item ini?","module","Magento_Wishlist"
"Articles","Artikel","module","Hoatamus_CustomizeTheme"
"At least one of the origin, destination, or waypoints could not be geocoded.","Sekurang-kurangnya salah satu daripada titik asal, destinasi atau tempat hentian, tidak dapat digeokod","module","Magestore_Storelocator"
"Attention: Captcha is case sensitive.","Perhatian: Captcha sensitif pada huruf","module","Magento_Captcha"
"Aug","Ogos"
"August","Ogos"
"Author","Penulis"
"Availability","Kebolehsediaan","module","Magento_Wishlist"
"Average Customer Rating:","Purata Penilaian Pelanggan"
"Back","Kembali"
"Back","Kembali"
"Back","Kembali"
"Back","Kembali","module","Mageplaza_SocialLogin"
"Back","Kembali"
"Back","Kembali","module","Magento_Customer"
"Back","Kembali","module","Magento_Wishlist"
"Back To Catalog","Kembali Ke Katalog"
"Back to My Reviews","Kembali ke Ulasan Saya"
"Back to shop","Kembali untuk membeli"
"Back To Shopping","Kembali Membeli"
"Back to Sign In","Kembali ke Daftar Masuk","module","Magento_Customer"
"Bad request.","Ralat permintaan.","module","Magento_Customer"
"Be the first to review","Jadi yang pertama untuk mengulas"
"Be the first to review this product","Jadi yang pertama untuk mengulas produk ini"
"Benefits","Kebaikan"
"Best Matches","Padanan Sesuai","module","Hoatamus_CustomizeTheme"
"Best Seller","Jualan Terbaik","module","Hoatamus_CustomizeTheme"
"Best Sellers","Paling Laris"
"Bill-to Name","Nama untuk Surat-Menyurat","module","Magento_Customer"
"Billing address","Alamat surat-menyurat"
"Billing Address","Alamat Surat-menyurat"
"Billing Address","Alamat Surat-Menyurat","module","Magento_Customer"
"Billing Address","Alamat Surat-Menyurat"
"Billing Address:","Alamat Surat-Menyurat:","module","Magento_Checkout"
"Bonjour","Bonjour"
"Bonjour Beauty","Bonjour Cantik"
"Bonjour Beauty! Start shopping today to become a Lancôme member and earning points.","Bonjour Cantik! Mula membeli hari ini untuk menjadi ahli Lancôme dan kumpulkan mata."
"Bonjour Beauty. Enjoy amazing rewards by earning points everytime you shop.","Bonjour. Nikmati ganjaran hebat ini dengan memperolehi mata setiap kali anda membeli."
"Bottom Left","Bawah Sebelah Kiri"
"Bottom Right","Bawah Sebelah Kanan"
"Brand new previews","Pratonton jenama baru"
"Can be used only with catalog input type Dropdown, Multiple Select and Price","Hanya boleh digunakan dalam jenis input katalog Dropdown, Pelbagai Pilihan dan Harga","module","Magento_LayeredNavigation"
"Can be used only with catalog input type Dropdown, Multiple Select and Price.","Hanya boleh digunakan dalam jenis input katalog Dropdown, Pelbagai Pilihan dan Harga.","module","Magento_LayeredNavigation"
"Can't save description %1","%1 deskripsi tidak boleh disimpan","module","Magento_Wishlist"
"Can't update wish list","Senarai hajat tidak boleh dikemas kini","module","Magento_Wishlist"
"Cancel","Batal"
"Cancel","Batal","module","Magento_Customer"
"Cancel","Batal","module","Amasty_Checkout"
"Cancel","Batal"
"Cancel","Batal","module","Magento_Checkout"
"Cancel Coupon","Batalkan Kupon","module","Magento_Checkout"
"Canceled","Telah dibatalkan"
"Cannot assign customer to the given cart. Customer already has active cart.","Tidak boleh membawa pelanggan ke troli yang diberi. Pelanggan telah pun memiliki troli yang aktif.","module","Magento_Quote"
"Cannot assign customer to the given cart. The cart belongs to different store.","Tidak boleh membawa pelanggan ke troli yang diberi. Troli itu dimiliki oleh kedai berbeza.","module","Magento_Quote"
"Cannot assign customer to the given cart. The cart is not anonymous.","Tidak boleh membawa pelanggan ke troli yang diberi. Troli itu identitinya tidak diketahui.","module","Magento_Quote"
"Cannot assign customer to the given cart. You don't have permission for this operation.","Troli yang diberikan tidak boleh diberi kepada pelanggan. Anda tidak mempunyai persetujuan untuk operasi ini.","module","Magento_Quote"
"Cannot create quote","Tidak boleh menghasilkan sebut harga","module","Magento_Quote"
"Cannot set shipping method. %1","Kaedah penghantaran ini tidak boleh ditetapkan. %1","module","Magento_Quote"
"Cannot specify product.","Tidak dapat menentukan produk.","module","Magento_Wishlist"
"Captcha is required","Captcha diperlukan"
"Carrier Title","Tajuk Pembawa","module","Amasty_Checkout"
"Carrier Title","Tajuk Pembawa"
"Carrier Title","Tajuk Pembawa","module","Magento_Checkout"
"Carrier with such method not found: %1, %2","Carrier dengan kaedah ini tidak ditemui: %1, %2","module","Magento_Checkout"
"Cart %1 does not contain item %2","%1 Troli tidak mengandungi %2item","module","Magento_Quote"
"Cart %1 doesn't contain item %2","%1 Troli tidak mengandungi %2 item","module","Magento_Quote"
"Cart %1 doesn't contain products","%1 Troli tidak mengandungi produk","module","Magento_Quote"
"Cart contains virtual product(s) only. Shipping address is not applicable.","Troli hanya mengandungi produk maya sahaja. Alamat penghantaran tidak boleh digunakan.","module","Magento_Quote"
"Cart contains virtual product(s) only. Shipping method is not applicable.","Troli mengandungi produk maya sahaja. Kaedah penghantaran tidak boleh digunakan."
"Cart contains virtual product(s) only. Shipping method is not applicable.","Troli mengandungi produk maya sahaja. Kaedah penghantaran tidak boleh digunakan.","module","Magento_Quote"
"Cart Subtotal","Jumlah Kecil Troli","module","Magento_Checkout"
"Category with id ""%1"" does not exist.","Kategori dengan ID ""%1"" tidak wujud"
"Ceated at:","Terletak di:"
"Change Billing Address","Tukar Alamat Surat-Menyurat","module","Magento_Customer"
"Change Email","Tukar E-mel"
"Change Email","Tukar E-mel","module","Magento_Customer"
"Change Email and Password","Tukar E-mel dan Kata Laluan"
"Change Email and Password","Tukar E-mel dan Kata Laluan","module","Magento_Customer"
"Change my password","Tukar kata laluan saya"
"Change Password","Tukar Kata Laluan"
"Change Password","Tukar Kata Laluan","module","Magento_Customer"
"Change Shipping Address","Tukar Alamat Penghantaran","module","Magento_Customer"
"Change your password","Tukar kata laluan anda"
"Check here to link an RSS feed to your Wish List.","Klik sini untuk pautan Suapan RSS ke dalam Senarai Hajat anda.","module","Magento_Wishlist"
"Check items to add to the cart or","Pilih item untuk ditambah ke dalam troli atau"
"Check out faster","Semak keluar dengan pantas","module","Magento_Customer"
"Check the status of orders","Periksa status pesanan"
"Check the status of orders","Lihat status pesanan","module","Magento_Customer"
"Checkout","Keluar","module","Amasty_Checkout"
"Checkout","Semak Keluar","module","Magento_Checkout"
"Checkout","Semak Keluar"
"Checkout as Guest","Semak Keluar sebagai Tetamu"
"Checkout as Guest","Semak Keluar sebagai Tetamu"
"Checkout Method","Kaedah Semak Keluar"
"Checkout Method","Kaedah Semak Keluar"
"Checkout out as a new customer","Semak keluar sebagai Pelanggan baru","module","Magento_Customer"
"Checkout out using your account","Semak keluar menggunakan akaun anda","module","Magento_Customer"
"Checkout Type","Jenis Semak Keluar","module","Magento_Checkout"
"Checkout with PayPal","Bayar dengan PayPal"
"Chinese","Cina"
"Choose an Address","Pilih Alamat"
"Choose an Address","Pilih Alamat"
"Choose an Option...","Pilih Pilihan Anda…"
"Choose an Option...","Pilih Pilihan Anda…","module","Amasty_Checkout"
"City","Bandar"
"City","Bandar","module","Mageplaza_SocialLogin"
"City","Bandar","module","Magestore_Storelocator"
"City","Bandar"
"City","Bandar","module","Magento_Checkout"
"City","Bandar","module","Magento_Customer"
"Clear All","Kosongkan Semua","module","Mageplaza_LayeredNavigation"
"Clear All","Kosongkan Semua"
"Clear All","Keluarkan Semua","module","Magento_LayeredNavigation"
"Clear Shopping Cart","Kosongkan Troli Pembelian"
"Clear Shopping Cart","Kosongkan Troli Pembelian","module","Magento_Checkout"
"Click","Klik","module","WeltPixel_Quickview"
"Click %1 to continue shopping.","Klik %1 untuk teruskan pembelian."
"Click <a href=""%1"" class=""order-number"">here</a> to continue shopping.","Klik <a href=""%1"" class=""order-number"">sini</a> untuk teruskan membeli."
"Click <a href=""%1"">here</a> to check your redemption order.","Klik <a href=""%1"">sini</a> untuk memeriksa pesanan penebusan anda."
"Click <a href=""%1"">here</a> to continue shopping.","Klik <a href=""%1"">sini</a> untuk teruskan membeli.","module","Magento_Checkout"
"Click <a href=""%1"">here</a> to continue shopping.","Klik <a href=""%1"">sini</a>untuk teruskan membeli.","module","Magento_Wishlist"
"Click here","Klik sini","module","Magestore_Storelocator"
"Close","Tutup","module","Magestore_Storelocator"
"Close","Tutup"
"Close","Tutup","module","Magento_Checkout"
"Close Break Time","Waktu Berehat Ditutup","module","Magestore_Storelocator"
"Close Time","Waktu Ditutup","module","Magestore_Storelocator"
"Closed","Ditutup","module","Magestore_Storelocator"
"Collapse all","Semua collapse","module","MGS_Mmegamenu"
"Collection Counter:","Kaunter Koleksi:"
"Collection Date","Tarikh Koleksi"
"Collection Date:","Tarikh Koleksi:"
"Collection Outlet","Koleksi Kedai"
"Color","Warna"
"Comment","Komen","module","Magestore_Storelocator"
"Comment","Komen"
"Comment","Komen","module","Magento_Wishlist"
"Comment:","Komen:","module","Magento_Wishlist"
"Comment: %comment","Komen: %komen","module","Magento_Contact"
"Comments","Komen","module","Amasty_Checkout"
"Comments","Komen","module","Magestore_Storelocator"
"Compact","Kompak"
"Company","Syarikat"
"Company","Syarikat","module","Mageplaza_SocialLogin"
"Company","Syarikat"
"Company","Syarikat","module","Magento_Customer"
"Complimentary gift, deluxe samples and invitation to members-only shop- ping events.","Hadiah sagu hati, sampel mewah dan jemputan ke acara khas untuk ahli pembelian sahaja."
"Configure","Konfigurasi","module","Magento_Customer"
"Confirm Email","E-mel Pengesahan"
"Confirm New Password","Sahkan Kata Laluan Baru","module","Magento_Customer"
"Confirm Order","Sahkan Pesanan"
"Confirm Order","Mengesahkan pesanan"
"Confirm Password","Sahkan Kata Laluan","module","Mageplaza_SocialLogin"
"Confirm Password","Sahkan Kata Laluan"
"Confirm Password","Sahkan Kata Laluan","module","Magento_Customer"
"Confirm Your Account","Jalankan Pengesahan Akaun","module","Magento_Customer"
"Confirm your new password:","Sahkan kata laluan baru anda:"
"Confirmation Not Required","Pengesahan Tidak Diperlukan","module","Magento_Customer"
"Confirmation Required","Pengesahan Diperlukan","module","Magento_Customer"
"Confirmed","Pengesahan","module","Magento_Customer"
"Congratulations, you have reached the end of the list.","Tahniah, anda telah sampai ke senarai paling akhir."
"Congratulations! You just GOT 3 FREE SAMPLES.","Tahniah! Anda telah mendapat 3 SAMPEL PERCUMA"
"Contact Detail","Maklumat Untuk Dihubungi"
"Contact Detail","Maklumat Untuk Dihubungi"
"Contact Details","Maklumat Untuk Dihubungi"
"Contact Details","Maklumat Untuk Dihubungi"
"Contact Form","Borang Untuk Dihubungi","module","Magento_Contact"
"Contact Information","Maklumat Untuk Dihubungi","module","Magestore_Storelocator"
"Contact Information","Maklumat Untuk Dihubungi"
"Contact information","Maklumat Untuk Dihubungi"
"Contact Information","Maklumat Untuk Dihubungi","module","Magento_Customer"
"Continue Shopping","Teruskan Membeli"
"Continue Shopping","Teruskan Membeli","module","Amasty_Checkout"
"Continue Shopping","Teruskan Membeli"
"Continue Shopping","Teruskan Membeli","module","Magento_Checkout"
"Continue To Redeem","Teruskan untuk Menebus"
"Continue To Shipping & Payment","Teruskan Pembayaran & Penghantaran"
"Continue To Shipping & Payment","Teruskan Untuk Penghantaran & Pembayaran"
"Cookies","Cookies"
"Could not add gift message to order: ""%1","Tidak boleh menambah mesej hadiah untuk memesan: ""%1","module","Magento_GiftMessage"
"Could not add gift message to order's item: ""%1","Tidak boleh menambah mesej hadiah untuk memesan item: ""%1","module","Magento_GiftMessage"
"Could not add gift message to shopping cart","Tidak boleh menambah mesej hadiah ke troli pembelian","module","Magento_GiftMessage"
"Could not apply coupon code","Kod kupon tidak boleh dipakai","module","Magento_Quote"
"Could not delete coupon code","Tidak boleh memadam kod kupon","module","Magento_Quote"
"Could not delete the Category: %1","Tidak boleh memadam Kategori: %1"
"Could not delete the fee: %1","Bayaran tidak boleh dipadam: %1","module","Amasty_Checkout"
"Could not delete the Matcher: %1","Pemadan tidak boleh dipadam: %1"
"Could not delete the Order Item: %1","Tidak boleh memadam Item Pesanan: %1"
"Could not delete the Outlet: %1","Kedai tidak boleh dipadam: %1"
"Could not delete the RedemptionProduct: %1","Produk Penembusan tidak boleh dipadam: %1"
"Could not delete the Scheduler: %1","Penjadual tidak boleh dipadam: %1"
"Could not delete the Session: %1","Sesi tidak boleh dipadam :%1"
"Could not delete the Template: %1","Tidak boleh memadam Templat: %1"
"Could not remove item from quote","Item tidak boleh dikeluarkan daripada sebut harga","module","Magento_Quote"
"Could not save quote","Sebut harga tidak boleh simpan","module","Magento_Quote"
"Could not save the acommerce: %1","A-Dagang tidak boleh disimpan: %1"
"Could not save the category: %1","Tidak boleh menyimpan kategori: %1"
"Could not save the fee: %1","Tidak boleh menyimpan bayaran: %1","module","Amasty_Checkout"
"Could not save the matcher: %1","Pemadan tidak boleh disimpan: %1"
"Could not save the orderItem: %1","Tidak boleh menyimpan item pesanan: %1"
"Could not save the outlet: %1","Kedai tidak boleh disimpan: %1"
"Could not save the Redemption Product: %1","Tidak boleh menyimpan Produk Penembusan: %1"
"Could not save the scheduler: %1","Penjadual tidak boleh disimpan: %1"
"Could not save the session: %1","Sesi anda tidak boleh disimpan: %1"
"Could not save the template: %1","Templat tidak boleh disimpan: %1"
"Country","Negara"
"Country","Negara","module","Mageplaza_SocialLogin"
"Country","Negara","module","Magestore_Storelocator"
"Country","Negara"
"Country","Negara","module","Magento_Checkout"
"Country","Negara","module","Magento_Customer"
"Coupon code is not valid","Kod kupon tidak sah","module","Magento_Quote"
"Coupon Code SKU must be unique.","Kod kupon SKU mestilah unik."
"Courier:","Kurier:"
"Create an Account","Cipta Akaun","module","Mageplaza_SocialLogin"
"Create an Account","Cipta Akaun"
"Create An Account","Cipta Akaun"
"Create an Account","Cipta Akaun","module","Magento_Customer"
"Create an account successfully. Please wait...","Pembukaan akaun telah berjaya. Sila tunggu…","module","Mageplaza_SocialLogin"
"Create an account to get exclusive privileges:","Cipta akaun untuk mendapatkan ganjaran eksklusif:"
"Create an account to get exclusive privileges:","Cipta akaun untuk mendapatkan keistimewaan eksklusif:"
"Create My Account","Cipta Akaun Saya"
"Create New Account","Cipta Akaun Baru","module","Mageplaza_SocialLogin"
"Create New Account?","Cipta Akaun Baru?","module","Mageplaza_SocialLogin"
"Create New Customer Account","Cipta Akaun Pelanggan Baru","module","Magento_Customer"
"Create Order","Buat Pesanan","module","Magento_Customer"
"Create your account","Cipta akaun anda"
"Created invoice #%1.","Invois dihasilkan #%1","module","Ipay88_Ipay88"
"Creating an account has many benefits:","Banyak ganjaran dengan mencipta akaun:","module","Magento_Customer"
"Creating an account has many benefits: check out faster, keep more than one address, track orders and more.","Terdapat banyak kelebihan dengan mencipta akaun: semak keluar dengan pantas, simpan lebih daripada satu alamat, jejak pesanan dan banyak lagi.","module","Magento_Customer"
"Currency Update Warnings","Amaran Kemas kini Matawang","module","Magento_Directory"
"Current Password","Kata Laluan Semasa","module","Magento_Customer"
"Customer","Pelanggan","module","Magento_Customer"
"Customer Attributes","Atribut Pelanggan"
"Customer Authentication Popup","Menu Popup Pengesahan Pelanggan","module","Mageplaza_SocialLogin"
"Customer Create Page","Cipta Halaman Pelanggan","module","Mageplaza_SocialLogin"
"Customer Groups","Kumpulan Pelanggan","module","Magento_Customer"
"Customer ID:","ID Pelanggan:"
"Customer is already registered","Pelanggan telah berdaftar","module","Amasty_Checkout"
"Customer is already registered","Pelanggan telah berdaftar","module","Magento_Checkout"
"Customer Login","Log Masuk Pelanggan","module","Magento_Customer"
"Customer Login Page","Halaman Log Masuk Pelanggan","module","Mageplaza_SocialLogin"
"Customer Loyalty Points waiting for update...","Mata Kesetiaan Pelanggan sedang ditunggu untuk dikemas kini…"
"Customer View","Pandangan Pelanggan","module","Magento_Customer"
"Customer:","Pelanggan:","module","Magento_Checkout"
"Dark Theme","Tema Gelap"
"Data error. Please try again.","Ralat data. Cuba sekali lagi.","module","Mageplaza_SocialLogin"
"DATA PROTECTION AND PRIVACY POLICY NOTICE","NOTIS POLISI PERIBADI DAN PERLINDUNGAN DATA"
"DATA PROTECTION AND PRIVACY POLICY NOTICE","NOTIS POLISI PRIVASI DAN PERLINDUNGAN DATA"
"Date","Tarikh"
"Date","Tarikh"
"Date & Time:","Tarikh & Masa:","module","Magento_Checkout"
"Date End","Tarikh Akhir","module","Magestore_Storelocator"
"Date of birth","Tarikh lahir"
"Date of Birth","Tarikh Lahir","module","Magento_Customer"
"Date of Birth","Tarikh Lahir"
"Date of Birth","Tarikh lahir"
"Date of Birth is invalid","Tarikh Lahir tidak sah"
"Date of Birth is invalid","Tarikh Lahir tidak sah"
"Date ordered","Maklumat tarikh pesanan"
"Date Start","Tarikh Mula","module","Magestore_Storelocator"
"Day","Hari"
"Day","Hari"
"Days in Wish List","Hari dalam Senarai Hajat","module","Magento_Customer"
"Dec","Disember"
"December","Disember"
"Default","Gagal","module","Magestore_Storelocator"
"Default Addresses","Alamat-Alamat Tetap","module","Magento_Customer"
"Default Billing Address","Tiada Alamat Bil"
"Default Shipping Address","Tiada Alamat Penghantaran"
"Default Shipping Address","Alamat Penghantaran Tetap","module","Magento_Customer"
"Default Value","Nilai Asal","module","Amasty_Checkout"
"Delete","Memadam"
"Delete","Padam"
"Delete","Memadam","module","Magento_Customer"
"Delete ""${ $.$data.title }","Memadam ""${ $.$data.title }"
"Delete ""${ $.$data.title }","Padam ""${ $.$data.title }"
"Delete Address","Padam Alamat","module","Magento_Customer"
"Delete Category","Padam Kategori"
"Delete Customer","Padam Pelanggan","module","Magento_Customer"
"Delete Customer Group","Padam Kumpulan Pelanggan","module","Magento_Customer"
"Delete File","Memadam Fail","module","Magento_Customer"
"Delete Image","Padam Imej","module","Magento_Customer"
"Delete Outlet","Padam Kedai"
"Delete Template","Padam Templat"
"Deleted Stores","Kedai Dipadam","module","Magento_Customer"
"Delivery","Penghantaran","module","Amasty_Checkout"
"Delivery Date","Tarikh Penghantaran","module","Amasty_Checkout"
"Delivery Date Info","Info Tarikh Penghantaran","module","Amasty_Checkout"
"Delivery Information","Maklumat Penghantaran","module","Amasty_Checkout"
"Delivery Time","Waktu Penghantaran","module","Amasty_Checkout"
"Description","Deskripsi"
"Description","Deskripsi","module","Magestore_Storelocator"
"Description","Deskripsi"
"Detailed Rating","Penilaian Butiran"
"Disabled","Melumpuhkan"
"Disabled","Tidak dibolehkan"
"Disabled","Dilumpuhkan"
"Disabled Checkout Fields","Tidak Membolehkan Ruang Keluar","module","Amasty_Checkout"
"Disclaimer:","Pemberitahuan:"
"Discount","Diskaun","module","Magento_Quote"
"discover","temui"
"discover","temui"
"Discover Lancôme","Kenali Lancôme"
"Discover Lancôme","Kenali Lancôme"
"Display item quantities","Jumlah item dipaparkan","module","Magento_Checkout"
"Display item quantities","Kuantiti item ditunjukkan","module","Magento_Wishlist"
"Display number of items in cart","Jumlah item dipaparkan pada troli pembelian","module","Magento_Checkout"
"Display number of items in wish list","Jumlah item yang ditunjukkan dalam senarai hajat","module","Magento_Wishlist"
"Distance","Jarak","module","Magestore_Storelocator"
"Do you have any gift items in your order?","Adakah anda mempunyai sebarang item hadiah di dalam pesanan anda?","module","Magento_GiftMessage"
"Download","Muat turun","module","Magento_Customer"
"Drop fields here","Letakkan ruang di sini","module","Amasty_Checkout"
"E-mail:","E-mel:"
"Earn Point","Mata Diperolehi"
"East Malaysia","Malaysia Timur"
"Edit","Edit"
"Edit","Edit"
"Edit","Ubah"
"Edit","Edit","module","Magento_Checkout"
"Edit","Edit","module","Magento_Customer"
"Edit","Edit","module","Magento_Wishlist"
"edit","edit","module","Magento_Checkout"
"Edit Address","Edit Alamat"
"Edit Address","Edit Alamat","module","Magento_Customer"
"Edit Cart","Edit Troli"
"Edit Cart","Edit Troli"
"Edit Category","Edit Kategori"
"Edit Customer Group ""%1","Edit Kumpulan Pelanggan ""%1","module","Magento_Customer"
"Edit item parameters","Ubah parameter item"
"Edit item parameters","Edit parameter item","module","Magento_Checkout"
"Edit Outlet","Edit Kedai"
"Edit Redemption Template","Edit Templat Penembusan"
"Edit Scheduler","Edit Penjadual"
"Edit Your Cart","Edit Troli Anda","module","Magento_Checkout"
"egift card","kad hadiah elektronik"
"Elite Member:","Ahli Elit:"
"Elite Rewards","Ganjaran Elit"
"Elite Rewards","Ganjaran Elit"
"Elite Rewards","Ganjaran Elite"
"Email","E-mel"
"Email","E-mel","module","Mageplaza_SocialLogin"
"Email","E-mel"
"Email","E-mel","module","Magento_Contact"
"Email","E-mel","module","Magento_Customer"
"Email Address","Alamat E-mel","module","Magestore_Storelocator"
"Email Address","Alamat E-mel"
"Email Address","Alamat E-mel:","module","Magento_Checkout"
"Email Address","Alamat E-mel:","module","Magento_Customer"
"Email Address:","Alamat E-mel:"
"Email Address:","Alamat e-mel:"
"Email addresses, separated by commas","Alamat e-mel, dijarakkan oleh koma","module","Magento_Wishlist"
"Email is Null, Please enter email in your %1 profile","E-mel tidak diisi. Sila masukkan e-mel anda ke dalam profil %1","module","Mageplaza_SocialLogin"
"Email:","E-mel:","module","Magestore_Storelocator"
"Email:","E-mel:","module","Magento_Customer"
"Email: %email","E-mel: %e-mel","module","Magento_Contact"
"Enabled","Membolehkan"
"Enabled","Dibolehkan"
"Enabled Checkout Fields","Membolehkan Ruang Keluar","module","Amasty_Checkout"
"End Date","Tarikh akhir","module","Magento_Customer"
"Engraving Sale Report","Membentuk Laporan Jualan"
"Enjoy amazing treats and rewards by earning points everytime you shop.","Nikmati pelbagai tawaran dan ganjaran hebat menerusi mata kesetiaan yang dikumpul setiap kali anda membeli."
"Enter a location...","Masukkan lokasi…","module","Magestore_Storelocator"
"Enter a location...","Masukkan lokasi…"
"Enter detail to login by email/password","Masukkan maklumat e-mel/kata laluan untuk log masuk"
"Enter discount code","Masukkan kod diskaun"
"Enter discount code","Masukkan kod diskaun","module","Magento_Checkout"
"Enter message","Masukkan mesej"
"Enter your current password","Masukkan kata laluan semasa anda"
"Enter your current password:","Masukkan kata laluan semasa anda:"
"Enter your new password:","Masukkan kata laluan baru anda:"
"Error","Ralat"
"error-message","mesej-ralat","module","Magento_Wishlist"
"Error: The Geolocation service failed.","Ralat: Servis Geolokasi gagal.","module","Magestore_Storelocator"
"error123","ralat123","module","Magento_Quote"
"error345","ralat345","module","Magento_Quote"
"essentials","penting"
"Estimate","Anggaran"
"Estimate Shipping and Tax","Nilai Anggaran Cukai dan Penghantaran","module","Magento_Checkout"
"Estimate Tax","Cukai Anggaran"
"Estimate Tax","Nilai Anggaran Cukai","module","Magento_Checkout"
"Estimated Total","Jumlah Dianggarkan","module","Magento_Checkout"
"Event Date From","Tarikh Acara Dari"
"Event Tickets Sold","Tiket Acara Habis Terjual"
"Excl. Tax","Tidak Termasuk Cukai"
"Excl. Tax","Tidak termasuk Cukai","module","Magento_Checkout"
"Exclusive offers for suscribers","Tawaran-tawaran eksklusif untuk pelanggan"
"Exclusive privileges.","Ganjaran eksklusif."
"Expand all","Semua expand","module","MGS_Mmegamenu"
"Expired Date","Tarikh Tamat Tempoh"
"Eye","Mata"
"Face","Wajah"
"Fax","Faks"
"Fax","Faks"
"Fax","Faks","module","Magento_Customer"
"Fax Number","Nombor faks","module","Magestore_Storelocator"
"Fax:","Faks:","module","Magestore_Storelocator"
"Features","Ciri-ciri"
"Feb","Februari"
"February","Februari"
"Fee with id ""%1"" does not exist.","Bayaran dengan ID ""%1"" tidak wujud.","module","Amasty_Checkout"
"Female","Perempuan","module","Magento_Customer"
"Field","Ruang","module","Amasty_Checkout"
"Field","Ruang","module","WebShopApps_MatrixRate"
"Fields information has been successfully updated","Ruang maklumat telah berjaya dikemas kini","module","Amasty_Checkout"
"File extension not known or unsupported type.","Jenis fail tidak diketahui atau disokong oleh sistem.","module","Magestore_Storelocator"
"File must be .png, .jpg or .jpeg and less than 4MB in size.","Fail mestilah dalam bentuk .png, .jpg atau .jpeg dan kurang daripada saiz 4MB."
"Filterable (no results)","Filterable (tiada hasil)","module","Magento_LayeredNavigation"
"Filterable (with results)","Filterable (dengan hasil)","module","Magento_LayeredNavigation"
"fing the perfect gift","cari hadiah yang sempurna"
"First Name","Nama pertama","module","Magento_Backend"
"First Name","Nama pertama","module","Magento_Catalog"
"First Name","Nama pertama","module","Magento_Company"
"First Name","Nama pertama","module","Magento_Customer"
"First Name","Nama pertama","module","Magento_GiftRegistry"
"First Name","Nama pertama","module","Magento_Invitation"
"First Name","Nama pertama"
"First Name:","Nama pertama:","module","Magento_Company"
"focus on","fokus pada"
"Focus On","Fokus Pada"
"Footer","Kekaki"
"Footer","Kekaki","module","Magento_Email"
"For delivery questions.","Untuk soalan-soalan penghantaran."
"For delivery questions.","Soalan-soalan mengenai penghantaran","module","Magento_Checkout"
"Force Sign-In","Paksa Daftar Masuk","module","Magento_Customer"
"Forgot an Item?","Terlupa Item?","module","Magento_Checkout"
"Forgot Password","Terlupa Kata Laluan","module","Mageplaza_SocialLogin"
"Forgot password?","Terlupa kata laluan?"
"Forgot your account password? Click <a href=""%reset_url"">here</a> to reset it.","Terlupa kata laluan akaun anda? Klik <a href=""%reset_url"">sini</a> untuk menetap semula.","module","Magento_Customer"
"Forgot Your Password?","Terlupa Kata Laluan Anda?","module","Mageplaza_SocialLogin"
"Forgot your password?","Terlupa kata laluan?"
"Forgot Your Password?","Terlupa Kata Laluan Anda?"
"Forgot Your Password?","Terlupa Kata Laluan Anda?","module","Magento_Customer"
"Forgot your password?","Terlupa kata laluan?"
"Forgot Your Password?","Terlupa Kata Laluan?","module","Magento_Checkout"
"Forgot your password?","Lupa kata laluan anda?"
"Forgotten your password?","Terlupa kata laluan?"
"Forgotten your password?","Terlupa kata laluan?"
"Fragrance","Haruman"
"Fragrance Notes","Nota Haruman"
"Free shipping","Penghantaran Percuma"
"Free shipping","Penghantaran Percuma"
"Free Shipping","Penghantaran Percuma"
"Free Shipping - East Malaysia","Penghantaran Percum - Malaysia Timur"
"Free shipping - Free","Penghantaran Percuma"
"Free Shipping - Free","Penghantaran Percuma"
"Free Shipping - West Malaysia","Penghantaran Percum - Malaysia Barat"
"free-item","item-percuma"
"Fri","Jumaat","module","Magestore_Storelocator"
"Friday","Jumaat","module","Magestore_Storelocator"
"Friday","Jumaat"
"From","Daripada"
"From:","Daripada:"
"From:","Daripada:","module","Amasty_Checkout"
"Fulfilled","Dipenuhi"
"Gender","Jantina"
"Gender","Jantina","module","Magento_Customer"
"General Information","Informasi khusus","module","Magestore_Storelocator"
"General information","Informasi khusus","module","Magestore_Storelocator"
"General Instructions","Arahan khusus","module","Magestore_Storelocator"
"General Subscription","Langganan Khas","module","Magento_Customer"
"Get Directions","Tunjukkan Arah","module","Magestore_Storelocator"
"Gift","Hadiah"
"gift finder","pencari hadiah"
"Gift Message","Mesej Hadiah"
"Gift Message (optional)","Mesej Hadiah (pilihan)"
"Gift Message for %1 (optional)","Mesej Hadiah untuk %1 (pilihan)","module","Amasty_Checkout"
"Gift Message for This Order","Tinggalkan Mesej pada Pesanan Ini"
"Gift Message is not available","Mesej Hadiah tidak boleh didapati","module","Magento_GiftMessage"
"Gift Messages are not applicable for empty cart","Mesej Hadiah tidak boleh digunakan pada troli kosong","module","Magento_GiftMessage"
"Gift Messages are not applicable for empty order","Mesej Hadiah tidak boleh digunakan untuk pesanan kosong","module","Magento_GiftMessage"
"Gift Messages are not applicable for virtual products","Mesej Hadiah tidak boleh digunakan pada produk maya","module","Magento_GiftMessage"
"Gift Options for Individual Items","Pilihan Hadiah untuk Item Individu","module","Magento_GiftMessage"
"Gift Options for the Entire Order","Pilihan Hadiah untuk Keseluruhan Pesanan","module","Magento_GiftMessage"
"Gift Wrap","Balut hadiah","module","Amasty_Checkout"
"Gift wrap %1","Balut hadiah %1","module","Amasty_Checkout"
"Give the gift that keeps on beautifying.","Berikan hadiah untuk mengekalkan kecantikan"
"Global","Global","module","Magento_Customer"
"Go","Pergi","module","Magestore_Storelocator"
"Go back","Kembali ke belakang","module","Mageplaza_SocialLogin"
"Go back","Kembali"
"Go back","Kembali","module","Magento_Customer"
"Go back to the product page and select","Kembali ke halaman produk dan pilih"
"Go to checkout","Semak keluar"
"Go to Checkout","Pergi ke Semak Keluar","module","Magento_Checkout"
"Go To Product","Pergi Ke Produk","module","WeltPixel_Quickview"
"Go to Wish List","Pergi ke Senarai Hajat","module","Magento_Wishlist"
"Good","Bagus"
"Google Map Location","Lokasi Peta Google","module","Magestore_Storelocator"
"Grand Total","Jumlah Keseluruhan","module","Magento_Quote"
"Group Information","Maklumat Kumpulan","module","Magento_Customer"
"Group Name","Nama Kumpulan","module","Magento_Customer"
"Guest","Tetamu"
"Guest","Pelanggan"
"Guest checkout is disabled.","Halaman keluar pelanggan dilumpuhkan.","module","Amasty_Checkout"
"Guest checkout is disabled.","Laman semak keluar pelanggan telah dilumpuhkan.","module","Magento_Checkout"
"Guest checkout is disabled.","Semak Keluar sebagai Tetamu dinyahaktif."
"Header","Kepala"
"Header","Kepala","module","Magento_Email"
"Hello,","Helo,","module","Magento_Customer"
"Hello,","Helo,","module","Magento_User"
"Holiday Information","Informasi percutian","module","Magestore_Storelocator"
"Holiday Name","Nama Percutian","module","Magestore_Storelocator"
"Holidays","Cuti Umum","module","Magestore_Storelocator"
"Home","Laman Utama"
"Hover","Hover","module","WeltPixel_Quickview"
"How to","Bagaimana untuk"
"I accept the Privacy Policy","Saya bersetuju dengan Polisi Privasi"
"I'm looking for...","Saya hendak mencari..."
"I\m looking for...","Saya hendak mencari..."
"IC","No.IC"
"ID","ID"
"ID","ID","module","Magento_Customer"
"Identification Number","Nombor Pengenalan"
"Identification number is not valid","Nombor Pengenalan tidak sah."
"If there is an account associated with %1 you will receive an email with a link to reset your password.","Jika terdapat akaun yang berkaitan dengan anda %1 anda akan menerima e-mel dengan pautan untuk menetap semula kata laluan anda.","module","Mageplaza_SocialLogin"
"If there is an account associated with %1 you will receive an email with a link to reset your password.","Sekiranya terdapat %1 akaun yang berkaitan, anda akan menerima e-mel dengan pautan untuk menetap semula kata laluan.","module","Magento_Customer"
"If you are an existing member, please login with IC.","Jika anda ahli sedia ada, sila log masuk dengan No.IC."
"If you are an existing member, please login with IC.","Jika anda ahli sedia ada, sila log masuk dengan No.IC."
"If you are an existing member, please login with NRIC/Passport.","Jika anda ahli sedia ada, sila log masuk dengan No.IC/Passport"
"If you did not make this request, you can ignore this email and your password will remain the same.","Jika anda tidak melakukan permintaan ini, sila abaikan e-mel ini dan kata laluan anda akan kekal sama.","theme","adminhtml/Hoatamus/backend"
"If you did not make this request, you can ignore this email and your password will remain the same.","Sekiranya bukan anda yang meminta penukaran ini, sila abaikan e-mel ini dan kata laluan anda akan kekal sama.","module","Magento_Customer"
"If you did not make this request, you can ignore this email and your password will remain the same.","Sekiranya bukan anda yang meminta penukaran ini, sila abaikan e-mel ini dan kata laluan anda akan kekal sama.","module","Magento_User"
"If you have a promotional code, please enter it here","Sila masukkan kod promosi jika ada"
"If you have a promotional code, please enter it here","Sekiranya anda mempunyai kod promosi, sila masukkan di sini"
"If you have an account, please log in for faster checkout.","Jika anda mempunyai akaun, sila log masuk untuk semak keluar dengan pantas."
"If you have an account, sign in with your email address.","Sekiranya anda sudah mempunyai akaun, daftar masuk dengan alamat e-mel anda.","module","Magento_Customer"
"If you have not authorized this action, please contact us immediately at %store_email","Sekiranya anda tidak mengesahkan tindakan ini, sila hubungi kami secepat mungkin di <a href=""mailto:%emel"">%kedai_emel</a>","module","Magento_User"
"If you have not authorized this action, please contact us immediately at <a href=""mailto:%store_email"">%store_email</a>","Sekiranya anda tidak mengesahkan tindakan ini, sila hubungi kami secepat mungkin di <a href=""mailto:%emel_kedai"">%emel_kedai</a>","module","Magento_Customer"
"If you requested this change, reset your password here:","Jika anda meminta untuk mengubahnya, tetapkan semula kata laluan di sini:","theme","adminhtml/Hoatamus/backend"
"If you requested this change, reset your password here:","Sekiranya anda yang telah meminta penukaran ini, tetapkan kata laluan baru di sini:","module","Magento_User"
"If you requested this change, set a new password here:","Sekiranya anda yang telah meminta penukaran ini, tetapkan kata laluan baru di sini:","module","Magento_Customer"
"Image Gallery","Galeri Gambar","module","Magestore_Storelocator"
"Images of %1","Imej %1","module","Magestore_Storelocator"
"In stock","Ada stok"
"in stock","ada stok"
"In stock","Ada stok","module","Magento_Wishlist"
"Inactivated","Tidak diaktifkan"
"Incl. Tax","Termasuk Cukai"
"Incl. Tax","Termasuk Cukai","module","Magento_Checkout"
"Incorrect CAPTCHA","CAPTCHA tidak sah"
"Incorrect CAPTCHA","CAPTCHA Salah","module","Magento_Captcha"
"Incorrect CAPTCHA.","CAPTCHA salah.","module","Mageplaza_SocialLogin"
"Incorrect CAPTCHA.","CAPTCHA Salah.","module","Magento_Captcha"
"Incorrect Nric for this user","Nombor Kad Pengenalan tidak sah untuk pengguna ini"
"Indeterminate","Tidak Pasti","module","Magento_Customer"
"Indian","India"
"Information:","Maklumat:"
"Inline","Talian sebaris"
"Invalid address id %1","ID %1 alamat tidak sah","module","Magento_Quote"
"Invalid Characters!","Huruf Tidak Sah!"
"Invalid Characters!","Huruf Tidak Sah!"
"Invalid customer address id %1","ID %1 alamat pelanggan tidak sah","module","Magento_Quote"
"Invalid customer id %1","ID %1 pelanggan tidak sah","module","Magento_Quote"
"Invalid data","Data Tidak Sah","module","Magento_Checkout"
"Invalid date specified","Tarikh ditentukan tidak sah"
"Invalid item option format.","Format item pilihan tidak sah.","module","Magento_Wishlist"
"Invalid login or password.","Log masuk atau kata laluan tidak sah.","module","Magento_Customer"
"Invalid return, no transactionId specified","Pulangan yang tidak sah, tiada transaksi yang dinyatakan","module","Ipay88_Ipay88"
"Invalid shipping method","Kaedah penghantaran tidak sah","module","Magento_Checkout"
"Invisible reCaptcha","Captcha semula tidak kelihatan"
"iPay88 Response","Respon iPay88","module","Ipay88_Ipay88"
"It will be our pleasure to send you a surprise <br/> on your birthday","Kami amat berbesar hati untuk menghantar kejutan <br/> sempena hari jadi anda"
"It will be our pleasure to send you a surprise on your birthday.","Kami amat berbesar hati untuk menghantar kejutan sempena hari jadi anda."
"It's a default billing address.","Adalah alamat surat-menyurat tetap."
"It's a default billing address.","Alamat Surat-Menyurat yang tetap.","module","Magento_Customer"
"It's a default shipping address.","Adalah alamat penghantaran tetap."
"It's a default shipping address.","Alamat penghantaran yang tetap","module","Magento_Customer"
"It's pampering time. Pick and choose your next sweet treats within our delightful selection.","Masa untuk memanjakan dirimu. Ambil dan pilih ganjaran hebat seterusnya menerusi pilihan kami yang menarik."
"item","Item","module","Mageplaza_LayeredNavigation"
"Item","Item"
"item","item"
"Item","Item","module","Magento_Checkout"
"item","item","module","Magento_LayeredNavigation"
"Item in Cart","Item dalam Troli","module","Amasty_Checkout"
"Item in Cart","Item dalam Troli"
"Item in Cart","Item dalam Troli","module","Magento_Checkout"
"Item qty declaration error","Ralat pengakuan kuantiti item","module","Magento_Quote"
"Item Value","Nilai Item"
"Items","Item-Item"
"items","Item-item","module","Mageplaza_LayeredNavigation"
"Items","Item-Item"
"items","item-item"
"items","item-item","module","Magento_LayeredNavigation"
"Items","Item-item","module","Magento_Checkout"
"Items in Cart","Item-item dalam Troli","module","Amasty_Checkout"
"Items in Cart","Item-item dalam Troli"
"Items in Cart","Item-item dalam Troli","module","Magento_Checkout"
"Items Ordered","item-item Pesanan"
"Items:","Item-item:"
"Jan","Januari"
"January","Januari"
"Join Now","Sertai Sekarang"
"Join Now","Sertai sekarang"
"Jot us a note and we‚Äôll get back to you as quickly as possible.","Sila tinggalkan nota pesanan dan kami, Äôll akan kembali kepada anda sebentar lagi.","module","Magento_Contact"
"Jul","Julai"
"July","Julai"
"Jun","Jun"
"June","Jun"
"Kilometers","Kilometer","module","Magestore_Storelocator"
"Label","Label"
"Label","Label","module","Amasty_Checkout"
"label","label","module","Amasty_Checkout"
"Label","Label","module","Magento_Customer"
"Last Added Items","Item Terakhir Ditambah","module","Magento_Wishlist"
"Last Date Subscribed","Tarikh Akhir Melanggan","module","Magento_Customer"
"Last Date Unsubscribed","Tarikh Akhir Tidak Melanggan","module","Magento_Customer"
"Last Name","Nama terakhir","module","Magento_Backend"
"Last Name","Nama terakhir","module","Magento_Catalog"
"Last Name","Nama terakhir","module","Magento_Company"
"Last Name","Nama terakhir","module","Magento_Customer"
"Last Name","Nama terakhir","module","Magento_GiftRegistry"
"Last Name","Nama terakhir","module","Magento_Invitation"
"Last Name","Nama terakhir"
"Last Name:","Nama terakhir:","module","Magento_Company"
"Latitude","Latitud","module","Magestore_Storelocator"
"Learn More","Ketahui Lagi"
"Leave a box blank if you don't want to add a gift message for that item.","Kosongkan kotak ini jika anda tidak mahu menambah mesej hadiah untuk item tersebut.","module","Magento_GiftMessage"
"Leave this box blank if you don't want to leave a gift message for the entire order.","Kosongkan kotak ini jika anda tidak mahu meninggalkan mesej hadiah untuk seluruh pesanan.","module","Magento_GiftMessage"
"Less shades","Kurang warna"
"Letters only please","Huruf sahaja dibenarkan"
"Letters or punctuation only please","Huruf atau tanda baca sahaja dibenarkan"
"Letters, numbers, spaces or underscores only please","Huruf, nombor, jarak atau garis bawah sahaja dibenarkan"
"Light Theme","Tema Cerah"
"Limited to %1 characters, including spaces. Only the following characters are allowed: letters A-Z, numbers 0-9 and .-_!@#:;<>()$*&","Terhad kepada %1 karakter, termasuk jarak. Hanya karakter berikut dibenarkan: abjad A-Z, nombor 0-9 dan _!@#:;<>()$*&"
"Link:","Link:","module","Magestore_Storelocator"
"Linked","Berpaut"
"Lip","Bibir"
"Load More","Muat Lagi"
"load more 1 item","muat lebih daripada 1 item"
"Loading...","Pemuatan…","module","Amasty_Checkout"
"Loading...","Pemuatan…"
"Loading...","Pemuatan…","module","Magento_Checkout"
"Localized Exception.","Pengecualian Tempatan","module","Magento_Wishlist"
"LocalizedException","PengecualianTempatan","module","Magento_Wishlist"
"Location Information","Maklumat Lokasi","module","Magestore_Storelocator"
"Locked","Ditutup","module","Magento_Customer"
"Locked Users","Pengguna Dikunci","module","Magento_User"
"Login","Log Masuk","module","Mageplaza_SocialLogin"
"Login","Log Masuk"
"Login","Log masuk"
"Login","Log masuk","module","Magento_Checkout"
"Login","Log masuk"
"Login By %1","Log Masuk Oleh %1","module","Mageplaza_SocialLogin"
"Login By %1","Log Masuk Dengan %1"
"Login to discover all the rewards","Log masuk untuk melihat kesemua ganjaran"
"Login with NRIC","Log Masuk dengan Kad Pengenalan"
"Login with NRIC/Passport","Masuk dengan NRIC/Passport"
"login with one click","log masuk dengan satu klik"
"Longitude","Longitud","module","Magestore_Storelocator"
"Loyalty Program","Program Kesetiaan"
"Make changes to your account information","Buat perubahan pada maklumat akaun anda"
"make her amile","buat dia tersenyum"
"make it unique","jadikannya unik"
"Makeup","Mekap"
"Malay","Malay"
"Malaysia","Malaysia"
"Male","Lelaki","module","Magento_Customer"
"Manage Addresses","Kendalikan Alamat"
"Manage Checkout Fields","Urus Ruang Keluar","module","Amasty_Checkout"
"Mandatory fields","Ruang wajib"
"Mar","Mac"
"March","Mac"
"Marker Icon","Penanda Ikon","module","Magestore_Storelocator"
"Matcher with id ""%1"" does not exist.","Pemadan dengan ID ""%1"" tidak wujud."
"Max 35 characters of each address line.","Maksimum 35 karekter untuk setiap baris alamat.","theme","adminhtml/Hoatamus/backend"
"Maximum length must be less then %1 characters.","Panjang maksimum mestilah kurang daripada %1 karakter.","module","Magento_Customer"
"Maximum length of this field must be equal or less than 10 symbols.","Panjang sekurang-kurangnya sama atau kurang daripada 10 simbol."
"Maximum length of this field must be equal or less than 10 symbols.","Kepanjangan ruang ni mestilah sama atau kurang daripada 10 simbol."
"Maximum number of characters:","Jumlah maksimum karakter:"
"May","Mei"
"May You Also Like","Anda Juga Mungkin Suka"
"Member Sign up","Mendaftar sebagai Ahli"
"Member status","Status keahlian: %1"
"Membership Status: %1","Status keahlian: %1"
"message","mesej","module","Magento_Wishlist"
"Message","Mesej","module","Magento_Wishlist"
"Message from %customer_name:","Mesej dari %nama_pelanggan:","module","Magento_Wishlist"
"Message length must not exceed %1 symbols","Panjang mesej sekurang-kurangnya tidak melebihi %1 simbol.","module","Magento_Wishlist"
"Message:","Mesej:"
"Message:","Mesej:","module","Amasty_Checkout"
"Meta Description","Deskripsi Meta","module","Magestore_Storelocator"
"Meta Information","Informasi Meta","module","Magestore_Storelocator"
"Meta Keywords","Kata kunci Meta","module","Magestore_Storelocator"
"Meta Title","Tajuk Meta","module","Magestore_Storelocator"
"Method Title","Tajuk Kaedah","module","Amasty_Checkout"
"Method Title","Tajuk Kaedah"
"Method Title","Tajuk Kaedah","module","Magento_Checkout"
"Method:","Kaedah:"
"Miles","Batu","module","Magestore_Storelocator"
"Minimum of different classes of characters in password is %1. Classes of characters: Lower Case, Upper Case, Digits, Special Characters.","Perbezaan karekter dalam kata laluan minimum adalah %1. Jenis-jenis karekter: Huruf Kecil, Huruf Besar, Karekter Istimewa.","module","Magento_Customer"
"Minimum order amount is %1","Jumlah pesanan minimum adalah %1","module","Magento_Quote"
"Missing Field(s)","Ruang Hilang"
"Mobile is required","Telefon bimbit diperlukan"
"Mobile Number","Nombor Telefon Bimbit"
"Mobile Number","Nombor telefon bimbit","module","Mageplaza_SocialLogin"
"Mobile Number","Nombor Telefon Bimbit"
"Mobile Number","Nombor Telefon Bimbit"
"Mobile Number","Nombor telefon"
"Mobile Phone","Telefon Bimbit"
"Mobile Phone useful for delivery","Nombor Telefon Bimbit yang digunakan untuk penghantaran"
"Mon","Isnin","module","Magestore_Storelocator"
"Monday","Isnin","module","Magestore_Storelocator"
"Monday","Isnin"
"Month","Bulan"
"Month","Bulan"
"More Choices:","Lebih Pilihan:"
"More shades","Lebih banyak warna"
"More Views","Lebih Paparan","module","Magestore_Storelocator"
"Move to Wishlist","Pindah ke Senarai Hajat","module","Magento_Wishlist"
"My Account","Akaun Saya","module","MGS_Mmegamenu"
"My Account","Akaun Saya"
"My account","Akaun saya"
"My Account","Akaun Saya","module","Magento_Customer"
"My Account","Akaun Saya"
"My Addresses","Alamat Saya"
"My Bag","Beg Saya"
"My billing and shipping address are the same","Alamat penghantaran dan surat-menyurat saya adalah sama","module","Amasty_Checkout"
"My billing and shipping address are the same","Alamat penghantaran dan surat-menyurat saya adalah sama","module","Magento_Checkout"
"My Cart","Troli Saya","module","Magento_Checkout"
"My Cart","Troli Saya"
"My Cart (%1 items)","Troli Saya (%1 item)","module","Magento_Checkout"
"My Cart (1 item)","Troli Saya (1 item)","module","Magento_Checkout"
"My Loyalty Points","Mata Kesetiaan Saya"
"My Orders","Pesanan-Pesanan Saya"
"My Personal Details","Maklumat Peribadi Saya","module","MGS_Mmegamenu"
"My Personal Details","Maklumat Peribadi Saya"
"My Personal Information","Informasi Peribadi Saya","module","MGS_Mmegamenu"
"My Personal Information","Informasi Peribadi Saya"
"My Redemption","Penembusan Saya"
"My Review","Ulasan Saya","module","MGS_Mmegamenu"
"My Review","Ulasan Saya"
"My Reviews","Ulasan Saya"
"My Rewards","Ganjaran Saya"
"My Shopping","Pembelian Saya","module","MGS_Mmegamenu"
"My Shopping","Senarai Pembelian Saya"
"My Wish List","Senarai Hajat Saya","module","Magento_Wishlist"
"My Wishlist","Senarai Hajat Saya","module","MGS_Mmegamenu"
"My Wishlist","Senarai Hajat Saya"
"N/A","N/A"
"Name","Nama"
"Name","Nama"
"Name","Nama","module","Magento_Contact"
"Name","Nama","module","Magento_Customer"
"name","nama"
"name (A -> Z)","nama (A -> Z)"
"name (Z -> A)","nama (Z -> A)"
"Name: %name","Nama: %nama","module","Magento_Contact"
"Need more custom fields? Please consider""
"" <a href=""https://amasty.com/order-attributes-for-magento-2.html"" target=""_blank"">Order Attributes</a> extension","Perlu lebih ruang untuk diubahsuai? Sila pertimbangkan <a href=""https://amasty.com/order-attributes-for-magento-2.html"" target=""_blank"">Order Attributes</a> extension","module","Amasty_Checkout"
"Never","Tidak Pernah","module","Magento_Customer"
"New %changes for %user_name","Baru %perubahan untuk%nama_pengguna","module","Magento_User"
"New Address","Alamat Baru"
"New Address","Alamat Baru","module","Amasty_Checkout"
"New Address","Alamat Baru"
"New Address","Alamat Baru"
"New Address","Alamat Baru","module","Magento_Checkout"
"New Category","Kategori Baru"
"New Customer","Pelanggan Baru","module","Magento_Customer"
"New Customer Group","Kumpulan Pelanggan Baru","module","Magento_Customer"
"New Customers","Pelanggan-Pelanggan Baru","module","Magento_Customer"
"New In","Produk Terkini"
"New Member Register","Pendaftaran Ahli Baru"
"New Members","Ahli-Ahli Baru"
"New Members","Ahli Baru"
"New Outlet","Kedai Baru"
"New Password","Kata Laluan Baru","module","Magento_Customer"
"New Password and Confirm New Password values didn't match.","Kata Laluan dan Pengesahan Kata Laluan baru tidak sepadan","module","Magento_Customer"
"New Products","Produk Baru"
"New Redemption Template","Templat Penembusan Baru"
"New Scheduler","Penjadual Baharu"
"New User","Pengguna Baru","module","Mageplaza_SocialLogin"
"new user registered:%name","pengguna baru berdaftar:%nama"
"Newsletter","Surat Berita","module","Magento_Customer"
"Newsletter Information","Maklumat Surat Berita","module","Magento_Customer"
"Newsletters","Surat Berita"
"Newsletters","Surat Berita","module","Magento_Customer"
"Next","Kemudian","module","Magestore_Storelocator"
"Next","Seterusnya"
"Next","Kemudian","module","Amasty_Checkout"
"Next","Kemudian"
"Next","Seterusnya","module","Magento_Checkout"
"Next","Seterusnya"
"Nickname","Nama timangan"
"Nickname","Nama timangan"
"No","Tidak"
"No","Tidak"
"No","Tidak"
"No","Tidak","module","Magento_Customer"
"No","Tidak","module","Magento_LayeredNavigation"
"No customer ID defined.","Tiada ID pelanggan yang jelas.","module","Magento_Customer"
"no extra passwords to remember","tiada kata lalulan lebih untuk diingat"
"No item specified.","Tiada item spesifik.","module","Magento_Customer"
"No Newsletter Found","Surat Berita Tidak Temui","module","Magento_Customer"
"No password","Tiada kata laluan"
"No Password","Tiada Kata Laluan","module","Magento_Customer"
"No Payment method available.","Tiada kaedah pembayaran boleh didapati.","module","Magento_Checkout"
"No payment method selected","Tiada kaedah pembayaran dipilih."
"No payment method selected","Tiada kaedah pembayaran dipilih"
"No Postfix on input params","Tiada Pasca Pembetulan pada param maklumat"
"no result","tiada hasil"
"No shipping information available","Maklumat penghantaran tidak boleh didapati"
"No white space please","Jarak tidak dibenarkan"
"None","Tiada"
"None","Tiada","module","Magestore_Storelocator"
"Normal","Normal"
"Not Linked","Tidak Berpaut"
"NOT LOGGED IN","TIDAK LOG MASUK","module","Magento_Customer"
"Not secure","Tidak selamat"
"Not Sent","Tidak Hantar","module","Magento_Customer"
"Not Specified","Tiada Spesifikasi","module","Magento_Customer"
"Note:","Nota:","theme","adminhtml/Hoatamus/backend"
"Note: Checkout will not be processed as we cannot identify your unique ID on LANCÔME Malaysia.","Nota: Keluar tidak boleh diproses kerana kami tidak boleh mengesahkan ID unik anda pada LANCÔME Malaysia"
"Nov","November"
"November","November"
"Now Shopping by","Kini Pembelian oleh","module","Magento_LayeredNavigation"
"NRIC","Nombor Kad Pengenalan"
"NRIC","NO.KP"
"Nric does not exist","Nombor Kad Pengenalan tidak wujud"
"NRIC is required for collection of Lancôme Yours rose points","NO.KP diperlukan untuk mengumpul mata ros Lancôme Yours"
"NRIC is required for collection of Lancôme Yours rose points","NO.KP diperlukan untuk mengumpul mata ros Lancôme Yours"
"Nric or Passport Number exists!","Nombor Kad Pengenalan atau Passport wujud!"
"Nric or Passport Number exists!","Nombor Kad Pengenalan atau Passport wujud!"
"NRIC or Passport Number*","NO.KP atau Passport*"
"NRIC/Passport is required","NRIC/Passport adalah diperlukan"
"NRIC/Passport should not have white space","NRIC/Passport tidak seharusnya mempunyai ruang putih"
"Oct","Oktober"
"October","Oktober"
"of","daripada","module","Magento_Checkout"
"Offline","Luar talian","module","Magento_Customer"
"Ok","Ok"
"One Step Checkout","Selangkah Untuk Keluar","module","Amasty_Checkout"
"One-page checkout is turned off.","Satu halaman keluar telah ditutup.","module","Amasty_Checkout"
"One-page checkout is turned off.","Satu halaman semak keluar telah ditutup.","module","Magento_Checkout"
"Online","Dalam talian","module","Magento_Customer"
"Only 1 shipping assignment can be set","Hanya 1 tugasan penghantaran boleh ditetapkan","module","Magento_Quote"
"Only registered users can write reviews. Please <a href=""%1"">Sign in</a> or <a href=""%2"">create an account</a>","Hanya pengguna berdaftar boleh menulis ulasan. Sila <a href=""%1"">Daftar masuk</a> or <a href=""%2"">cipta akaun anda</a>"
"Only registered users can write reviews. Please <a href=""%1"">Sign in</a> or <a href=""%2"">create an account</a>","Hanya pengguna berdaftar boleh menulis ulasan. Sila <a href=""%1"">Daftar masuk</a> atau <a href=""%2"">cipta akaun</a>","module","Magento_Review"
"Ooophs, we got an error: %1","Ooophs, terdapat ralat: %1","module","Mageplaza_SocialLogin"
"Open","Buka","module","Magestore_Storelocator"
"Open Break Time","Waktu Berehat Dibuka","module","Magestore_Storelocator"
"Open Time","Waktu Dibuka","module","Magestore_Storelocator"