-
Notifications
You must be signed in to change notification settings - Fork 2
/
geography_history.csv
We can't make this file beautiful and searchable because it's too large.
5725 lines (5725 loc) · 824 KB
/
geography_history.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
id,english,arabic,french,uri,description,vt,uatv
219193,Atlantis,أطلنطة,atlantide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219193,,True,True
219276,Bayat Al-Khassa (private baya),بيعة(ال...) الخاصة,l'allégeance particulière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219276,,True,True
216397,Beaufort scale,مقياس بوفورت,échelle de Beaufort; strate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216397,,True,True
216402,Behavioural geography,الجغرافيا السلوكية,géographie comportementale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216402,,True,True
219301,Bethlehem,بيت لحم,bethleem,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219301,,True,True
216466,Brückner cycle,دورة بروكنر,classification de Brückner,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216466,,True,True
219396,Buddhism,بوذية(ال...),buddhisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219396,,True,True
219413,Byzantine,بيزنطي,byzantin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219413,,True,True
219414,Byzantine empire,امبراطورية(ال...) البيزنطية,empire byzantin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219414,,True,True
219780,Dar al-hikma,دار الحكمة,Dar-al-hikma,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219780,,True,True
216951,Empiricism,المذهب التجريبي التقليدي,Empiricisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216951,,True,True
217012,European Economic Community,المجموعة الاقتصادية الأوروبية,Communauté Economique Européenne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217012,,True,True
217048,Fahrenheit scale,مقياس فرنهايت,échelle Fahrenheit,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217048,,True,True
217091,Fiord (Fjord) (Swe),فيورد,Fjord,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217091,خليج طويل غائر ينشأ عن التعرية الجليدية,True,True
217104,Fjall (ice.); Fjall (Swe);Fjel = fjeld (Nor.),فيل، فيلد,Fjell,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217104,هضاب جليدية,True,True
217180,Gall's projection,مسقط كول,projection de Gall,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217180,,True,True
217189,General Geography,الجغرافيا العامة,Géographie Générale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217189,,True,True
220250,Gibraltar,جبل طارق,gibraltar,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220250,,True,True
217239,Gondwanaland,قارة كُوندْوَانا,continent de Gondwana,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217239,,True,True
220295,Greece,بلاد الاغريق,grèce,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220295,اليونان,True,True
217263,Greenwich Mean Time (G.M.T),توقيت كرنتش,temps moyen de Greenwich (G.M.T); temps universel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217263,,True,True
217288,Hadley cell,خلية هدلي,cellule de Hadley,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217288,,True,True
217306,Hawaiian volcano,البركان القبابي,volcan Hawaïen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217306,في هاواي,True,True
220337,Hebrews,عبرانيون(ال…),les hébreux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220337,,True,True
220341,Hellas,بلاد اليونان,hellas,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220341,,True,True
220342,Hellenic,حضارة (ال...) الهلينية,hellénique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220342,الحضارة اليونانية في بلاد اليونان نفسها,True,True
220343,Hellenistic,حضارة (ال...) الهلنستية,hellénistique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220343,الحضارة اليونانية الشرقية خارج بلاد اليونان,True,True
220344,Hellenistic period (the),عصر (ال…)الهلنستي,la période hellénistique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220344,,True,True
217324,Helm (wind),ريح الهلم,vent d'Helm,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217324,,True,True
220348,Hercules,هرقل,hercule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220348,,True,True
220357,Hinduism,هندوسية(ال...) (ديانة),(h)indouisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220357,,True,True
217636,Iianos (Sp.),مراعي اليانوس,Iianos,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217636,,True,True
220480,Jerusalem,بيت المقدس,Jérusalem,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220480,,True,True
220493,Julius Cesar,يوليوس قيصر,jules cesar,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220493,,True,True
217567,Lambert's projection,مسقط 'لمبرت',projection de Lambert,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217567,,True,True
220652,MA'IN kingdom,مملكة معين,royaume de Ma'in,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=220652,,True,True
217730,Mercator's projection,مسقط ميركيتور,projection de Mercator,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217730,,True,True
217781,Mohs' scale,مقياس موهس,échelle de Mohs (échelle de résistance des roches),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217781,مقياس تصنّف حسب الصخور من حيث درجة صلابتها,True,True
217782,Moisture,رطوبة,humidité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217782,,True,True
217785,Mollweides projection,مسقط ملفيد,projection de Mollweide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217785,,True,True
217844,Neanderthal man,إنسان نياندرتال,l'homme de Néanderthal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217844,,True,True
217917,Oolith,سرئية,oolithe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=217917,حبيبة مستديرة يقل قطرها عن مم وهي إما كلسية وإما حديدية,True,True
218192,Rasputitsa (Rus.),راسبوتتزا,Rasputitsa,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218192,موسم انتقالي يذوب فيه الجليد فتصبح التربة وحلية,True,True
218248,Richter scale,سلّم رشتر,échelle de Richter,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218248,,True,True
221274,Romans,رومان(ال...),les romains,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=221274,,True,True
218271,Rossby waves,تموجات روسبي,ondulations de Rossby,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218271,,True,True
221365,Septuagint,ترجمة(ال...) السبعينية,version (de la bible) des septantes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=221365,,True,True
218649,Third-world,عالَم (ال…) الثالث,Tiers-Monde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218649,,True,True
218670,Toponymy,علم أسماء الأماكن,Toponymie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218670,,True,True
218715,Tropophyte,نبات رطوبي جفافي,Tropophyte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218715,نبات يعيش حسب الفصول تارة في رطوبة مرتفعة وتارة في جفاف شديد,True,True
218720,Tse-Tse-fly,ذبابة تسي تسي,mouche Tsé-Tsé; glossine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218720,,True,True
218721,Tsunami (Jap.) (seisme tidal wave),سُنامي,Tsunami,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218721,موج عظيم,True,True
221759,Vatican,فاتيكان(ال...),Vatican,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=221759,,True,True
221910,Zend-Avesta,زندافستا,Zend-Avesta,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=221910,كتاب تعاليم الفرس الدينية,True,True
216194,a a (lava),حرّة، لابة,a a (lave),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216194,,True,True
218894,a fricanthropus,انسان افريقيا النجراسنسي,njarasensis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218894,,True,True
218895,abacus,طبلية,abaque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218895,تاج العمود,True,True
218896,abat-jour,كوة,abat-jour,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218896,,True,True
218897,abbevillian (culture),حضارة (ال...) الإبقيلية,abbevillien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218897,,True,True
218898,abbey,بيعة,abbaye,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218898,,True,True
216195,abime,هوّة,abîme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216195,,True,True
216196,abiotic,لا حيوي,abiotique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216196,,True,True
216197,ablation,إزاحة,ablation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216197,,True,True
216198,aborigines,وُطَّان,aborigènes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216198,سكان أصليون,True,True
216199,abraison,سحْجٌ، تآكل,abraison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216199,,True,True
218900,abraxas,تعويذة الآلهة,abraxas,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218900,,True,True
216200,absolute age,عمْر مُطْلَق,âge absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216200,,True,True
216201,absolute distance,مسافة مطلقة,distance absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216201,,True,True
216202,absolute drought,جفاف مطلق,sécheresse absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216202,,True,True
216203,absolute humidity,رطوبة مطلقة,humidité absolue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216203,,True,True
216204,absolute location,موقع مطلق,emplacement absolu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216204,,True,True
216205,absorption,امتصاص,absorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216205,,True,True
216207,abstract space,مجال مجرّد,espace abstrait,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216207,,True,True
216206,abstraction,أسْرٌ,abstraction,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216206,للمجرى الأعلى للنهر,True,True
218901,abu simbel,أبو سمبل,abu simbel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218901,موقع أثري في النوبة المصرية,True,True
218902,abutment,دعامة,culée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218902,,True,True
218903,abydos,أبيدوس,abydos,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218903,مدينة وجبانة في صعيد مصر,True,True
216208,abyss,عمق بحري,abysse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216208,,True,True
218904,abyss,لجّ الماء,abysse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218904,,True,True
216209,abyssal deposit,رُسابة,dépôt abyssal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216209,ارسابات قاع المحيط,True,True
216210,abyssal plain,حوض محيطي,bassin océanique; cuvette océanique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216210,,True,True
216211,abyssal rocks,صخور اعماق المحيط,roches plutoniques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216211,,True,True
218905,academical (style),أكاديمي (اسلوب),académique (style),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218905,,True,True
218906,acanthus,ورقة الخرشوف,acanthe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218906,,True,True
218907,accadians,أكديون(ال...),accadiens,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218907,,True,True
216212,accessibility,قابلية الوصول,accessibilité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216212,,True,True
216213,accidented relief,تضاريس وعرة,relief accidenté,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216213,,True,True
216214,acclimatization,تأقلُم,acclimatation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216214,,True,True
218908,acclimatization,تأقلم,acclimatation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218908,,True,True
218909,accolade,تداخل قوسين متضادين,accolade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218909,,True,True
218910,accord,توافق,accord,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218910,,True,True
216215,acculturation,تثقُّف,acculturation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216215,,True,True
218911,acculturation,تأثير ثقافي,acculturation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218911,,True,True
216216,accumulation,تراكُم,accumulation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216216,,True,True
218912,acephalus,تماثل جلف (بدون رأس),acéphale (statue),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218912,,True,True
218913,achaeans,أخيّون(ال...),achaïen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218913,,True,True
218914,achaemenide,عصر(ال…) الأخميني,achémenide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218914,الفارسي الأول,True,True
218915,acheropit,صورة عفوية,archéropite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218915,لم تصنع بيد الإنسان,True,True
218916,acheulean (culture),حضارة (ال...) الأشولية,acheuléenne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218916,,True,True
216217,acid rain,مطر حَمْضي,pluie acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216217,,True,True
216218,acid rocks,صخور حمْضية,roches acides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216218,,True,True
216219,acid soil,تربة حمْضية,sol acide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216219,,True,True
218917,acre,أكر,acre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218917,= 4840 ياردة مربعة أو قرابة 4047 مترا مربعا,True,True
218918,acrobat,بهلوان,acrobate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218918,,True,True
218919,acrobatics,بهلوانية,acrobatie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218919,,True,True
218920,acropolis,أكروبول(ال...),acropole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218920,ربوة الحصن الرئيس في المدن الاغريقية,True,True
218921,acroteria,ركيزة,acrotères,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218921,التمثال أو الزخرف,True,True
216220,action,عَمَلٌ، فِعْل,action,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216220,,True,True
216221,action space,مجال الفعل,espace d'action,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216221,,True,True
216222,active volcano,بركان نشط,volcan actif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216222,,True,True
216223,activity space,مجال النشاط,espace d'activité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216223,,True,True
216224,adaptation,تكيُّف,adaptation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216224,,True,True
216225,adiabatic,ثابت الحرارة,adiabatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216225,,True,True
218922,adode,لبِن,adode,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218922,,True,True
218923,adornment,زخرفة,ornementation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218923,,True,True
216226,adret (Fr.),سفح مشمس,adret,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216226,,True,True
216227,adsorption,امتزاز,adsorption,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216227,,True,True
216228,advancing coast,تقدم الساحل,avancée de la côte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216228,,True,True
216229,advection,تأفُّق,advection,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216229,حركة تنقل افقي للهواء و السوائل و الغازات,True,True
216230,adventive cone,مخروط جانبي,cône adventif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216230,,True,True
216231,adventive crater,فوهة جانبية,cratère adventif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216231,,True,True
218924,adytum,مَقْدِس(ال...),adytum,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218924,الجزء الداخلي للمعبد الذي يشتمل على قدس الأقداس,True,True
218925,adze,قدوم,piolet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218925,,True,True
218926,aegean (civilization),حضارة (ال...) الإيجية,egéen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218926,وتمثل الحضارتين المينوية والميكينية,True,True
218927,aegean (sea),بحر ايجة,egée (mer),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218927,,True,True
218928,aegis,ايجيد,Egide,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218928,درقة أثينا وزيوس,True,True
218929,aelia capitolina,ايليا كابيتولينا,aelia capitolina,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218929,اسم مدينة القدس في العصر الروماني,True,True
216232,aeolian,ريحي,éolien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216232,,True,True
218930,aepyornis,طائر,aepyornis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218930,,True,True
216233,aeration,تهوية,aération,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216233,,True,True
216234,aerial photography,تصوير جوي,photographie aérienne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216234,,True,True
216235,aerobe,أحياء هوائية,aérobie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216235,,True,True
218931,aesthetician,جمالي,esthéticien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218931,,True,True
218932,aetos,جبهة عقابية,aetos,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218932,,True,True
216236,affluent,رافِد,affluent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216236,,True,True
216237,afforestation,تشجير,afforestation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216237,,True,True
218933,afterlife,حياة (ال...)الآخرة,l'au-delà,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218933,,True,True
218934,agate,عقيق,agate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218934,,True,True
218942,age (Riss glacial-),زمن رس الجليدي,"glaciation de riss (avant dernière, pléistocène)",http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218942,,True,True
218935,"age (chalcolithic, encolithic, copper, cyprolitic)",عصر (ال...) الحجري النحاسي,chalcolithique; âge de cuivre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218935,,True,True
218936,age (glacial-),عصر (ال...) الجليدي,age glaciaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218936,,True,True
218937,age (iron-),عصر (ال...) الحديدي,age de fer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218937,,True,True
218938,age (late or modern stone-),عصر (ال...) الحجري الحديث,age néolithique; age de la pierre polie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218938,,True,True
218939,age (metal-),عصرالمعادن,age des métaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218939,,True,True
218940,age (middle palaeolithic-),عصر(ال…) الحجري القديم الاوسط,palaeolithique moyen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218940,,True,True
218941,age (reindeer-),عصر الرنة,renne n.m (de l'allem. Renn),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218941,,True,True
218943,age (stone-),عصر (ال...) الحجري,l'âge de pierre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218943,,True,True
218944,age of the pyramids,عصر بناة الاهرام,Epoque des pyramides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218944,,True,True
216239,age structure,بنية حسب العمر,structure par âge,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216239,,True,True
216238,agent,عامل,agent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216238,,True,True
216240,agglomerate,كتلة بركانية,agglomérat,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216240,,True,True
216241,agglomeration,تجمُّع,agglomération,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216241,تكتُّل,True,True
218945,agglutinative,تراص,agglutinatif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218945,,True,True
216242,aggradation,ردم,aggradation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216242,,True,True
218946,aggradation,تزخر,exhaussement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218946,,True,True
216243,agonic line,خط الانطباق,ligne agonique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216243,,True,True
218947,agora,الساحة العامة,agora,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218947,,True,True
216244,agrarian morphology,شكل زراعي,morphologie agraire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216244,,True,True
216245,agrarian reform,إصلاح زراعي,réforme agraire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216245,,True,True
218948,agrarian-reform,اصلاح زراعي,réforme agraire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218948,,True,True
216246,agribusiness,زراعة تجارية,agribusiness (agriculture d'affaires),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216246,,True,True
216247,agricultural calendar,التقويم الزراعي,calendrier agricole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216247,,True,True
216248,agricultural geography,الجغرافيا الزراعية,géographie agricole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216248,,True,True
216251,agricultural hearth,مهد الزراعة,foyer agricole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216251,,True,True
216249,agricultural industry,زراعة صناعية,agro-industrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216249,,True,True
216250,agricultural machine,آلة زراعية,machine agricole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216250,,True,True
218949,agriculture (cyclic-,زراعة دورية,agriculture cyclique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218949,,True,True
216252,agriculture intensification,تكثيف الزراعة,intensification agricole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216252,,True,True
216253,agriculturist,مُزارع,agriculture,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216253,فلاّح,True,True
216255,agro-town,مد ينة زراعية,agroville,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216255,,True,True
216254,agronomy,علم المحاصيل,agronomie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216254,,True,True
218950,aigrette,قُنُزعة,aigrette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218950,ريش لتزيين القبعات و الخوذ,True,True
216256,aiguille,قرْن,aiguille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216256,,True,True
216257,air,هواء,air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216257,,True,True
216258,air gap,ثغرة هوائية,'wind gap',http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216258,,True,True
216259,air mass,كتلة هوائية,masse d'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216259,,True,True
216262,air pollution,تلوُّث الهواء,pollution de l'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216262,,True,True
216261,air pressure,ضغط جوي,pression d'air,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216261,,True,True
216263,air route,طريق جوي,voie aérienne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216263,,True,True
216264,air space,مجال جوي,espace aérien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216264,,True,True
216265,air transpiration,نقل جوي,transport aérien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216265,,True,True
218952,air-trap,منفذ,soupirail,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218952,للهواء والنور,True,True
218951,airhole,نفّاخة,soufflure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218951,تجويف أو انتفاخ بسيط في المعدن أو الزجاج أو الفخار من اثر حرق النار,True,True
216260,airport,مطار,aéroport,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216260,,True,True
218953,aisle,جناح جانبي,bas-côté; collatéral,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218953,في الكنيسة أو غيرها,True,True
218954,aiwan,ايوان,aiwan,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218954,,True,True
218955,ajanta,أجنتا,ajantâ,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218955,كهوف أديرة هندية,True,True
218956,al(l)erion,رنك عقابي,alérion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218956,يمثل عقابا مبتورة المنسر والساقين,True,True
218957,alabaster,هَيصَم,albâtre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218957,حجر كالرخام ابيض شاف تتخذ منه الحقاق والتماثيل,True,True
216266,albedo,عاكسية,albédo,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216266,,True,True
218958,album,دفتر صور,album,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218958,,True,True
218959,alcarraza,كُرّاز,alcarazas,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218959,كوز ضيق العنق,True,True
218960,alcove,قَبوَة,alcôve,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218960,فرجة ضمن جدار كان العرب في الأندلس يجعلون فيها سرير العروس,True,True
218961,alette,مصراع (الباب),ailette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218961,,True,True
218962,alexander the great,اسكندر (ال...)الكبير,alexandre le grand,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218962,,True,True
218963,alexandrian,فن (ال...) الاسكندري الهيلينستي,alexandrin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218963,,True,True
218964,alexir,اكسير الحياة,elixir,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218964,,True,True
216267,alidade,عضادة,alidade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216267,,True,True
218965,alidade,عضادة (آلة للمساحة),graphomètre; ali dade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218965,,True,True
218966,alignment,تراصف حجري,alignement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218966,على نفس الامتداد والاتجاه,True,True
218967,alizarin,صبغة الفوّة,alizarine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218967,صبغ أحمر يحضر من قطران الفحم,True,True
216268,alkali flat,سبخة,sebkha (Ar.),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216268,,True,True
216269,alkaline,قِلْوي,alcalin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216269,,True,True
218968,alliance,حلف,alliance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218968,,True,True
216270,allocation,تخصيص,allocation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216270,,True,True
216271,allochtone deposits,رواسب منقولة,dépôts allochtones,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216271,,True,True
216272,allogenic stream,نهر خارجي النشأة,cours d'eau allogène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216272,,True,True
218969,alloy,أشابة,alliage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218969,خليط من معدنين أو أكثر,True,True
216273,alluvial cone (allucial fan),سهل مروحي,cône de déjection; cône alluvial,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216273,,True,True
216274,alluvial plain,سهل رسوبي,plaine alluviale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216274,,True,True
216275,alluvial soil,تربة غرْينية,sol d'alluvion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216275,,True,True
216276,alluvium,غِرْيَن,alluvion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216276,,True,True
218970,alluvium,غرين,alluvion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218970,,True,True
218971,almond-shaped,لوزى (الشكل),amande,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218971,,True,True
218972,almshouse,مأوى (للفقراء والمسنين),maison pour vieillards,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218972,,True,True
216277,alpine glacier,نهر جليدي ألبي,glacier de type alpin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216277,,True,True
216278,alps,مرتفعات جبلية ألبية، مراع ألبية,alpages,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216278,,True,True
218973,altar,مذبح,autel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218973,,True,True
216279,altimeter,مقياس الارتفاع,altimètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216279,,True,True
216280,altiplano,الهضاب العالية,altiplano,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216280,,True,True
216281,altitude,ارتفاع,altitude,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216281,,True,True
216282,altocumulus,سحاب ركامي عالٍ,altocumulus,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216282,,True,True
216283,altostratus,سحاب طبقي عالٍ,altostratus,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216283,,True,True
216284,alum,شَبّ,alum; alun,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216284,,True,True
218974,amalecites,عمالقة(ال…),amalécites,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218974,,True,True
218975,amaranth,قطيفة,amarante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218975,,True,True
218976,amateur,هاو (للفن),amateur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218976,,True,True
218977,amazonomachi,قتال الأمازونات,amazonomachie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218977,منظر النساء المحاربات في الفن الاغريقي الأسطوري,True,True
218978,amber,عنبر,ambre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218978,,True,True
218979,ambo,منبر (في كنيسة),ambon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218979,,True,True
218980,ambonoclast,محرم المنابر,ambonoclaste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218980,,True,True
218981,ambry,خزانة حائط,placard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218981,,True,True
218982,ambulatory,مطاف,deambulatoire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218982,,True,True
216285,amendment of soil,تخصيب التربة,amendement du sol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216285,,True,True
218983,amethist,جمشت معشوق,améthyste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218983,حجر كريم,True,True
218984,amice,برنس,aumuce,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218984,ثوب يلقيه الكاهن على كتفيه,True,True
218985,ammonites,عمونيّون,ammonites,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218985,,True,True
218986,amorites,آموريون(ال…),amorrhéens,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218986,,True,True
216286,amorphic (rocks) = amorphous (rocks),(صخور) لا متحولة,amorphes (roches),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216286,,True,True
218987,amorphous,عديم الشكل,amorphe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218987,,True,True
218988,amortizement,تويج البناء,amortissement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218988,,True,True
216287,amphibia,برمئيات,amphibiens,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216287,,True,True
218989,amphiprostyle,ذو الرواقين,amphiprostyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218989,,True,True
218990,amphitheatre,مدرج (مستدير),amphitéâtre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218990,,True,True
218991,amphora,أمفورة,amphore,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218991,جرة فخارية كبيرة ذات عروتين,True,True
218992,ampulla,حبابة,ampulle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218992,أناء أعلاه ضيق ووسطه واسع,True,True
218993,amratian (culture),حضارة (ال...) الامراتينية,amratien (culture),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218993,,True,True
218994,amudian (industry),صناعة (ال...) العمودية,industrie amudienne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218994,نسبة إلى العصر الحجري القديم,True,True
218995,amulet,تميمة,amulette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218995,,True,True
216288,anabatic wind,نسيم الوادي,vent anabatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216288,,True,True
218996,anachronism,خطأ في تحديد التاريخ,anachronisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218996,,True,True
218997,anadyomene,أناديومين,anadyomène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218997,لقب افروديت عند مولدها,True,True
218998,anaerobic,بلا أكسجين,anaérobie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218998,,True,True
218999,anaglyph,نقش بارز,anaglyphe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=218999,,True,True
219000,analogy (historical-),قياس تاريخي,analogie historique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219000,,True,True
219008,analysis (PH-),تحليل الرقم الهيدروجيني,analyse (PH),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219008,اللوغاريتم العشري لمعكوس درجة تركيز ايون الهيدروجين في المحلول,True,True
219002,analysis (ceramic-),تحليل الفخار,analyse céramique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219002,,True,True
219001,analysis (fishbone-),تحليل عظام السمك,analyse des arêtes (de poisson),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219001,,True,True
219003,analysis (heavy mineral-),تحليل المعادن الثقيلة,analyse (minéral lourd),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219003,,True,True
219004,analysis (net work-),تحليل شبكي,analyse de réseau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219004,,True,True
219005,analysis (neutron activation-),تحليل فاعلية النيوترون,analyse au neutron,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219005,,True,True
219006,analysis (oxygen isotope-),تحليل نظائري للأوكسجين,analyse des isotopes de l'oxygène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219006,وغيره من العناصر,True,True
219007,analysis (particle size-),تحليل الحبيبات,analyse granulométrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219007,,True,True
219009,analysis (phosphate-),تحليل فوسفاتي,analyse phosphatique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219009,,True,True
219010,analysis (skeletal-),تحليل هيكلي,analyse squelettique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219010,عظام الانسان,True,True
219011,analysis (soil-),تحليل التربة,analyse-sol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219011,,True,True
219012,analysis (spectrographic-),تحليل سبكتروغرافي,analyse spectrographique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219012,,True,True
219013,analysis (stump-),تحليل الأرومة,analyse de souche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219013,,True,True
219014,analysis (thermal-),تحليل حراري,analyse thermique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219014,,True,True
219015,analysis (trend surface-),خريطة التحليل التضاريسي,analyse topographique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219015,,True,True
219016,anamorphosis,خداع بصري,anamorphose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219016,,True,True
219017,anathyrosis,بناء بدون مونة,anthyrose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219017,,True,True
219018,anatomy,علم االتشريح,anatomie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219018,,True,True
219019,ancestor's worship,عبادة الأجداد,culte des ancêtres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219019,,True,True
219020,anchor,زافرة حديد,ancre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219020,,True,True
219021,anchor (ornament),مرساة (زخرف),ancre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219021,,True,True
219022,ancient,قديم,antique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219022,,True,True
219023,ancient empire (the),امبراطورية(ال...) القديمة,l'ancien empire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219023,,True,True
219024,ancon,كتيفة ساندة,ancone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219024,,True,True
219025,androcephale,أندروسيفال,androcéphale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219025,شكل لحيوان برأس بشري,True,True
216290,anemogram,سِجِّلُ الرياح,anémogramme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216290,,True,True
216291,anemometer,مقياس سرعة الرياح,anémomètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216291,,True,True
216289,anerobia,أحياء لا هوائية,anaérobies,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216289,,True,True
219026,angle (oblique-),زاوية مائلة,angle oblique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219026,زاوية حادة أو منفرجة,True,True
219027,angle of face,زاوية الوجه,angle facial,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219027,,True,True
219028,anglican church,كنيسة(ال…) الانجليكانية,l'Eglise anglicane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219028,,True,True
219029,anguipede,كائن أفعواني الذيل,anguipède,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219029,,True,True
219030,ankh,عنخ,croix ansée d'Egypte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219030,رمز مصري قديم للحياة,True,True
219031,annealing,تلدين,Recuit,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219031,تحمية ثانية,True,True
216292,annual range of temperature,مدى الحرارة السنوي,température moyenne annuelle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216292,,True,True
216293,annual variation of temperature,نغير الحرارة السنوي,variation annuelle de la température,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216293,,True,True
219032,annular,حلقي,annulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219032,,True,True
216294,annular drainage,تصريف حلقي,drainage annulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216294,,True,True
216295,annular eclipse,كسوف حلقي,éclipse annulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216295,,True,True
219033,annulets,اطواق,armilles,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219033,,True,True
219034,annunciation,بشارة(ال...),annonciation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219034,موضوع فني مسيحي,True,True
219035,anonymous (tableau),(لوحة) مجهولة الصانع,anonyme (tableau),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219035,,True,True
219036,ansa lunta,عروة,anse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219036,,True,True
219037,anta,دعامة ركنية,ante,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219037,,True,True
216296,antarctic circle,الدائرة القطبية الجنوبية,cercle antarctique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216296,,True,True
216297,antarctic continent (antarctica),القارة القطبية الجنوبية,continent antarctique; antarctide; antarctique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216297,,True,True
216298,antarctic ocean,المحيط القطبي الجنوبي,océan antarctique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216298,,True,True
216299,antecedant river,نهر سالف,rivière antécédente,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216299,,True,True
219038,antefix,فخار التغليف,antéfixe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219038,عنصر تزييني كان يحجب أطراف الطنف في الأبنية,True,True
219039,anthemion,حلية زهرية الشكل,anthémion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219039,,True,True
219040,anthropoid,بشري الشكل,anthropoïde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219040,ناووس على شكل صورة انسان,True,True
219041,anthropoid,بهو,antichambre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219041,,True,True
219042,anthropoids,أشباه البشر,anthropoïdes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219042,,True,True
219043,anti-arabism,شعوبية(ال…),arabophobie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219043,,True,True
219044,anti-islamic conflit (Al-Fujar war),حرب الفجار,guerre anti-islamique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219044,,True,True
216300,anticline,التواء محدّب,anticlinal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216300,,True,True
216301,anticlinorium,محدّب مركب,anticlinorium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216301,,True,True
216302,anticyclone,ضدّ إعصار، إعصار مضاد,anticyclone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216302,,True,True
216303,antimony,إِثْمِد,antimoine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216303,,True,True
216304,antipodes,متقابلان,antipodes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216304,,True,True
219045,antiques,آثار قديمة,antiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219045,,True,True
219046,antiquities,آثار قديمة,antiquités,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219046,,True,True
216305,apartheid,مَيْز عنصري,apartheid,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216305,,True,True
219047,apes (fossil-),حفرية القردة العليا,apes fossile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219047,,True,True
216306,apex,قمّة,apex,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216306,,True,True
219048,apex,قمة,sommet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219048,أعلى جزء في البناء,True,True
216307,aphelion,الحضيض,aphélie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216307,,True,True
219049,apocrypha,منحول(ال...),les apocryphes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219049,,True,True
219050,apodal,تمثال عديم الرجلين,apode,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219050,,True,True
219051,apodyterium,غرفة التمارين الرياضية,apodyterium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219051,في الحمامات الاغريقية والرومانية,True,True
216308,apogee,الأوج,apogée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216308,,True,True
219052,apostasy,ردّة(ال...),apostasie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219052,,True,True
219053,apostates (the),مرتدون(ال...),les apostats,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219053,,True,True
219054,apostle,رسول,apôtre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219054,,True,True
216309,appalachian relief,تضاريس أبلاشية,relief appalachien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216309,,True,True
216310,apparent movement of the sun,حركة الشمس الظاهرية,mouvement apparent du soleil,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216310,,True,True
216311,applied geography,الجغرافيا التطبيقية,géographie appliquée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216311,,True,True
219055,apron,أرضية الأساس,radier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219055,,True,True
219056,apse,محراب (الكنيسة),abside,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219056,,True,True
219057,apteral,معبدة بلا أعمدة,aptère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219057,,True,True
216312,aquaculture,الزراعة المائية,aquaculture (aquiculture),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216312,,True,True
219058,aquamanile,ابريق,aquamanile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219058,,True,True
219059,aquamarine,زمرد ريحاني,aigue marine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219059,ضرب من الأحجار الكريمة,True,True
219060,aquatint,نقش ملون,aquatinte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219060,,True,True
219061,aqueduct,مجرى ماء,aqueduc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219061,فوق قناطر,True,True
216313,aquifer (aquafer),حشْرجٌ,aquifère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216313,طبقة خازنة للماء,True,True
219062,ara pacis,آراباسيس,ara pacis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219062,لوح من النقش البارزيمثل النار والهواء والتراب,True,True
219063,arabia felix,بلاد العرب السعيدة,l'Arabie heureuse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219063,,True,True
216314,arable land,أرض حراثية,terre arable,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216314,,True,True
219064,arabseque,رقش(ال...) العربي,arabseque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219064,زخرفة,True,True
216315,aragonite,أراغونيت,aragonite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216315,,True,True
219065,aramaeans,آراميون(ال...),araméen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219065,,True,True
219066,arbalest,قاذوف,arbalète,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219066,,True,True
219067,arcade,طاق,arcade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219067,,True,True
219068,arcature,طيقان زخرفية,arcature,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219068,,True,True
219069,arch,قوس,arc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219069,في الهندسة,True,True
219070,arch (acute-),عقد مدبب,arc en lancette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219070,,True,True
219071,arch (baskethandled-),عقد عروة السلة,voûte en anse de panier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219071,,True,True
219072,arch (bell-),عقد ناقوسي,arc cloche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219072,,True,True
219073,arch (blind-),عقد مصمت,arcade aveugle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219073,,True,True
219074,arch (convex-),عقد محدب,arc bombé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219074,,True,True
219075,arch (corbelled-),عقد زيني,arc en encorbellement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219075,العقد المبني من حجارة تعتمد على بعضها البعض وذلك ببروزها شيئا فشيئا,True,True
219076,arch (elloptic (al)-),عقد اهليجي,arc elliptique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219076,,True,True
219077,arch (flamboyant-),عقد الشعلة,arc flamboyant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219077,,True,True
219078,arch (flat-),عقد مسطح,arc déprimé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219078,,True,True
219079,arch (formeret-),عقد مقوصر,arc formeret,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219079,,True,True
219080,"arch (fourcentred, ogee-)",عقد ضّام,arc en accolade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219080,ذو أربعة مراكز,True,True
219081,arch (horseshoe-),عقد حدوي,arc en fer à cheval; arc outre passé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219081,عقد حدوة الفرس,True,True
219082,arch (inflected-),عقد مقلوب,arc infléchi,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219082,,True,True
219083,arch (jack-),ساكف العقد,arc linteau; arc plate-bande,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219083,,True,True
219084,arch (lancet-),عقد سناني,arc lancéolé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219084,,True,True
219085,arch (multifoil),عقد مفصص,arc polylobé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219085,,True,True
219086,"arch (obtuse, depressed, drop-)",عقد منخفض,arc surbaissé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219086,,True,True
219087,arch (raised-),عقد مشرع,arc surhaussé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219087,,True,True
219088,arch (rampant-),عقد مائل,arc rampant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219088,,True,True
219089,arch (relieving-),عقد مخفف,arc de décharge,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219089,,True,True
219090,arch (semicircular-),عقد نصف دائري,arc en plein cintre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219090,,True,True
219091,arch (small-),عُقَيد,voûtin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219091,عقد صغير,True,True
219092,arch (splayed-),عقد مشطوف,arc ébrasé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219092,,True,True
219093,arch (trefoil-),عقد ثلاثي الفصوص,arc trilobé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219093,,True,True
219094,arch (triangular-),عقد مثلث,arc angulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219094,,True,True
219095,arch (triumphal-),قوس النصر,arc de triomphe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219095,,True,True
219096,arch (tudor-),عقد بيضي مسطح,arc en carène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219096,,True,True
219097,"arch (windows, door-)",عقد,remenée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219097,النفاذة أو الباب,True,True
219098,arch (zigzag-),عقد متعرج,arc zigzagué,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219098,,True,True
219099,arch stone,فقرة العقد,voussoir,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219099,,True,True
219100,"arch(doucine, cyma recta-)",عقد محدب مقعر,arc en doucine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219100,,True,True
219101,archaeizoology,علم الحيوانات القديمة,zoologie archéologique; paléontologie animale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219101,,True,True
219102,archaeologist,عالم آثاري,archéologue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219102,,True,True
219103,archaeology,علم الآثار,archéologie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219103,,True,True
219104,archaeology (classical-),علم الآثار الكلاسيكي,archéologie classique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219104,,True,True
219105,archaeology (environmental,علم آثار البيئة,archéologie de l'environnement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219105,,True,True
219106,archaeology (experimental-),علم الآثار التجريبي,archéologie expérimentale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219106,,True,True
219107,archaeology (field-),علم الآثار الميداني,archéologie de champ,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219107,,True,True
219108,archaeology (landscape-),بحث(ال...) الآثري للبيئة الطبيعية,archéologie paysagiste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219108,,True,True
219109,archaeology (prehistoric-),علم آثار ما قبل التاريخ,archéologie préhistorique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219109,,True,True
219110,archaeology (processual-),كشف آثري تدرّجي,archéologie progressive,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219110,,True,True
219111,archaeology (rescue-),انقاذ الآثار,archéologie de sauvetage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219111,,True,True
219112,archaeology (salvage-),انقاذ الآثار,archéologie de sauvetage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219112,,True,True
219113,archaeology (underwater-),علم الآثار ما تحت الماء,archéologie sous-marine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219113,,True,True
219114,"archaic (style, etc.)",عتيق,archaïque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219114,أسلوب إلخ…,True,True
219115,archangel,كبير الملائكة,archange,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219115,,True,True
216316,archean era,الزمن الآركي,archéen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216316,,True,True
219116,archetype,أنموذج أولي,archétype,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219116,,True,True
216317,archipelago,أرخبيل,archipel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216317,,True,True
219117,architect,معمار,architecte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219117,,True,True
219118,architecture,عمارة(ال…),architecture,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219118,,True,True
219119,architecture (Egyptian-),عمارة(ال…) المصرية,architecture d'Egypte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219119,الفرعونية,True,True
219120,architecture (Elizabethan-),عمارة(ال…)الأليزبثية,architecture d'élisabéthain,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219120,,True,True
219121,architecture (greek-),عمارة (ال…)الاغريقية,architecture grecque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219121,,True,True
219122,architecture (hydraulic-),عمارة (ال…)المائية,architecture hydraulique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219122,عمارة السدود و الجسور,True,True
219123,architecture (religious-),عمارة(ال…) الدينية,architecture religieuse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219123,عمارة المساجد والبيع والكنائس,True,True
219124,architecture(civil-),عمارة(ال…) المدنية,architecture (civile),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219124,,True,True
219125,architecture(gothic-),عمارة(ال…) القوطية,architecture gothique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219125,,True,True
219126,architecture(military-),عمارة (ال…)العسكرية,architecture militaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219126,عمارة القلاع والحصون,True,True
219127,architrave,عضادة أفقية,architrave,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219127,فوق دعامتين أو أكثر,True,True
219128,archivolt,اطار زخرفي للعقد,archivolte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219128,,True,True
219129,archon,أرخون(ال...),archonte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219129,,True,True
219130,arcosolium,لحد معقود,arcosolium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219130,,True,True
219131,arcs (island-),عقود جزيرية,arcs insulaires,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219131,,True,True
216318,arctic,قطبي شمالي,arctique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216318,,True,True
216319,arctic circle,الدائرة الشمالية القطبية,cercle arctique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216319,,True,True
219132,arcuated,معقود (مقوس),arqué,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219132,,True,True
216320,area,مساحة,superficie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216320,,True,True
219133,area (activity-),أرضية الحركة,aire d'activité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219133,,True,True
216321,areal differentiation,تمايز مكاني,différenciation de la surface,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216321,,True,True
216322,areic,لانهري,aréique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216322,,True,True
219134,arena,حَلَبة,arène,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219134,,True,True
216323,arenaceous rocks,صخور رملية,arénites,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216323,,True,True
216325,argillaceous rocks,صخور صلصالية,roches argileuses,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216325,,True,True
216326,argon,أركون,argon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216326,,True,True
216327,arid,قاحل,aride,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216327,,True,True
216329,arid land,أرض قاحلة,terre aride,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216329,,True,True
216328,aridity,قُحولة,aridité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216328,,True,True
219135,arm,سلاح,arme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219135,,True,True
219136,armed-struggle,كفاح مسلح,lutte armée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219136,,True,True
219137,armet,بيضة (ضرب من الخوذ),armet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219137,,True,True
219138,armil,حلقة(ال...),armille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219138,آلة فلكية لتعيين الاعتدال والانقلاب,True,True
219139,armistice,هدنة,armistice,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219139,,True,True
219140,armory,أرْمَة,aroiries,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219140,,True,True
219141,armour,سلاح,armure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219141,,True,True
219142,armoury,مخزن سلاح,armurerie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219142,,True,True
219143,army,جيش,armée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219143,,True,True
219144,arris,حافة حادة,arête,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219144,,True,True
219145,arrow,سهم,flèche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219145,,True,True
219147,arrow-pit,مزغل,meurtrière (ou archère),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219147,,True,True
219146,arrowhead,رأس سهم,tête ou pointe de la flèche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219146,,True,True
216330,arroyo (Sp.),وادِ,arroyo,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216330,,True,True
219148,arsenal,ترسانة,arsenal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219148,,True,True
219149,art (abstract-),فن (ال...) التجريدي,art abstrait,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219149,,True,True
219150,art (applied-),فن (ال...) التطبيقي,art appliqué,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219150,,True,True
219151,art (backward-),فن (ال...) المتخلف,art arrière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219151,,True,True
219152,art (cave-),فن الكهوف,art troglodyte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219152,,True,True
219153,art (commercial-),فن (ال...) التجاري,art commercial,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219153,,True,True
219154,art (conventional-),فن (ال...) التقليدي,art conventionnel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219154,,True,True
219155,art (decorative-),فن الزخرفة,art décoratif,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219155,,True,True
219156,art (folk-),فن (ال...) الشعبي,art populaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219156,,True,True
219157,art (funeral-),فن (ال...) المأتمي,art funéraire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219157,,True,True
219158,art (hispano-moorish-),فن أندلسي مغربي,art hispano-mauresque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219158,,True,True
219159,art (mobilier-),فن الأثاث,art mobilier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219159,,True,True
219160,art (original-),فن (ال...) الابتكاري,art original,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219160,,True,True
219161,art (painting-),فن التصوير,peinture,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219161,يقصد به الرسم الملون وغير الملون,True,True
219162,art (plastic-),فن (ال...) التشكيلي,art plastique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219162,,True,True
219163,art (work of-),أثر فني,oeuvre d'art,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219163,,True,True
219164,art east (Spanish rock-),رسم (ال...) على الصخور,dessins rupestres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219164,شرقي اسبانيا,True,True
216331,artesian,ارتوازي,artésien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216331,,True,True
219165,artifact,تحفة,bibelot,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219165,,True,True
219166,artist,فنان,artiste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219166,,True,True
219167,arts (figurative-),فنون (ال...) التشبيهية,arts figurés; arts figuratifs,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219167,الفنون التي تعتمد على تشبيه الواقع,True,True
219168,arts (fine-),فنون (ال...) الجميلة,beaux-arts,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219168,,True,True
219169,arts (graphic-),فنون (ال...) التخطيطية,arts graphiques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219169,وتشمل فنون الخط والحفر والاعلان,True,True
219170,arts (major-),فنون (ال...) الرئيسة,arts majeures,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219170,,True,True
219171,arts (minor-),فنون (ال...) الصغرى (التطبيقية),arts mineurs,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219171,,True,True
219172,arts and crafts,فنون (ال...) والحرف,arts et métiers,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219172,,True,True
219173,aryans,آريون(ال...),aryen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219173,,True,True
216324,arête (Fr.),رَعْن، عرف حاد,arête,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216324,,True,True
219174,as,أس,as,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219174,نقد روماني قديم,True,True
219175,asbestos,صوف صخري,asbeste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219175,,True,True
219176,ash,رماد,cendre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219176,,True,True
216332,ash cone,مخروط الرماد البركاني,cône de cendre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216332,,True,True
219177,ashlar,حجر مشذب,pierre de taille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219177,,True,True
219178,ashlar (random-),بناء عشوائي,maçonnerie en moellons bruts,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219178,,True,True
219179,assay (radiometric-),فحص شعاعي,essai radiométrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219179,,True,True
219180,assegai,مزراق,sagaie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219180,,True,True
219181,assemblage,تجميع,assemblage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219181,,True,True
219182,assyrians,آشوريون(ال...),assyriens,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219182,,True,True
216333,asteroid,كُوَيْكِب,astéroïde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216333,,True,True
216334,asthenosphere,سيما,asthénosphère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216334,الغلاف الداخلي للقشرة الأرضية,True,True
219183,astragal (of column),طوق العمود,astragale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219183,,True,True
219184,astrolabe,اسطرلاب,astrolabe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219184,,True,True
219185,astrology,تنجيم,astrologie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219185,,True,True
219186,astronomy,علم الفلك,astronomie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219186,,True,True
219187,asturian culture,حضارة (ال...) الأشتورية,culture asturienne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219187,,True,True
219188,asymmetric (al),غير متناظر,dissymétrique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219188,,True,True
219189,atabics,أتابكيات,atabeks,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219189,,True,True
219190,aterian,صناعة(ال...) العاطرية,atérien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219190,نسبة إلى بئر العاطر بالجزائر,True,True
219191,atheist,ملحد,athée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219191,,True,True
219192,atlanthropus,انسان الأطلس,atlanthrope,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219192,,True,True
216335,atlantic ocean,المحيط الأطلسي,océan atlantique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216335,,True,True
216336,atmosphere,الغلاف الجوي,atmosphère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216336,,True,True
219194,atmosphere (oxidizing-),جو مؤكسد,atmosphère (oxiding-),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219194,,True,True
219195,atmosphere (reducing),جو مختزل,atmosphère réducteur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219195,,True,True
216338,atmospheric depression,منخفض جوي,dépression atmosphérique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216338,,True,True
216337,atmospheric perturbations,اضطرابات جوية,perturbations atmosphériques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216337,,True,True
216339,atmospheric pressure,ضغط جوي,pression atmosphérique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216339,,True,True
216340,atoll,حلقة مرجانية,atoll,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216340,,True,True
216341,atom,ذرّة,atome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216341,,True,True
216342,atomic reactor,مفاعل ذرّي,réacteur atomique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216342,,True,True
219196,atrium,صحن الدار,atrium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219196,,True,True
219197,attic,علّيّة,monsarde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219197,,True,True
219198,attic,أتيكي (طراز),attique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219198,,True,True
219199,attribution,تخصيص,attribution,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219199,,True,True
216343,attrition,تآكل بالاحتكاك,attrition,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216343,,True,True
219200,auditorium,مدرج المسرح,auditorium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219200,,True,True
219201,auger,مسبار,sonde,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219201,,True,True
219202,auriga,سائق عربة,aurige,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219202,في العصور القديمة,True,True
219203,aurignacian (culture),حضارة (ال...) الأورينياسية,aurignacien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219203,,True,True
216344,aurora,شَفَقٌ، فَجْرٌ,aurore,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216344,,True,True
216346,aurora australis,الشفق القطبي الجنوبي,aurore australe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216346,,True,True
216345,aurora borealis,الشفق القطبي الشمالي,aurore boréale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216345,,True,True
219204,australopithecus,مخلوق(ال...) الجنوبي,australopithèque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219204,,True,True
216347,autarky,اكتفاء ذاتي,autarcie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216347,,True,True
216349,autochton (autochonus),أصلي,autochtone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216349,,True,True
216348,autoecology,بيئة ذاتية,autoécologie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216348,,True,True
219205,autopsy,تشريح الجثة (لفحصها),autopsie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219205,,True,True
216350,autotrophic,ذاتي التغذية,autotrophe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216350,,True,True
216351,autumn,الخريف,automne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216351,,True,True
216352,autumnal equinox,الاعتدال الخريفي,équinoxe d'automne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216352,,True,True
216353,avalanche,هَيار ثلجي,avalanche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216353,,True,True
216354,avalanche cone,مخروط هياري ثلجي,cône d'avalanche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216354,,True,True
216355,aven,بالوعة,aven,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216355,,True,True
219206,aventurine,حجر البرق,aventurine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219206,حجر كريم أصفر ببقع ذهبية,True,True
219207,avenue,شارع,avenue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219207,,True,True
219208,awl,مخرز,poinçon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219208,,True,True
219209,axe,فأس,hache,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219209,,True,True
219210,axe (double-),حدأة,bipenne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219210,بلطة بحدين,True,True
219211,axe-hammer,مطرقة,marteau de maçon têtu,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219211,,True,True
216356,axis,محور,axe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216356,,True,True
219212,azilian (culture),حضارة (ال...) الزيلية,azilien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219212,,True,True
216357,azimuth,سمْت,azimut,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216357,,True,True
216358,azimuthal projection,مسقط سمتي,projection zénithale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216358,,True,True
216359,azoic era,حقبة الاحياة,ère azoïque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216359,,True,True
216360,azonal soil,تربة لا نِطاقية,sol azonal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216360,,True,True
219213,aztecs,شعب الأزتيك,aztèques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219213,,True,True
219214,azulejos,زليج (القاشاني المغربي),azulejo,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219214,,True,True
219215,azure,لازوردي,azur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219215,لون سماوي,True,True
216361,back slope,سفح خلفي,réserve du cuesta,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216361,,True,True
219216,background,خليفة,fond; arrière-plan,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219216,,True,True
219217,backing,اسناد,adossement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219217,,True,True
216362,backwash,انحسار,retrait,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216362,,True,True
216363,bad lands,أرض رديئة,'bad lands',http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216363,,True,True
219218,badarian (culture),حضارة البداري,civilisation badarienne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219218,من عصر بداية المعادن في عصر مصر,True,True
219219,baetyl,نُصب,bétyle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219219,,True,True
216364,bahada (Sp.) (Bajada),سهل مروحي متموج,bahada (bajada),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216364,,True,True
219220,bailey,داخل الحصن,baile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219220,,True,True
219221,baionnette,حربة,bayonnette,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219221,,True,True
219222,balance,ميزان,balance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219222,,True,True
216366,balance of payments,ميزان المدفوعات,balance des payements,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216366,,True,True
216367,balance of trade,الميزان التجاري,balance commerciale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216367,,True,True
216365,balanced neighbourhood,جوار متوازن,voisinage équilibré,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216365,,True,True
219223,balas (ruby),لعل,rubis balais,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219223,ضرب من الياقوت,True,True
219224,balcony,شرفة,balcon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219224,,True,True
219225,baldachin,مظلة الكاهن,baldaquin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219225,الحرير البغدادي,True,True
219226,baldachino,ظلة,ciborium (de basilique),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219226,فوق عرش أو مذبح أو قبر,True,True
219227,balista,منجنيق السهام,balista,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219227,,True,True
219228,ball flower,زهرة(ال...) الكروية,petite rosette (décorative),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219228,زخرف,True,True
219229,ballast (to-),فَرَش بالحصى,empierrer; caillouter,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219229,,True,True
219230,balnea,حمام عام (روماني),thermes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219230,,True,True
219231,balsam,بلسم,baume,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219231,,True,True
219232,balusters,قوائم الدرابزين,balustres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219232,,True,True
219233,balustrade,درابزين,balustrade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219233,الدرج أو الشرفة,True,True
219234,bamboo,خيزران,bambou,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219234,,True,True
219235,band (arch-),تعاريق,nervure,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219235,زخارف نابثة كالعروق,True,True
216368,bank,ضفة,rive,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216368,,True,True
216369,banner cloud,سحاب بَيْرقي,nuage en bannière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216369,,True,True
219236,baptistery,مكان التعميد,baptistère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219236,في الكنيسة,True,True
216370,bar,حاجز رملي,barre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216370,وحدة قياس الضغط الجوي,True,True
219237,bar (ridge-),جائز الجسر,longeron,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219237,,True,True
219238,barbarians,برابرة(ال...),barbares,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219238,,True,True
219239,barbarism,بربرية,barbarisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219239,,True,True
219240,barbican,مَرقَب,barbacane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219240,,True,True
219241,barbotine,لصيقة زخرفية,barbotine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219241,,True,True
219242,bark,لحاء الشجر,écorce (d'arbre),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219242,,True,True
216371,bark (barkhane),دِعْص، كثيب هلالي,barkhane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216371,,True,True
219243,barley,شعير,orge,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219243,,True,True
216372,barograph,مرسمة الضغط الجوي,barographe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216372,,True,True
216373,barometer,مقياس الضغط الجوي,baromètre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216373,,True,True
219244,baroque,باروكي (طراز),baroque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219244,,True,True
219245,barracks,ثكنة,caserne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219245,مركز الجنود ومجتمعهم,True,True
216374,barrage,سَدٌ,barrage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216374,,True,True
216375,barranca (Sp.) (Barranco),مسيل,barranco,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216375,المخروط البركاني,True,True
219246,barricade,متراس,barricade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219246,,True,True
216376,barrier,حَاجِزٌ,barrière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216376,,True,True
216377,barrier beach (barrier island),حاجز رملي,flèche littorale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216377,,True,True
216378,barrier reef,حاجز مرجاني، شعبة مرجانية,récif corallien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216378,,True,True
219247,barrow,تلة جنائزية,tumulus; tombelle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219247,,True,True
219248,bart chart,شاخص(ال…),graphique à barres,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219248,,True,True
219249,barter,مقايضة,échange,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219249,,True,True
219250,bartisan,برج بارز,tourelle en encorbellement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219250,,True,True
216379,barysphere,نواة الأرض,barysphère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216379,,True,True
219262,bas-relief,نحت غائر,bas-relief,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219262,,True,True
216380,basalt,بازالت، المانع,basalte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216380,,True,True
219251,basalt,حجر بركاني أسود,basalte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219251,,True,True
219252,base,قاعدة,base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219252,,True,True
219253,base (attic-),قاعدة (عمود) أتيكي,base attique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219253,,True,True
219254,base (of post),قاعدة عمود (للتقوية),Embase,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219254,,True,True
219255,base (polygonal-),قاعدة متعددة الأضلاع,base polygonale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219255,,True,True
216381,base-level,مستوى القاعدة,niveau de base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216381,,True,True
216382,basement (base),القاعدة الصخرية,scole; sous-bassement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216382,,True,True
219256,basement (of windows-),ركيزة نافذة,allège,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219256,جدار استنادي تحت نافذة,True,True
216383,basic activity,نشاط أساسي,activité de base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216383,,True,True
216384,basic industry,صناعة أساسية,industrie de base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216384,,True,True
216385,basic rock,صخر قاعدي,roche basique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216385,,True,True
216386,basik source,ينبوع القاعدة,source de base,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216386,,True,True
219257,basil,جلد ناعم,basane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219257,,True,True
219258,basilica,باسيليكا(ال...),basilique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219258,كنيسة متميزة,True,True
219259,basilik,أفعى خرافية,basilic,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219259,,True,True
216387,basin,حوْض,bassin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216387,,True,True
219260,basin,حوض,bassin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219260,,True,True
219261,basketry,سِلالة(ال…),vannerie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219261,صناعة السلال,True,True
219263,bassinet,خوذة,bassinet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219263,,True,True
219264,bastion,بُرَيج بارز,bastion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219264,في أسوار الحصن,True,True
216388,batholith (bathylith),باتوليت,batholite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216388,,True,True
216389,bathyal zone,منحدر قاري,talus continental,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216389,,True,True
216390,bathymetry,علم قياس الأعماق,bathymétrie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216390,,True,True
219265,batik,باتك,batik,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219265,تطبيع باتيكي,True,True
219266,batiste,باتيستة,batiste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219266,قماش قطني أو كتاني,True,True
219267,batten,مخفق النسيج,battant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219267,,True,True
219268,batter (of wall),ميل (الحائط),fruit du mur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219268,,True,True
219269,battering ram,كبش (ال…)(منجنيق),bélier (catapulte),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219269,,True,True
219270,battle axe,بلطة قتال,haches d'armes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219270,,True,True
219271,battle of poitiers,بلاط الشهداء,bataille de poitiers,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219271,معركة بواتية,True,True
219272,battlement,شَرَفة,créneaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219272,فجوة في أعلى السور لرمي السهام,True,True
219273,baulk,حاجز,balk,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219273,,True,True
216391,bauxite,بوكسيت,bauxite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216391,خام الألمنيوم,True,True
216392,bay,جَوْن,baie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216392,,True,True
219274,bay,مديد,travée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219274,المسافة بين عارضتين,True,True
219275,bayat Al-Amma (public baya),بيعة(ال...) العامة,l'allégeance générale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219275,,True,True
216393,bayou,بايو,bayou,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216393,خليج صغير,True,True
219277,bazaar,سوق شرقية,bazar,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219277,,True,True
216394,bazar sector,الدورة الاقتصادية الدنيا,circuit inférieur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216394,,True,True
216395,beach,سيفٌ، شاطئ,plage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216395,ساحل البحر,True,True
219278,beach (prograding-),تقدم الشاطئ (بفعل الأمواج),plage en progradation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219278,,True,True
219279,beach (raised-),شاطئ مرفوع,plage soulevée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219279,,True,True
219280,beads,خَرَز,chapelet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219280,,True,True
219281,beaker (pottery-),قدح فخاري,vases ampaniformes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219281,جرسي الشكل,True,True
219282,beakhead,زخرف رأس الطير,coltis; tête plate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219282,,True,True
219283,beam (main-),جسر أساسي,poutre principale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219283,في السقوف ونحوها,True,True
219284,beam (sleeper-),جسر أفقي (من الخشب) رافدة,poutre; solive,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219284,,True,True
219285,beans,بقول,haricot; fève,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219285,,True,True
216396,beating up of land,إزالة الغطاء النباتي,défrichement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216396,,True,True
216398,bed,طبقة,couche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216398,,True,True
216399,bedding,تطبّق,stratification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216399,,True,True
219287,bedding,تأسيس صخري,enrochement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219287,تأسيس بالصخور، إما في الماء أو على أرض مستقرة,True,True
216400,bedding plane,مستوى التطبق,plan de stratification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216400,,True,True
216401,bedrock,صخر القاع,roche de fond,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216401,,True,True
219288,beehive,خلية نحل,ruche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219288,,True,True
216403,behavioural matrix,مصفوفة سلوكية,matrice comportementale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216403,,True,True
216404,beheading,أسر نهري,capture,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216404,,True,True
219289,behistun,حجر بهستون,behistoun,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219289,,True,True
219290,belfry,برج المراقبة، برج الناقوس,beffroi; campane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219290,,True,True
219291,bell,ناقوس، جرس,cloche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219291,,True,True
219292,bellows,منفاخ,soufflet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219292,,True,True
219293,bellshaped,ناقوسي الشكل,campaniforme (en forme de cloche); clocher,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219293,,True,True
216405,belt,نِطاق، حِزام,ceinture,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216405,,True,True
219294,beltower,برج الناقوس,campanile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219294,,True,True
219295,belveder,مَنظرة,belvédère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219295,بناء مرتفع يشرف منه الرائي على المناظر الحسنة,True,True
219296,bema,سدة الكنيسة,bêma,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219296,,True,True
216406,bench mark,علامة الارتفاع,point côté,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216406,,True,True
216407,benthos,القاعيات,benthos,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216407,,True,True
219297,beret,قلنسوة (من الجوخ),béret,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219297,,True,True
216408,bergschrund (ger.),هوة جليدية,rimaye,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216408,,True,True
219298,berm,مجازة,berme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219298,,True,True
219299,beryl,زمرد مصري,béryl,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219299,,True,True
219300,besant,هرقلّي,besant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219300,دينار بيزنطي,True,True
219302,bevel,شطفة,biseau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219302,,True,True
219303,bezant,زخرف القرص,bezant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219303,,True,True
219316,bi-royal system,نظام الحكم الملكي الثنائي,double monarchie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219316,,True,True
219304,bible,توراة(ال...),bible,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219304,,True,True
219305,bicornate,قبعة بقرنين,bicorne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219305,,True,True
219306,biface,فهر حجري ذو وجهين,biface; coups-de-poing,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219306,,True,True
219307,biga,مركبة رومانية (للسباق),bige,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219307,,True,True
216409,bight,خليج,golfe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216409,,True,True
216410,bill,رأس,promontoire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216410,,True,True
219308,billets,زخارف أسطوانية,billets,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219308,,True,True
219309,bilobate,ذو فصين (في العقود),bilobé (arcature),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219309,,True,True
219310,binding (art-),تجليد فني,reliure d'art,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219310,,True,True
216412,bioclimatology,علم المناخ الحياتي,bioclimatologie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216412,,True,True
216411,biocoenosis (biocenose),مجموعة بيئية,biocénose,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216411,,True,True
216413,biodegradable,قابل للتحول الحياتي,biodégradable,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216413,,True,True
216414,biodegradation,تحوُّل حياتي,biogégradation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216414,,True,True
216415,biogeography,الجغرافيا الحياتية,biogéographie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216415,,True,True
219311,biography,سيرة شخصية,biographie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219311,,True,True
216416,biological productivity,انتاجية حياتية,productivité biologique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216416,,True,True
216417,biomass,كتلة حياتية,biomasse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216417,,True,True
216418,biome,وحدة حياتية,biome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216418,,True,True
219312,biome,ثنوي الاحصاء,biome,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219312,,True,True
216419,biosphere,غلاف حياتي,biosphère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216419,,True,True
216420,biostasie,توازن حياتي بيئي,biostasie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216420,,True,True
216421,biotechnology,تقنية حياتية,biotechnologie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216421,,True,True
216422,biotic,حياتي، حيوي,biotique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216422,,True,True
216423,biotope,موطن حياتي,biotope,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216423,,True,True
219313,bird (calligraphic design in the shape of a-),خط طيَري,composition calligraphique (en forme de cloche),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219313,,True,True
219314,"bird, boat and sun disc",طير(ال...) والقارب وقرص الشمس (زخرف),"l'oiseau, la burque et le disque solaire (motif décoratif)",http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219314,,True,True
219315,bireme,ثنائية المجاذيف,birème,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219315,,True,True
216424,birth control,ضبْط النسل,contrôles des naissances,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216424,,True,True
216425,birth rate,معدل المواليد,taux de natalité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216425,,True,True
219317,biscayen,بسكاية,biscaïen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219317,طبنجة الحصار,True,True
216426,bise,البِيز,bise,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216426,رياح باردة وجافة تهب على شمالي فرنسا وسويسرا,True,True
219318,bishop,أسقف,évêque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219318,,True,True
219319,bistre,لون أسمر داكن,bistre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219319,يؤخد من السخام,True,True
216427,black cotton soil,تربة القطن الدكناء,régur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216427,,True,True
216428,black earth,تربة سوداء (شرنوزم),chernozem,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216428,,True,True
219320,blade,نصل,lame,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219320,,True,True
219321,blazon,شعار,blazon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219321,,True,True
219322,bleeper,كاشف,appareil récepteur; rayonnant un signal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219322,,True,True
216429,blind valley,وادٍ أعمى,vallée aveugle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216429,,True,True
216430,blizzard,عاصفة ثلجية,blizzard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216430,,True,True
216431,block,كتلة (صخرية),bloc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216431,,True,True
216432,block diagram,مقطع مجسم,bloc-diagramme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216432,,True,True
216434,block lava,حَرَّة، لابة,block de lave,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216434,,True,True
216435,block mountain,جبل انهدامي (هورست),Horst,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216435,,True,True
219323,blockhouse,معقل,blockhaus,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219323,,True,True
219324,blocking-up,رضم تحشية,blocage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219324,بالحجارة بين وجهي الحائط,True,True
216433,blok field,حقل جلمودي,champ de bloc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216433,,True,True
216436,blood rain,مطر عكر,pluie boueuse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216436,,True,True
219325,blowing (glass-),نفخ الزجاج,soufflage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219325,لتشكيل الهيئة المطلوبة من القوارير,True,True
219326,blue (cinder-),أزرق رمادي,bleu de cendre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219326,,True,True
219327,blue (cobalt-),أزرق كوبلتي,bleu cobalt,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219327,,True,True
219328,blue schist,حجر أزرق,schistsbleus,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219328,,True,True
216437,bluff,جُرُف (شفير),escarpement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216437,,True,True
219329,board (base-),نعل القاعدة,plinthe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219329,نتوء سطح مستطيل تحت قواعد الأعمدة,True,True
219330,board (skirting-),ازار الحائط,filet d'embase,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219330,,True,True
219331,boaster,ازميل,ébauchoir,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219331,,True,True
219332,boat,زورق,bâteau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219332,,True,True
219333,boat(reed-),زورق القصب,bâteau de roseau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219333,,True,True
216438,bocage (Fr.),حقول مسيَّجة,bocage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216438,نباتيا,True,True
216439,bog,مستنقع,marécage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216439,,True,True
216440,bohorok (Ger.),البُهروك,bohorok,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216440,رياح,True,True
216441,bolson,حوض مغلق,bolson,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216441,بلسن,True,True
219334,bolt,مزلاج,verrou,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219334,,True,True
219335,bolt (barrel-tower-),مزلاج أسطواني,verrou à platine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219335,,True,True
219336,bombe,محدّب,bombé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219336,بناء محدّب,True,True
219337,bond,رابط,lien; attache,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219337,,True,True
219338,book of the dead,كتاب الموتى,livre des morts,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219338,,True,True
219339,boomerang,عقافة,boumerang,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219339,عصا قصيرة معقوفة الطرف,True,True
219340,booties,غنائم,butins,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219340,,True,True
216442,bora,البورا,bora,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216442,رياح,True,True
216443,borderland,منطقة حدود,territoire frontalier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216443,,True,True
216444,bore,موجٌ عالٍ,masacret,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216444,,True,True
216445,boreal,شمالي,boréal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216445,,True,True
216446,boreal zone,المنطقة الشمالية,zone boréale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216446,,True,True
219341,borer,مثقاب,vrille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219341,,True,True
219342,boss,جامة بارزة مستديرة,bosse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219342,تظهر على واجهات الجدران الضخمة,True,True
219343,bossage,حدبة,bossage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219343,نتوء في حجارة الجدار للزينة,True,True
216447,bottom,قَعْر,fond,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216447,,True,True
216448,bottom moraine,ركام جليدي سفلي,moraine de fond,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216448,,True,True
216449,boulder,جلمود,bloc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216449,,True,True
216451,boulder field,حقل جلمودي,champ de bloc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216451,,True,True
216450,boulder-clay,جلمود طيني,argile à blocaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216450,,True,True
219344,boulevard,شارع,boulevard,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219344,,True,True
216452,boundary,حدود,frontière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216452,,True,True
219345,bow,قوس (للسهام),arc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219345,,True,True
219346,bowl,قصعة خزفية (زبدية),bol,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219346,,True,True
219347,boycott of banu hashim (the),مقاطعة بني هاشم,boycottage des banou Hachim,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219347,,True,True
219348,brace (of a scaffold),رباط الصقالة,tirant d'échafaud,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219348,,True,True
219349,bracelet,زخرف سواري,bracelet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219349,,True,True
219350,brachiate,زوجي الأغصان,brachié,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219350,ذو أغصان نامية أو أزواج متعاقبة,True,True
219351,bracket,كتيفة,corbeau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219351,,True,True
219352,bracket (wall-),كتيفة جدارية,console murale,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219352,,True,True
216453,brackish,أجاج، مَجّ,saumâtre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216453,,True,True
219353,brahmanism,برهمية(ال...),brahmanisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219353,,True,True
216454,braided stream,نهر متعدد المجاري,chenaux anastomosés,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216454,,True,True
219354,branding,وسم,impression au fer chaud,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219354,,True,True
219355,brass,نحاس أصفر,laiton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219355,,True,True
219356,brattice,مشرفة,bretèche (bretess),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219356,غرفة صغيرة بارزة في البناء أو الحصن,True,True
216455,brave west winds,الرياح الغربية العاتية,braves vents d'ouest,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216455,,True,True
219357,brazier,مجمرة نحاسية (للتدفئة),brasier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219357,,True,True
216456,breaker,موجة متكسرة,brisant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216456,,True,True
216457,breaking (of waves),زحف الموج,déferlement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216457,,True,True
216458,breakwater,حاجز الموج,jetée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216458,,True,True
219358,breastplate,درع,plastron,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219358,,True,True
216459,breccia (It.),بريشيا,brèche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216459,,True,True
216460,breeze,نسيم,brise,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216460,,True,True
219359,brick,آجر,brique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219359,,True,True
219360,brick (air-),آجر مثقوب,briques d'aération,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219360,,True,True
219361,brick (ashlar-),آجر مهذب,briques de taille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219361,,True,True
219362,brick (burnt-),آجر مشوي,brique cuite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219362,,True,True
219363,brick (compass-),آجر مستدير,brique circulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219363,,True,True
219364,brick (crude-),آجر نيء,brique crue,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219364,,True,True
219365,brick (fire-),آجر حراري,brique réfractaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219365,,True,True
219366,brick (glazed-),آجر مزجج,brique vitrée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219366,,True,True
219367,brick (hollow-),آجر مجوف,brique creuse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219367,,True,True
219368,brick (paving-),آجر تبليط,brique de pavement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219368,,True,True
219369,brick (perforated-),آجر مثقّب,briques perforées,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219369,,True,True
219370,brick (solid-),آجر مملوء,brique plein,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219370,,True,True
219371,brick (vitrified-),آجر مزجج,brique vitrifiée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219371,,True,True
219372,brick clay,صلصال,argile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219372,,True,True
219373,brick nogging,طوب تحشية,hourdis; houdage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219373,,True,True
219374,brick red,أحمر آجري,rouge-brique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219374,,True,True
219375,brick wall,آجر الجدران,mur en briques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219375,,True,True
219377,brick-on-edge,آجرة على جانبها,brique sur le champ,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219377,,True,True
219376,brickklin,فرن آجر,four à briques,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219376,,True,True
219378,bricks (hogback-),قوالب اللبن المحدبة,moules pour briques à dos d'âne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219378,,True,True
219379,bricks (moulded-),آجر مقولب,briques moulées,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219379,مشكل في قوالب,True,True
219380,brickwork,صناعة الآجر,briquetage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219380,,True,True
219381,bridge,جسر,pont,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219381,,True,True
219382,bridge (arched-),جسر مقنطر,pont-à arches,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219382,,True,True
219383,bridge (permanent-),جسر دائم,pont permanent,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219383,,True,True
219384,brigandine,درع من زرد,brigandine,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219384,,True,True
216461,brimstone,كبريت,soufre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216461,,True,True
219385,brocade(silk-),حرير موشّى (مطرز),soie brochée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219385,,True,True
219386,broch,برج دائري,tour ronde picte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219386,,True,True
219387,bronze,برنز,airain,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219387,خليط النحاس والقصدير والتوتياء,True,True
219388,bronze (gold-),برونز مذهب,bronze doré,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219388,,True,True
216462,bronze age,العصر البرونزي,âge du bronze,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216462,,True,True
219389,bronze age (the-),عصر (ال...) البرونزي,l'âge du bronze,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219389,,True,True
219390,bronzework,أشغال يدوية,bronze,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219390,,True,True
219391,brooch,مشبك,broche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219391,حلية ذات دبوس,True,True
216463,brook,جَدْوَلٌ,ruisseau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216463,,True,True
216464,brown coal,ليغينيت,lignite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216464,فحم أسود,True,True
216465,brown soil,تربة سمراء,sol brun,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216465,,True,True
219392,bucchero (nero),فخار أسود مشهب,bucherro (nero),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219392,,True,True
219393,bucket,دلو,seau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219393,,True,True
219394,buckler,ترس,bouclier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219394,,True,True
219395,bucranium,رأس الثور (زخرف),bucrâne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219395,,True,True
216467,buffer state,دولة حاجزة,état tampon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216467,,True,True
219397,bugle,بوق,clairon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219397,,True,True
216468,built up area,منطقة مبنية,surface construite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216468,,True,True
219398,bulbous,بصلي الشكل,bulbeux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219398,,True,True
216469,bulk goods,بضائع ضخمة,biens pondéreux; marchandises volumineuses,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216469,,True,True
219399,bulkhead,حاجز بنائي,cloison,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219399,,True,True
219400,bull's eye,شباك حدقي,hublot,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219400,كوة صغيرة للانارة أو التهوية,True,True
216470,buran,البوران (رياح),bourane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216470,,True,True
219401,burial,دفن(ال...),inhumation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219401,,True,True
219402,burial (extended-),دفن ممدد,enterrement en position allongée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219402,,True,True
219403,burial (flexed-),دفن منثنٍ,inhumation du corps en flexion,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219403,دَفن المتوفّى في هيئة الانثناء,True,True
219404,burial-vault,قبو الدفن,caveau (funéraire),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219404,,True,True
219405,burin,منقاش,burin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219405,لنقش المعدن وحفرها,True,True
219406,burnish,تلميع,polir,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219406,,True,True
219407,burnouse,برنس,burnous,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219407,ثوب تتصل به قلنسوة طويلة,True,True
216471,bush (maquis),أجمة (ماكي),maquis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216471,,True,True
219408,bust,تمثال نصفي,buste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219408,,True,True
216472,butte (Fr.),قارَة,butte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216472,تل منعزل قمته مسطّحة,True,True
216473,butte-témoin (Fr.),قارة شاهدة,butte-témoin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216473,,True,True
219409,buttering,تمليط,cimentation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219409,,True,True
219410,buttress,دعامة ساندة,contrefort,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219410,,True,True
219411,buttress (flying-),سناد,arc-boutant,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219411,,True,True
219412,byblos,بيبلوس,byblos,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219412,مدينة جبيل,True,True
219286,bédane,ازميل,bec-d'âne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219286,,True,True
216474,caatinga,كاتنكا,caatinga,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216474,,True,True
219415,caballito,كابلّتو,caballito,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219415,نوع من الزوارق,True,True
219416,cabled (column),مجدول,rudenté,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219416,عمود مخدد قسمه الأسفل مزيّن بجدائل,True,True
219417,cabling,جَدْلٌ,câblage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219417,حلية في قنوات الأعمدة,True,True
216475,cadastral planning,مخطط مساحي,plan cadastral,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216475,,True,True
216476,cadastral survey,مسح الممتلكات,cadastre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216476,,True,True
219418,caesaropapism,بابوية قيصرية,césaropapisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219418,,True,True
216477,caino zoic,الكاينوزوي,caenozoïque,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216477,الزمنان الجيولوجيان : الثالث والرابع,True,True
219419,cairn,ركام قبر,cairn,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219419,,True,True
219420,caisson,حشوات,caisson,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219420,زخارف مختلفة في حائط أو سقف خشبي,True,True
219421,calabash,دبّاءة,calebasse,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219421,,True,True
219422,calamus,قلم القصب,calamus,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219422,,True,True
216478,calcareous,كلسي,calcaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216478,,True,True
216479,calcicole plant,نبات محب الكلس,plante calcicole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216479,,True,True
216480,calcification,تكلُّس,calcification,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216480,,True,True
216481,calcifuge plant,نبات رافض الكلس,plante calcifuge,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216481,,True,True
216482,calcite,كلسيت,calcite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216482,,True,True
216483,caldera (Por.),كالديرا,caldera,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216483,,True,True
216484,caledonian orogeny,الحركة الكاليدونية,orogénie calédonienne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216484,,True,True
219423,calendar,تقويم,calendrier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219423,,True,True
219424,calf (golden-),عِجل(ال…) الذهبي,veau d'or,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219424,,True,True
216485,calibration,معايرة,étalonnage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216485,,True,True
219425,calibration,معايرة,calibrage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219425,,True,True
219426,calidarium,غرفة (ال…)الساخنة,caldarium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219426,في الحمام الروماني,True,True
216486,calima,رَهجٌ,brume sèche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216486,,True,True
219427,caliphate,خلافة,califate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219427,,True,True
219428,calligraphy,فن الخط,calligraphie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219428,,True,True
216487,calms,رَهْوٌ,calmes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216487,,True,True
216489,calory (calorie),سُعْر (حراري),calorie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216489,,True,True
216488,calotte,غطاء جليدي,calotte glaciaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216488,,True,True
219429,calotte,طاقية,calotte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219429,,True,True
219430,caltrop,فخ,chausse-trape,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219430,,True,True
216490,calving,انفصال الجليد,vélage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216490,,True,True
219431,camber beam,عارضة محدودبة,tonture (du pont),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219431,,True,True
216491,cambrian,كَمبري,cambrien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216491,,True,True
219432,cameo,قُمعول,camée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219432,فص بارز النقش,True,True
219433,camomile,بابونج,camomille,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219433,,True,True
219434,campana,جُريَس,campane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219434,حلية جرسية في رأس العمود,True,True
219435,campanile,برج الناقوس,campanile,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219435,,True,True
219436,campignian (culture),حضارة (ال...) الكمبينية,campignien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219436,,True,True
216492,campos,مراعي الكمبس,campos,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216492,,True,True
219437,canaanites,كنعانيون(ال…),c(h)ananéen,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219437,,True,True
216493,canal,قناة,canal,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216493,,True,True
219438,candelabrum,شمعدان كبير,candélabre,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219438,,True,True
219439,canephora,حاملة القرابين (تمثال),canéphore,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219439,,True,True
219440,cannibalism,أكل لحوم البشر,cannibalisme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219440,,True,True
219441,cannon,مدفع,canon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219441,,True,True
219442,canoe,قنوي(زورق),canoë,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219442,,True,True
219443,canopy,سديل,dais (dun trône); dais en étoffe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219443,ظلة العرش أو السرير,True,True
219444,cantilever,كتيفة معلقة,encorbellement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219444,,True,True
219445,canton,ركن (البناء),canton,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219445,,True,True
216494,canyon (canon),خانِق,canyon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216494,,True,True
219446,cap,طاقية,bonnet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219446,قبيبة تعلو الطاحونة الهوائية,True,True
216495,capacity,سعة,capacité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216495,,True,True
216496,cape,رأس,cap,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216496,,True,True
216498,capillary water,ماء شعري,eau capillaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216498,,True,True
219447,capital,تاج العمود,chapiteau,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219447,,True,True
219450,capital (Byzantine-),تاج بيزنطي,chapiteau byzantin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219450,,True,True
219453,capital (Egyptian campaniform-),تاج مصري,chapiteau égyptien campaniforme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219453,,True,True
219454,capital (Egyptian hatoric-),تاج حتحورى,chapiteau égyptien hatorique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219454,,True,True
219455,capital (Egyptian lotiform-),تاج لوتسي,chapiteau égyptien lotiforme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219455,يشبه زهرة اللوتس,True,True
219458,capital (Hindu-),تاج هندي,chapiteau hindou,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219458,,True,True
219460,capital (Renaissance-),تاج عصر النهضة,chapiteau renaissance,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219460,,True,True
219448,capital (arabian-),تاج عربي,chapiteau arabe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219448,,True,True
219449,capital (assyrian-),تاج آشوري,chapiteau assyrien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219449,,True,True
219451,capital (composite-),تاج مركب (روماني),chapiteau composite,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219451,,True,True
219452,capital (corinthian-),تاج كورنثي,chapiteau corinthien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219452,,True,True
219456,capital (goodroon-),تاج مفصص,chapiteau goudronné,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219456,,True,True
219457,capital (gothic-),تاج قوطي,chapiteau gothique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219457,,True,True
219459,capital (ionic-),تاج ايوني (يوناني),chapiteau ionique,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219459,,True,True
219461,capital (roman-),تاج روماني,chapiteau roman,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219461,,True,True
219462,capital (turkish-),تاج تركي,chapiteau turc,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219462,,True,True
219463,capital (tuscay-),تاج تسكاني,chapiteau toscan,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219463,,True,True
216499,capital flow,تدفق رؤوس الأموال,flux de capitaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216499,,True,True
216500,capital shortage,نقْص رؤوس الأموال,manque de capitaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216500,,True,True
219464,capitol,كابيتول(ال…),capitole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219464,,True,True
216497,cappillarity,الخاصة الشعرية,capillarité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216497,,True,True
219465,capping,زَيْف,chaperon,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219465,طنف يقي الحائط من المطر,True,True
219466,capsian (culture),حضارة (ال...) القفصية,capsien,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219466,,True,True
219467,capston,حجر القمة (في حائط),chaperon (d'un toit); pierre de faîte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219467,,True,True
216501,capture (river..),أسْر,capture (d'une rivière),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216501,نهري,True,True
219468,caracole,درج حلزوني,caracole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219468,,True,True
216502,carapace,قشرة صُلبة,carapace,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216502,,True,True
219469,caravan,عربة كبيرة,caravane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219469,,True,True
219470,caravansay,خان القوافل,caravansérail,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219470,,True,True
216503,carbon,كربون,carbone,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216503,,True,True
216504,carboniferous period,العصر الفحمي,époque carbonifère,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216504,,True,True
219471,carbonization,تفحّم,carbonisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219471,,True,True
219472,carbuncle,عقيق أحمر,escarboucle,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219472,,True,True
216505,cardinal points,الجهات الأصلية,points cardinaux,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216505,,True,True
219473,cardium,صدف بحري,cardium,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219473,,True,True
219474,caricature,صورة هزلية,caricature,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219474,,True,True
219475,caries,نخر الأسنان,carie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219475,,True,True
219476,carinate(d),جؤجؤي الشكل (فخار),carinate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219476,,True,True
219477,carmine,قرمزي,carmin,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219477,,True,True
219478,carnelian,يَنَع,cornéliane,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219478,,True,True
219479,carolingians,كارولنجيون(ال…),carolingiens,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219479,,True,True
219480,carpet,سَجَادة,tapis,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219480,,True,True
219481,carrier pigean,حمام زاجل,pigeon voyageur,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219481,,True,True
216506,carrying capacity,سعة التحمل,capacité de charge,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216506,,True,True
219482,cartel,ترس,cartel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219482,,True,True
216507,cartesian coordinates,احداثيات كارتزية,coordonnées cartésiennes,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216507,,True,True
219483,carthage,قرطاجة,carthage,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219483,,True,True
216508,cartogram,خريطة بيانية,cartogramme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216508,,True,True
216509,cartography,علم الخرائط,cartographie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216509,,True,True
219484,cartouche,خرطوشة,cartouche,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219484,شكل بيضوي يحتوي على كتابة,True,True
219485,carver (wood-),نحّات خشبي,huchier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219485,,True,True
219486,carving (chip-),زخرف هندسي على الخشب,sculpture sur bois (en dessins géométriques en bas-relief),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219486,,True,True
219487,carving (wood-),حفر(ال...) على الخشب,hucherie,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219487,,True,True
219488,caryatids,تماثيل,caryatides,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219488,عذارى كاراوى,True,True
216510,cascade,شلاّل,cascade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216510,,True,True
219489,casemat,معقل,casemate,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219489,,True,True
219490,casement window,نافذة بابية,fenêtre à deux battants,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219490,نافذة تنفتح كما ينفتح الباب لا صعودا أو نزولا,True,True
216511,cash crop,محصول نقدي,revenu en espèce,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216511,,True,True
219491,casing,واجهة الجدار,parement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219491,,True,True
219492,cassava,تبيوكا(ال...),cassave,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219492,,True,True
216512,cast iron,حديد زهر,fonte; font de fer,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216512,,True,True
216513,caste,طائفة,caste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216513,نظام اجتماعي سائد بالهند,True,True
219493,castellated,مبنى ذو شرفات مفرضة,crénelé,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219493,,True,True
219494,casting,سبيك,mouler,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219494,,True,True
219495,casting (in sad),سبك بالرمل,fonte (au sable),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219495,,True,True
219496,castle,قلعة,castel,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219496,,True,True
219497,castration,اخصاء,castration,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219497,,True,True
219502,cat's eye,عين الهر,oeil-de-chat,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219502,حجر كريم,True,True
216514,cataclysm,كارثة,cataclysme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216514,,True,True
219498,catacomb,دياميس,catacombe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219498,جمع ديماس وهي مدافن ومخابئ تحت الأرض,True,True
219499,catapult,منجنيق,catapulte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219499,,True,True
216515,cataract,جَنْدَلٌ,cataracte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216515,شلاّل,True,True
216516,catch crop,زراعة تكميلية,culture dérobée,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216516,,True,True
216517,catchment basin,جابية النهر,bassin de réception,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216517,,True,True
216518,catena,نسيقة نباتية,caténa,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216518,,True,True
219500,cathedra,عرش الأسقف,cathedra,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219500,,True,True
219501,cathedral,كتدرائية,cathédral,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219501,,True,True
216519,cattle ranching,تربية الماشية,ranching (élevage de bétail),http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216519,البقر,True,True
219503,caulicole,محالق,caulicole,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219503,,True,True
219504,cauterization,كيّ,cautérisation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219504,,True,True
219505,cave,كهف,balme,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219505,,True,True
219506,caveman,انسان الكهف,troglodyte,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219506,,True,True
216520,cavern (cave),كَهْف، مغارة,caverne,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216520,,True,True
219507,cavetto,حلية مقعرة,cavet,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219507,,True,True
216521,caving-in,هَيار (صخري),éboulement,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216521,,True,True
216522,cavitation,تجوُّف,cavitation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216522,,True,True
216523,cavity,تجويف,cavité,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216523,,True,True
219508,ceiling,سقف,plafond,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219508,,True,True
216525,celestial sphere,الكرة السماوية,sphère céleste,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216525,,True,True
219509,cell (of convent),خلوة (داخل المعبد),cellule,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219509,,True,True
219510,cella,حجرة التماثيل,cella,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219510,,True,True
219511,cellar,قبو (للمؤن),cellier,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219511,,True,True
219512,cellular,خلوى,cellulaire,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219512,,True,True
216524,celsius scale (centrigrade scale),مقياس مائوي (للحرارة),degré celsius; degré centigrade,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216524,,True,True
219513,celt,بلطة حجرية (بدائية),celt; éolithe,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219513,,True,True
216526,cement,اسمنت,ciment,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216526,,True,True
216527,cementation,تماسُك,cimentation,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=216527,,True,True
219514,cemetery,مقبرة,cimetière,http://www.arabterm.org/index.php?id=40&L=1&tx_3m5techdict_pi1[id]=219514,,True,True