Datasets:
File size: 20,867 Bytes
07d5aff |
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 1001 1002 1003 |
eng,tun
english_text,"tunisia_text_en_alpabet
"
"in, on, to","ููู
"
"on, about, against","ุนูููู
"
"from, since","ู
ููู
"
"who, that (relative pronoun)","ุฅูููู
"
"what, that","ู
ูุง
"
first half of negation,"ู
ูุง
"
"to say, speak (past singular masculine)","ููุงูู
"
future marker,"ุจูุงุดู
"
"I, me","ุฃููุง
"
no,"ูุงู
"
"at, for, with","ุนูููุฏู
"
"With, by, at","ู
ูุนู
"
to be (past singular masculine),"ููุงูู
"
"of, belongs to, has to do with, from","ู
ูุชูุงุนู
"
"All, each, every","ูููู
"
you (singular ),"ุฅููุชูู
"
to come (past singular masculine),"ุฌูุง
"
"there is, there are","ููู
ููุง
"
now,"ุชููููุง
"
that,"ููุงุฐูุง
"
"to go, walk (past singular masculine)","ู
ูุดูู
"
"to count on, depend on (past singular masculine)","ุนูู
ูููู
"
"hey, you, oh","ููุง
"
"to introduce, make known (past singular masculine)","ุนูุฑูููู
"
"to want, love (past singular masculine)","ุญุจูู
"
"until, even","ุญูุชููุง
"
something,"ุญูุงุฌูุฉ
"
"to say, tell story, talk about (past singular masculine)","ุญูููุง
"
"to be able to, allowed to, can (past singular masculine)","ููุฌููู
ู
"
what,"ุดููุง
"
"as, when, like","ููู
"
to see (past singular masculine),"ุดูุงูู
"
"chief, boss","ุดูุงูู
"
"to get someone to smoke, do drugs (past singular masculine)","ููููููู
"
to cool/heat a room (air conditioner) (past singular masculine),"ููููููู
"
"to facilitate, make appropriate/possible (past singular masculine)","ููููููู
"
"a lot, much, many, very","ุจูุฑูุดูุฉ
"
"not, negation","ู
ูุดู
"
"he, it","ูููู
"
one,"ููุงุญูุฏู
"
because,"ุฎูุงุทูุฑู
"
"his benefit, for his sake","ุฎูุงุทูุฑู
"
mother,"ุฃูู
ู
"
to find (past singular masculine),"ููููู
"
"spirit, breath","ุฑููุญู
"
Go!,"ุฑููุญู
"
nothing,"ุดูุก
"
here isโฆ,"ููุงูู
"
to become (past singular masculine),"ูููููู
"
son,"ููููุฏู
"
"to begin, start (past singular masculine)","ุจุฏู
"
"this is important, donโt forget, this is true","ุฑุงูู
"
she or it,"ูููู
"
"good, ok, all right","ุจูุงููู
"
God,"ุงุงููู
"
"to serve, work for (past singular masculine)","ุฎูุฏูู
ู
"
brother,"ุฎูู
"
to enter (past singular masculine),"ุฏูุฎููู
"
yes,"ุฅูู
"
"but, yet","ุฃูู
ููุง
"
after,"ุจูุนูุฏู
"
Man,"ุฑูุงุฌููู
"
the last,"ุขุฎูุฑู
"
"a little, some, a few","ุดููููููุง
"
that,"ุฃุฐูุงููุง
"
"like, as","ูููู
ูุง
"
to go out (past singular masculine),"ุฎูุฑูุฌู
"
"to sit, stay (past singular masculine)","ููุนูุฏู
"
Tunisia,"ุชูููุณู
"
woman,"ู
ูุฑูุฃูุฉู
"
"sense, meaning","ู
ูุนูููู
"
time,"ููููุชู
"
how,"ูููููุงุดู
"
problem,"ู
ูุดููููู
"
"slave, servant","ุนูุจูุฏู
"
who,"ุฃุดูููููู
"
somebody,"ุฃุดูููููู
"
to listen (past singular masculine),"ุณูู
ูุนู
"
story,"ุญูููุงููุฉ
"
people,"ููุงุณู
"
father,"ุจู
"
friend,"ุตูุงุญูุจู
"
always,"ุฏููู
ูุง
"
"must, has to be","ููุงุฒูู
ู
"
"to allow, to leave (past singular masculine)","ุฎููููุง
"
he took,"ุฎูุฐูุง
"
Omar (manโs name),"ุนูู
ูุฑู
"
before,"ููุจููู
"
"year, school grade","ุณูููุฉู
"
some,"ุจูุนูุถู
"
a house,"ุฏุงุฑ
"
a year,"ุนูุงู
ู
"
"God, the Lord","ุฑูุจููู
"
"Sir, Mr.","ุณู
"
"either, or","ุฅู
ููุง
"
word,"ููููู
ูุฉู
"
"big, large, old","ููุจููุฑู
"
"discourse marker expressing hearerโs knowledge, speakerโs frustration","ุชู
"
day,"ูููู
ู
"
"job, work, service","ุฎูุฏูู
ูุฉ
"
better,"ุฎููุฑู
"
"blessing, something good","ุฎููุฑู
"
why,"ุนูููุงุดู
"
daughter,"ุจูููุชู
"
day,"ูููุงุฑู
"
we,"ุฃุญูููุง
"
feeling,"ุญูุณู
"
to live (past singular masculine),"ุนูุงุดู
"
to bring (past singular masculine),"ุฌุงุจ
"
"not, negative marker","ู
ููุดู
"
"why are you, whatโs the matter with you?","ุดูุจูููู
"
head,"ุฑูุงุณู
"
"name, noun","ุฅุณูู
ู
"
"like that, that way","ุฃููุง
"
"also, too","ุฒูุงุฏูุง
"
"still, not yet","ู
ูุงุฒูุงูู
"
"then, as a result, so (intuitive result)","ููุงุฎูู
"
money,"ูููููุณู
"
Dad,"ุจูุงุจูุง
"
"one time, once","ู
ูุฑููุฉ
"
"mister, sir","ุณููููุฏู
"
master,"ุณููููุฏู
"
sitting down,"ููุงุนูุฏู
"
doing something currently,"ููุงุนูุฏู
"
new,"ุฌูุฏููุฏู
"
morning,"ุตูุจูุงุญู
"
"Tunisian, Tunisian person","ุชููููุณูู
"
to return (past singular masculine),"ุนูุงุฏู
"
to visit a sick person (past singular masculine),"ุนูุงุฏู
"
"go, get out of here, go ahead","ุจูุฑููุง
"
two,"ุฒููุฒู
"
"to teach, instruct (past singular masculine)","ููุฑููู
"
"to hold, take, pick up (past singular masculine)","ููุฒูู
"
"about, to do with","ุนููู
"
to come back (past singular masculine),"ุฑูุฌูุนู
"
more,"ุฃููุซูุฑู
"
hour,"ุณูุงุนูุฉ
"
hour,"ุณูุงุนูุฉ
"
the first modern secondary school in Tunisia (near Kasba),"ุตูุงุฏููููููุฉ
"
"near, close to, next to","ุจูุญูุฐูุง
"
to add (past singular masculine),"ุฒูุงุฏู
"
to explain (past singular masculine),"ูููููู
ู
"
for no reason,"ุฃูููุงููุง
"
like that,"ุฃูููุงููุง
"
"it was ok, not great","ุฃูููุงููุง
"
right,"ุญููู
"
life,"ุญูููุงุฉู
"
Hayat (womanโs name),"ุญูููุงุฉู
"
"to hold, grab (past singular masculine)","ุดุฏ
"
wedding,"ุนูุฑูุณู
"
"hand, arm","ููุฏู
"
place,"ุจูููุงุตูุฉ
"
where,"ููููู
"
"to put, place (past singular masculine)","ุญุทู
"
if,"ุฅุฐูุง
"
"limit, end","ุญูุฏูู
"
person,"ุญูุฏูู
"
alive,"ุญููู
"
"to reach, arrive (past singular masculine)","ููุตููู
"
"to buy, purchase (past singular masculine)","ุดูุฑูู
"
we,"ููุญูููุง
"
Yasser (manโs name),"ููุงุณูุฑู
"
to see (past singular masculine),"ุฑูุง
"
to eat (past singular masculine),"ููููุง
"
"to write, edit, compose (past singular masculine)","ุฃููููู
"
"clay used for making skin smooth, brighter","ุทูููู
"
four,"ุฃุฑูุจูุนูุฉู
"
bullet,"ุจูุงูู
"
girl,"ุทูููููุฉู
"
"relation, relationship","ุนูููุงููุฉู
"
in front of,"ููุฏูุงู
ู
"
between,"ุจูููู
"
"to open, turn on, begin (past singular masculine)","ุญููู
"
really small or young (cute),"ุตูุบููููุฑู
"
type,"ููููุนู
"
"country, hometown","ุจูููุงุฏู
"
"brain, mind","ู
ูุฎูู
"
"to oblige, force, require (past singular masculine)","ููุฒูู
ู
"
right,"ุตูุญููุญู
"
"life, the world, everything","ุฏูููููุง
"
month,"ุดูููุฑู
"
"full, complete, perfect","ููุงู
ููู
"
"to no longer have feelings, be hard (past singular masculine)","ู
ูุงุนูุงุฏูุดู ุฅูุญูุณูู
"
one hundred,"ู
ูููุง
"
here,"ููููููุง
"
existing,"ู
ูููุฌููุฏู
"
"subject, matter","ู
ูููุถููุนู
"
to catch something contagious (past singular masculine),"ุชูุนูุฏูู
"
eye,"ุนูููู
"
evil eye,"ุนูููู
"
"take, here is","ููุงูู
"
divorce,"ุทูููุงูู
"
"letโs, come on","ูููููุง
"
"to speak, talk (past singular masculine)","ุชููููููู
ู
"
to give (past singular masculine),"ุนูุทูู
"
car,"ููุฑูููุจูุฉู
"
that,"ููุฐูุงููุง
"
sister,"ุฃูุฎูุชู
"
"private, personal","ุฎูุงุตู
"
heart,"ููููุจู
"
to play (past singular masculine),"ููุนูุจู
"
night,"ููููู
"
"one, thing, person","ููุญูุฏูุง
"
five,"ุฎูู
ูุณูุฉ
"
"worker, employee","ุนูุงู
ููู
"
"to change, transform (past singular masculine)","ุบููููุฑู
"
for example,"ู
ูุซูููุง
"
door,"ุจูุงุจู
"
how much,"ููุฏููุงุดู
"
"to start, begin, commence (past singular masculine)","ุจูุฏูุง
"
"to watch, view (past singular masculine)","ุชูุฑูุฌ
"
"illegal marriage, but not anti-Islamic","ุนูุฑูููู
"
"to judge, rule, sentence (past singular masculine)","ุญูููู
ู
"
"to sleep, fall asleep (past singular masculine)","ุฑูุฏ
"
twenty,"ุนูุดูุฑูููู
"
there,"ุบูุงุฏูู
"
Coffee,"ููููููุฉู
"
"coffee shop, cafรฉ","ููููููุฉู
"
face,"ููุฌููู
"
action (usually negative connotation),"ุนูู
ูููุฉู
"
clothes,"ููุจูุงุณู
"
logical but not intuitive result,"ู
ูุงููุง
"
"to do something, to get up, stand up (past singular masculine)","ููุงู
ู
"
welcome,"ู
ูุฑูุญูุจูุง
"
sometimes,"ุณูุงุนูุงุชู
"
"to live, dwell (past singular masculine)","ุณููููู
"
"to show, indicate (past singular masculine)","ุธููููุฑู
"
breath,"ููููุณู
"
"Where are you?, How are you?","ููููููู
"
donkey,"ุจููููู
ู
"
"idiot, stupid person","ุจููููู
ู
"
to laugh (past singular masculine),"ุถูุญููู
"
"to hit, beat (past singular masculine)","ุถูุฑูุจู
"
"to spend time, to eat lots (slang) (past singular masculine)","ุถูุฑูุจู
"
"film, movie","ูููููู
ู
"
"to enlarge, to grow (past singular masculine)","ููุจููุฑู
"
hair,"ุดูุนูุฑู
"
"to die, pass away (past singular masculine)","ู
ูุงุชู
"
to sell (past singular masculine),"ุจูุงุนู
"
one dinar,"ุฏููููุงุฑู
"
health,"ุตูุญููุฉู
"
"habit, tradition","ุนูุงุฏูุฉู
"
ten,"ุนูุดูุฑูุฉู
"
that,"ุฃูู
"
"atmosphere, weather, ambience","ุฌูู
"
family,"ุนูุงููููุฉู
"
familial,"ุนูุงููููู
"
"team, crew","ููุฑูููู
"
Dog,"ููููุจู
"
to forget (past singular masculine),"ููุณูุง
"
to drink (past singular masculine),"ุดูุฑูุจู
"
to go up in price (past singular masculine),"ุบููููุง
"
lying,"ููุฐูุจู
"
"what a, how","ู
ููุงูู
"
here,"ูููููู
"
God willing,"ุฅูุดุงุงููู
"
bad,"ุฎูุงููุจู
"
"to go back home, return (past singular masculine)","ุฑููููุญู
"
"street, avenue","ุดูุงุฑูุนู
"
Arab,"ุนูุฑูุจูู
"
one million,"ู
ูููููููู
"
one thousand dinars,"ู
ูููููููู
"
"quickly, fast, hurry up","ูููุณูุนู
"
to be afraid (past singular masculine),"ุฎูุงูู
"
"good, great","ู
ููููุญู
"
"thatโs enough, stop, quit","ููุฒููู
"
"to stay, remain (past singular masculine)","ุจูู
"
neighborhood,"ุญููู
ูุฉ
"
"point of view, opinion","ุฑูุงูู
"
six,"ุณูุชููุฉ
"
to marry (past singular masculine),"ุนูุฑููุณู
"
"father, dad","ููุงููุฏู
"
when,"ููููุชูุงุดู
"
"there you go, there something is","ุฃููููููุฉู
"
difficult,"ุตูุนููุจู
"
"strict, tough","ุตูุนููุจู
"
"fine, doing well, good","ููุงุจูุงุณู
"
"alone, on his one, single","ููุญููุฏู
"
Wahid (manโs name),"ููุญููุฏู
"
first,"ุฃููู
"
could I ask you something?,"ุจุงููู ุจูุดู ููุณููููููู
"
"for Godโs sake, please","ุจูุฑูุจููู
"
neighbour,"ุฌูุงุฑู
"
"is it true?, really?, maybe, perhaps","ุฒูุนูู
ูุฉ
"
"up or above, on top of","ููููู
"
court case,"ููุถูููุฉู
"
to go down (past singular masculine),"ููุจูุทู
"
"like that, that way","ูููููุง
"
"to switch, change (past singular masculine)","ุจุฏูู
"
"to try, attempt (past singular masculine)","ุญูุงูููู
"
Hannen (Tunisian womanโs name),"ุญูููุงูู
"
doctor,"ุทูุจููุจู
"
world,"ุนูุงููู
ู
"
"to finish, continue (past singular masculine)","ููู
ูููู
"
player,"ููุงุนูุจู
"
the first,"ููููู
"
food,"ู
ูุงููููุฉู
"
she isnโt,"ู
ููููุดู
"
of course,"ุจูุงูุทูุจููุนูุฉ
"
"picture, image","ุชูุตููููุฑูุฉ
"
Tunisians,"ุชูููุงููุณูุฉ
"
natural,"ุทูุจููุนูู
"
"hello, hi","ุฃููููุง
"
revolution,"ุซูููุฑูุฉ
"
"condition, situation","ุญูุงููุฉ
"
"terrible situation, how bad","ุญูุงููุฉ
"
Mr. President,"ุณูุงุฏุฉ ุงูุฑุฆูุณ
"
water,"ู
ูุงุกู
"
"phone, telephone","ุชูููููููู
"
to forgive (past singular masculine),"ุณูุงู
ูุญู
"
"straight ahead, direct","ุทูููู
"
length,"ุทูููู
"
"precious, important, beloved, dear","ุนูุฒูุฒู
"
important,"ู
ูููู
ูู
"
clean,"ููุธูููู
"
"yeah, uhuh","ุขูู
"
"ooh, missing the old times","ุขูู
"
"sentence, PHR","ุฌูู
ูููุฉ
"
"prison, jail","ุญูุจูุณู
"
political party,"ุญูุฒูุจู
"
to stay awake (past singular masculine),"ุณูุฑ
"
"party, evening fun","ุณูููุฑููููุฉ
"
"picture, image, photo","ุตููุฑูุฉู
"
normal,"ุนูุงุฏู
"
"specific, given","ู
ูุนูููููู
"
"far, away, distant","ุจูุนููุฏู
"
"education, discipline, politeness","ุชูุฑูุจูููุฉ
"
milk,"ุญููููุจู
"
to accept (past singular masculine),"ูุจููู
"
he is going out,"ุฎูุงุฑูุฌู
"
market,"ุณูููู
"
"to pass on, infect (past singular masculine)","ุนูุฏูู
"
"to step, move forward (past singular masculine)","ููุฏูู
ู
"
to develop (past singular masculine),"ููุฏูู
ู
"
"to present, introduce (past singular masculine)","ููุฏูู
ู
"
"but, yet","ูููููู
"
"elected, chosen","ู
ูููุชูุฎูุจู
"
national team,"ู
ูููุชูุฎูุจู
"
"incomplete, lacking, missing","ููุงููุตู
"
hey,"ููุง
"
"the beginning, the first of","ุฃููููู
"
eight,"ุซูู
ูุงููููุฉ
"
a group,"ุฌูู
ูุงุนูุฉ
"
"education, studies","ููุฑูุงููุฉู
"
successful,"ููุงุฌูุญู
"
text,"ููุตู
"
clear,"ููุงุถูุญู
"
"to imagine, think (past singular masculine)","ุชุตููุฑ
"
to get your picture taken (past singular masculine),"ุชุตููุฑ
"
truth,"ุญููููููุฉ
"
to think (past singular masculine),"ุฎู
ููู
ู
"
doctor,"ุฏูููุชููุฑู
"
"to mean, intend (past singular masculine)","ููุตูุฏู
"
to go toward (past singular masculine),"ููุตูุฏู
"
"you didnโt, negation of โyouโ","ู
ูุงููุดู
"
"to shorten, lessen (past singular masculine)","ูููููุตู
"
if,"ุฅูู
"
under,"ุชูุญูุชู
"
television,"ุชูููููุฒูุฉ
"
Love,"ุญูุจูู
"
"dear, beloved","ุญูุจููุจู
"
"to calculate, add up (past singular masculine)","ุญูุณูุจู
"
thought,"ุญูุณูุจู
"
"sweet, delicious","ุญูููู
"
"nice, beautiful","ุญูููู
"
he turned,"ุฏูุงุฑู
"
a house,"ุฏูุงุฑู
"
"beneath, without","ุฏูููู
"
expensive,"ุบูุงููู
"
"valuable, significant","ุบูุงููู
"
"to purchase, buy, go shopping (past singular masculine)","ููุถูู
"
"one piece, one of, one item","ููุนูุจูุฉู
"
"to talk to, speak to (past singular masculine)","ูููููู
ู
"
time period,"ู
ูุฏููุฉู
"
"to become ill, sick (past singular masculine)","ู
ูุฑูุถู
"
married,"ู
ูุนูุฑููุณู
"
"to take off, remove (past singular masculine)","ููุญููู
"
here,"ููููุง
"
condition,"ุญูุงูู
"
opening,"ุญูุงูู
"
to be present (past singular masculine),"ุญูุถูุฑู
"
to be ready (past singular masculine),"ุญูุถูุฑู
"
the aunt (motherโs sister),"ุฎูุงููุฉ
"
"to have cooked, be ready to eat (past singular masculine)","ุทูุงุจู
"
tomorrow,"ุบูุฏูููุฉู
"
"to have fun, welcome, treat well (past singular masculine)","ููุฑูุญู
"
to write (past singular masculine),"ููุชูุจู
"
ball,"ูููุฑูุฉู
"
"attorney, lawyer","ู
ูุญูุงู
ูู
"
"coach, manager","ู
ูุฏูุฑููุจู
"
"soon, Iโll go do that","ุขุชูููุง
"
less,"ุฃูููู
"
"human, person","ุฅููุณูุงูู
"
"only, one, just","ุจูุฑููู
"
"to hope for, hope (past singular masculine)","ุชุฑุฌูู
"
"to ask for, beg (past singular masculine)","ุชุฑุฌูู
"
"regional offices, branches, regionalism","ุฌูููุงูููููุงุชู
"
fifty,"ุฎูู
ูุณูููู
"
price,"ุณููู
ู
"
Chafik (manโs name),"ุดูููููู
"
"compassionate, merciful person","ุดูููููู
"
"to wonder, like, be amazed (past singular masculine)","ุนูุฌูุจู
"
"perhaps, maybe","ููู
ููููู
"
"you plural, yโall","ุฅููุชููู
ูุฉ
"
exactly,"ุจุงูุถููุจูุทู
"
"municipality, town hall","ุจูุฏููุฉ
"
"to train, work out, practice a sport (past singular masculine)","ุชุฑุงูู
"
"to behave, act, take action (past singular masculine)","ุชุตุฑูู
"
to pull (past singular masculine),"ุฌูุจูุฏู
"
"to close, close partially (past singular masculine)","ุฑูุฏู
"
"to answer, react (past singular masculine)","ุฑูุฏู
"
"to vomit, throw up (past singular masculine)","ุฑูุฏู
"
question,"ุณูุคูุงูู
"
"to call, ask for (past singular masculine)","ุทูููุจ
"
"therapy, treatment","ุนูููุงุฌู
"
"operation, action","ุนูู
ููููููุฉู
"
"thought, idea","ููููุฑูุฉ
"
"Card, credit card, playing cards","ููุงุฑูุทูุฉู
"
book,"ููุชูุงุจู
"
"to multiply something, increase (past singular masculine)","ููุซููุฑู
"
"to wear, put on (past singular masculine)","ููุจูุณู
"
metro,"ู
ูุชูุฑูู
"
sick,"ู
ูุฑููุถู
"
"dead, deceased","ู
ููููุชู
"
paper or leaf,"ููุฑูููุฉ
"
better,"ุฃุญูุณููู
"
"administration, office, management","ุฅุฏูุงุฑูุฉู
"
"Oh, oh no","ุฃููู
"
card,"ุจูุทูุงููุฉ
"
"desk, office","ุจูุฑู
"
to remember (past singular masculine),"ุชููููููุฑู
"
week,"ุฌูู
ูุนูุฉ
"
Friday,"ุฌูู
ูุนูุฉ
"
conversation,"ุญูุฏููุซู
"
protectors,"ุญูู
ูุงุฉู
"
"to turn, turn around (past singular masculine)","ุฏูุฑู
"
to drive (past singular masculine),"ุณูุงูู
"
"leg, foot","ุณูุงูู
"
"to close, turn off (past singular masculine)","ุณููููุฑู
"
"to give over, hand over (past singular masculine)","ุณููููู
ู
"
"to greet, say hi (past singular masculine)","ุณููููู
ู
"
summer,"ุตูููู
"
against,"ุถูุฏูู
"
"to repeat, do something again (past singular masculine)","ุนูุงููุฏู
"
"feast, vacation","ุนููุฏู
"
respect,"ููุฏูุฑู
"
destiny,"ููุฏูุฑู
"
respectful distance,"ููุฏูุฑู
"
old,"ููุฏููู
ู
"
"one moment, just a moment","ููุญูุธูุฉู
"
"miss, maโam","ู
ูุงุฏูุงู
ู
"
"place, area","ู
ูููุงูู
"
"normal, no problem","ูููุฑูู
ูุงูู
"
"cop, police","ุจูููููุณู
"
room,"ุจููุชู
"
history,"ุชูุงุฑููุฎู
"
second,"ุซูุงููู
"
clothes,"ุญูููุงููุฌู
"
things,"ุญูููุงููุฌู
"
fifteen,"ุฎูู
ูุณูุชูุงุดู
"
gold,"ุฐูููุจู
"
seven,"ุณูุจูุนูุฉ
"
to fall (past singular masculine),"ุทูุงุญู
"
small piece,"ุทูุฑููู
"
Ali (manโs name),"ุนูููู
"
there,"ุบูุงุฏููููุง
"
same,"ููุฑูุฏู
"
gun,"ููุฑูุฏู
"
close,"ููุฑููุจู
"
"to seek, look for, search for (past singular masculine)","ูููููุฌู
"
Maroua (womanโs name),"ู
ูุฑูููู
"
"straight, level","ู
ูุณูุชูููู
"
"known, popular","ู
ูุนูุฑูููู
"
law,"ููุงููููู
"
give me,"ููุงุชู
"
patriotic,"ููุทูููู
"
Walid (manโs name),"ูููููุฏู
"
white,"ุฃุจูููุถู
"
yesterday,"ุจุงุฑุญ
"
Ines (womanโs name),"ุฅูููุงุณู
"
free,"ุจูููุงุดู
"
from the family of,"ุจูู
"
girl,"ุจููููููุฉ
"
"to die, pass away (past singular masculine)","ุชูููููู
"
judge,"ุญูุงููู
ู
"
police,"ุญูุงููู
ู
"
"to pay, give a salary (past singular masculine)","ุฎูููุต
"
"to save, rescue, get out of a tough situation (past singular masculine)","ุฎูููุต
"
"to comfort, tell someone โMay God have mercy on himโ (past singular masculine)","ุฑุญูู
"
athlete,"ุฑูููุงุถูู
"
luck,"ุฒูููุฑู
"
easy,"ุณูุงูููู
"
"young person, handsome","ุดุจุงุจ
"
"to not sleep all night, pull an all-nighter (past singular masculine)","ุตูุจููุญู
"
to greet someone in the morning (past singular masculine),"ุตูุจููุญู
"
"to repair, to fix (past singular masculine)","ุตููููุญู
"
"to be always with someone, something (negative connotation) (past singular masculine)","ุนูุงุจูุฏู
"
flag,"ุนูููู
ู
"
"to teach, educate (past singular masculine)","ุนููููู
ู
"
"to pass by, go on (past singular masculine)",ููุงุชู
|