fix up wordQuery w words etc
This commit is contained in:
parent
6b0a074521
commit
ae0d1d1fdb
|
@ -14,15 +14,15 @@ const nounAdjTsFiles = fs.readdirSync(nounAdjCollectionPath);
|
||||||
const adverbTsFiles = fs.readdirSync(adverbCollectionPath);
|
const adverbTsFiles = fs.readdirSync(adverbCollectionPath);
|
||||||
|
|
||||||
const allVerbTsS = verbTsFiles.flatMap(fileName => [
|
const allVerbTsS = verbTsFiles.flatMap(fileName => [
|
||||||
...require(path.join("..", verbCollectionPath, fileName)).map(x => x.ts)
|
...require(path.join("..", verbCollectionPath, fileName))
|
||||||
]).filter((v, i, a) => a.findIndex(x => x === v) === i);
|
]).filter((v, i, a) => a.findIndex(x => x === v) === i);
|
||||||
|
|
||||||
const allNounAdjTsS = nounAdjTsFiles.flatMap(fileName => [
|
const allNounAdjTsS = nounAdjTsFiles.flatMap(fileName => [
|
||||||
...require(path.join("..", nounAdjCollectionPath, fileName)).map(x => x.ts)
|
...require(path.join("..", nounAdjCollectionPath, fileName))
|
||||||
]).filter((v, i, a) => a.findIndex(x => x === v) === i);
|
]).filter((v, i, a) => a.findIndex(x => x === v) === i);
|
||||||
|
|
||||||
const allAdverbTsS = adverbTsFiles.flatMap(fileName => [
|
const allAdverbTsS = adverbTsFiles.flatMap(fileName => [
|
||||||
...require(path.join("..", adverbCollectionPath, fileName)).map(x => x.ts)
|
...require(path.join("..", adverbCollectionPath, fileName))
|
||||||
]).filter((v, i, a) => a.findIndex(x => x === v) === i);
|
]).filter((v, i, a) => a.findIndex(x => x === v) === i);
|
||||||
|
|
||||||
console.log("getting words from dictionary...");
|
console.log("getting words from dictionary...");
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
import { render, screen } from '@testing-library/react';
|
import { render, screen } from '@testing-library/react';
|
||||||
import App from './App';
|
import App from './App';
|
||||||
|
|
||||||
test('renders learn react link', () => {
|
test('renders app', () => {
|
||||||
render(<App />);
|
render(<App />);
|
||||||
const linkElement = screen.getByText(/learn react/i);
|
const linkElement = screen.getByText(/pashto grammar/i);
|
||||||
expect(linkElement).toBeInTheDocument();
|
expect(linkElement).toBeInTheDocument();
|
||||||
});
|
});
|
||||||
|
|
|
@ -25,26 +25,25 @@ const nouns = wordQuery("nouns", [
|
||||||
"halik",
|
"halik",
|
||||||
]);
|
]);
|
||||||
|
|
||||||
// @ts-ignore
|
const adjectives = wordQuery("adjectives", [
|
||||||
const adjectives: T.AdjectiveEntry[] = [
|
"stuRey",
|
||||||
{"ts":1527815306,"i":7582,"p":"ستړی","f":"stúRey","g":"stuRey","e":"tired","c":"adj."},
|
"ghuT",
|
||||||
{"ts":1527812625,"i":9116,"p":"غټ","f":"ghuT, ghaT","g":"ghuT,ghaT","e":"big, fat","c":"adj."},
|
"xu",
|
||||||
{"ts":1527812792,"i":5817,"p":"خوشاله","f":"khoshaala","g":"khoshaala","e":"happy, glad","c":"adj."},
|
"khufa",
|
||||||
{"ts":1527812796,"i":8641,"p":"ښه","f":"xu","g":"xu","e":"good","c":"adj."},
|
"takRa",
|
||||||
{"ts":1527812798,"i":5636,"p":"خفه","f":"khúfa","g":"khufa","e":"sad, upset, angry; choked, suffocated","c":"adj."},
|
"puT",
|
||||||
{"ts":1527822049,"i":3610,"p":"تکړه","f":"takRá","g":"takRa","e":"strong, energetic, skillful, great, competent","c":"adj."},
|
"tuGey",
|
||||||
{"ts":1527815201,"i":2240,"p":"پټ","f":"puT","g":"puT","e":"hidden","c":"adj."},
|
"koochney",
|
||||||
{"ts":1527815381,"i":3402,"p":"تږی","f":"túGey","g":"tugey","e":"thirsty","c":"adj."},
|
"zoR",
|
||||||
{"ts":1527812822,"i":10506,"p":"کوچنی","f":"koochnéy","g":"koochney","e":"little, small; child, little one","c":"adj. / n. m. anim. unisex"},
|
"moR",
|
||||||
{"ts":1527815451,"i":7243,"p":"زوړ","f":"zoR","g":"zoR","e":"old","c":"adj. irreg.","infap":"زاړه","infaf":"zaaRu","infbp":"زړ","infbf":"zaR"},
|
]);
|
||||||
{"ts":1527812927,"i":12955,"p":"موړ","f":"moR","g":"moR","e":"full, satisfied, sated","c":"adj. irreg.","infap":"ماړه","infaf":"maaRu","infbp":"مړ","infbf":"maR"},
|
|
||||||
].filter(tp.isAdjectiveEntry);
|
|
||||||
|
|
||||||
// @ts-ignore
|
const adverbs = wordQuery("adverbs", [
|
||||||
const locAdverbs: T.LocativeAdverbEntry[] = [
|
"دلته",
|
||||||
{"ts":1527812558,"i":6241,"p":"دلته","f":"dălta","g":"dalta","e":"here","c":"loc. adv."},
|
"هلته",
|
||||||
{"ts":1527812449,"i":13937,"p":"هلته","f":"hálta, álta","g":"halta,alta","e":"there","c":"loc. adv."},
|
]);
|
||||||
].filter(tp.isLocativeAdverbEntry);
|
|
||||||
|
const locAdverbs = adverbs.filter(tp.isLocativeAdverbEntry);
|
||||||
|
|
||||||
export function randomEPSPool(l: T.EquativeTense | "allTenses") {
|
export function randomEPSPool(l: T.EquativeTense | "allTenses") {
|
||||||
const pronounPool = makePool(pronouns);
|
const pronounPool = makePool(pronouns);
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,11 +1,11 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527811221, e: `above, overhead` }, // پورته - porta
|
1527811221, // پورته - porta
|
||||||
{ ts: 1578080952673, e: `outside, outside of, beyond` }, // دباندې - dubaande
|
1578080952673, // دباندې - dubaande
|
||||||
{ ts: 1527812558, e: `here` }, // دلته - dălta
|
1527812558, // دلته - dălta
|
||||||
{ ts: 1527812449, e: `there` }, // هلته - halta
|
1527812449, // هلته - halta
|
||||||
{ ts: 1527813122, e: `inside, within, interior` }, // دننه - dununa
|
1527813122, // دننه - dununa
|
||||||
{ ts: 1527812780, e: `down, beneath` }, // ښکته - xkuta
|
1527812780, // ښکته - xkuta
|
||||||
{ ts: 1527814605, e: `far, distant` }, // لرې - lure
|
1527814605, // لرې - lure
|
||||||
{ ts: 1527814708, e: `close, near, soon, almost` }, // نژدې - nijzde, najzde
|
1527814708, // نژدې - nijzde, najzde
|
||||||
{ ts: 1527814911, e: `near, close to, almost` }, // نږدې - naGde
|
1527814911, // نږدې - naGde
|
||||||
];
|
];
|
|
@ -1,102 +1,102 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527812797, e: "woman" }, // xudza
|
1527812797, // xudza
|
||||||
{ ts: 1527816466, e: `peace` }, // صلح - sUlha
|
1527816466, // صلح - sUlha
|
||||||
{ ts: 1527816589, e: `plan` }, // طرح - tarha
|
1527816589, // طرح - tarha
|
||||||
{ ts: 1589023873660, e: `victory, conquest` }, // فتح - fathá
|
1589023873660, // فتح - fathá
|
||||||
{ ts: 1527813791, e: `permission` }, // اجازه - ijaaza
|
1527813791, // اجازه - ijaaza
|
||||||
{ ts: 1614083533098, e: `agenda` }, // اجنډه - ajanDa
|
1614083533098, // اجنډه - ajanDa
|
||||||
{ ts: 1527811425, e: "door" }, // darwaaza
|
1527811425, // darwaaza
|
||||||
{ ts: 1527816215, e: `administration, management, directorate` }, // اداره - idaara
|
1527816215, // اداره - idaara
|
||||||
{ ts: 1527812687, e: `continuation` }, // ادامه - idaama
|
1527812687, // ادامه - idaama
|
||||||
{ ts: 1527811661, e: `base, army post, (air) port` }, // اډه - aDa
|
1527811661, // اډه - aDa
|
||||||
{ ts: 1527814310, e: `evaluation, appraisal, assessment` }, // ارزونه - arzawuna
|
1527814310, // ارزونه - arzawuna
|
||||||
{ ts: 1527821380, e: `saw (the tool)` }, // اره - ara
|
1527821380, // اره - ara
|
||||||
{ ts: 1527822277, e: `mare, female horse; fever` }, // اسپه - aspa
|
1527822277, // اسپه - aspa
|
||||||
{ ts: 1527814922, e: `addition, add-on, augmentation` }, // اضافه - izaafa
|
1527814922, // اضافه - izaafa
|
||||||
{ ts: 1527822458, e: `expression` }, // افاده - ifaada
|
1527822458, // افاده - ifaada
|
||||||
{ ts: 1527813303, e: `myth, legend, fairy tale` }, // افسانه - afsaana
|
1527813303, // افسانه - afsaana
|
||||||
{ ts: 1527822494, e: `cheek` }, // انانګه - anaangá
|
1527822494, // انانګه - anaangá
|
||||||
{ ts: 1527817225, e: `measure, dimension, extent, scale` }, // اندازه - andaaza
|
1527817225, // اندازه - andaaza
|
||||||
{ ts: 1527813759, e: `worry, concern, fear` }, // اندېښنه - andexna
|
1527813759, // اندېښنه - andexna
|
||||||
{ ts: 1527815787, e: `shoulder` }, // اوږه - ooGá
|
1527815787, // اوږه - ooGá
|
||||||
{ ts: 1527813787, e: `tear (from eye)` }, // اوښکه - ooxka
|
1527813787, // اوښکه - ooxka
|
||||||
{ ts: 1527819927, e: `liver` }, // اینه - éena
|
1527819927, // اینه - éena
|
||||||
{ ts: 1527816261, e: `wallet` }, // بټوه - baTwa
|
1527816261, // بټوه - baTwa
|
||||||
{ ts: 1527812001, e: `poriton, part, share` }, // برخه - barkha
|
1527812001, // برخه - barkha
|
||||||
{ ts: 1578009902092, e: `veil, burka` }, // برقه - bUrqá
|
1578009902092, // برقه - bUrqá
|
||||||
{ ts: 1527816994, e: `program` }, // برنامه - barnaama
|
1527816994, // برنامه - barnaama
|
||||||
{ ts: 1579294091093, e: `balcony, veranda, porch` }, // برنډه - baranDá
|
1579294091093, // برنډه - baranDá
|
||||||
{ ts: 1527823617, e: `crime, offense, sin, guilt, fault` }, // بزه - bazá
|
1527823617, // بزه - bazá
|
||||||
{ ts: 1527823619, e: `moth` }, // بزه - bUzá
|
1527823619, // بزه - bUzá
|
||||||
{ ts: 1527823620, e: `patch (in a garment)` }, // بزه - bza
|
1527823620, // بزه - bza
|
||||||
{ ts: 1591026261598, e: `she-goat` }, // بزه - buza
|
1591026261598, // بزه - buza
|
||||||
{ ts: 1574188090133, e: `contribution, donation, gift, charity` }, // بسپنه - baspuna
|
1574188090133, // بسپنه - baspuna
|
||||||
{ ts: 1527816590, e: `sufficiency, to have enough or get by` }, // بسنه - basuna
|
1527816590, // بسنه - basuna
|
||||||
{ ts: 1593852212828, e: `fear, fright` }, // بېره - béra
|
1593852212828, // بېره - béra
|
||||||
{ ts: 1527815862, e: `speed, rush, hurry, urgency` }, // بېړه - beRa
|
1527815862, // بېړه - beRa
|
||||||
{ ts: 1527815156, e: `leaf` }, // پاڼه - paaNa
|
1527815156, // پاڼه - paaNa
|
||||||
{ ts: 1527813481, e: `project` }, // پروژه - projza
|
1527813481, // پروژه - projza
|
||||||
{ ts: 1527818409, e: `process` }, // پروسه - purosa
|
1527818409, // پروسه - purosa
|
||||||
{ ts: 1527815192, e: `decision` }, // پرېکړه - prékRa
|
1527815192, // پرېکړه - prékRa
|
||||||
{ ts: 1527822412, e: `nose` }, // پزه - páza
|
1527822412, // پزه - páza
|
||||||
{ ts: 1527816124, e: `foot` }, // پښه - pxa
|
1527816124, // پښه - pxa
|
||||||
{ ts: 1527815155, e: `pretext, excuse` }, // پلمه - palma
|
1527815155, // پلمه - palma
|
||||||
{ ts: 1566469328688, e: `fan` }, // پنکه - panka
|
1566469328688, // پنکه - panka
|
||||||
{ ts: 1527815184, e: `question` }, // پوښتنه - poxtuna
|
1527815184, // پوښتنه - poxtuna
|
||||||
{ ts: 1527822437, e: `shelf, niche` }, // تاخچه - taakhchá
|
1527822437, // تاخچه - taakhchá
|
||||||
{ ts: 1527814974, e: `fever` }, // تبه - tuba
|
1527814974, // تبه - tuba
|
||||||
{ ts: 1527815332, e: `expectation` }, // تمه - tama
|
1527815332, // تمه - tama
|
||||||
{ ts: 1527815716, e: `stone, rock` }, // تیږه - teeGa
|
1527815716, // تیږه - teeGa
|
||||||
{ ts: 1582390417084, e: `escape, flight, running away` }, // تېښته - téxta
|
1582390417084, // تېښته - téxta
|
||||||
{ ts: 1527822268, e: `carriage, buggy` }, // ټانګه - Taangá
|
1527822268, // ټانګه - Taangá
|
||||||
{ ts: 1527812014, e: `society, association, gathering, assembly, congregation` }, // ټولنه - Toluna
|
1527812014, // ټولنه - Toluna
|
||||||
{ ts: 1527816696, e: `sentence; whole, total, sum` }, // جمله - jUmla
|
1527816696, // جمله - jUmla
|
||||||
{ ts: 1527820504, e: `land, earth, ground` }, // ځمکه - dzmuka
|
1527820504, // ځمکه - dzmuka
|
||||||
{ ts: 1527815497, e: `face, picture` }, // څېره - tsera
|
1527815497, // څېره - tsera
|
||||||
{ ts: 1527811993, e: `attack, assault` }, // حمله - hamla
|
1527811993, // حمله - hamla
|
||||||
{ ts: 1527812720, e: `language` }, // ژبه - jzúba, jzíba
|
1527812720, // ژبه - jzúba, jzíba
|
||||||
{ ts: 1527812052, e: `brick, cinder-block` }, // خښته - khuxta
|
1527812052, // خښته - khuxta
|
||||||
{ ts: 1527813475, e: `minute` }, // دقیقه - daqeeqa
|
1527813475, // دقیقه - daqeeqa
|
||||||
{ ts: 1527812542, e: `break, rest` }, // دمه - dama
|
1527812542, // دمه - dama
|
||||||
{ ts: 1527812085, e: `obligation, duty, responsibility; job, work, position` }, // دنده - danda
|
1527812085, // دنده - danda
|
||||||
{ ts: 1527822847, e: `jaw` }, // ژامه - jzaamá
|
1527822847, // ژامه - jzaamá
|
||||||
{ ts: 1527815278, e: `night` }, // شپه - shpa
|
1527815278, // شپه - shpa
|
||||||
{ ts: 1527813145, e: `tribe` }, // قبیله - qabeela
|
1527813145, // قبیله - qabeela
|
||||||
{ ts: 1566653299904, e: `camara` }, // کمره - kamara
|
1566653299904, // کمره - kamara
|
||||||
{ ts: 1527812825, e: `street` }, // کوڅه - kootsa
|
1527812825, // کوڅه - kootsa
|
||||||
{ ts: 1527812756, e: `banana` }, // کېله - kela
|
1527812756, // کېله - kela
|
||||||
{ ts: 1527812859, e: `game, match` }, // لوبه - lóba
|
1527812859, // لوبه - lóba
|
||||||
{ ts: 1527819087, e: `defeat` }, // ماته - maata
|
1527819087, // ماته - maata
|
||||||
{ ts: 1588076706989, e: `distance, span` }, // مسافه - masaafá
|
1588076706989, // مسافه - masaafá
|
||||||
{ ts: 1527818358, e: `apple` }, // مڼه - maNá
|
1527818358, // مڼه - maNá
|
||||||
{ ts: 1527812901, e: `stomach` }, // مېده - meda
|
1527812901, // مېده - meda
|
||||||
{ ts: 1527813387, e: `gluing, joining, wrangle, quarrel, fighting, skirmish, battle` }, // نښته - nuxúta
|
1527813387, // نښته - nuxúta
|
||||||
{ ts: 1527815110, e: `sign, mark, indication` }, // نښه - náxa, núxa
|
1527815110, // نښه - náxa, núxa
|
||||||
{ ts: 1527813391, e: `date (as in time)` }, // نېټه - neTa
|
1527813391, // نېټه - neTa
|
||||||
{ ts: 1527811429, e: `graveyard, cemetery` }, // هدیره - hadeera
|
1527811429, // هدیره - hadeera
|
||||||
{ ts: 1527814323, e: `gift, present, donation, contribution` }, // هدیه - hadiya
|
1527814323, // هدیه - hadiya
|
||||||
{ ts: 1527812655, e: `week` }, // هفته - hafta
|
1527812655, // هفته - hafta
|
||||||
{ ts: 1527812681, e: `agreement` }, // هوکړه - hókRa
|
1527812681, // هوکړه - hókRa
|
||||||
{ ts: 1578343468611, e: `tendon, sinew; hamstring` }, // واڼه - wáaNa
|
1578343468611, // واڼه - wáaNa
|
||||||
{ ts: 1527822717, e: `snow` }, // واوره - wáawra
|
1527822717, // واوره - wáawra
|
||||||
{ ts: 1527811207, e: `eyebrow` }, // وروځه - wróodza
|
1527811207, // وروځه - wróodza
|
||||||
{ ts: 1527816375, e: `niece; brother's daughter` }, // ورېره - wrera
|
1527816375, // ورېره - wrera
|
||||||
{ ts: 1527822259, e: `breeze, light wind` }, // وږمه - waGmá
|
1527822259, // وږمه - waGmá
|
||||||
{ ts: 1527814719, e: `weapons, firearms, artillery` }, // وسله - wasla
|
1527814719, // وسله - wasla
|
||||||
{ ts: 1527823717, e: `cloth, fabric, material, clothing, garment` }, // کپړه - kapRá
|
1527823717, // کپړه - kapRá
|
||||||
{ ts: 1527816257, e: `notebook, little book` }, // کتابچه - kitaabcha
|
1527816257, // کتابچه - kitaabcha
|
||||||
{ ts: 1527820050, e: `bag, purse` }, // کڅوړه - katsóRa
|
1527820050, // کڅوړه - katsóRa
|
||||||
{ ts: 1527813252, e: `line, trace` }, // کرښه - kurxa
|
1527813252, // کرښه - kurxa
|
||||||
{ ts: 1527823590, e: `sphere, globe` }, // کره - kará
|
1527823590, // کره - kará
|
||||||
{ ts: 1527823591, e: `shovel, scraper, scoop` }, // کره - kára
|
1527823591, // کره - kára
|
||||||
{ ts: 1527815884, e: `criticism` }, // کره کتنه - karakatuna
|
1527815884, // کره کتنه - karakatuna
|
||||||
{ ts: 1527823035, e: `whip` }, // کروړه - karoRá
|
1527823035, // کروړه - karoRá
|
||||||
{ ts: 1527816870, e: `farmland` }, // کرونده - karwanda
|
1527816870, // کرونده - karwanda
|
||||||
{ ts: 1527817371, e: `lament, mourning aloud, wail, cry (also out of hapiness)` }, // کریږه - kreeGa
|
1527817371, // کریږه - kreeGa
|
||||||
{ ts: 1598119732734, e: `bitter melon` }, // کرېله - karelá
|
1598119732734, // کرېله - karelá
|
||||||
{ ts: 1527820606, e: `cave, cavern` }, // سمڅه - smútsa
|
1527820606, // سمڅه - smútsa
|
||||||
{ ts: 1527815249, e: `song, poem, verse` }, // سندره - sandura
|
1527815249, // سندره - sandura
|
||||||
{ ts: 1591034128816, e: `mistake, error, blunder, fault` }, // سهوه - sáhwa
|
1591034128816, // سهوه - sáhwa
|
||||||
{ ts: 1527814370, e: `nostril` }, // سوږمه - soGma
|
1527814370, // سوږمه - soGma
|
||||||
{ ts: 1527817498, e: `famine, starvation, serious hunger/lack of food, drought, crop failure` }, // سوکړه - sookRá
|
1527817498, // سوکړه - sookRá
|
||||||
];
|
];
|
|
@ -7,30 +7,30 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527813115, e: "claim" }, // ادعا - idaa
|
1527813115, // ادعا - idaa
|
||||||
{ ts: 1527818119, e: "stick, walking staff, walking stick, crutch" }, // امسا - amsaa
|
1527818119, // امسا - amsaa
|
||||||
{ ts: 1527815043, e: "punishment, retribution" }, // جزا - jazaa
|
1527815043, // جزا - jazaa
|
||||||
{ ts: 1527819022, e: "well, water-hole" }, // څا - tsaa
|
1527819022, // څا - tsaa
|
||||||
{ ts: 1527814225, e: "mistake, error, blunder" }, // خطا - khataa
|
1527814225, // خطا - khataa
|
||||||
{ ts: 1610797589510, e: "cavity, emptiness, vacuum, empty space, space (as in planets etc.)" }, // خلا - khaláa
|
1610797589510, // خلا - khaláa
|
||||||
{ ts: 1527812582, e: "prayer" }, // دعا - dUaa
|
1527812582, // دعا - dUaa
|
||||||
{ ts: 1527813415, e: "medicine, medication" }, // دوا - dawaa
|
1527813415, // دوا - dawaa
|
||||||
{ ts: 1527812272, e: "light, glory" }, // رڼا - raNaa
|
1527812272, // رڼا - raNaa
|
||||||
{ ts: 1527823245, e: "dream, vision" }, // رویا - rooyáa
|
1527823245, // رویا - rooyáa
|
||||||
{ ts: 1586596579414, e: "council (an institution)" }, // شورا - shooraa
|
1586596579414, // شورا - shooraa
|
||||||
{ ts: 1527815984, e: "beauty" }, // ښکلا - xkulaa
|
1527815984, // ښکلا - xkulaa
|
||||||
{ ts: 1527817670, e: "theft, robbery, stealing" }, // غلا - ghlaa
|
1527817670, // غلا - ghlaa
|
||||||
{ ts: 1527814362, e: "cow" }, // غوا - ghwaa
|
1527814362, // غوا - ghwaa
|
||||||
{ ts: 1585487002625, e: "castle, fort, fortress" }, // قلا - qaláa
|
1585487002625, // قلا - qaláa
|
||||||
{ ts: 1527812048, e: "meaning, sense, spirit" }, // مانا - maanaa
|
1527812048, // مانا - maanaa
|
||||||
{ ts: 1527815483, e: "back (body part)" }, // ملا - mlaa
|
1527815483, // ملا - mlaa
|
||||||
{ ts: 1527812230, e: "friendship" }, // ملګرتیا - malgurtiyaa
|
1527812230, // ملګرتیا - malgurtiyaa
|
||||||
{ ts: 1527812910, e: "hospitality; invitation, event, party, banquet, reception" }, // مېلمستیا - melmastiyaa
|
1527812910, // مېلمستیا - melmastiyaa
|
||||||
{ ts: 1617781446945, e: "sickness, illness" }, // ناجوړتیا - naajoRtiyaa, naajoRtyaa
|
1617781446945, // ناجوړتیا - naajoRtiyaa, naajoRtyaa
|
||||||
{ ts: 1527815120, e: "grandmother" }, // نیا - niyaa
|
1527815120, // نیا - niyaa
|
||||||
{ ts: 1527811740, e: "incompleteness, default, shortcoming" }, // نیمګړتیا - neemguRtiyaa
|
1527811740, // نیمګړتیا - neemguRtiyaa
|
||||||
{ ts: 1527821040, e: "plague, cholera" }, // وبا - wabáa
|
1527821040, // وبا - wabáa
|
||||||
{ ts: 1527823534, e: "ability, capacity, capability, power, volumeá" }, // وړتیا - waRtiyáa
|
1527823534, // وړتیا - waRtiyáa
|
||||||
{ ts: 1610443988250, e: "division, distribution" }, // وېشلتیا - weshiltyaa, weshiltiyaa
|
1610443988250, // وېشلتیا - weshiltyaa, weshiltiyaa
|
||||||
{ ts: 1527816806, e: "speech, statement" }, // وینا - waynaa
|
1527816806, // وینا - waynaa
|
||||||
];
|
];
|
|
@ -1,46 +0,0 @@
|
||||||
/**
|
|
||||||
* Copyright (c) 2021 lingdocs.com
|
|
||||||
*
|
|
||||||
* This source code is licensed under the MIT license found in the
|
|
||||||
* LICENSE file in the root directory of this source tree.
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
module.exports = [
|
|
||||||
{ ts: 1527815197, e: "Pashtun" }, // پښتون
|
|
||||||
{ ts: 1527813148, e: "lying" }, // پروت
|
|
||||||
{ ts: 1574867531681, e: "mature, ripe, cooked" }, // پوخ
|
|
||||||
{ ts: 1576952412644, e: "soft" }, // پوست
|
|
||||||
{ ts: 1527815366, e: "bitter" }, // تریخ
|
|
||||||
{ ts: 1527818789, e: "sour" }, // تریو
|
|
||||||
// { ts: 1527815333, e: "'tandoor'" }, // تنور
|
|
||||||
{ ts: 1527817664, e: "hot" }, // تود
|
|
||||||
// { ts: 1577408901204, e: "knee" }, // ځنګون
|
|
||||||
{ ts: 1527816071, e: "spread" }, // خپور
|
|
||||||
{ ts: 1574865652928, e: "sweet" }, // خوږ
|
|
||||||
{ ts: 1527813499, e: "heavy" }, // دروند
|
|
||||||
{ ts: 1527813943, e: "returned, come back" }, // راستون
|
|
||||||
{ ts: 1576596860977, e: "clear, bright" }, // روڼ
|
|
||||||
{ ts: 1527811971, e: "blind" }, // ړوند
|
|
||||||
{ ts: 1527815451, e: "old" }, // زوړ
|
|
||||||
// { ts: 1527815845, e: "life" }, // ژوندون
|
|
||||||
{ ts: 1527815300, e: "rider, mounted" }, // سپور
|
|
||||||
{ ts: 1527819505, e: "being (in a place after returning, coming back etc.)" }, // ستون
|
|
||||||
{ ts: 1600080053835, e: "riding, mounted" }, // سور
|
|
||||||
{ ts: 1527813068, e: "cold" }, // سوړ
|
|
||||||
{ ts: 1575924767041, e: "shepherd" }, // شپون
|
|
||||||
// { ts: 1610448014063, e: "large flat basket" }, // شکور
|
|
||||||
{ ts: 1527813172, e: "bent" }, // کوږ
|
|
||||||
{ ts: 1527811973, e: "deaf" }, // کوڼ
|
|
||||||
// { ts: 1527823497, e: "intestines" }, // لړمون
|
|
||||||
// { ts: 1527813809, e: "namaz" }, // لمونځ
|
|
||||||
{ ts: 1527817123, e: "wet" }, // لومد
|
|
||||||
{ ts: 1527817117, e: "wet" }, // لوند
|
|
||||||
{ ts: 1576889120767, e: "wet" }, // لوند
|
|
||||||
{ ts: 1527812927, e: "full, satisfied" }, // موړ
|
|
||||||
{ ts: 1527812908, e: "guest" }, // مېلمه
|
|
||||||
{ ts: 1579463171333, e: "cleansed" }, // نوږ
|
|
||||||
{ ts: 1576113803291, e: "small" }, // ووړ
|
|
||||||
{ ts: 1527819244, e: "host" }, // کوربه
|
|
||||||
{ ts: 1527812908, e: "guest" }, // مېلمه
|
|
||||||
];
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
/**
|
||||||
|
* Copyright (c) 2021 lingdocs.com
|
||||||
|
*
|
||||||
|
* This source code is licensed under the MIT license found in the
|
||||||
|
* LICENSE file in the root directory of this source tree.
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
module.exports = [
|
||||||
|
1527815197, // پښتون
|
||||||
|
1527813148, // پروت
|
||||||
|
1574867531681, // پوخ
|
||||||
|
1576952412644, // پوست
|
||||||
|
1527815366, // تریخ
|
||||||
|
1527818789, // تریو
|
||||||
|
1527815333, // تنور
|
||||||
|
1527817664, // تود
|
||||||
|
1577408901204, // ځنګون
|
||||||
|
1527819238, // ورون
|
||||||
|
1527816071, // خپور
|
||||||
|
1574865652928, // خوږ
|
||||||
|
1527813499, // دروند
|
||||||
|
1527813943, // راستون
|
||||||
|
1576596860977, // روڼ
|
||||||
|
1527811971, // ړوند
|
||||||
|
1527815451, // زوړ
|
||||||
|
1527822421, // پرتوګ
|
||||||
|
1527815845, // ژوندون
|
||||||
|
1527815300, // سپور
|
||||||
|
1527819505, // ستون
|
||||||
|
1600080053835, // سور
|
||||||
|
1527813068, // سوړ
|
||||||
|
1575924767041, // شپون
|
||||||
|
1527813172, // کوږ
|
||||||
|
1527811973, // کوڼ
|
||||||
|
1527823497, // لړمون
|
||||||
|
1527813809, // لمونځ
|
||||||
|
1527817123, // لومد
|
||||||
|
1527817117, // لوند
|
||||||
|
1576889120767, // لوند
|
||||||
|
1527812927, // موړ
|
||||||
|
1527812908, // مېلمه
|
||||||
|
1579463171333, // نوږ
|
||||||
|
1576113803291, // ووړ
|
||||||
|
1527819244, // کوربه
|
||||||
|
1527812908, // مېلمه
|
||||||
|
];
|
|
@ -1,18 +1,18 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527814150, e: `road, way, path` }, // لار - laar
|
1527814150, // لار - laar
|
||||||
{ ts: 1527815417, e: `day` }, // ورځ - wradz
|
1527815417, // ورځ - wradz
|
||||||
{ ts: 1527812922, e: `month` }, // میاشت - miyaasht
|
1527812922, // میاشت - miyaasht
|
||||||
{ ts: 1527823306, e: `elbow` }, // څنګل - tsangúl
|
1527823306, // څنګل - tsangúl
|
||||||
{ ts: 1527813824, e: `bosom, breast; wrestling` }, // غېږ - gheG
|
1527813824, // غېږ - gheG
|
||||||
{ ts: 1527820524, e: `pelt, skin, hide, leather` }, // څرمن - tsarmún
|
1527820524, // څرمن - tsarmún
|
||||||
{ ts: 1527814147, e: `blanket, coving, quilt` }, // بړستن - bRastun
|
1527814147, // بړستن - bRastun
|
||||||
{ ts: 1527818707, e: `wedge; gusset (in a shirt)` }, // ترخځ - turkhúdz
|
1527822792, // توشک - toshák
|
||||||
{ ts: 1527822792, e: `narrow mattress used as a bed or a couch, reversible rug` }, // توشک - toshák
|
1527818707, // ترخځ - turkhúdz
|
||||||
{ ts: 1527813294, e: `comb` }, // ږمنځ - Gmundz
|
1527813294, // ږمنځ - Gmundz
|
||||||
{ ts: 1527811580, e: `needle, injection; pillar, mast` }, // ستن - stun
|
1527811580, // ستن - stun
|
||||||
{ ts: 1527815779, e: `swearing, name-calling, verbal abuse, bad language` }, // کنځل - kundzul
|
1527815779, // کنځل - kundzul
|
||||||
{ ts: 1527817456, e: `skirt, portion of clothing hanging down from the waist; foot, base (eg. of a mountain)` }, // لمن - lamun
|
1527817456, // لمن - lamun
|
||||||
{ ts: 1527822725, e: `span` }, // لوېشت - lwesht
|
1527822725, // لوېشت - lwesht
|
||||||
{ ts: 1527811609, e: `claw, paw` }, // منګل - mangul
|
1527811609, // منګل - mangul
|
||||||
{ ts: 1527821684, e: `cloud` }, // ورېځ - wurédz
|
1527821684, // ورېځ - wurédz
|
||||||
]
|
];
|
|
@ -1,104 +1,104 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527815177, e: "father" }, // پلار
|
1527815177, // پلار
|
||||||
{ ts: 1527812828, e: "house" }, // کور
|
1527812828, // کور
|
||||||
{ ts: 1527812432, e: `sky, heaven` }, // آسمان - aasmaan
|
1527812432, // آسمان - aasmaan
|
||||||
{ ts: 1527812431, e: `mango` }, // آم - aam
|
1527812431, // آم - aam
|
||||||
{ ts: 1527812434, e: `sound, voice` }, // آواز - aawaaz
|
1527812434, // آواز - aawaaz
|
||||||
{ ts: 1527816724, e: `room, chamber` }, // اتاق - Utaaq
|
1527816724, // اتاق - Utaaq
|
||||||
{ ts: 1527811859, e: `union, alliance` }, // اتحاد - itihaad
|
1527811859, // اتحاد - itihaad
|
||||||
{ ts: 1527822033, e: `joining, connection, contiguity, junction` }, // اتصال - ittisáal
|
1527822033, // اتصال - ittisáal
|
||||||
{ ts: 1527811858, e: `unity, alliance, agreement, understanding, consent; coincidence` }, // اتفاق - itifaaq
|
1527811858, // اتفاق - itifaaq
|
||||||
{ ts: 1527813560, e: `accusation, charge, indictment` }, // اتهام - itihaam
|
1527813560, // اتهام - itihaam
|
||||||
{ ts: 1527812105, e: `respect, honor, esteem, deference` }, // احترام - ihtiraam
|
1527812105, // احترام - ihtiraam
|
||||||
{ ts: 1527819653, e: `possibility, probability, likelihood` }, // احتمال - ihtimaal
|
1527819653, // احتمال - ihtimaal
|
||||||
{ ts: 1527812689, e: `need, requirement` }, // احتیاج - ihtiyaaj
|
1527812689, // احتیاج - ihtiyaaj
|
||||||
{ ts: 1527812690, e: `caution` }, // احتیاط - ihtiyaat
|
1527812690, // احتیاط - ihtiyaat
|
||||||
{ ts: 1527813782, e: `feeling, sensation, emotion` }, // احساس - ahsaas
|
1527813782, // احساس - ahsaas
|
||||||
{ ts: 1527817303, e: `objection, protest` }, // اعتراض - itiraaz
|
1527817303, // اعتراض - itiraaz
|
||||||
{ ts: 1527813418, e: `influence, effect, affect, action` }, // اغېز - aghez
|
1527813418, // اغېز - aghez
|
||||||
{ ts: 1527816625, e: `disaster` }, // افت - afat
|
1527816625, // افت - afat
|
||||||
{ ts: 1527813558, e: `accusation, charge, blame` }, // الزام - ilzaam
|
1527813558, // الزام - ilzaam
|
||||||
{ ts: 1527815388, e: `hope, expectation` }, // امید - Umeed
|
1527815388, // امید - Umeed
|
||||||
{ ts: 1527812453, e: `picture, painting, image` }, // انځور - andzoor
|
1527812453, // انځور - andzoor
|
||||||
{ ts: 1527813827, e: `fire, flame` }, // اور - or
|
1527813827, // اور - or
|
||||||
{ ts: 1527814787, e: `rain` }, // باران - baaraan
|
1527814787, // باران - baaraan
|
||||||
{ ts: 1527817293, e: `roof` }, // بام - baam
|
1527817293, // بام - baam
|
||||||
{ ts: 1527814849, e: `eggplant` }, // بانجن - baanjan
|
1527814849, // بانجن - baanjan
|
||||||
{ ts: 1527814106, e: `crisis` }, // بحران - bUhraan
|
1527814106, // بحران - bUhraan
|
||||||
{ ts: 1527814885, e: `fortune, luck, fate` }, // بخت - bakht
|
1527814885, // بخت - bakht
|
||||||
{ ts: 1527811281, e: `garden` }, // بڼ - baN
|
1527811281, // بڼ - baN
|
||||||
{ ts: 1624039195280, e: `scholarship` }, // بورس - boors
|
1624039195280, // بورس - boors
|
||||||
{ ts: 1527816877, e: `flag` }, // بیرغ - beyragh
|
1527816877, // بیرغ - beyragh
|
||||||
{ ts: 1527820423, e: `passport` }, // پاسپورټ - paasporT
|
1527820423, // پاسپورټ - paasporT
|
||||||
{ ts: 1527813224, e: `bridge` }, // پل - pUl
|
1527813224, // پل - pUl
|
||||||
{ ts: 1527813480, e: `plan` }, // پلان - plaan
|
1527813480, // پلان - plaan
|
||||||
{ ts: 1527815199, e: `central-asian/middle-eastern rice dish, pilaf` }, // پلاو - pulaaw
|
1527815199, // پلاو - pulaaw
|
||||||
{ ts: 1527815185, e: `loan, debt` }, // پور - por
|
1527815185, // پور - por
|
||||||
{ ts: 1527815176, e: `onion` }, // پیاز - piyaaz
|
1527815176, // پیاز - piyaaz
|
||||||
{ ts: 1527815171, e: `start` }, // پیل - peyl
|
1527815171, // پیل - peyl
|
||||||
{ ts: 1527816610, e: `crown, crest` }, // تاج - taaj
|
1527816610, // تاج - taaj
|
||||||
{ ts: 1527822373, e: `vine; mouthful` }, // تاک - taak
|
1527822373, // تاک - taak
|
||||||
{ ts: 1527815326, e: `confirmation` }, // تایید - taayeed
|
1527815326, // تایید - taayeed
|
||||||
{ ts: 1527815357, e: `seed` }, // تخم - tUkhum
|
1527815357, // تخم - tUkhum
|
||||||
{ ts: 1527821586, e: `pity, sympathy` }, // ترحم - tarahhÚm
|
1527821586, // ترحم - tarahhÚm
|
||||||
{ ts: 1527811389, e: `picture` }, // تصویر - tasweer
|
1527811389, // تصویر - tasweer
|
||||||
{ ts: 1527814679, e: `guarantee, insurance, security` }, // تضمین - tazmeen
|
1527814679, // تضمین - tazmeen
|
||||||
{ ts: 1527814258, e: `speech, lecture` }, // تقریر - taqreer
|
1527814258, // تقریر - taqreer
|
||||||
{ ts: 1527821670, e: `cheating, deception, fraud, forgery` }, // تقلب - taqalÚb
|
1527821670, // تقلب - taqalÚb
|
||||||
{ ts: 1527811602, e: `attempt, aspiration, intention, effort` }, // تکل - takál
|
1527811602, // تکل - takál
|
||||||
{ ts: 1527813398, e: `movement, motion, going` }, // تګ - tug, tag
|
1527813398, // تګ - tug, tag
|
||||||
{ ts: 1527822126, e: `anniversary` }, // تلین - tleen
|
1527822126, // تلین - tleen
|
||||||
{ ts: 1527811308, e: `contact, touch` }, // تماس - tamaas
|
1527811308, // تماس - tamaas
|
||||||
{ ts: 1527817900, e: `body, flesh` }, // تن - tan
|
1527817900, // تن - tan
|
||||||
{ ts: 1527821061, e: `contrast, opposition, contradiction` }, // تناقض - tanaaqÚz
|
1527821061, // تناقض - tanaaqÚz
|
||||||
{ ts: 1527822387, e: `rope, cord; a measurement of ground or distances` }, // تناو - tanáaw
|
1527822387, // تناو - tanáaw
|
||||||
{ ts: 1527818995, e: `lightning` }, // تندر - tandúr
|
1527818995, // تندر - tandúr
|
||||||
{ ts: 1527815362, e: `ball; (cannon) ball` }, // توپ - top
|
1527815362, // توپ - top
|
||||||
{ ts: 1527816820, e: `spit` }, // توک - took
|
1527816820, // توک - took
|
||||||
{ ts: 1527816520, e: `family, clan, tribe, people` }, // ټبر - Tabar
|
1527816520, // ټبر - Tabar
|
||||||
{ ts: 1527811348, e: `wound` }, // ټپ - Tap
|
1527811348, // ټپ - Tap
|
||||||
{ ts: 1527819566, e: `piece, part; cloth, fabric` }, // ټکر - TUkúr
|
1527819566, // ټکر - TUkúr
|
||||||
{ ts: 1527812213, e: `mosque` }, // جمات - jUmaat
|
1527812213, // جمات - jUmaat
|
||||||
{ ts: 1527811705, e: `structure` }, // جوړښت - joRuxt
|
1527811705, // جوړښت - joRuxt
|
||||||
{ ts: 1527814058, e: `answer, reply` }, // ځواب - dzawaab
|
1527814058, // ځواب - dzawaab
|
||||||
{ ts: 1527816887, e: `life, existence, energy, force` }, // ځواک - dzwaak
|
1527816887, // ځواک - dzwaak
|
||||||
{ ts: 1527814649, e: `market square, crossroads, paved area in front of entrance` }, // چوک - chok
|
1527814649, // چوک - chok
|
||||||
{ ts: 1527815065, e: `hammer` }, // څټک - tsaTak, tsTuk
|
1527815065, // څټک - tsaTak, tsTuk
|
||||||
{ ts: 1527814589, e: `side` }, // څنګ - tsang
|
1527814589, // څنګ - tsang
|
||||||
{ ts: 1527816228, e: `boundary, limit, extent` }, // حد - had
|
1527816228, // حد - had
|
||||||
{ ts: 1527813749, e: `government, reign, rule` }, // حکومت - hUkoomat
|
1527813749, // حکومت - hUkoomat
|
||||||
{ ts: 1527814125, e: `solution` }, // حل - hal
|
1527814125, // حل - hal
|
||||||
{ ts: 1527818703, e: `shirt` }, // خت - khut
|
1527818703, // خت - khut
|
||||||
{ ts: 1527813804, e: `sleep, dream` }, // خوب - khob
|
1527813804, // خوب - khob
|
||||||
{ ts: 1527812815, e: `safety, security` }, // خوندیتوب - khwundeetob
|
1527812815, // خوندیتوب - khwundeetob
|
||||||
{ ts: 1527813763, e: `religion, faith` }, // دین - deen
|
1527813763, // دین - deen
|
||||||
{ ts: 1527811517, e: `journey, travel` }, // سفر - safar
|
1527811517, // سفر - safar
|
||||||
{ ts: 1527815389, e: `age, life` }, // عمر - Úmur
|
1527815389, // عمر - Úmur
|
||||||
{ ts: 1527816746, e: `tooth` }, // غاښ - ghaax
|
1527816746, // غاښ - ghaax
|
||||||
{ ts: 1527812631, e: `ear` }, // غوږ - ghwuG, ghwaG
|
1527812631, // غوږ - ghwuG, ghwaG
|
||||||
{ ts: 1527812265, e: `decree, order` }, // فرمان - farmaan
|
1527812265, // فرمان - farmaan
|
||||||
{ ts: 1527817205, e: `film, movie` }, // فلم - film
|
1527817205, // فلم - film
|
||||||
{ ts: 1527812727, e: `year` }, // کال - kaal
|
1527812727, // کال - kaal
|
||||||
{ ts: 1527812817, e: `book` }, // کتاب - kitaab
|
1527812817, // کتاب - kitaab
|
||||||
{ ts: 1527812611, e: `step, move` }, // ګام - gaam
|
1527812611, // ګام - gaam
|
||||||
{ ts: 1527812641, e: `rose, flower` }, // ګل - gUl
|
1527812641, // ګل - gUl
|
||||||
{ ts: 1527812650, e: `threat, danger, challeng` }, // ګواښ - gwaax
|
1527812650, // ګواښ - gwaax
|
||||||
{ ts: 1527813521, e: `mourning, grief, grieving, deep sorrow` }, // ماتم - maatam
|
1527813521, // ماتم - maatam
|
||||||
{ ts: 1527812176, e: `evening` }, // ماښام - maaxaam
|
1527812176, // ماښام - maaxaam
|
||||||
{ ts: 1527813601, e: `death` }, // مرګ - marg
|
1527813601, // مرګ - marg
|
||||||
{ ts: 1527817691, e: `future` }, // مستقبل - mUstaqbil
|
1527817691, // مستقبل - mUstaqbil
|
||||||
{ ts: 1527811866, e: `damage, defect, loss` }, // نقصان - nUqsaan
|
1527811866, // نقصان - nUqsaan
|
||||||
{ ts: 1527815122, e: `name` }, // نوم - noom
|
1527815122, // نوم - noom
|
||||||
{ ts: 1527812661, e: `boy, young lad` }, // هلک - halík, halúk
|
1527812661, // هلک - halík, halúk
|
||||||
{ ts: 1566476070874, e: `street, road` }, // واټ - waaT
|
1566476070874, // واټ - waaT
|
||||||
{ ts: 1527816036, e: `authority, power` }, // واک - waak
|
1527816036, // واک - waak
|
||||||
{ ts: 1527815400, e: `time` }, // وخت - wakht
|
1527815400, // وخت - wakht
|
||||||
{ ts: 1527818582, e: `building, prosperity, habitable state` }, // ودانښت - wadaanuxt
|
1527818582, // ودانښت - wadaanuxt
|
||||||
{ ts: 1527811441, e: `door, gate, entrance` }, // ور - war
|
1527811441, // ور - war
|
||||||
{ ts: 1527815406, e: `homeland, home country` }, // وطن - watán
|
1527815406, // وطن - watán
|
||||||
{ ts: 1573149648251, e: `fellow country-man` }, // وطن وال - watanwaal
|
1573149648251, // وطن وال - watanwaal
|
||||||
{ ts: 1586428847646, e: `national (person), a citizen or person of that land` }, // وطنوال - watanwáal
|
1586428847646, // وطنوال - watanwáal
|
||||||
{ ts: 1527822208, e: `bat, coward, pipsqueak, hesitant person` }, // وطواط - watwáat
|
1527822208, // وطواط - watwáat
|
||||||
{ ts: 1527819571, e: `apprehension, anxiety, suspicion; imagination, whims, some problem made up in someone’s head` }, // وهم - wáhum, wahm
|
1527819571, // وهم - wáhum, wahm
|
||||||
{ ts: 1527816332, e: `pride, glory` }, // ویاړ - wyaaR
|
1527816332, // ویاړ - wyaaR
|
||||||
];
|
];
|
|
@ -7,122 +7,122 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527815408, e: "asleep" }, // ویده - weedú
|
1527815408, // ویده - weedú
|
||||||
{ ts: 1527812796, e: "good" }, // ښه - xu
|
1527812796, // ښه - xu
|
||||||
{ ts: 1527821744, e: "cook, chef" }, // آشپز - aashpáz
|
1527821744, // آشپز - aashpáz
|
||||||
{ ts: 1527812461, e: "hero, brave" }, // اتل - atul
|
1527812461, // اتل - atul
|
||||||
{ ts: 1527821649, e: "impressive, effective, influencing" }, // اثرناک - asarnáak
|
1527821649, // اثرناک - asarnáak
|
||||||
{ ts: 1527818704, e: "wide, spacious, extensive" }, // ارت - arát
|
1527818704, // ارت - arát
|
||||||
{ ts: 1578340121962, e: "free, independant" }, // ازاد - azáad
|
1578340121962, // ازاد - azáad
|
||||||
{ ts: 1527819418, e: "independant, autonomous" }, // خپلواک - khpulwaak
|
1527819418, // خپلواک - khpulwaak
|
||||||
{ ts: 1527817146, e: "resident; settled" }, // استوګن - astogan
|
1527817146, // استوګن - astogan
|
||||||
{ ts: 1527813713, e: "hopeful, pregnant" }, // امیدوار - Umeedwaar
|
1527813713, // امیدوار - Umeedwaar
|
||||||
{ ts: 1527819451, e: "Englishman, English (adjective)" }, // انګرېز - angréz
|
1527819451, // انګرېز - angréz
|
||||||
{ ts: 1527820346, e: "on-line" }, // انلاین - anlaayn
|
1527820346, // انلاین - anlaayn
|
||||||
{ ts: 1527813667, e: "important" }, // اهم - aham
|
1527813667, // اهم - aham
|
||||||
{ ts: 1598724912198, e: "dry" }, // اوچ - ooch
|
1598724912198, // اوچ - ooch
|
||||||
{ ts: 1527815138, e: "insurgent" }, // اورپک - orpak
|
1527815138, // اورپک - orpak
|
||||||
{ ts: 1586452587974, e: "free, available" }, // اوزګار - oozgáar
|
1586452587974, // اوزګار - oozgáar
|
||||||
{ ts: 1527816489, e: "faithful, believer" }, // ایماندار - eemaandaar
|
1527816489, // ایماندار - eemaandaar
|
||||||
{ ts: 1527820433, e: "valiant" }, // باتور - baatóor
|
1527820433, // باتور - baatóor
|
||||||
{ ts: 1527813425, e: "stingy" }, // بخیل - bakheel
|
1527813425, // بخیل - bakheel
|
||||||
{ ts: 1527812511, e: "bad" }, // بد - bud, bad
|
1527812511, // بد - bud, bad
|
||||||
{ ts: 1527812518, e: "equal, even, set up" }, // برابر - buraabur
|
1527812518, // برابر - buraabur
|
||||||
{ ts: 1527811861, e: "naked" }, // بربنډ - barbunD
|
1527811861, // بربنډ - barbunD
|
||||||
{ ts: 1527811511, e: "full, complete" }, // بشپړ - bushpuR
|
1527811511, // بشپړ - bushpuR
|
||||||
{ ts: 1527812515, e: "other, next" }, // بل - bul
|
1527812515, // بل - bul
|
||||||
{ ts: 1527815725, e: "knowledgeable, accustomed" }, // بلد - balad
|
1527815725, // بلد - balad
|
||||||
{ ts: 1577301753727, e: "closed" }, // بند - band
|
1577301753727, // بند - band
|
||||||
{ ts: 1527812490, e: "useless" }, // بې کار - be kaar
|
1527812490, // بې کار - be kaar
|
||||||
{ ts: 1527812031, e: "separate, different" }, // بېل - bel
|
1527812031, // بېل - bel
|
||||||
{ ts: 1527815144, e: "clean, pure" }, // پاک - paak
|
1527815144, // پاک - paak
|
||||||
{ ts: 1527815201, e: "hidden" }, // پټ - puT
|
1527815201, // پټ - puT
|
||||||
{ ts: 1527815179, e: "wide" }, // پلن - plun
|
1527815179, // پلن - plun
|
||||||
{ ts: 1527819059, e: "thick, fat" }, // پنډ - punD
|
1527819059, // پنډ - punD
|
||||||
{ ts: 1611767359178, e: "compassionate" }, // ترسناک - tarsnáak
|
1611767359178, // ترسناک - tarsnáak
|
||||||
{ ts: 1527813270, e: "sour" }, // تروش - troosh
|
1527813270, // تروش - troosh
|
||||||
{ ts: 1527813817, e: "narrow, cramped" }, // تنګ - tang
|
1527813817, // تنګ - tang
|
||||||
{ ts: 1527816354, e: "ready" }, // تیار - tayaar
|
1527816354, // تیار - tayaar
|
||||||
{ ts: 1527817056, e: "sharp, fast" }, // تېز - tez
|
1527817056, // تېز - tez
|
||||||
{ ts: 1527814076, e: "societal, social" }, // ټولنیز - Toluneez
|
1527814076, // ټولنیز - Toluneez
|
||||||
{ ts: 1527819864, e: "low" }, // ټیټ - TeeT
|
1527819864, // ټیټ - TeeT
|
||||||
{ ts: 1527811894, e: "firm, tough, rigid" }, // ټینګ - Teeng
|
1527811894, // ټینګ - Teeng
|
||||||
{ ts: 1527812943, e: "constant, stable, proven" }, // ثابت - saabit
|
1527812943, // ثابت - saabit
|
||||||
{ ts: 1527813085, e: "heavy, difficult" }, // ثقیل - saqeel
|
1527813085, // ثقیل - saqeel
|
||||||
{ ts: 1527820479, e: "ignorant" }, // جاهل - jaahíl
|
1527820479, // جاهل - jaahíl
|
||||||
{ ts: 1588160800930, e: "surgeon" }, // جراح - jarráah
|
1588160800930, // جراح - jarráah
|
||||||
{ ts: 1527812707, e: "high, tall" }, // جګ - jig, jug
|
1527812707, // جګ - jig, jug
|
||||||
{ ts: 1527816944, e: "clear, evident" }, // جوت - jawat
|
1527816944, // جوت - jawat
|
||||||
{ ts: 1527822996, e: "alongside, adjoining" }, // جوخت - jokht
|
1527822996, // جوخت - jokht
|
||||||
{ ts: 1527812711, e: "well, healthy" }, // جوړ - joR
|
1527812711, // جوړ - joR
|
||||||
{ ts: 1527816323, e: "shining, sparkling" }, // ځلاند - dzalaand
|
1527816323, // ځلاند - dzalaand
|
||||||
{ ts: 1527812291, e: "young, youthful" }, // ځوان - dzwaan
|
1527812291, // ځوان - dzwaan
|
||||||
{ ts: 1527820112, e: "hanging" }, // ځوړند - dzwáRund
|
1527820112, // ځوړند - dzwáRund
|
||||||
{ ts: 1527819672, e: "crafty" }, // چالاک - chaaláak
|
1527819672, // چالاک - chaaláak
|
||||||
{ ts: 1527811230, e: "quick, fast" }, // چټک - chaTak
|
1527811230, // چټک - chaTak
|
||||||
{ ts: 1527812524, e: "started, in motion" }, // چلان - chalaan
|
1527812524, // چلان - chalaan
|
||||||
{ ts: 1527815370, e: "clear, apparent" }, // څرګند - tsărgund
|
1527815370, // څرګند - tsărgund
|
||||||
{ ts: 1576366107077, e: "straight, upright" }, // څک - tsak
|
1576366107077, // څک - tsak
|
||||||
{ ts: 1527812113, e: "present, on hand, ready" }, // حاضر - haazir, haazur
|
1527812113, // حاضر - haazir, haazur
|
||||||
{ ts: 1527820699, e: "pregnant, carrying" }, // حامل - haamíl
|
1527820699, // حامل - haamíl
|
||||||
{ ts: 1527819824, e: "greedy" }, // حریص - harées
|
1527819824, // حریص - harées
|
||||||
{ ts: 1527812669, e: "sensitive" }, // حساس - hasaas
|
1527812669, // حساس - hasaas
|
||||||
{ ts: 1527812057, e: "raw, unripe" }, // خام - khaam
|
1527812057, // خام - khaam
|
||||||
{ ts: 1527811523, e: "traitor, treacherous" }, // خاین - khaayin
|
1527811523, // خاین - khaayin
|
||||||
{ ts: 1527814219, e: "relative, one's own" }, // خپل - khpul
|
1527814219, // خپل - khpul
|
||||||
{ ts: 1527812795, e: "relative" }, // خپلوان - khpulwaan
|
1527812795, // خپلوان - khpulwaan
|
||||||
{ ts: 1527812808, e: "poor, miserable" }, // خوار - khwaar
|
1527812808, // خوار - khwaar
|
||||||
{ ts: 1527814880, e: "tall" }, // دنګ - dung
|
1527814880, // دنګ - dung
|
||||||
{ ts: 1527812537, e: "assured" }, // ډاډمن - DaaDmun
|
1527812537, // ډاډمن - DaaDmun
|
||||||
{ ts: 1527812583, e: "full" }, // ډک - Duk
|
1527812583, // ډک - Duk
|
||||||
{ ts: 1527822674, e: "gaunt" }, // ډنګر - Dungár, Dangár
|
1527822674, // ډنګر - Dungár, Dangár
|
||||||
{ ts: 1527817256, e: "sunk" }, // ډوب - Doob
|
1527817256, // ډوب - Doob
|
||||||
{ ts: 1527814277, e: "healthy" }, // روغ - rogh
|
1527814277, // روغ - rogh
|
||||||
{ ts: 1609780006604, e: "fruitful" }, // زرخېز - zarkhéz
|
1609780006604, // زرخېز - zarkhéz
|
||||||
{ ts: 1527817116, e: "green, flourishing" }, // زرغون - zarghoon
|
1527817116, // زرغون - zarghoon
|
||||||
{ ts: 1527814026, e: "golden" }, // زرین - zareen
|
1527814026, // زرین - zareen
|
||||||
{ ts: 1567594312839, e: "brave" }, // زړه ور - zuRawár
|
1567594312839, // زړه ور - zuRawár
|
||||||
{ ts: 1527815848, e: "committed" }, // ژمن - jzman
|
1527815848, // ژمن - jzman
|
||||||
{ ts: 1527813498, e: "light" }, // سپک - spuk
|
1527813498, // سپک - spuk
|
||||||
{ ts: 1578329248464, e: "white" }, // سپین - speen
|
1578329248464, // سپین - speen
|
||||||
{ ts: 1527811860, e: "great" }, // ستر - stur
|
1527811860, // ستر - stur
|
||||||
{ ts: 1527820178, e: "problematic" }, // ستونزمن - stoonzmán
|
1527820178, // ستونزمن - stoonzmán
|
||||||
{ ts: 1527815246, e: "difficult" }, // سخت - sakht
|
1527815246, // سخت - sakht
|
||||||
{ ts: 1527817262, e: "barren" }, // شنډ - shanD
|
1527817262, // شنډ - shanD
|
||||||
{ ts: 1527813426, e: "stingy" }, // شوم - shoom
|
1527813426, // شوم - shoom
|
||||||
{ ts: 1527812625, e: "big" }, // غټ - ghuT, ghaT
|
1527812625, // غټ - ghuT, ghaT
|
||||||
{ ts: 1527811846, e: "successful" }, // کامیاب - kaamyaab
|
1527811846, // کامیاب - kaamyaab
|
||||||
{ ts: 1527823678, e: "lazy" }, // کاهل - kaahíl
|
1527823678, // کاهل - kaahíl
|
||||||
{ ts: 1527814896, e: "proud, arrogant" }, // کبرجن - kaburjun
|
1527814896, // کبرجن - kaburjun
|
||||||
{ ts: 1527813117, e: "firm, solid" }, // کلک - klak, kluk
|
1527813117, // کلک - klak, kluk
|
||||||
{ ts: 1578769492475, e: "few, little" }, // کم - kam
|
1578769492475, // کم - kam
|
||||||
// { ts: 1527814253, e: "mixed up" }, // ګډ وډ // TODO: FIX INFLECTION MACHINE FOR DOUBLES!
|
1527814253, // ګډ وډ // TODO: FIX INFLECTION MACHINE FOR DOUBLES!
|
||||||
{ ts: 1578769409512, e: "weak" }, // کمزور - kamzór
|
1578769409512, // کمزور - kamzór
|
||||||
{ ts: 1527812639, e: "dear, difficult" }, // ګران - graan
|
1527812639, // ګران - graan
|
||||||
{ ts: 1527816786, e: "all" }, // ګرد - gurd
|
1527816786, // ګرد - gurd
|
||||||
{ ts: 1527814811, e: "warm, hot" }, // ګرم - garm, garum
|
1527814811, // ګرم - garm, garum
|
||||||
{ ts: 1527817662, e: "guilty" }, // ګرم - gram
|
1527817662, // ګرم - gram
|
||||||
{ ts: 1527812308, e: "thick, lots" }, // ګڼ - gaN
|
1527812308, // ګڼ - gaN
|
||||||
{ ts: 1527813848, e: "desiring, eager" }, // لېوال - lewaal
|
1527813848, // لېوال - lewaal
|
||||||
{ ts: 1527816011, e: "broken" }, // مات - maat
|
1527816011, // مات - maat
|
||||||
{ ts: 1527812881, e: "child" }, // ماشوم - maashoom
|
1527812881, // ماشوم - maashoom
|
||||||
{ ts: 1527817007, e: "known" }, // مالوم - maaloom
|
1527817007, // مالوم - maaloom
|
||||||
{ ts: 1527814321, e: "positive" }, // مثبت - mUsbat
|
1527814321, // مثبت - mUsbat
|
||||||
{ ts: 1527811264, e: "condemned" }, // محکوم - mahkoom
|
1527811264, // محکوم - mahkoom
|
||||||
{ ts: 1527814802, e: "foul" }, // مردار - mUrdáar
|
1527814802, // مردار - mUrdáar
|
||||||
{ ts: 1527821812, e: "arrogant" }, // مغرور - maghróor
|
1527821812, // مغرور - maghróor
|
||||||
{ ts: 1527820222, e: "lying down" }, // ملاست - mlaast
|
1527820222, // ملاست - mlaast
|
||||||
{ ts: 1527814344, e: "important" }, // مهم - mUhím
|
1527814344, // مهم - mUhím
|
||||||
{ ts: 1527816033, e: "uncommon" }, // نادر - naadir
|
1527816033, // نادر - naadir
|
||||||
{ ts: 1527815106, e: "sitting, seated" }, // ناست - naast
|
1527815106, // ناست - naast
|
||||||
{ ts: 1527815127, e: "nurse" }, // نرس - nurs
|
1527815127, // نرس - nurs
|
||||||
{ ts: 1527821673, e: "moist, damp, wet" }, // نمجن - namjún
|
1527821673, // نمجن - namjún
|
||||||
{ ts: 1527815130, e: "dry, land, ground" }, // وچ - wuch, wUch
|
1527815130, // وچ - wuch, wUch
|
||||||
{ ts: 1527817486, e: "ruined, destroyed; destructive, bad, naughty" }, // وران - wraan
|
1527817486, // وران - wraan
|
||||||
{ ts: 1527814373, e: "lost" }, // ورک - wruk
|
1527814373, // ورک - wruk
|
||||||
{ ts: 1527822838, e: "decayed, spoiled, rotten" }, // وروست - wrost
|
1527822838, // وروست - wrost
|
||||||
{ ts: 1609949334478, e: "roasted" }, // وریت - wreet
|
1609949334478, // وریت - wreet
|
||||||
{ ts: 1527811544, e: "standing" }, // ولاړ - waláaR, wuláaR
|
1527811544, // ولاړ - waláaR, wuláaR
|
||||||
{ ts: 1527815498, e: "aforementioned" }, // یاد - yaad
|
1527815498, // یاد - yaad
|
||||||
{ ts: 1527815434, e: "cold" }, // یخ - yakh, yukh
|
1527815434, // یخ - yakh, yukh
|
||||||
];
|
];
|
|
@ -1,25 +1,25 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1568926976497, e: `x-ray` }, // اکسرې - iksre
|
1568926976497, // اکسرې - iksre
|
||||||
{ ts: 1602179757779, e: `alphabet` }, // الف بې - alif be
|
1602179757779, // الف بې - alif be
|
||||||
{ ts: 1527813840, e: `ashes` }, // ایرې - eere
|
1527813840, // ایرې - eere
|
||||||
{ ts: 1527816692, e: `glasses, spectacles` }, // اینکې - aynake
|
1527816692, // اینکې - aynake
|
||||||
{ ts: 1527819286, e: `stairs, steps, staircase` }, // پاشتقې - paashtáqe
|
1527819286, // پاشتقې - paashtáqe
|
||||||
{ ts: 1527816299, e: `money (plural of پېسې)` }, // پیسې - peyse
|
1527816299, // پیسې - peyse
|
||||||
{ ts: 1527814529, e: `buttermilk` }, // تروې - turwe
|
1527814529, // تروې - turwe
|
||||||
{ ts: 1527816369, e: `widow, woman` }, // تورسرې - torsăre
|
1527816369, // تورسرې - torsăre
|
||||||
{ ts: 1577408787088, e: `sprey (as in a medicinal spray)` }, // سپرې - spre
|
1577408787088, // سپرې - spre
|
||||||
{ ts: 1527822255, e: `break of dawn, first light of day, sunrise` }, // سپېدې - spedé
|
1527822255, // سپېدې - spedé
|
||||||
{ ts: 1626765107329, e: `chickenpox, chicken pox` }, // شرې - sharé
|
1626765107329, // شرې - sharé
|
||||||
{ ts: 1527815008, e: `milk` }, // شودې - shoode
|
1527815008, // شودې - shoode
|
||||||
{ ts: 1527822131, e: `raw rice, unprocessed rice` }, // شولې - shole
|
1527822131, // شولې - shole
|
||||||
{ ts: 1527815009, e: `milk (plural of شيده)` }, // شیدې - sheede
|
1527815009, // شیدې - sheede
|
||||||
{ ts: 1527823571, e: `spit, saliva` }, // ښیالمې - xyaalmé
|
1527823571, // ښیالمې - xyaalmé
|
||||||
{ ts: 1527816530, e: `sister in law` }, // ښینې - xeene
|
1527816530, // ښینې - xeene
|
||||||
{ ts: 1527823567, e: `spit, saliva, slobber, slime` }, // لاړې - laaRe
|
1527823567, // لاړې - laaRe
|
||||||
{ ts: 1527822275, e: `dishes, pots, pans` }, // لوښې - looxe
|
1527822275, // لوښې - looxe
|
||||||
{ ts: 1617443138210, e: `urine, pee, piss` }, // مچیازې - michyaaze, muchyaaze
|
1617443138210, // مچیازې - michyaaze, muchyaaze
|
||||||
{ ts: 1527814420, e: `yogurt` }, // مستې - maste
|
1527814420, // مستې - maste
|
||||||
{ ts: 1577999538077, e: `a sound/cry used to drive sheep on` }, // هرې - hire
|
1577999538077, // هرې - hire
|
||||||
{ ts: 1586551382412, e: `rice` }, // وریژې - wreejze
|
1586551382412, // وریژې - wreejze
|
||||||
{ ts: 1527820261, e: `plow, plowing, plough, ploughing` }, // یوې - yuwe
|
1527820261, // یوې - yuwe
|
||||||
];
|
];
|
|
@ -7,28 +7,28 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527820771, e: "population, number of settlers; prosperity, well-being; organization of public services and amenities; construction" }, // آباداني - aabaadaanee
|
1527820771, // آباداني - aabaadaanee
|
||||||
{ ts: 1527813939, e: "freedom, independence" }, // آزادي - aazaadee
|
1527813939, // آزادي - aazaadee
|
||||||
{ ts: 1527818402, e: "championship; courage" }, // اتلولي - atalwalée
|
1527818402, // اتلولي - atalwalée
|
||||||
{ ts: 1527814060, e: "ease" }, // اساني - asaanee
|
1527814060, // اساني - asaanee
|
||||||
{ ts: 1527821293, e: "preparation, readiness, planning" }, // امادګي - amaadagee
|
1527821293, // امادګي - amaadagee
|
||||||
{ ts: 1527819502, e: "kingship, kingdom, rule, throne, authority" }, // باچهي - baachahee
|
1527819502, // باچهي - baachahee
|
||||||
{ ts: 1527820035, e: "dominion, holding sway over someone" }, // باداري - baadaaree
|
1527820035, // باداري - baadaaree
|
||||||
{ ts: 1527817732, e: "misfortune, difficulty" }, // بدبختي - badbakhtee
|
1527817732, // بدبختي - badbakhtee
|
||||||
{ ts: 1588786872582, e: "shame, disrepute, dishonour" }, // بدنامي - badnaamee
|
1588786872582, // بدنامي - badnaamee
|
||||||
{ ts: 1573682378816, e: "sickness, illness" }, // بیماري - beemaaree
|
1573682378816, // بیماري - beemaaree
|
||||||
{ ts: 1527816817, e: "cleanliness, hygiene" }, // پاکوالي - paakwaalee
|
1527816817, // پاکوالي - paakwaalee
|
||||||
{ ts: 1586204619186, e: "righteousness, abstinence, self-control" }, // پرهېزګاري - parhezgaaree
|
1586204619186, // پرهېزګاري - parhezgaaree
|
||||||
{ ts: 1584444376984, e: "patriarchy" }, // پلارواکي - plaarwaakee
|
1584444376984, // پلارواکي - plaarwaakee
|
||||||
{ ts: 1527818744, e: "carpentry" }, // ترکاڼي - tarkaaNee
|
1527818744, // ترکاڼي - tarkaaNee
|
||||||
{ ts: 1527815337, e: "consolation, comfort, satisfaction" }, // تسلي - tasallee
|
1527815337, // تسلي - tasallee
|
||||||
{ ts: 1527819521, e: "happiness (خوشحالي)" }, // خوشالي - khoshaalee
|
1527819521, // خوشالي - khoshaalee
|
||||||
{ ts: 1527818037, e: "good fortune, good luck, hapiness" }, // خوشبختي - khooshbakhtee
|
1527818037, // خوشبختي - khooshbakhtee
|
||||||
{ ts: 1527815914, e: "optimism" }, // خوشبیني - khooshbeenee
|
1527815914, // خوشبیني - khooshbeenee
|
||||||
{ ts: 1527811877, e: "friendship" }, // دوستي - dostee
|
1527811877, // دوستي - dostee
|
||||||
{ ts: 1527818019, e: "shopkeeping, retail store selling" }, // دوکانداري - dookaandaaree
|
1527818019, // دوکانداري - dookaandaaree
|
||||||
{ ts: 1527822080, e: "democracy" }, // دېموکراسي - demokraasee
|
1527822080, // دېموکراسي - demokraasee
|
||||||
{ ts: 1527813462, e: "key" }, // کیلي - keelee
|
1527813462, // کیلي - keelee
|
||||||
{ ts: 1527814492, e: "cattle farming" }, // ګاوداري - gaawdaaree
|
1527814492, // ګاوداري - gaawdaaree
|
||||||
{ ts: 1610013679820, e: "brotherhood" }, // ورورولي - wrorwalée
|
1610013679820, // ورورولي - wrorwalée
|
||||||
];
|
];
|
|
@ -1,13 +1,13 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527821971, e: `second wife of own husband` }, // بن - bun
|
1527821971, // بن - bun
|
||||||
{ ts: 1527816397, e: `aunt` }, // ترور - tror
|
1527816397, // ترور - tror
|
||||||
{ ts: 1578704593901, e: `aunt (paternal uncle's wife)` }, // تندار - tandaar
|
1578704593901, // تندار - tandaar
|
||||||
{ ts: 1527812785, e: `sister` }, // خور - khor
|
1527812785, // خور - khor
|
||||||
{ ts: 1527812861, e: `daughter` }, // لور - loor
|
1527812861, // لور - loor
|
||||||
{ ts: 1527812928, e: `mother, mom` }, // مور - mor
|
1527812928, // مور - mor
|
||||||
{ ts: 1527812912, e: `lady, woman, wife` }, // مېرمن - mermán
|
1527812912, // مېرمن - mermán
|
||||||
{ ts: 1527816476, e: `stepsister, half sister` }, // مېرېنۍ خور - merenuy khor
|
1527816476, // مېرېنۍ خور - merenuy khor
|
||||||
{ ts: 1527823521, e: `daughter-in-law` }, // نږور - nGor
|
1527823521, // نږور - nGor
|
||||||
{ ts: 1527816350, e: `brothers wife, sister-in-law` }, // ورندار - wrundaar
|
1527816350, // ورندار - wrundaar
|
||||||
{ ts: 1527816485, e: `wife of husbands brother, wife of brother-in-law` }, // یور - yor
|
1527816485, // یور - yor
|
||||||
];
|
];
|
|
@ -1,37 +1,37 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527821817, e: `uncle (paternal)` }, // اکا - akáa
|
1527821817, // اکا - akáa
|
||||||
{ ts: 1527816411, e: `father, grandfather (vocative or in child's speech)` }, // بابا - baabaa
|
1527816411, // بابا - baabaa
|
||||||
{ ts: 1527819439, e: `king, ruler, president, padishah` }, // باچا - baacháa
|
1527819439, // باچا - baacháa
|
||||||
{ ts: 1527823298, e: `sparrow-hawk, eagle` }, // باښه - baaxá
|
1527823298, // باښه - baaxá
|
||||||
{ ts: 1527817718, e: `slave, servant, a human, person (as in a slave of God)` }, // بنده - bandá
|
1527817718, // بنده - bandá
|
||||||
{ ts: 1527815031, e: `prisoner, captive` }, // بندي - bandee
|
1527815031, // بندي - bandee
|
||||||
{ ts: 1527815142, e: `king` }, // پاچا - paachaa
|
1527815142, // پاچا - paachaa
|
||||||
{ ts: 1527817280, e: `leper` }, // جذامي - jUzaamee
|
1527817280, // جذامي - jUzaamee
|
||||||
{ ts: 1527814236, e: `pot smoker, pothead, someone addicted to marijuana, pot, hash` }, // چرسي - charsee
|
1527814236, // چرسي - charsee
|
||||||
{ ts: 1578618561154, e: `Haji, someone who has gone on the Hajj` }, // حاجي - haajee
|
1578618561154, // حاجي - haajee
|
||||||
{ ts: 1527821193, e: `supporter, protector, defender, patron, saviour` }, // حامي - haamee
|
1527821193, // حامي - haamee
|
||||||
{ ts: 1591711877815, e: `washerman, someone who does the laundry` }, // دوبي - dobée
|
1591711877815, // دوبي - dobée
|
||||||
{ ts: 1527820139, e: `rabab player, rubab player` }, // ربابي - rabaabee
|
1527820139, // ربابي - rabaabee
|
||||||
{ ts: 1619278755267, e: `troubling, pestering` }, // ربړنه - rabaRúna
|
1619278755267, // ربړنه - rabaRúna
|
||||||
{ ts: 1577066022588, e: `cupbearer, butler, bartender, alchohol maker` }, // ساقي - saaqée
|
1577066022588, // ساقي - saaqée
|
||||||
{ ts: 1527822817, e: `soldier, warrior, guard` }, // سپاهي - sipaahee
|
1527822817, // سپاهي - sipaahee
|
||||||
{ ts: 1527812975, e: `barber, hairdresser` }, // سلماني - salmaanee
|
1527812975, // سلماني - salmaanee
|
||||||
{ ts: 1527819414, e: `prince` }, // شاهزاده - shaahzaadá
|
1527819414, // شاهزاده - shaahzaadá
|
||||||
{ ts: 1527818084, e: `drinker, drunkard, alcoholic, wine-bibber` }, // شرابي - sharaabee
|
1527818084, // شرابي - sharaabee
|
||||||
{ ts: 1527821950, e: `prince` }, // شهزاده - shahzaadá
|
1527821950, // شهزاده - shahzaadá
|
||||||
{ ts: 1588158828142, e: `hunter` }, // ښکاري - xkaaree
|
1588158828142, // ښکاري - xkaaree
|
||||||
{ ts: 1527815206, e: `judge, religious authority/judge` }, // قاضي - qaazee
|
1527815206, // قاضي - qaazee
|
||||||
{ ts: 1527818500, e: `contractor, supplier` }, // قراردادي - qaraardaadee
|
1527818500, // قراردادي - qaraardaadee
|
||||||
{ ts: 1527816446, e: `paternal uncle, term of address for elderly man` }, // کاکا - kaakaa
|
1527816446, // کاکا - kaakaa
|
||||||
{ ts: 1595232159907, e: `begger, panhandler` }, // ګدا - gadáa
|
1595232159907, // ګدا - gadáa
|
||||||
{ ts: 1527816512, e: `elder brother, general form of familiar and respectful address` }, // لالا - laalaa
|
1527816512, // لالا - laalaa
|
||||||
{ ts: 1527812878, e: `uncle (maternal), respectful form of address` }, // ماما - maamaa
|
1527812878, // ماما - maamaa
|
||||||
{ ts: 1610556640847, e: `census` }, // مردمشماري - mărdamshUmaaree
|
1610556640847, // مردمشماري - mărdamshUmaaree
|
||||||
{ ts: 1527815484, e: `mullah, priest` }, // ملا - mUllaa
|
1527815484, // ملا - mUllaa
|
||||||
{ ts: 1527821714, e: `parallel, matching, appropriate, identical` }, // موازي - mUwaazée
|
1527821714, // موازي - mUwaazée
|
||||||
{ ts: 1527816514, e: `shoemaker, shoe repairman, cobbler` }, // موچي - mochee
|
1527816514, // موچي - mochee
|
||||||
{ ts: 1527823093, e: `prophet` }, // نبي - nabee
|
1527823093, // نبي - nabee
|
||||||
{ ts: 1579041957559, e: `call, appeal, shout, summoning` }, // ندا - nadáa
|
1579041957559, // ندا - nadáa
|
||||||
{ ts: 1527816253, e: `grandson` }, // نواسه - nawaasa
|
1527816253, // نواسه - nawaasa
|
||||||
{ ts: 1527819971, e: `governor` }, // والي - waalée
|
1527819971, // والي - waalée
|
||||||
];
|
];
|
|
@ -1,133 +1,133 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527818948, e: `sneezing, sneeze` }, // اټسکی - aTúskey
|
1527818948, // اټسکی - aTúskey
|
||||||
{ ts: 1573681135691, e: `tribal constable, tribal offical with police powers` }, // اربکی - arbakéy
|
1573681135691, // اربکی - arbakéy
|
||||||
{ ts: 1573659054031, e: `width, spaciousness` }, // ارتوالی - artwaaley, aratwaaley
|
1573659054031, // ارتوالی - artwaaley, aratwaaley
|
||||||
{ ts: 1527811890, e: `thorn, prickle` }, // ازغی - azghey
|
1527811890, // ازغی - azghey
|
||||||
{ ts: 1527817036, e: `representative, envoy, ambassador, commissioner` }, // استازی - astaazey
|
1527817036, // استازی - astaazey
|
||||||
{ ts: 1527816982, e: `residence, dwelling; hostel, dormitory` }, // استوګنځی - astogundzey
|
1527816982, // استوګنځی - astogundzey
|
||||||
{ ts: 1527818489, e: `yawn, sigh, deep breath, shivering` }, // اسوېلی - asweley
|
1527818489, // اسوېلی - asweley
|
||||||
{ ts: 1527822497, e: `cheek` }, // اننګی - anangey
|
1527822497, // اننګی - anangey
|
||||||
{ ts: 1527821967, e: `beaver, seal` }, // اوبسپی - obspéy
|
1527821967, // اوبسپی - obspéy
|
||||||
{ ts: 1527822190, e: `stove, oven, furnace, hearth, floor of a fireplace` }, // اور غالی - orgháaley
|
1527822190, // اور غالی - orgháaley
|
||||||
{ ts: 1527821545, e: `volcano` }, // اورشیندی - orsheendéy
|
1527821545, // اورشیندی - orsheendéy
|
||||||
{ ts: 1527819192, e: `train` }, // اورګاډی - orgáaDey
|
1527819192, // اورګاډی - orgáaDey
|
||||||
{ ts: 1527815585, e: `summer` }, // اوړی - oRey
|
1527815585, // اوړی - oRey
|
||||||
{ ts: 1623044357441, e: `tuft, clump, shock of hair` }, // ببوتنکی - bubootúnkey
|
1623044357441, // ببوتنکی - bubootúnkey
|
||||||
{ ts: 1527821668, e: `spark, speck, flicker` }, // بڅری - batsúrey
|
1527821668, // بڅری - batsúrey
|
||||||
{ ts: 1527821239, e: `kidney` }, // بډوری - baDóorey
|
1527821239, // بډوری - baDóorey
|
||||||
{ ts: 1527821099, e: `earring` }, // برغوږی - barghwáGey
|
1527821099, // برغوږی - barghwáGey
|
||||||
{ ts: 1527822629, e: `lid, cover` }, // برغولی - barghóley
|
1527822629, // برغولی - barghóley
|
||||||
{ ts: 1527811903, e: `success, victory` }, // بری - barey
|
1527811903, // بری - barey
|
||||||
{ ts: 1594904072731, e: `bracelet` }, // بنګړی - bangRéy
|
1594904072731, // بنګړی - bangRéy
|
||||||
{ ts: 1527817159, e: `plant` }, // بوټی - booTey
|
1527817159, // بوټی - booTey
|
||||||
{ ts: 1527815055, e: `terrible` }, // بوږنوړی - boGnwaRey
|
1527815055, // بوږنوړی - boGnwaRey
|
||||||
{ ts: 1610618917483, e: `orphanage, nursery` }, // پالنځی - paalundzéy
|
1610618917483, // پالنځی - paalundzéy
|
||||||
{ ts: 1527814666, e: `final point, end point` }, // پای ټکی - paayTakey
|
1527814666, // پای ټکی - paayTakey
|
||||||
{ ts: 1527816195, e: `small turban` }, // پټکی - paTkey
|
1527816195, // پټکی - paTkey
|
||||||
{ ts: 1527811611, e: `field, place where crops are sown` }, // پټی - paTey
|
1527811611, // پټی - paTey
|
||||||
{ ts: 1588762458105, e: `kitchen` }, // پخلنځی - pukhlandzéy
|
1588762458105, // پخلنځی - pukhlandzéy
|
||||||
{ ts: 1527816059, e: `cooking, preparation of food; wisdom, maturity` }, // پخلی - pakhley
|
1527816059, // پخلی - pakhley
|
||||||
{ ts: 1527821241, e: `acorn` }, // پرګی - purgéy
|
1527821241, // پرګی - purgéy
|
||||||
{ ts: 1527813812, e: `veil, covering for women, cover` }, // پړونی - paRóoney
|
1527813812, // پړونی - paRóoney
|
||||||
{ ts: 1527822385, e: `rope, cable, cord` }, // پړی - púRey
|
1527822385, // پړی - púRey
|
||||||
{ ts: 1527812980, e: `whispering, murmuring, rumor, gossip` }, // پس پسی - puspusey
|
1527812980, // پس پسی - puspusey
|
||||||
{ ts: 1527814005, e: `spring, springtime (season)` }, // پسرلی - psarléy, pusărléy
|
1527814005, // پسرلی - psarléy, pusărléy
|
||||||
{ ts: 1527821229, e: `kidney` }, // پښتورګی - paxtawurgey
|
1527821229, // پښتورګی - paxtawurgey
|
||||||
{ ts: 1527817035, e: `mission, delegation` }, // پلاوی - plaawey
|
1527817035, // پلاوی - plaawey
|
||||||
{ ts: 1527815187, e: `mat` }, // پوزی - pozey
|
1527815187, // پوزی - pozey
|
||||||
{ ts: 1527816627, e: `fleece, pelt, skin, shell, rind, bark; ear lobe` }, // پوستکی - postukey
|
1527816627, // پوستکی - postukey
|
||||||
{ ts: 1527819332, e: `kidney` }, // پوښتورګی - pooxtawúrgey
|
1527819332, // پوښتورګی - pooxtawúrgey
|
||||||
{ ts: 1527819496, e: `understanding, comprehension` }, // پوهاوی - pohaawéy
|
1527819496, // پوهاوی - pohaawéy
|
||||||
{ ts: 1527815168, e: `load, weight, burden` }, // پېټی - peTéy
|
1527815168, // پېټی - peTéy
|
||||||
{ ts: 1527815927, e: `customer` }, // پېرونکی - peroonkey
|
1527815927, // پېرونکی - peroonkey
|
||||||
{ ts: 1527815017, e: `cream` }, // پېروی - perúwey, peráwey
|
1527815017, // پېروی - perúwey, peráwey
|
||||||
{ ts: 1527815325, e: `violence` }, // تاوتریخوالی - taawtreekhwaaley
|
1527815325, // تاوتریخوالی - taawtreekhwaaley
|
||||||
{ ts: 1611397750325, e: `screwdriver, screw` }, // تاوی - taawéy
|
1611397750325, // تاوی - taawéy
|
||||||
{ ts: 1622374978659, e: `hatchet` }, // تبرګی - tubúrgey
|
1622374978659, // تبرګی - tubúrgey
|
||||||
{ ts: 1527818705, e: `gusset (in a shirt)` }, // تخرګی - tkhurgéy
|
1527818705, // تخرګی - tkhurgéy
|
||||||
{ ts: 1527814392, e: `band, bandage` }, // تړونی - taRooney
|
1527814392, // تړونی - taRooney
|
||||||
{ ts: 1527822723, e: `side, groin, empty place, void` }, // تشی - túshey
|
1527822723, // تشی - túshey
|
||||||
{ ts: 1577585114379, e: `sole (of a shoe); yard, compound; palm` }, // تلی - táley
|
1577585114379, // تلی - táley
|
||||||
{ ts: 1527816630, e: `forehead, brow, slope` }, // تندی - tandey
|
1527816630, // تندی - tandey
|
||||||
{ ts: 1527821980, e: `bellyband (of a harness)` }, // تڼی - taNéy
|
1527821980, // تڼی - taNéy
|
||||||
{ ts: 1527819719, e: `spleen` }, // توری - tórey
|
1527819719, // توری - tórey
|
||||||
{ ts: 1527819721, e: `letter, letter of the alphabet` }, // توری - tórey
|
1527819721, // توری - tórey
|
||||||
{ ts: 1527819622, e: `rocket, missile` }, // توغندی - toghandéy
|
1527819622, // توغندی - toghandéy
|
||||||
{ ts: 1527814705, e: `element, item, material; thing, material, kind, type` }, // توکی - tokey
|
1527814705, // توکی - tokey
|
||||||
{ ts: 1527819563, e: `piece, small piece; a length (of cloth); blanket` }, // ټکری - TUkréy
|
1527819563, // ټکری - TUkréy
|
||||||
{ ts: 1577408381145, e: `shawl, head-covering` }, // ټکری - Tikréy
|
1577408381145, // ټکری - Tikréy
|
||||||
{ ts: 1527814667, e: `word; point; dot` }, // ټکی - Tákey
|
1527814667, // ټکی - Tákey
|
||||||
{ ts: 1527813617, e: `shawl, head covering` }, // ټیکری - Teekréy
|
1527813617, // ټیکری - Teekréy
|
||||||
{ ts: 1527819733, e: `young, youth, young lad` }, // ځلمی - dzalméy
|
1527819733, // ځلمی - dzalméy
|
||||||
{ ts: 1527815465, e: `official authority, official, authority` }, // چارواکی - chaarwaakey
|
1527815465, // چارواکی - chaarwaakey
|
||||||
{ ts: 1527822356, e: `worm, small insect` }, // چنجی - chinjéy
|
1527822356, // چنجی - chinjéy
|
||||||
{ ts: 1527822808, e: `basin, bowl` }, // چنی - chanéy
|
1527822808, // چنی - chanéy
|
||||||
{ ts: 1527822357, e: `worm, small insect` }, // چینجی - cheenjéy
|
1527822357, // چینجی - cheenjéy
|
||||||
{ ts: 1527819046, e: `drop` }, // څاڅکی - tsáatskey
|
1527819046, // څاڅکی - tsáatskey
|
||||||
{ ts: 1527817874, e: `quality, nature` }, // څرنګوالی - tsurangwaaley
|
1527817874, // څرنګوالی - tsurangwaaley
|
||||||
{ ts: 1527814041, e: `spring (season)` }, // څړمنی - tsaRmuney
|
1527814041, // څړمنی - tsaRmuney
|
||||||
{ ts: 1573055311846, e: `warning, notice, alarm` }, // خبرداری - khabardaarey
|
1573055311846, // خبرداری - khabardaarey
|
||||||
{ ts: 1527820324, e: `melon` }, // خټکی - khaTakéy
|
1527820324, // خټکی - khaTakéy
|
||||||
{ ts: 1527819828, e: `weight; respect, honour` }, // درناوی - dranaawey
|
1527819828, // درناوی - dranaawey
|
||||||
{ ts: 1588161660483, e: `crutch, walking-stick, cane` }, // ډانګوری - Daangooréy
|
1588161660483, // ډانګوری - Daangooréy
|
||||||
{ ts: 1527819732, e: `young, youth, young lad` }, // زلمی - zalméy
|
1527819732, // زلمی - zalméy
|
||||||
{ ts: 1527813708, e: `good news, gospel` }, // زېری - zerey
|
1527813708, // زېری - zerey
|
||||||
{ ts: 1588758498458, e: `jaundice` }, // زېړی - zeRéy
|
1588758498458, // زېړی - zeRéy
|
||||||
{ ts: 1571626392709, e: `birthplace` }, // زېږنځی - zeGundzey
|
1571626392709, // زېږنځی - zeGundzey
|
||||||
{ ts: 1527815698, e: `winter` }, // ژمی - jzúmey
|
1527815698, // ژمی - jzúmey
|
||||||
{ ts: 1573686563723, e: `wineskin, bagpipe, skin for carrying liquid` }, // ژی - jzey
|
1573686563723, // ژی - jzey
|
||||||
{ ts: 1527815239, e: `entertainment, fun, recreation` }, // ساتېری - saaterey
|
1527815239, // ساتېری - saaterey
|
||||||
{ ts: 1527813725, e: `equal, equivalent, match, precedent` }, // ساری - sáarey
|
1527813725, // ساری - sáarey
|
||||||
{ ts: 1527814021, e: `spring (season)` }, // سپرلی - sparléy
|
1527814021, // سپرلی - sparléy
|
||||||
{ ts: 1527813509, e: `insult, disgrace, defamation, disrespect` }, // سپکاوی - spukaawéy
|
1527813509, // سپکاوی - spukaawéy
|
||||||
{ ts: 1527815298, e: `clarification, attestation` }, // سپیناوی - speenaawey
|
1527815298, // سپیناوی - speenaawey
|
||||||
{ ts: 1578002674551, e: `eye-socket, eyelid; orbit` }, // سترغلی - sturghúley
|
1578002674551, // سترغلی - sturghúley
|
||||||
{ ts: 1527811999, e: `star` }, // ستوری - storey
|
1527811999, // ستوری - storey
|
||||||
{ ts: 1527817001, e: `throat, larynx` }, // ستونی - stóoney
|
1527817001, // ستونی - stóoney
|
||||||
{ ts: 1527813511, e: `headache, trouble` }, // سرخوږی - sărkhwuGey
|
1527813511, // سرخوږی - sărkhwuGey
|
||||||
{ ts: 1527815251, e: `man` }, // سړی - saRéy
|
1527815251, // سړی - saRéy
|
||||||
{ ts: 1527819850, e: `lung` }, // سږی - súGey
|
1527819850, // سږی - súGey
|
||||||
{ ts: 1527812302, e: `hole, slit, opening` }, // سوری - soorey
|
1527812302, // سوری - soorey
|
||||||
{ ts: 1527818221, e: `burning, zeal, fervour` }, // سوی - swey
|
1527818221, // سوی - swey
|
||||||
{ ts: 1527812304, e: `shade, shadow` }, // سیوری - syórey, syóorey
|
1527812304, // سیوری - syórey, syóorey
|
||||||
{ ts: 1527815268, e: `thing` }, // شی - shey
|
1527815268, // شی - shey
|
||||||
{ ts: 1527822527, e: `ankle, ankle-bone` }, // ښتګری - xatgaréy
|
1527822527, // ښتګری - xatgaréy
|
||||||
{ ts: 1527812793, e: `school` }, // ښوونځی - xowundzey
|
1527812793, // ښوونځی - xowundzey
|
||||||
{ ts: 1527821064, e: `a quick, clever, agile, bright man; a swindler, a fraud` }, // ښویکی - xwayakéy
|
1527821064, // ښویکی - xwayakéy
|
||||||
{ ts: 1527822650, e: `largeness, bigness` }, // غټوالی - ghaTwaaley
|
1527822650, // غټوالی - ghaTwaaley
|
||||||
{ ts: 1527814569, e: `member` }, // غړی - ghuRey
|
1527814569, // غړی - ghuRey
|
||||||
{ ts: 1527817627, e: `arrow` }, // غشی - ghúshey
|
1527817627, // غشی - ghúshey
|
||||||
{ ts: 1527822913, e: `precious stone, precious stone in a signet ring` }, // غمی - ghaméy
|
1527822913, // غمی - ghaméy
|
||||||
{ ts: 1527816181, e: `vomit, nausea (Arabic)` }, // قی - qey
|
1527816181, // قی - qey
|
||||||
{ ts: 1527814715, e: `user` }, // کاروونکی - kaarawoonkey
|
1527814715, // کاروونکی - kaarawoonkey
|
||||||
{ ts: 1527823295, e: `stone, rock` }, // کاڼی - káaNey
|
1527823295, // کاڼی - káaNey
|
||||||
{ ts: 1527818563, e: `muscle` }, // کبوړی - kabóoRey
|
1527818563, // کبوړی - kabóoRey
|
||||||
{ ts: 1527822824, e: `booklet, notebook` }, // کتاب ګوټی - kitaabgóTey
|
1527822824, // کتاب ګوټی - kitaabgóTey
|
||||||
{ ts: 1582388629980, e: `pupil (of an eye)` }, // کسی - kúsey
|
1582388629980, // کسی - kúsey
|
||||||
{ ts: 1594906790729, e: `boy` }, // ککی - kakéy
|
1594906790729, // ککی - kakéy
|
||||||
{ ts: 1527812836, e: `village` }, // کلی - kuley, kiley
|
1527812836, // کلی - kuley, kiley
|
||||||
{ ts: 1610616852625, e: `echo` }, // کنګرېزی - kangrezéy
|
1610616852625, // کنګرېزی - kangrezéy
|
||||||
{ ts: 1527819196, e: `car, train` }, // ګاډی - gaaDey
|
1527819196, // ګاډی - gaaDey
|
||||||
{ ts: 1579016593220, e: `beehive; wasps' nest` }, // ګنی - ganéy
|
1579016593220, // ګنی - ganéy
|
||||||
{ ts: 1527819076, e: `doll, puppet` }, // ګوډاګی - gooDaagéy
|
1527819076, // ګوډاګی - gooDaagéy
|
||||||
{ ts: 1527822505, e: `cheek` }, // ګومبوری - goomboorey
|
1527822505, // ګومبوری - goomboorey
|
||||||
{ ts: 1527819079, e: `puppet` }, // لاسپوڅی - laaspotséy
|
1527819079, // لاسپوڅی - laaspotséy
|
||||||
{ ts: 1573149568665, e: `access, availability` }, // لاسرسی - laasraséy
|
1573149568665, // لاسرسی - laasraséy
|
||||||
{ ts: 1527817464, e: `wood, timber` }, // لرګی - largey
|
1527817464, // لرګی - largey
|
||||||
{ ts: 1527822801, e: `sleeve` }, // لستوڼی - lastóNey
|
1527822801, // لستوڼی - lastóNey
|
||||||
{ ts: 1527814401, e: `toy` }, // لوبونی - lobawuney
|
1527814401, // لوبونی - lobawuney
|
||||||
{ ts: 1527814519, e: `side, direction` }, // لوری - lorey
|
1527814519, // لوری - lorey
|
||||||
{ ts: 1527823103, e: `perspective, viewpoint` }, // لیدلوری - leedlorey
|
1527823103, // لیدلوری - leedlorey
|
||||||
{ ts: 1527819920, e: `mosquito, midge` }, // ماشی - maashey
|
1527819920, // ماشی - maashey
|
||||||
{ ts: 1527820224, e: `fly swatter` }, // مچوژی - muchwajzéy
|
1527820224, // مچوژی - muchwajzéy
|
||||||
{ ts: 1527817770, e: `dead body, corpse` }, // مړی - múRey
|
1527817770, // مړی - múRey
|
||||||
{ ts: 1527813189, e: `fall, autumn` }, // منی - máney
|
1527813189, // منی - máney
|
||||||
{ ts: 1527812421, e: `ant` }, // مېږی - meGey
|
1527812421, // مېږی - meGey
|
||||||
{ ts: 1527819227, e: `lack` }, // نشتوالی - nashtwaaley
|
1527819227, // نشتوالی - nashtwaaley
|
||||||
{ ts: 1527823577, e: `sapling, seedling, sprout, young tree` }, // نیالګی - niyaalgey
|
1527823577, // نیالګی - niyaalgey
|
||||||
{ ts: 1527812073, e: `bone` }, // هډوکی - haDookey
|
1527812073, // هډوکی - haDookey
|
||||||
{ ts: 1527812668, e: `welcome` }, // هرکلی - hărkáley
|
1527812668, // هرکلی - hărkáley
|
||||||
{ ts: 1588153218244, e: `height, elevation, tallness` }, // هسکوالی - haskwáaley
|
1588153218244, // هسکوالی - haskwáaley
|
||||||
{ ts: 1585309922022, e: `flu, respiratory illness, influenza, cold` }, // والګی - waalgéy
|
1585309922022, // والګی - waalgéy
|
||||||
{ ts: 1527821465, e: `shoulder` }, // ولی - wuléy
|
1527821465, // ولی - wuléy
|
||||||
]
|
];
|
|
@ -7,44 +7,45 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527822004, e: "last, final" }, // آخرینی - aakhireenéy
|
1527812822, // کوچنی
|
||||||
{ ts: 1591872915426, e: "Afghan (person)" }, // افغانی - afghaanéy
|
1527822004, // آخرینی - aakhireenéy
|
||||||
{ ts: 1612616237182, e: "Pakistani (person)"}, // پاکستانی - paakistaanéy
|
1591872915426, // افغانی - afghaanéy
|
||||||
{ ts: 1527813400, e: "current" }, // اوسنی - oosanéy
|
1612616237182, // پاکستانی - paakistaanéy
|
||||||
{ ts: 1527815661, e: "first" }, // اولنی - awwalunéy
|
1527813400, // اوسنی - oosanéy
|
||||||
{ ts: 1527812476, e: "child" }, // بچی - bachéy
|
1527815661, // اولنی - awwalunéy
|
||||||
{ ts: 1527816646, e: "foreigner, outer" }, // بهرنی - baharanéy, bahranéy
|
1527812476, // بچی - bachéy
|
||||||
{ ts: 1527818769, e: "emergency" }, // بېړنی - beRanéy
|
1527816646, // بهرنی - baharanéy, bahranéy
|
||||||
{ ts: 1592382613021, e: "old, ancient, former" }, // پخوانی - pakhwaanéy
|
1527818769, // بېړنی - beRanéy
|
||||||
{ ts: 1527819532, e: "foreign, unrelated" }, // پردی - pradéy, prudéy
|
1592382613021, // پخوانی - pakhwaanéy
|
||||||
{ ts: 1577381894391, e: "Englishman, Westerner" }, // پرنګی - parangéy
|
1527819532, // پردی - pradéy, prudéy
|
||||||
{ ts: 1527820194, e: "so-and-so" }, // پلانکی - pulaankéy
|
1577381894391, // پرنګی - parangéy
|
||||||
{ ts: 1527820130, e: "adherent" }, // پلوی - palawéy
|
1527820194, // پلانکی - pulaankéy
|
||||||
{ ts: 1582390092514, e: "upper, above" }, // پورتنی - portinéy
|
1527820130, // پلوی - palawéy
|
||||||
{ ts: 1610617741649, e: "old, ancient" }, // ځنډنی - dzanDanéy, dzanDunéy
|
1582390092514, // پورتنی - portinéy
|
||||||
{ ts: 1610793723568, e: "goat" }, // چېلی - cheléy
|
1610617741649, // ځنډنی - dzanDanéy, dzanDunéy
|
||||||
{ ts: 1527819362, e: "calf (animal)" }, // خوسی - khooséy
|
1610793723568, // چېلی - cheléy
|
||||||
{ ts: 1590052667427, e: "witness" }, // درستی - drustéy, drastéy
|
1527819362, // خوسی - khooséy
|
||||||
{ ts: 1527822854, e: "first, before" }, // ړومبی - Roombéy
|
1590052667427, // درستی - drustéy, drastéy
|
||||||
{ ts: 1527820213, e: "lion" }, // زمری - zmaréy
|
1527822854, // ړومبی - Roombéy
|
||||||
{ ts: 1527813923, e: "living" }, // ژوندی - jzwundéy
|
1527820213, // زمری - zmaréy
|
||||||
{ ts: 1527815299, e: "dog" }, // سپی - spéy
|
1527813923, // ژوندی - jzwundéy
|
||||||
{ ts: 1527820788, e: "city, urban" }, // ښارنی - xaaranéy
|
1527815299, // سپی - spéy
|
||||||
{ ts: 1527812822, e: "little, small" }, // کوچنی - koochnéy
|
1527820788, // ښارنی - xaaranéy
|
||||||
{ ts: 1527823742, e: "nomadic" }, // کوچی - kochéy
|
1527812822, // کوچنی - koochnéy
|
||||||
{ ts: 1527818765, e: "speedy, quick" }, // ګړندی - guRandéy
|
1527823742, // کوچی - kochéy
|
||||||
{ ts: 1527819130, e: "cute" }, // ګلالی - gUlaaléy
|
1527818765, // ګړندی - guRandéy
|
||||||
{ ts: 1576101261017, e: "mute (person)" }, // ګنګی - gangéy
|
1527819130, // ګلالی - gUlaaléy
|
||||||
{ ts: 1582316583262, e: "lower, bottom" }, // لاندینی - laandeenéy
|
1576101261017, // ګنګی - gangéy
|
||||||
{ ts: 1527816249, e: "grandchild" }, // لمسی - lmaséy
|
1582316583262, // لاندینی - laandeenéy
|
||||||
{ ts: 1527813472, e: "first" }, // لومړنی - loomRanéy
|
1527816249, // لمسی - lmaséy
|
||||||
{ ts: 1527813132, e: "first" }, // لومړی - loomRéy
|
1527813472, // لومړنی - loomRanéy
|
||||||
{ ts: 1527819910, e: "slippery, smooth" }, // متلی - mutléy
|
1527813132, // لومړی - loomRéy
|
||||||
{ ts: 1527820414, e: "middle, central" }, // منځنی - mandzunéy
|
1527819910, // متلی - mutléy
|
||||||
{ ts: 1527811202, e: "monthly" }, // میاشتنی - miyaashtanéy
|
1527820414, // منځنی - mandzunéy
|
||||||
{ ts: 1527819320, e: "thin" }, // نری - naréy
|
1527811202, // میاشتنی - miyaashtanéy
|
||||||
{ ts: 1527816251, e: "grandchild" }, // نمسی - nmaséy
|
1527819320, // نری - naréy
|
||||||
{ ts: 1527821373, e: "deer" }, // هوسی - hoséy
|
1527816251, // نمسی - nmaséy
|
||||||
{ ts: 1527813636, e: "last" }, // وروستی - wroostéy
|
1527821373, // هوسی - hoséy
|
||||||
{ ts: 1527815430, e: "only" }, // یوازنی - yawaazunéy
|
1527813636, // وروستی - wroostéy
|
||||||
|
1527815430, // یوازنی - yawaazunéy
|
||||||
];
|
];
|
||||||
|
|
|
@ -7,58 +7,58 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1582853867682, e: "resident" }, // اوسېدونکی
|
1582853867682, // اوسېدونکی
|
||||||
{ ts: 1527813469, e: "forgiving" }, // بخښونکی
|
1527813469, // بخښونکی
|
||||||
{ ts: 1527817829, e: "debtor" }, // پوروړی
|
1527817829, // پوروړی
|
||||||
{ ts: 1527815205, e: "powerful" }, // پیاوړی
|
1527815205, // پیاوړی
|
||||||
{ ts: 1527815924, e: "customer" }, // پېرودونکی
|
1527815924, // پېرودونکی
|
||||||
{ ts: 1527819604, e: "tense, stern" }, // ترینګلی
|
1527819604, // ترینګلی
|
||||||
{ ts: 1527813406, e: "bound, tied" }, // تړلی
|
1527813406, // تړلی
|
||||||
{ ts: 1527815381, e: "thirsty" }, // تږی
|
1527815381, // تږی
|
||||||
{ ts: 1527817607, e: "disgraceful, shameful, dishonered" }, // تور مخی
|
1527817607, // تور مخی
|
||||||
{ ts: 1527822859, e: "dishevelled, messy, curly (with hair etc.)" }, // څپولی
|
1527822859, // څپولی
|
||||||
{ ts: 1527811466, e: "researcher" }, // څېړونکی
|
1527811466, // څېړونکی
|
||||||
{ ts: 1527812377, e: "obedient, submissive" }, // حکم منونکی
|
1527812377, // حکم منونکی
|
||||||
{ ts: 1527817299, e: "amazing, surprising" }, // حیرانوونکی
|
1527817299, // حیرانوونکی
|
||||||
{ ts: 1527813282, e: "seller" }, // خرڅوونکی
|
1527813282, // خرڅوونکی
|
||||||
{ ts: 1527812809, e: "malnourished" }, // خوار ځواکی
|
1527812809, // خوار ځواکی
|
||||||
{ ts: 1591871233587, e: "well-spoken" }, // خوږژبی
|
1591871233587, // خوږژبی
|
||||||
{ ts: 1527814118, e: "painful, agonizing" }, // دردوونکی
|
1527814118, // دردوونکی
|
||||||
{ ts: 1527820657, e: "mediator, arbitrator" }, // درېیمګړی
|
1527820657, // درېیمګړی
|
||||||
{ ts: 1527815713, e: "coming, future" }, // راتلونکی
|
1527815713, // راتلونکی
|
||||||
{ ts: 1527812142, e: "true, truthful" }, // رښتنی
|
1527812142, // رښتنی
|
||||||
{ ts: 1527812161, e: "true, truthful" }, // رښتونی
|
1527812161, // رښتونی
|
||||||
{ ts: 1527811507, e: "true, truthful" }, // رښتینی
|
1527811507, // رښتینی
|
||||||
{ ts: 1527813758, e: "student" }, // زدکوونکی
|
1527813758, // زدکوونکی
|
||||||
{ ts: 1577058349091, e: "interesting, pleasant" }, // زړه پوری
|
1577058349091, // زړه پوری
|
||||||
{ ts: 1527817400, e: "merciful, compassionate" }, // زړه سواندی
|
1527817400, // زړه سواندی
|
||||||
{ ts: 1527819587, e: "translator" }, // ژباړونکی
|
1527819587, // ژباړونکی
|
||||||
{ ts: 1527814888, e: "savior, saviour, rescuer" }, // ژغورونکی
|
1527814888, // ژغورونکی
|
||||||
{ ts: 1527818109, e: "pure, holy, magnificent" }, // سپېڅلی
|
1527818109, // سپېڅلی
|
||||||
{ ts: 1527811338, e: "sincere hearted, trusting" }, // سپین زړی
|
1527811338, // سپین زړی
|
||||||
{ ts: 1527815306, e: "tired" }, // ستړی
|
1527815306, // ستړی
|
||||||
{ ts: 1527822745, e: "burned" }, // سټکوری
|
1527822745, // سټکوری
|
||||||
{ ts: 1527817442, e: "heard-hearted" }, // سخت زړی
|
1527817442, // سخت زړی
|
||||||
{ ts: 1527816932, e: "soldier" }, // سرتېری
|
1527816932, // سرتېری
|
||||||
{ ts: 1527820170, e: "singer" }, // سندرغاړی
|
1527820170, // سندرغاړی
|
||||||
{ ts: 1527819964, e: "burning" }, // سوځېدونکی
|
1527819964, // سوځېدونکی
|
||||||
{ ts: 1527821951, e: "burned" }, // سوی
|
1527821951, // سوی
|
||||||
{ ts: 1527812779, e: "beautiful" }, // ښکلی
|
1527812779, // ښکلی
|
||||||
{ ts: 1527812806, e: "teacher" }, // ښوونکی
|
1527812806, // ښوونکی
|
||||||
{ ts: 1527811350, e: "quiet, silent" }, // غلی
|
1527811350, // غلی
|
||||||
{ ts: 1527819637, e: "worker" }, // کارکوونکی
|
1527819637, // کارکوونکی
|
||||||
{ ts: 1527818613, e: "weak" }, // کمزوری
|
1527818613, // کمزوری
|
||||||
{ ts: 1595516629483, e: "deafening" }, // کڼوونکی
|
1595516629483, // کڼوونکی
|
||||||
{ ts: 1527820661, e: "mediator" }, // مېنځګړی
|
1527820661, // مېنځګړی
|
||||||
{ ts: 1527814047, e: "aforesaid, above-mentioned" }, // نوموړی
|
1527814047, // نوموړی
|
||||||
{ ts: 1527813822, e: "new" }, // نوی
|
1527813822, // نوی
|
||||||
{ ts: 1586453720908, e: "encouraging" }, // هڅوونکی
|
1586453720908, // هڅوونکی
|
||||||
{ ts: 1588163180700, e: "stunning, amazing" }, // هېښوونکی
|
1588163180700, // هېښوونکی
|
||||||
{ ts: 1527823715, e: "small, little" }, // وړکوټی
|
1527823715, // وړکوټی
|
||||||
{ ts: 1527823714, e: "small, little" }, // وړکی
|
1527823714, // وړکی
|
||||||
{ ts: 1527815403, e: "little, small" }, // وړوکی
|
1527815403, // وړوکی
|
||||||
{ ts: 1527813916, e: "lethal, deadly" }, // وژونکی
|
1527813916, // وژونکی
|
||||||
{ ts: 1527815424, e: "hungry" }, // وږی
|
1527815424, // وږی
|
||||||
{ ts: 1527823713, e: "small, little" }, // ووړکی
|
1527823713, // ووړکی
|
||||||
{ ts: 1527816455, e: "separated, divided" }, // وېشلی
|
1527816455, // وېشلی
|
||||||
];
|
];
|
|
@ -1,5 +1,6 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{"ts":1527812798,"i":5593,"p":"خفه","f":"khúfa","g":"khufa","e":"sad, upset, angry; choked, suffocated","c":"adj."},
|
1527822049, // takRa
|
||||||
{"ts":1527812792,"i":5773,"p":"خوشاله","f":"khoshaala","g":"khoshaala","e":"happy, glad","c":"adj."},
|
1527812798, // khufa
|
||||||
{"ts":1527812761,"i":8534,"p":"ښایسته","f":"xáaysta","g":"xaayusta","e":"beautiful","c":"adj."},
|
1527812792, // khoshaala
|
||||||
|
1527812761, // xaaysta
|
||||||
];
|
];
|
|
@ -1,81 +1,81 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527815737, e: "teacher", }, // استاذ
|
1527815737, // استاذ
|
||||||
{ ts: 1527816747, e: "Doctor" },
|
1527816747,
|
||||||
{ ts: 1527821744, e: `cook, chef` }, // آشپز - aashpáz
|
1527821744, // آشپز - aashpáz
|
||||||
{ ts: 1527812156, e: `officer` }, // افسر - afsar
|
1527812156, // افسر - afsar
|
||||||
{ ts: 1591872915426, e: `Afghan (person)` }, // افغانی - afghaanéy
|
1591872915426, // افغانی - afghaanéy
|
||||||
{ ts: 1527815137, e: `instigator, insurgent, terrorist` }, // اورپکی - orpakey
|
1527815137, // اورپکی - orpakey
|
||||||
{ ts: 1582853867682, e: `resident` }, // اوسېدونکی - osedóonkey
|
1582853867682, // اوسېدونکی - osedóonkey
|
||||||
{ ts: 1527812476, e: `child, offspring` }, // بچی - bachéy
|
1527812476, // بچی - bachéy
|
||||||
{ ts: 1623044005072, e: `insurrectionist, rebel` }, // بلواګر - balwaagar
|
1623044005072, // بلواګر - balwaagar
|
||||||
{ ts: 1612616237182, e: `Pakistani (person)` }, // پاکستانی - paakistaanéy
|
1612616237182, // پاکستانی - paakistaanéy
|
||||||
{ ts: 1527817965, e: `keeper, one who brings up, raises (cattle etc.)` }, // پالونکی - paaloonkey
|
1527817965, // پالونکی - paaloonkey
|
||||||
{ ts: 1527815197, e: `Pashtun` }, // پښتون - puxtoon
|
1527815197, // پښتون - puxtoon
|
||||||
{ ts: 1527819228, e: `inspector, detective, person checking people at the doors etc.` }, // پلټونکی - pulaToonkey
|
1527819228, // پلټونکی - pulaToonkey
|
||||||
{ ts: 1527820130, e: `adherent, supporter; the outside or further ox in a team of oxes grinding or threshing` }, // پلوی - palawéy
|
1527820130, // پلوی - palawéy
|
||||||
{ ts: 1527815924, e: `customer` }, // پېرودونکی - perodoonkey
|
1527815924, // پېرودونکی - perodoonkey
|
||||||
{ ts: 1527816431, e: `cousin (of paternal aunt)` }, // ترورزی - trorzéy
|
1527816431, // ترورزی - trorzéy
|
||||||
{ ts: 1527820820, e: `follower` }, // تعقیبوونکی - ta'qeebawóonkey
|
1527820820, // تعقیبوونکی - ta'qeebawóonkey
|
||||||
{ ts: 1586270915475, e: `mammal` }, // تي لرونکی - tee laroonkey
|
1586270915475, // تي لرونکی - tee laroonkey
|
||||||
{ ts: 1613563994424, e: `joker, jester, mocker` }, // ټوقمار - Toqmaar
|
1613563994424, // ټوقمار - Toqmaar
|
||||||
{ ts: 1610793723568, e: `ram, goat` }, // چېلی - cheléy
|
1610793723568, // چېلی - cheléy
|
||||||
{ ts: 1527811466, e: `researcher` }, // څېړونکی - tseRoonkey
|
1527811466, // څېړونکی - tseRoonkey
|
||||||
{ ts: 1527812795, e: `relative` }, // خپلوان - khpulwaan
|
1527812795, // خپلوان - khpulwaan
|
||||||
{ ts: 1527812802, e: `donkey` }, // خر - khur
|
1527812802, // خر - khur
|
||||||
{ ts: 1527813282, e: `seller` }, // خرڅوونکی - khartsawóonkey
|
1527813282, // خرڅوونکی - khartsawóonkey
|
||||||
{ ts: 1527819362, e: `calf (animal)` }, // خوسی - khooséy
|
1527819362, // خوسی - khooséy
|
||||||
{ ts: 1527822535, e: `tailor` }, // خیاط - khayáat
|
1527822535, // خیاط - khayáat
|
||||||
{ ts: 1590052667427, e: `witness` }, // درستی - drustéy, drastéy
|
1590052667427, // درستی - drustéy, drastéy
|
||||||
{ ts: 1622873938137, e: `crook, swindler, criminal` }, // درغلګر - darghalgar
|
1622873938137, // درغلګر - darghalgar
|
||||||
{ ts: 1527820656, e: `mediator, arbitrator` }, // دریمګړی - driyamgúRey
|
1527820656, // دریمګړی - driyamgúRey
|
||||||
{ ts: 1614081825855, e: `priest, monk/nun` }, // راهب - raahib
|
1614081825855, // راهب - raahib
|
||||||
{ ts: 1527813758, e: `student, learner, pupil` }, // زدکوونکی - zdakawóonkey
|
1527813758, // زدکوونکی - zdakawóonkey
|
||||||
{ ts: 1527819587, e: `translator` }, // ژباړونکی - jzbaaRoonkey
|
1527819587, // ژباړونکی - jzbaaRoonkey
|
||||||
{ ts: 1527815299, e: `dog` }, // سپی - spéy
|
1527815299, // سپی - spéy
|
||||||
{ ts: 1610447830096, e: `calf; bull-calf` }, // سخی - skhey
|
1610447830096, // سخی - skhey
|
||||||
{ ts: 1527816932, e: `soldier` }, // سرتېری - sărtérey
|
1527816932, // سرتېری - sărtérey
|
||||||
{ ts: 1527811519, e: `embassador, ambassador` }, // سفیر - safeer
|
1527811519, // سفیر - safeer
|
||||||
{ ts: 1622366208373, e: `secretary` }, // سکرتر - sakratár
|
1622366208373, // سکرتر - sakratár
|
||||||
{ ts: 1527820170, e: `singer` }, // سندرغاړی - sandurgháaRey
|
1527820170, // سندرغاړی - sandurgháaRey
|
||||||
{ ts: 1566468540788, e: `rabbit` }, // سوی - sooy
|
1566468540788, // سوی - sooy
|
||||||
{ ts: 1527819801, e: `tourist, sightseer, visitor` }, // سیلانی - seylaanéy
|
1527819801, // سیلانی - seylaanéy
|
||||||
{ ts: 1575924767041, e: `shepherd` }, // شپون - shpoon
|
1575924767041, // شپون - shpoon
|
||||||
{ ts: 1527815279, e: `shepherd` }, // شپونکی - shpoonkey
|
1527815279, // شپونکی - shpoonkey
|
||||||
{ ts: 1527819173, e: `analyst, examiner` }, // شنونکی - shanóonkey
|
1527819173, // شنونکی - shanóonkey
|
||||||
{ ts: 1527812806, e: `teacher` }, // ښووونکی - xowóonkey
|
1527812806, // ښووونکی - xowóonkey
|
||||||
{ ts: 1527815436, e: `tyrant, oppressor, cruel person` }, // ظالم - zaalim
|
1527815436, // ظالم - zaalim
|
||||||
{ ts: 1527818632, e: `twin` }, // غبرګونی - ghbargoney
|
1527818632, // غبرګونی - ghbargoney
|
||||||
{ ts: 1527812624, e: `thief` }, // غل - ghul
|
1527812624, // غل - ghul
|
||||||
{ ts: 1613561408232, e: `guilty, at fault` }, // قصوروار - qUsoorwáar
|
1613561408232, // قصوروار - qUsoorwáar
|
||||||
{ ts: 1527814715, e: `user` }, // کاروونکی - kaarawoonkey
|
1527814715, // کاروونکی - kaarawoonkey
|
||||||
{ ts: 1527816256, e: `great-grandson` }, // کړوسی - kaRwaséy
|
1527816256, // کړوسی - kaRwaséy
|
||||||
{ ts: 1594906790729, e: `child` }, // ککی - kakéy
|
1594906790729, // ککی - kakéy
|
||||||
{ ts: 1527819244, e: `host, hostess; master of house` }, // کوربه - korba
|
1527819244, // کوربه - korba
|
||||||
{ ts: 1527812174, e: `neighbour` }, // ګاونډی - gaawanDéy
|
1527812174, // ګاونډی - gaawanDéy
|
||||||
{ ts: 1579030083953, e: `sinner, sinful` }, // ګناه ګار - gUnaahgáar
|
1579030083953, // ګناه ګار - gUnaahgáar
|
||||||
{ ts: 1527816249, e: `grandchild` }, // لمسی - lmaséy
|
1527816249, // لمسی - lmaséy
|
||||||
{ ts: 1527822661, e: `athlete, player; actor; mischevious, playful (of a child)` }, // لوبغاړی - lobgháaRey
|
1527822661, // لوبغاړی - lobgháaRey
|
||||||
{ ts: 1589885143650, e: `fox` }, // لومبړ - loombáR
|
1589885143650, // لومبړ - loombáR
|
||||||
{ ts: 1527812043, e: `writer, author` }, // لیکوال - leekwaal
|
1527812043, // لیکوال - leekwaal
|
||||||
{ ts: 1527820680, e: `crazy, insane, mad person` }, // لېونی - lewanéy
|
1527820680, // لېونی - lewanéy
|
||||||
{ ts: 1527812881, e: `child, kid` }, // ماشوم - maashoom
|
1527812881, // ماشوم - maashoom
|
||||||
{ ts: 1527814445, e: `assigned, appointed, given orders or istructions (Arabic), authorized, sent on business; officer (as in government worker)` }, // مامور - maamóor
|
1527814445, // مامور - maamóor
|
||||||
{ ts: 1527818760, e: `civil activist` }, // مدني فاعل - madanee faa'al
|
1527818760, // مدني فاعل - madanee faa'al
|
||||||
{ ts: 1527821523, e: `slave, servant` }, // مریی - mrayéy
|
1527821523, // مریی - mrayéy
|
||||||
{ ts: 1527814159, e: `friend, companion` }, // ملګری - malgúrey
|
1527814159, // ملګری - malgúrey
|
||||||
{ ts: 1527820661, e: `mediator, go-between, arbitrator` }, // مېنځګړی - mendzgúRey
|
1527820661, // مېنځګړی - mendzgúRey
|
||||||
{ ts: 1527823403, e: `fan, someone who loves or appreciates someone or something` }, // مینه وال - meenawáal
|
1527823403, // مینه وال - meenawáal
|
||||||
{ ts: 1527815127, e: `nurse` }, // نرس - nurs
|
1527815127, // نرس - nurs
|
||||||
{ ts: 1527816254, e: `grandson` }, // نوسی - nwaséy
|
1527816254, // نوسی - nwaséy
|
||||||
{ ts: 1527814806, e: `peer, someone of the same age` }, // همځولی - hamdzoléy ??
|
1527814806, // همځولی - hamdzoléy ??
|
||||||
{ ts: 1527812684, e: `co-worker, fellow worker, collaborator, aid` }, // همکار - hamkaar
|
1527812684, // همکار - hamkaar
|
||||||
{ ts: 1527811732, e: `artist, performer` }, // هنر مند - hUnarmand
|
1527811732, // هنر مند - hUnarmand
|
||||||
{ ts: 1527821373, e: `deer` }, // هوسی - hoséy
|
1527821373, // هوسی - hoséy
|
||||||
{ ts: 1591027046896, e: `goat` }, // وز - wuz
|
1591027046896, // وز - wuz
|
||||||
{ ts: 1611395180139, e: `fellow countryman, person from the same country` }, // وطندار - watandáar
|
1611395180139, // وطندار - watandáar
|
||||||
{ ts: 1527811296, e: `lawyer, proxy holder` }, // وکیل - wakeel
|
1527811296, // وکیل - wakeel
|
||||||
{ ts: 1527813585, e: `person, human being, creature` }, // وګړی - wagúRey
|
1527813585, // وګړی - wagúRey
|
||||||
{ ts: 1527814672, e: `spokesperson, spokesman, newcaster` }, // ویاند - wayaand
|
1527814672, // ویاند - wayaand
|
||||||
{ ts: 1586454081484, e: `orphan` }, // یتیم - yateem
|
1586454081484, // یتیم - yateem
|
||||||
{ ts: 1527812461, e: "hero" }, // اتل - atal
|
1527812461, // اتل - atal
|
||||||
];
|
];
|
|
@ -1,3 +1,3 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527816016, e: "Pashto" }, // پښټو
|
1527816016, // پښټو
|
||||||
]
|
]
|
|
@ -7,13 +7,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527816778, e: "long" }, // اوږد - ooGd, ooGud
|
1527816778, // اوږد - ooGd, ooGud
|
||||||
{ ts: 1527822706, e: "raw, unripe, immature" }, // اوم - oom
|
1527822706, // اوم - oom
|
||||||
{ ts: 1527812802, e: "donkey" }, // خر - khur
|
1527812802, // خر - khur
|
||||||
{ ts: 1527813293, e: "red, hot" }, // سور - soor
|
1527813293, // سور - soor
|
||||||
{ ts: 1527815265, e: "green, blue" }, // شین - sheen
|
1527815265, // شین - sheen
|
||||||
{ ts: 1527812624, e: "thief" }, // غل - ghul
|
1527812624, // غل - ghul
|
||||||
{ ts: 1527815087, e: "dead" }, // مړ - muR
|
1527815087, // مړ - muR
|
||||||
{ ts: 1527814151, e: "companion, friend" }, // مل - mal
|
1527814151, // مل - mal
|
||||||
{ ts: 1527813580, e: "one" }, // یو - yo
|
1527813580, // یو - yo
|
||||||
];
|
];
|
|
@ -1,22 +1,22 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527819345, e: `sheep, ram` }, // پسه - psu
|
1527819345, // پسه - psu
|
||||||
{ ts: 1527822173, e: `bush, shrub` }, // جاړه - jaaRú
|
1527822173, // جاړه - jaaRú
|
||||||
{ ts: 1527813508, e: `heart` }, // زړه - zRu
|
1527813508, // زړه - zRu
|
||||||
{ ts: 1588857967561, e: `bull` }, // غوایه - ghwaayú
|
1588857967561, // غوایه - ghwaayú
|
||||||
{ ts: 1527817108, e: `look, gaze, examination, inspection, spying` }, // کاته - kaatu
|
1527817108, // کاته - kaatu
|
||||||
{ ts: 1527817768, e: `raven, crow` }, // کارګه - kaargu
|
1527817768, // کارګه - kaargu
|
||||||
{ ts: 1527818516, e: `swimming, bathing` }, // لمبېده - lambedú
|
1527818516, // لمبېده - lambedú
|
||||||
{ ts: 1527813986, e: `sunset, west` }, // لمر پرېواته - lmarprewaatu
|
1527813986, // لمر پرېواته - lmarprewaatu
|
||||||
{ ts: 1527813992, e: `sunset` }, // لمر لوېده - lmarlwedu
|
1527813992, // لمر لوېده - lmarlwedu
|
||||||
{ ts: 1527813987, e: `sunrise, east` }, // لمرخاته - lmarkhaatu
|
1527813987, // لمرخاته - lmarkhaatu
|
||||||
{ ts: 1527818255, e: `wolf, wild dog` }, // لېوه - lewú
|
1527818255, // لېوه - lewú
|
||||||
{ ts: 1527821522, e: `slave, servant` }, // مریه - mrayú
|
1527821522, // مریه - mrayú
|
||||||
{ ts: 1527812911, e: `husband, brave` }, // مېړه - meRu
|
1527812911, // مېړه - meRu
|
||||||
{ ts: 1527811626, e: `impracticability, impossibility, improbability` }, // نکېده - nukedu
|
1527811626, // نکېده - nukedu
|
||||||
{ ts: 1527816410, e: `grandfather, grandpa` }, // نیکه - neekú
|
1527816410, // نیکه - neekú
|
||||||
{ ts: 1527822420, e: `rein, bridle (for horses); string for trousers, string used inside to hold up the partoog/shalwar` }, // واګه - waagu
|
1527822420, // واګه - waagu
|
||||||
{ ts: 1527816357, e: `nephew, brother's son` }, // وراره - wraaru
|
1527816357, // وراره - wraaru
|
||||||
{ ts: 1527823225, e: `flock, herd, drove` }, // وله - wUlú
|
1527823225, // وله - wUlú
|
||||||
{ ts: 1527814789, e: `hair` }, // وېښته - wextu
|
1527814789, // وېښته - wextu
|
||||||
{ ts: 1527815394, e: 'wedding' }, // واده - waadú
|
1527815394, // واده - waadú
|
||||||
];
|
];
|
|
@ -7,27 +7,27 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527818017, e: "store, shop" }, // اټۍ - aTuy
|
1527818017, // اټۍ - aTuy
|
||||||
{ ts: 1527812694, e: "girl" }, // انجنۍ - injUnuy
|
1527812694, // انجنۍ - injUnuy
|
||||||
{ ts: 1527815140, e: "week" }, // اونۍ - onuy, ownuy, owunuy
|
1527815140, // اونۍ - onuy, ownuy, owunuy
|
||||||
{ ts: 1566476931206, e: "lamp, light" }, // بتۍ - batúy
|
1566476931206, // بتۍ - batúy
|
||||||
{ ts: 1527822192, e: "stove, oven, furnace" }, // بټۍ - baTúy
|
1527822192, // بټۍ - baTúy
|
||||||
{ ts: 1527820828, e: "daughter, girl" }, // بچۍ - bachúy
|
1527820828, // بچۍ - bachúy
|
||||||
{ ts: 1527822974, e: "cart, buggy, stroller" }, // بګۍ - bagúy
|
1527822974, // بګۍ - bagúy
|
||||||
{ ts: 1591805634565, e: "rib" }, // پوښتۍ - pooxtúy
|
1591805634565, // پوښتۍ - pooxtúy
|
||||||
{ ts: 1586276322639, e: "hat, cap" }, // ټوپۍ - Topuy
|
1586276322639, // ټوپۍ - Topuy
|
||||||
{ ts: 1527820058, e: "kneecap, patella" }, // ټوټکۍ - ToTakúy
|
1527820058, // ټوټکۍ - ToTakúy
|
||||||
{ ts: 1527812564, e: "bread, food, meal" }, // ډوډۍ - DoDuy
|
1527812564, // ډوډۍ - DoDuy
|
||||||
{ ts: 1527821555, e: "edge, verge, side" }, // ژۍ - jzuy
|
1527821555, // ژۍ - jzuy
|
||||||
{ ts: 1527814788, e: "moon" }, // سپوږمۍ - spoGmuy
|
1527814788, // سپوږمۍ - spoGmuy
|
||||||
{ ts: 1527820120, e: "hill, hillrock, mound" }, // غونډۍ - ghwunDúy
|
1527820120, // غونډۍ - ghwunDúy
|
||||||
{ ts: 1527814203, e: "chair, seat, stool" }, // کرسۍ - kUrsuy
|
1527814203, // کرسۍ - kUrsuy
|
||||||
{ ts: 1527812045, e: "window" }, // کړکۍ - kuRkúy
|
1527812045, // کړکۍ - kuRkúy
|
||||||
{ ts: 1527816026, e: "ring, curl; handcuffs, link, chain; loom; department, section" }, // کړۍ - kaRuy
|
1527816026, // کړۍ - kaRuy
|
||||||
{ ts: 1527813870, e: "boat, ship" }, // کشتۍ - kishtúy
|
1527813870, // کشتۍ - kishtúy
|
||||||
{ ts: 1527821895, e: "doll" }, // ګوډۍ - gooDúy
|
1527821895, // ګوډۍ - gooDúy
|
||||||
{ ts: 1527814564, e: "pill tablet; bullet" }, // ګولۍ - golúy
|
1527814564, // ګولۍ - golúy
|
||||||
{ ts: 1527811763, e: "tail" }, // لکۍ - lakuy
|
1527811763, // لکۍ - lakuy
|
||||||
{ ts: 1527812659, e: "egg" }, // هګۍ - haguy
|
1527812659, // هګۍ - haguy
|
||||||
{ ts: 1527821372, e: "gazelle, antelope" }, // هوسۍ - hosúy
|
1527821372, // هوسۍ - hosúy
|
||||||
];
|
];
|
|
@ -1,14 +1,12 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527815154, e: `end, finish, close, conclusion` }, // پای - paay
|
1527815154, // پای - paay
|
||||||
{ ts: 1527812594, e: `place, space` }, // ځای - dzaay
|
1527812594, // ځای - dzaay
|
||||||
{ ts: 1527812525, e: `tea` }, // چای - chaay
|
1527812525, // چای - chaay
|
||||||
{ ts: 1527812783, e: `God, Lord` }, // خدای - khUdaay
|
1527812783, // خدای - khUdaay
|
||||||
{ ts: 1527819514, e: `tier, row, foundation (masonry etc.)` }, // دای - daay
|
1527819514, // دای - daay
|
||||||
{ ts: 1610797797756, e: `hollow, depression` }, // سای - saay
|
1610797797756, // سای - saay
|
||||||
{ ts: 1527822345, e: `caravansary, inn, large house` }, // سرای - saráay
|
1527822345, // سرای - saráay
|
||||||
|
1586598425514, // بوی - booy
|
||||||
|
1527814511, // خوی - khooy
|
||||||
{ ts: 1586598425514, e: `smell` }, // بوی - booy
|
1566468540788, // سوی - sooy
|
||||||
{ ts: 1527814511, e: `character, nature, disposition, habit` }, // خوی - khooy
|
];
|
||||||
{ ts: 1566468540788, e: `rabbit` }, // سوی - sooy
|
|
||||||
]
|
|
File diff suppressed because one or more lines are too long
|
@ -1,401 +1,130 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{
|
1527816643,
|
||||||
"ts": 1527816643
|
1527817823,
|
||||||
},
|
1591002320547,
|
||||||
{
|
1527821339,
|
||||||
"ts": 1527817823
|
1527817226,
|
||||||
},
|
1527812167,
|
||||||
{
|
1527812598,
|
||||||
"ts": 1591002320547
|
1527812002,
|
||||||
},
|
1527813489,
|
||||||
{
|
1577390517316,
|
||||||
"ts": 1527821339
|
1527820710,
|
||||||
},
|
1527817312,
|
||||||
{
|
1527818188,
|
||||||
"ts": 1527817226
|
1527811863,
|
||||||
},
|
1527816383,
|
||||||
{
|
1527822770,
|
||||||
"ts": 1527812167
|
1527821587,
|
||||||
},
|
1527818390,
|
||||||
{
|
1527818391,
|
||||||
"ts": 1527812598
|
1527814726,
|
||||||
},
|
1579394718033,
|
||||||
{
|
1527815968,
|
||||||
"ts": 1527812002
|
1592303372377,
|
||||||
},
|
1577551342853,
|
||||||
{
|
1527815351,
|
||||||
"ts": 1527813489
|
1586452103064,
|
||||||
},
|
1527816822,
|
||||||
{
|
1527812186,
|
||||||
"ts": 1577390517316
|
1527814870,
|
||||||
},
|
1527815355,
|
||||||
{
|
1527815867,
|
||||||
"ts": 1527820710
|
1527822741,
|
||||||
},
|
1527814864,
|
||||||
{
|
1527819607,
|
||||||
"ts": 1527817312
|
1527821070,
|
||||||
},
|
1577812269585,
|
||||||
{
|
1573768865232,
|
||||||
"ts": 1527818188
|
1527822814,
|
||||||
},
|
1527823161,
|
||||||
{
|
1527821042,
|
||||||
"ts": 1527811863
|
1527818810,
|
||||||
},
|
1577823792516,
|
||||||
{
|
1588858155947,
|
||||||
"ts": 1527816383
|
1589024311021,
|
||||||
},
|
1527816916,
|
||||||
{
|
1527820291,
|
||||||
"ts": 1527822770
|
1527813125,
|
||||||
},
|
1527813937,
|
||||||
{
|
1591804639647,
|
||||||
"ts": 1527821587
|
1527813212,
|
||||||
},
|
1584529741244,
|
||||||
{
|
1575128717139,
|
||||||
"ts": 1527818390
|
1527813319,
|
||||||
},
|
1527822368,
|
||||||
{
|
1527819178,
|
||||||
"ts": 1527818391
|
1594129207239,
|
||||||
},
|
1594129204513,
|
||||||
{
|
1527815309,
|
||||||
"ts": 1527814726
|
1527814102,
|
||||||
},
|
1527818975,
|
||||||
{
|
1578326320888,
|
||||||
"ts": 1579394718033
|
1527816152,
|
||||||
},
|
1527816463,
|
||||||
{
|
1527818094,
|
||||||
"ts": 1527815968
|
1527814855,
|
||||||
},
|
1527819033,
|
||||||
{
|
1577817988469,
|
||||||
"ts": 1592303372377
|
1527819185,
|
||||||
},
|
1527814887,
|
||||||
{
|
1527818217,
|
||||||
"ts": 1577551342853
|
1571946107980,
|
||||||
},
|
1581610643511,
|
||||||
{
|
1527811674,
|
||||||
"ts": 1527815351
|
1581610659810,
|
||||||
},
|
1527818401,
|
||||||
{
|
1592303194144,
|
||||||
"ts": 1586452103064
|
1578607689918,
|
||||||
},
|
1527818341,
|
||||||
{
|
1527818425,
|
||||||
"ts": 1527816822
|
1527818422,
|
||||||
},
|
1527812633,
|
||||||
{
|
1527816328,
|
||||||
"ts": 1527812186
|
1588784260692,
|
||||||
},
|
1527812607,
|
||||||
{
|
1527822096,
|
||||||
"ts": 1527814870
|
1588152878869,
|
||||||
},
|
1527817624,
|
||||||
{
|
1527812732,
|
||||||
"ts": 1527815355
|
1527811600,
|
||||||
},
|
1527819661,
|
||||||
{
|
1527814357,
|
||||||
"ts": 1527815867
|
1582146016627,
|
||||||
},
|
1527819872,
|
||||||
{
|
1579034883717,
|
||||||
"ts": 1527822741
|
1527817357,
|
||||||
},
|
1527818937,
|
||||||
{
|
1527813950,
|
||||||
"ts": 1527814864
|
1527813888,
|
||||||
},
|
1527822099,
|
||||||
{
|
1588760636420,
|
||||||
"ts": 1527819607
|
1527819089,
|
||||||
},
|
1527817361,
|
||||||
{
|
1527812934,
|
||||||
"ts": 1527821070
|
1588161314887,
|
||||||
},
|
1527817165,
|
||||||
{
|
1609162269829,
|
||||||
"ts": 1577812269585
|
1579295606403,
|
||||||
},
|
1589031340746,
|
||||||
{
|
1527812902,
|
||||||
"ts": 1573768865232
|
1527817369,
|
||||||
},
|
1527819687,
|
||||||
{
|
1527821254,
|
||||||
"ts": 1527822814
|
1527817709,
|
||||||
},
|
1527823208,
|
||||||
{
|
1527811827,
|
||||||
"ts": 1527823161
|
1579459605988,
|
||||||
},
|
1527815991,
|
||||||
{
|
1527823707,
|
||||||
"ts": 1527821042
|
1527811729,
|
||||||
},
|
1527823733,
|
||||||
{
|
1527820620,
|
||||||
"ts": 1527818810
|
1527811599,
|
||||||
},
|
1604431102462,
|
||||||
{
|
1527818092,
|
||||||
"ts": 1577823792516
|
1527816106,
|
||||||
},
|
1579723460957,
|
||||||
{
|
1527814910,
|
||||||
"ts": 1588858155947
|
1527816263,
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589024311021
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816916
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527820291
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813125
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813937
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1591804639647
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813212
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1584529741244
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1575128717139
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813319
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527822368
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819178
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1594129207239
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1594129204513
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815309
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814102
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818975
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578326320888
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816152
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816463
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818094
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814855
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819033
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577817988469
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819185
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814887
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818217
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1571946107980
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1581610643511
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811674
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1581610659810
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818401
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1592303194144
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578607689918
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818341
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818425
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818422
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812633
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816328
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588784260692
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812607
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527822096
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588152878869
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817624
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812732
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811600
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819661
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814357
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1582146016627
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819872
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579034883717
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817357
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818937
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813950
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813888
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527822099
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588760636420
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819089
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817361
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812934
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588161314887
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817165
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1609162269829
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579295606403
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589031340746
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812902
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817369
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819687
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527821254
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817709
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823208
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811827
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579459605988
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815991
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823707
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811729
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823733
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527820620
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811599
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1604431102462
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818092
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816106
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579723460957
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814910
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816263
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1609162463793
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1609599425410
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812939
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1614602054303
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1649142546981,
|
|
||||||
}
|
|
||||||
];
|
];
|
|
@ -7,12 +7,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1577383674332, e: "to howl" },// انګولل - to howl, wail
|
1577383674332,// انګولل - to howl, wail
|
||||||
{ ts: 1527818962, e: "to sneeze" },// پرنجل - to sneeze
|
1527818962,// پرنجل - to sneeze
|
||||||
{ ts: 1527821425, e: "to cough" },// ټوخل - to cough
|
1527821425,// ټوخل - to cough
|
||||||
{ ts: 1527812767, e: "to laugh" },// خندل - to laugh
|
1527812767,// خندل - to laugh
|
||||||
{ ts: 1605360223155, e: "to jump" },// دنګل - to jump, leap, run, race
|
1605360223155,// دنګل - to jump, leap, run, race
|
||||||
{ ts: 1605360127430, e: "to swing" },// زنګل - to swing, rock (back and forth)
|
1605360127430,// زنګل - to swing, rock (back and forth)
|
||||||
{ ts: 1527812717, e: "to swing" },// ژړل - to cry
|
1527812717,// ژړل - to cry
|
||||||
{ ts: 1591899573844, e: "to dance" },// نڅل - to dance
|
1591899573844,// نڅل - to dance
|
||||||
]
|
]
|
||||||
|
|
|
@ -7,40 +7,40 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527813473, e: "to fly" },// الوتل - to fly
|
1527813473,// الوتل - to fly
|
||||||
{ ts: 1527814012, e: "to pass over" },// اوښتل - to pass over, overturn, be flipped over, spill over, shift, change, diverge, pass, cross, abandon
|
1527814012,// اوښتل - to pass over, overturn, be flipped over, spill over, shift, change, diverge, pass, cross, abandon
|
||||||
{ ts: 1527822843, e: "to seem" },// برېښېدل - to appear, seem; to shine, sparkle; to smart, have a pricking pain
|
1527822843,// برېښېدل - to appear, seem; to shine, sparkle; to smart, have a pricking pain
|
||||||
{ ts: 1527815183, e: "to understand" },// پوهېدل - to understand (to do the act of understanding)
|
1527815183,// پوهېدل - to understand (to do the act of understanding)
|
||||||
{ ts: 1527816495, e: "to escape" },// تښتېدل - to run off, escape, flee
|
1527816495,// تښتېدل - to run off, escape, flee
|
||||||
{ ts: 1527813022, e: "to cough" },// ټوخېدل - to cough
|
1527813022,// ټوخېدل - to cough
|
||||||
{ ts: 1527817259, e: "to fall" },// پرېوتل - to fall
|
1527817259,// پرېوتل - to fall
|
||||||
{ ts: 1577572987826, e: "to fight, bump into" },// جنګېدل - to fight, battle, war, to bump or crash into
|
1577572987826,// جنګېدل - to fight, battle, war, to bump or crash into
|
||||||
{ ts: 1527818535, e: "to hang" },// ځړېدل - to hang, to be hung, to be lowered
|
1527818535,// ځړېدل - to hang, to be hung, to be lowered
|
||||||
{ ts: 1527812273, e: "to shine" },// ځلېدل - to shine, glow, glitter
|
1527812273,// ځلېدل - to shine, glow, glitter
|
||||||
{ ts: 1577921634357, e: "to be delayed" },// ځنډېدل - to be delayed, postponed, held back, detained
|
1577921634357,// ځنډېدل - to be delayed, postponed, held back, detained
|
||||||
{ ts: 1527814025, e: "to climb" },// ختل - to climb, ascend, rise, go up; to fall out, to fall off, to leave/dissapear; to turn out to be ...
|
1527814025,// ختل - to climb, ascend, rise, go up; to fall out, to fall off, to leave/dissapear; to turn out to be ...
|
||||||
{ ts: 1527823376, e: "to go out" },// وتل - to go out
|
1527823376,// وتل - to go out
|
||||||
{ ts: 1527814433, e: "to shake" },// خوځېدل - to shake, tremble, wiggle, move, vibrate
|
1527814433,// خوځېدل - to shake, tremble, wiggle, move, vibrate
|
||||||
{ ts: 1527818980, e: "to shake" },// رپېدل - to quiver, shake, flutter, shiver
|
1527818980,// رپېدل - to quiver, shake, flutter, shiver
|
||||||
{ ts: 1578191534500, e: "to have mercy" },// رحمېدل - to have mercy on, to have compassion on
|
1578191534500,// رحمېدل - to have mercy on, to have compassion on
|
||||||
{ ts: 1527813573, e: "to arrive" },// رسېدل - reach, arrive; (fig.) understand, attain to; mature, ripen
|
1527813573,// رسېدل - reach, arrive; (fig.) understand, attain to; mature, ripen
|
||||||
{ ts: 1527813837, e: "to burn" },// سوځېدل - to burn
|
1527813837,// سوځېدل - to burn
|
||||||
{ ts: 1527814597, e: "to be ashamed" },// شرمېدل - to be ashamed, to be embarrassed, to be shy
|
1527814597,// شرمېدل - to be ashamed, to be embarrassed, to be shy
|
||||||
{ ts: 1527821558, e: "to break apart" },// شړېدل - to be decomposed, break down, fall apart; to be boiled soft (meat)
|
1527821558,// شړېدل - to be decomposed, break down, fall apart; to be boiled soft (meat)
|
||||||
{ ts: 1527811516, e: "to be torn" },// شلېدل - to be torn, broken, rent, broken, severed
|
1527811516,// شلېدل - to be torn, broken, rent, broken, severed
|
||||||
{ ts: 1527812615, e: "to stretch out" },// غځېدل - stretch out, lie, be extended, expand
|
1527812615,// غځېدل - stretch out, lie, be extended, expand
|
||||||
{ ts: 1527813680, e: "to speak" },// غږېدل - to converse, speak, talk, sing
|
1527813680,// غږېدل - to converse, speak, talk, sing
|
||||||
{ ts: 1527814867, e: "to fall" },// غورځېدل - to jump, leap, fall
|
1527814867,// غورځېدل - to jump, leap, fall
|
||||||
{ ts: 1527823696, e: "to be deceived" },// غولېدل - to be deceived, cheated, fooled
|
1527823696,// غولېدل - to be deceived, cheated, fooled
|
||||||
{ ts: 1527812759, e: "to sit down" },// کېناستل - to sit
|
1527812759,// کېناستل - to sit
|
||||||
{ ts: 1527812645, e: "to walk around" },// ګرځېدل - to walk, wander, turn about; to become, to be
|
1527812645,// ګرځېدل - to walk, wander, turn about; to become, to be
|
||||||
{ ts: 1527814430, e: "to tremble" },// لړزېدل - to shake, shudder, tremble, vibrate
|
1527814430,// لړزېدل - to shake, shudder, tremble, vibrate
|
||||||
{ ts: 1527814085, e: "to touch" },// لګېدل - to be busy or in motion, to be spent, to flare up, to hit, crash, touch, to suit / fit / conform, to seem
|
1527814085,// لګېدل - to be busy or in motion, to be spent, to flare up, to hit, crash, touch, to suit / fit / conform, to seem
|
||||||
{ ts: 1527813994, e: "to fall" },// لوېدل - to fall, to tumble, go down, settle
|
1527813994,// لوېدل - to fall, to tumble, go down, settle
|
||||||
{ ts: 1527823019, e: "to be afraid" },// وېرېدل - to be afraid, scared, to fear
|
1527823019,// وېرېدل - to be afraid, scared, to fear
|
||||||
{ ts: 1581086654898, e: "to become" },// کېدل - to become _____
|
1581086654898,// کېدل - to become _____
|
||||||
{ ts: 1527812754, e: "to happen" },// کېدل - to happen, occur
|
1527812754,// کېدل - to happen, occur
|
||||||
{ ts: 1527815348, e: "to go" },// تلل - to go
|
1527815348,// تلل - to go
|
||||||
{ ts: 1527815216, e: "to come" },// راتلل - to come
|
1527815216,// راتلل - to come
|
||||||
{ ts: 1527819674, e: "to lie down" },// څملاستل - to lie down
|
1527819674,// څملاستل - to lie down
|
||||||
]
|
]
|
||||||
|
|
|
@ -7,73 +7,73 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527814617, e: "to take", ec: ["take", "takes", "taking", "took", "taken"] }, // نیول - to take
|
1527814617, // نیول - to take
|
||||||
{ ts: 1527811872, e: "to put on", ec: ["put", "puts", "putting", "put", "put"] }, // اچول - to put, pour, drop, throw, put on
|
1527811872, // اچول - to put, pour, drop, throw, put on
|
||||||
{ ts: 1527817298, e: "to take", ec: ["take", "takes", "taking", "took", "taken"] }, // اخیستل - to take, buy, purchase, receive; to shave, cut with scissors
|
1527817298, // اخیستل - to take, buy, purchase, receive; to shave, cut with scissors
|
||||||
{ ts: 1527816127, e: "to turn over" }, // اړول - to turn over, flip over; convert, change; to move over to, establish oneself in a new spot; divert, turn away, hijack
|
1527816127, // اړول - to turn over, flip over; convert, change; to move over to, establish oneself in a new spot; divert, turn away, hijack
|
||||||
{ ts: 1527811605, e: "to test", ec: ["test", "tests", "testing", "tested", "tested"] }, // ازمویل - to attempt, try; to experiment, test
|
1527811605, // ازمویل - to attempt, try; to experiment, test
|
||||||
{ ts: 1527812458, e: "to send", ec: ["send", "sends", "sending", "sent", "sent"] },// استول - to send
|
1527812458,// استول - to send
|
||||||
{ ts: 1527811397, e: "to wear", ec: ["wear", "wears", "wearing", "worn", "worn"] },// اغوستل - to wear, to put on (clothes)
|
1527811397,// اغوستل - to wear, to put on (clothes)
|
||||||
{ ts: 1527816125, e: "to make fly" },// الوزول - to make fly, to toss, to release (birds); to blow up
|
1527816125,// الوزول - to make fly, to toss, to release (birds); to blow up
|
||||||
{ ts: 1527816146, e: "to take out" },// ایستل - to throw out, discard, chuck, toss; to extract, to take out
|
1527816146,// ایستل - to throw out, discard, chuck, toss; to extract, to take out
|
||||||
{ ts: 1527817786, e: "to forgive", ec: ["forgive", "forgives", "forgiving", "forgave", "forgiven"] },// بخښل - to forgive, to pardon
|
1527817786,// بخښل - to forgive, to pardon
|
||||||
{ ts: 1527816092, e: "to call, deem, consider", ec: ["deem", "deems", "deeming", "deemed", "deemed"] },// بلل - to call, invite; to consider, deem
|
1527816092,// بلل - to call, invite; to consider, deem
|
||||||
{ ts: 1577389204616, e: "to open", ec: ["open", "opens", "opening", "opened", "opened" ] }, // پرانیستل - to open; to undo; to initiate
|
1577389204616, // پرانیستل - to open; to undo; to initiate
|
||||||
{ ts: 1527816874, e: "to sell" },// پلورل - to sell
|
1527816874,// پلورل - to sell
|
||||||
{ ts: 1527815190, e: "to quit" },// پرېښودل - to quit
|
1527815190,// پرېښودل - to quit
|
||||||
{ ts: 1527815216, e: "to come" },// راتلل - to come
|
1527815216,// راتلل - to come
|
||||||
{ ts: 1527812284, e: "to put" },// کېښودل - to put
|
1527812284,// کېښودل - to put
|
||||||
{ ts: 1577394422280, e: "to make understand" },// پوهول - to explain, to try to make understand
|
1577394422280,// پوهول - to explain, to try to make understand
|
||||||
{ ts: 1527815165, e: "to recognize" },// پېژندل - to recognize, know, meet
|
1527815165,// پېژندل - to recognize, know, meet
|
||||||
{ ts: 1527813405, e: "to tie" },// تړل - to connect, tie, bind, close
|
1527813405,// تړل - to connect, tie, bind, close
|
||||||
{ ts: 1527813394, e: "to select, appoint" },// ټاکل - to select, appoint
|
1527813394,// ټاکل - to select, appoint
|
||||||
{ ts: 1527813755, e: "to bother" },// ځورول - to bother, irritate, torture, distress, vex, grind on
|
1527813755,// ځورول - to bother, irritate, torture, distress, vex, grind on
|
||||||
{ ts: 1527814586, e: "to drive" },// چلول - to drive, operate, handle, put forward, circulate
|
1527814586,// چلول - to drive, operate, handle, put forward, circulate
|
||||||
{ ts: 1527816564, e: "to bite" },// چیچل - to bite, chew, grind (teeth), clench (teeth), sting
|
1527816564,// چیچل - to bite, chew, grind (teeth), clench (teeth), sting
|
||||||
{ ts: 1527812790, e: "to eat" },// خوړل - to eat, to bite
|
1527812790,// خوړل - to eat, to bite
|
||||||
{ ts: 1527815489, e: "to bite" },// داړل - to bite, tear, gnaw
|
1527815489,// داړل - to bite, tear, gnaw
|
||||||
{ ts: 1527813572, e: "to deliver" },// رسول - to deliver, to make arrive, provide, send, supply, bring to,
|
1527813572,// رسول - to deliver, to make arrive, provide, send, supply, bring to,
|
||||||
{ ts: 1527816064, e: "to endure" },// زغمل - to endure, bear, tolerate, take on, digest
|
1527816064,// زغمل - to endure, bear, tolerate, take on, digest
|
||||||
{ ts: 1527813637, e: "to praise" },// ستایل - to praise, commend, glorify, mention
|
1527813637,// ستایل - to praise, commend, glorify, mention
|
||||||
{ ts: 1527817750, e: "to drink" },// سکل - to drink
|
1527817750,// سکل - to drink
|
||||||
{ ts: 1527814596, e: "to shame" },// شرمول - to shame, to disgrace, to dishonor
|
1527814596,// شرمول - to shame, to disgrace, to dishonor
|
||||||
{ ts: 1527814908, e: "to drive out" },// شړل - to drive out, fire, evict, push out
|
1527814908,// شړل - to drive out, fire, evict, push out
|
||||||
{ ts: 1527815531, e: "to tear" },// شکول - to tear, to break of, to dig up, to pull out
|
1527815531,// شکول - to tear, to break of, to dig up, to pull out
|
||||||
{ ts: 1527815296, e: "to count" },// شمارل - to count
|
1527815296,// شمارل - to count
|
||||||
{ ts: 1527815273, e: "to count" },// شمېرل - to count
|
1527815273,// شمېرل - to count
|
||||||
{ ts: 1527811293, e: "to show" },// ښودل - to show; to teach; to suit, look good with (fig.), befit
|
1527811293,// ښودل - to show; to teach; to suit, look good with (fig.), befit
|
||||||
{ ts: 1527817865, e: "to extend" },// غځول - to extend, to stretch out, to expand
|
1527817865,// غځول - to extend, to stretch out, to expand
|
||||||
{ ts: 1527815886, e: "to condemn" },// غندل - to condemn, reproach, to criticize
|
1527815886,// غندل - to condemn, reproach, to criticize
|
||||||
{ ts: 1527816122, e: "to throw" },// غورځول - to throw, hurl, fling
|
1527816122,// غورځول - to throw, hurl, fling
|
||||||
{ ts: 1527812627, e: "to want" },// غوښتل - to want, to request
|
1527812627,// غوښتل - to want, to request
|
||||||
{ ts: 1527819301, e: "to deceive" },// غولول - to deceive, cheat, fool
|
1527819301,// غولول - to deceive, cheat, fool
|
||||||
{ ts: 1527813568, e: "to use" },// کارول - to use, utilize
|
1527813568,// کارول - to use, utilize
|
||||||
{ ts: 1527816300, e: "to sow, plant" },// کرل - to sow, to plant
|
1527816300,// کرل - to sow, to plant
|
||||||
{ ts: 1527817577, e: "to put" },// کښېښودل - to put, to put down, to set in place
|
1527817577,// کښېښودل - to put, to put down, to set in place
|
||||||
{ ts: 1527811289, e: "to seat" },// کېنول - to seat, to make or have someone sit down
|
1527811289,// کېنول - to seat, to make or have someone sit down
|
||||||
{ ts: 1527817661, e: "to endure" },// ګالل - to bear up under (diffucult things), to suffer, to take, to endure
|
1527817661,// ګالل - to bear up under (diffucult things), to suffer, to take, to endure
|
||||||
{ ts: 1527812649, e: "to win, earn" },// ګټل - to earn (money), to win
|
1527812649,// ګټل - to earn (money), to win
|
||||||
{ ts: 1527812612, e: "to sew" },// ګنډل - to sew, mend, make, knit
|
1527812612,// ګنډل - to sew, mend, make, knit
|
||||||
{ ts: 1527812000, e: "to consider" },// ګڼل - to count, consider, reckon, suppose, assume
|
1527812000,// ګڼل - to count, consider, reckon, suppose, assume
|
||||||
{ ts: 1527812873, e: "to read" },// لوستل - to read, study
|
1527812873,// لوستل - to read, study
|
||||||
{ ts: 1527812869, e: "to search" },// لټول - to search, seek
|
1527812869,// لټول - to search, seek
|
||||||
{ ts: 1527813866, e: "to send" },// لېږل - to send
|
1527813866,// لېږل - to send
|
||||||
{ ts: 1527812856, e: "to write" },// لیکل - to write
|
1527812856,// لیکل - to write
|
||||||
{ ts: 1527815085, e: "to accept" },// منل - to accept, to believe
|
1527815085,// منل - to accept, to believe
|
||||||
{ ts: 1527815399, e: "to hit" },// وهل - to hit
|
1527815399,// وهل - to hit
|
||||||
{ ts: 1527823020, e: "to scare" },// وېرول - to make afraid, to scare, to make fear
|
1527823020,// وېرول - to make afraid, to scare, to make fear
|
||||||
{ ts: 1527811701, e: "to divide" },// وېشل - divide, distribute, share
|
1527811701,// وېشل - divide, distribute, share
|
||||||
{ ts: 1579015359582, e: "to make ____ ____" },// کول - to make ____ ____ (as in "He's making me angry.")
|
1579015359582,// کول - to make ____ ____ (as in "He's making me angry.")
|
||||||
{ ts: 1527812752, e: "to do" },// کول - to do (an action or activity)
|
1527812752,// کول - to do (an action or activity)
|
||||||
{ ts: 1527816865, e: "to bring" },// وړل
|
1527816865,// وړل
|
||||||
{ ts: 1527815214, e: "to bring" },// راوړل - to bring
|
1527815214,// راوړل - to bring
|
||||||
{ ts: 1527819827, e: "to bring" },// راوستل - to bring
|
1527819827,// راوستل - to bring
|
||||||
{ ts: 1527812507, e: "to take/bring" }, // بوتلل - to take
|
1527812507, // بوتلل - to take
|
||||||
// also grammatically transitive
|
// also grammatically transitive
|
||||||
{ ts: 1527812275, e: "to see" },// لیدل - to see
|
1527812275,// لیدل - to see
|
||||||
{ ts: 1577049208257, e: "to hear" },// اورېدل - to hear
|
1577049208257,// اورېدل - to hear
|
||||||
{ ts: 1527812362, e: "to declare" },// فرمایل - to declare
|
1527812362,// فرمایل - to declare
|
||||||
{ ts: 1527812751, e: "to look" },// کتل - to look
|
1527812751,// کتل - to look
|
||||||
{ ts: 1527815396, e: "to say" },// وایل - to say
|
1527815396,// وایل - to say
|
||||||
{ ts: 1527817013, e: "to say" },// ویل - to say
|
1527817013,// ویل - to say
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{ ts: 1527819253 },
|
1527819253, // shUroo kawul
|
||||||
{ ts: 1527812566 },
|
1527812566, // doka kawul
|
||||||
];
|
];
|
|
@ -1,389 +1,131 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{
|
1588760879818,
|
||||||
"ts": 1588760879818
|
1577223176187,
|
||||||
},
|
1527814793,
|
||||||
{
|
1527820761,
|
||||||
"ts": 1577223176187
|
1527818887,
|
||||||
},
|
1527821797,
|
||||||
{
|
1527822931,
|
||||||
"ts": 1527814793
|
1588853804403,
|
||||||
},
|
1527813033,
|
||||||
{
|
1527812404,
|
||||||
"ts": 1527820761
|
1527814231,
|
||||||
},
|
1527815729,
|
||||||
{
|
1527813842,
|
||||||
"ts": 1527818887
|
1527815032,
|
||||||
},
|
1588781671306,
|
||||||
{
|
1527817582,
|
||||||
"ts": 1527821797
|
1527815844,
|
||||||
},
|
1588073731662,
|
||||||
{
|
1527813895,
|
||||||
"ts": 1527822931
|
1527812011,
|
||||||
},
|
1581906176268,
|
||||||
{
|
1584689265872,
|
||||||
"ts": 1588853804403
|
1583269419054,
|
||||||
},
|
1527814169,
|
||||||
{
|
1577394057681,
|
||||||
"ts": 1527813033
|
1527815170,
|
||||||
},
|
1581189978440,
|
||||||
{
|
1527815167,
|
||||||
"ts": 1527812404
|
1591872442272,
|
||||||
},
|
1527815324,
|
||||||
{
|
1577398809240,
|
||||||
"ts": 1527814231
|
1582391432928,
|
||||||
},
|
1580755448566,
|
||||||
{
|
1527821367,
|
||||||
"ts": 1527815729
|
1527814905,
|
||||||
},
|
1527821358,
|
||||||
{
|
1527823430,
|
||||||
"ts": 1527813842
|
1577501138221,
|
||||||
},
|
1527814919,
|
||||||
{
|
1579644515886,
|
||||||
"ts": 1527815032
|
1577571228633,
|
||||||
},
|
1577571096956,
|
||||||
{
|
1577571391494,
|
||||||
"ts": 1588781671306
|
1589019870271,
|
||||||
},
|
1585310006948,
|
||||||
{
|
1527816202,
|
||||||
"ts": 1527817582
|
1527821166,
|
||||||
},
|
1527816943,
|
||||||
{
|
1527812713,
|
||||||
"ts": 1527815844
|
1577905544406,
|
||||||
},
|
1527812522,
|
||||||
{
|
1527811694,
|
||||||
"ts": 1588073731662
|
1588783381414,
|
||||||
},
|
1527814126,
|
||||||
{
|
1588426001132,
|
||||||
"ts": 1527813895
|
1527819313,
|
||||||
},
|
1527816079,
|
||||||
{
|
1527811394,
|
||||||
"ts": 1527812011
|
1577900112011,
|
||||||
},
|
1527814184,
|
||||||
{
|
1577898920635,
|
||||||
"ts": 1581906176268
|
1527818360,
|
||||||
},
|
1527814173,
|
||||||
{
|
1527817114,
|
||||||
"ts": 1584689265872
|
1527812812,
|
||||||
},
|
1527816735,
|
||||||
{
|
1527815784,
|
||||||
"ts": 1583269419054
|
1577059043220,
|
||||||
},
|
1527817671,
|
||||||
{
|
1527817257,
|
||||||
"ts": 1527814169
|
1527816895,
|
||||||
},
|
1527818346,
|
||||||
{
|
1527815734,
|
||||||
"ts": 1577394057681
|
1585474304911,
|
||||||
},
|
1527823278,
|
||||||
{
|
1527812410,
|
||||||
"ts": 1527815170
|
1527815236,
|
||||||
},
|
1527817576,
|
||||||
{
|
1566120362058,
|
||||||
"ts": 1581189978440
|
1527817668,
|
||||||
},
|
1591033069786,
|
||||||
{
|
1527816404,
|
||||||
"ts": 1527815167
|
1591782112190,
|
||||||
},
|
1527811948,
|
||||||
{
|
1589883893191,
|
||||||
"ts": 1591872442272
|
1527820128,
|
||||||
},
|
1527814077,
|
||||||
{
|
1577057620783,
|
||||||
"ts": 1527815324
|
1585475932743,
|
||||||
},
|
1527814972,
|
||||||
{
|
1527821483,
|
||||||
"ts": 1577398809240
|
1578607410634,
|
||||||
},
|
1578683722262,
|
||||||
{
|
1527823367,
|
||||||
"ts": 1582391432928
|
1578705585960,
|
||||||
},
|
1588074081731,
|
||||||
{
|
1527811848,
|
||||||
"ts": 1580755448566
|
1578769047886,
|
||||||
},
|
1578769553469,
|
||||||
{
|
1527811975,
|
||||||
"ts": 1527821367
|
1573149364576,
|
||||||
},
|
1527814821,
|
||||||
{
|
1527819155,
|
||||||
"ts": 1527814905
|
1579034600343,
|
||||||
},
|
1588152260378,
|
||||||
{
|
1527817122,
|
||||||
"ts": 1527821358
|
1527817119,
|
||||||
},
|
1527813947,
|
||||||
{
|
1527811901,
|
||||||
"ts": 1527823430
|
1527814560,
|
||||||
},
|
1527820885,
|
||||||
{
|
1579295191646,
|
||||||
"ts": 1577501138221
|
1579295944312,
|
||||||
},
|
1527812920,
|
||||||
{
|
1579387693725,
|
||||||
"ts": 1527814919
|
1527815573,
|
||||||
},
|
1527811761,
|
||||||
{
|
1527820482,
|
||||||
"ts": 1579644515886
|
1527817763,
|
||||||
},
|
1579721195157,
|
||||||
{
|
1527817238,
|
||||||
"ts": 1577571228633
|
1589640142987,
|
||||||
},
|
1588153594269,
|
||||||
{
|
1527812005,
|
||||||
"ts": 1577571096956
|
1576947352743,
|
||||||
},
|
1527819292,
|
||||||
{
|
1527812941,
|
||||||
"ts": 1577571391494
|
1527814768,
|
||||||
},
|
1579824223049,
|
||||||
{
|
|
||||||
"ts": 1589019870271
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1585310006948
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816202
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527821166
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816943
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812713
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577905544406
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812522
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811694
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588783381414
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814126
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588426001132
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819313
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816079
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811394
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577900112011
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814184
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577898920635
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818360
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814173
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817114
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812812
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816735
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815784
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577059043220
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817671
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817257
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816895
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818346
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815734
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1585474304911
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823278
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812410
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815236
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817576
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1566120362058
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817668
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1591033069786
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816404
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1591782112190
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811948
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589883893191
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527820128
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814077
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577057620783
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1585475932743
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814972
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527821483
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578607410634
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578683722262
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823367
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578705585960
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588074081731
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811848
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578769047886
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1578769553469
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811975
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1573149364576
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814821
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819155
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579034600343
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588152260378
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817122
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817119
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813947
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811901
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814560
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527820885
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579295191646
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579295944312
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812920
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579387693725
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815573
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811761
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527820482
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817763
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579721195157
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817238
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589640142987
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588153594269
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812005
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1576947352743
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527819292
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812941
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814768
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579824223049
|
|
||||||
}
|
|
||||||
];
|
];
|
|
@ -1,230 +1,62 @@
|
||||||
module.exports = [
|
module.exports = [
|
||||||
{
|
1527819182,
|
||||||
"ts": 1527819182,
|
1527812403,
|
||||||
},
|
1577299232429,
|
||||||
{
|
1527815728,
|
||||||
"ts": 1527812403
|
1527821309,
|
||||||
},
|
1527821309,
|
||||||
{
|
1527815843,
|
||||||
"ts": 1577299232429
|
1588073727998,
|
||||||
},
|
1527812010,
|
||||||
{
|
1527820144,
|
||||||
"ts": 1527815728
|
1584689306281,
|
||||||
},
|
1583269391864,
|
||||||
{
|
1577394118297,
|
||||||
"ts": 1527821309
|
1571859113828,
|
||||||
},
|
1527812385,
|
||||||
{
|
1581189437955,
|
||||||
"ts": 1527821309
|
1527820021,
|
||||||
},
|
1591872434020,
|
||||||
{
|
1527815323,
|
||||||
"ts": 1527815843
|
1527812388,
|
||||||
},
|
1580754885011,
|
||||||
{
|
1527821357,
|
||||||
"ts": 1588073727998
|
1577501129214,
|
||||||
},
|
1527822697,
|
||||||
{
|
1579908304357,
|
||||||
"ts": 1527812010
|
1579644522321,
|
||||||
},
|
1527815731,
|
||||||
{
|
1589019863017,
|
||||||
"ts": 1527820144
|
1527816201,
|
||||||
},
|
1527821167,
|
||||||
{
|
1527816945,
|
||||||
"ts": 1584689306281
|
1527816947,
|
||||||
},
|
1527812712,
|
||||||
{
|
1527817455,
|
||||||
"ts": 1583269391864
|
1527815074,
|
||||||
},
|
1527811693,
|
||||||
{
|
1527816239,
|
||||||
"ts": 1577394118297
|
1527811395,
|
||||||
},
|
1527812222,
|
||||||
{
|
1527814183,
|
||||||
"ts": 1571859113828
|
1577898915919,
|
||||||
},
|
1592303701516,
|
||||||
{
|
1527814174,
|
||||||
"ts": 1527812385
|
1527812811,
|
||||||
},
|
1527813502,
|
||||||
{
|
1527811432,
|
||||||
"ts": 1581189437955
|
1527813665,
|
||||||
},
|
1527817258,
|
||||||
{
|
1527823503,
|
||||||
"ts": 1527820021
|
1527818347,
|
||||||
},
|
1527823277,
|
||||||
{
|
1527813179,
|
||||||
"ts": 1591872434020
|
1591033078746,
|
||||||
},
|
1527813065,
|
||||||
{
|
1527811949,
|
||||||
"ts": 1527815323
|
1589883890933,
|
||||||
},
|
1527814493,
|
||||||
{
|
1527823133,
|
||||||
"ts": 1527812388
|
1527823366,
|
||||||
},
|
1527820386,
|
||||||
{
|
];
|
||||||
"ts": 1580754885011
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527821357
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577501129214
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527822697
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579908304357
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579644522321
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815731
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589019863017
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816201
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527821167
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816945
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816947
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812712
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817455
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815074
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811693
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816239
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811395
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812222
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814183
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1577898915919
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1592303701516
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814174
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812811
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813502
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811432
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813665
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817258
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823503
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527818347
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823277
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813179
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1591033078746
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813065
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527811949
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589883890933
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814493
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823133
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527823366
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527820386
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814819
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579034597012
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1588152253147
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817121
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817118
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527814350
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816012
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579387733916
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527817762
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1589640176788
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527812004
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579724723019
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1579822065104
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527816559
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527813556
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"ts": 1527815444
|
|
||||||
}
|
|
||||||
]
|
|
|
@ -7,6 +7,8 @@ import {
|
||||||
} from "@lingdocs/pashto-inflector";
|
} from "@lingdocs/pashto-inflector";
|
||||||
import { categorize } from "../lib/categorize";
|
import { categorize } from "../lib/categorize";
|
||||||
|
|
||||||
|
|
||||||
|
// TODO: BIG ISSUE WITH THE LOC ADVERBS BEING LUMPED INTO THE ADVERBS!
|
||||||
const words = categorize<T.Entry, {
|
const words = categorize<T.Entry, {
|
||||||
nouns: T.NounEntry[],
|
nouns: T.NounEntry[],
|
||||||
adjectives: T.AdjectiveEntry[],
|
adjectives: T.AdjectiveEntry[],
|
||||||
|
|
Loading…
Reference in New Issue