Parsed Strongs for translationCore.

This commit is contained in:
Bruce McLean 2018-11-20 16:45:55 -05:00
parent a961acd2be
commit 5f348d6143
8682 changed files with 16361 additions and 0 deletions

20
.babelrc Normal file
View File

@ -0,0 +1,20 @@
{
"presets": [
[
"env",
{
"targets": {
"node": "6.10"
}
}
]
],
"plugins": [
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
]
}

21
.eslintrc Normal file
View File

@ -0,0 +1,21 @@
{
"extends": ["eslint:recommended"],
"rules": {
"no-cond-assign": "error",
"no-empty": "error",
"no-unused-vars": "error",
"no-undef": "error",
"semi": ["error", "always", {"omitLastInOneLineBlock": true}],
"no-console": "off"
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"modules": true
}
},
"env": {
"browser": true,
"node": true
}
}

65
.gitignore vendored Normal file
View File

@ -0,0 +1,65 @@
#lib
lib
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules/
jspm_packages/
# Typescript v1 declaration files
typings/
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env
# IntelliJ config
.idea
*.iml

View File

@ -0,0 +1,36 @@
/* eslint-env jest */
import fs from 'fs-extra';
import path from 'path-extra';
import {generateStrongsFiles} from "../src/strongsHelpers";
describe('strongsParse', function() {
beforeEach(() => {
});
afterEach(() => {
});
it('should output UGNT chapter files', async () => {
await generateStrongsFiles('v0');
}, 30000); // max timeout (should be long enough, but may need to be increased on a slow connection)
// for debugging
// it('should download and output UGNT chapter files', () => {
// return new Promise((resolve) => {
// ugntHelpers.generateUgntVersion(version, resolve);
// }).then(() => {
// console.log('UGNT processing completed!');
// });
// }, 300000); // max timeout (should be long enough, but may need to be increased on a slow connection)
});
//
// helpers
//
function deletePath(filePath) {
if (fs.existsSync(filePath)) {
fs.removeSync(filePath);
}
}

7307
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

61
package.json Normal file
View File

@ -0,0 +1,61 @@
{
"name": "strongs-parse",
"version": "0.0.1",
"description": "for parsing Hebrew Strongs",
"main": "lib/index.js",
"scripts": {
"strongs-parse": "babel-node ./scripts/strongsParse.js --ver=v0",
"test": "eslint ./src ./index.js && jest",
"fix": "eslint ./src ./index.js --fix",
"prebuild": "rm -rf ./lib",
"build": "babel ./src -d ./lib",
"prepare": "if [ ! -d './lib/' ]; then npm run build; fi",
"prepublishOnly": "npm test && npm run build",
"postpublish": "git tag $npm_package_version && git push origin $npm_package_version"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**"
],
"coverageDirectory": "coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/translationCoreApps/usfm-js.git"
},
"keywords": [
"USFM",
"Scripture",
"JSON",
"Bible"
],
"author": "@unfoldingword",
"license": "ISC",
"bugs": {
"url": "https://github.com/translationCoreApps/usfm-js/issues"
},
"homepage": "https://github.com/unfoldingWord",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.18.1",
"eslint-config-google": "^0.6.0",
"eslint-plugin-jest": "^21.21.0",
"jest": "^21.0.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"fs-extra": "^4.0.3",
"html-to-json-data": "^1.6.0",
"ospath": "^1.2.2",
"path-extra": "^3.0.0",
"request": "^2.87.0",
"url": "^0.11.0"
}
}

View File

@ -0,0 +1 @@
{"brief":"father","long":"source: a primitive word;\nmeaning: \"father\", in a literal and immediate, or figurative and remote application\nusage: chief, (fore-) father(-less), × patrimony, principal. Compare names in 'Abi-'.\n"}

View File

@ -0,0 +1 @@
{"brief":"perishing","long":"source: the same as \"H9\", miswritten for \"H11\";\nmeaning: a \"perishing\"\nusage: destruction.\n"}

View File

@ -0,0 +1 @@
{"brief":"rush","long":"source: from the same as \"H98\"; a marshy \"pool\" (others from a different root, a \"kettle\"); by implication\nmeaning: a \"rush\" (as growing there); collectively a \"rope\" of rushes\nusage: bulrush, caldron, hook, rush.\n"}

View File

@ -0,0 +1 @@
{"brief":"egg","long":"source: from the same as \"H948\";\nmeaning: an \"egg\" (from its whiteness)\nusage: egg.\n"}

View File

@ -0,0 +1 @@
{"brief":"palace","long":"source: (Aramaic) corresponding to \"H1002\";\nmeaning: a \"palace\"\nusage: palace.\n"}

View File

@ -0,0 +1 @@
{"brief":"castle","long":"source: of foreign origin;\nmeaning: a \"castle\" or \"palace\"\nusage: palace.\n"}

View File

@ -0,0 +1 @@
{"brief":"fortress","long":"source: from \"H1002\";\nmeaning: a \"fortress\"\nusage: castle.\n"}

View File

@ -0,0 +1 @@
{"brief":"a house","long":"source: probably from \"H1129\" abbreviated;\nmeaning: \"a house\" (in the greatest variation of applications, especially family, etc.)\nusage: court, daughter, door, + dungeon, family, + forth of, × great as would contain, hangings, home(born), (winter) house(-hold), inside(-ward), palace, place, + prison, + steward, + tablet, temple, web, + within(-out).\n"}

View File

@ -0,0 +1 @@
{"brief":"","long":"source: (Aramaic) corresponding to \"H1004\"\nusage: house.\n"}

View File

@ -0,0 +1 @@
{"brief":"Bajith","long":"source: the same as \"H1004\";\nmeaning: \"Bajith\", a place in Palestine\nusage: Bajith.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Aven","long":"source: from \"H1004\" and \"H205\"; house of vanity;\nmeaning: \"Beth-Aven\", a place in Palestine\nusage: Beth-aven.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-El","long":"source: from \"H1004\" and \"H410\"; house of God;\nmeaning: \"Beth-El\", a place in Palestine\nusage: Beth-el.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Arbel","long":"source: from \"H1004\" and \"H695\" and \"H410\"; house of God's ambush;\nmeaning: \"Beth-Arbel\", a place in Palestine\nusage: Beth-Arbel.\n"}

View File

@ -0,0 +1 @@
{"brief":"bowl","long":"source: probably from \"H5059\";\nmeaning: a \"bowl\" (as \"pounded\" out hollow)\nusage: basin, cup, goblet.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Baal-Meon","long":"source: from \"H1004\" and \"H1168\" and \"H4583\"; house of Baal of (the) habitation of (apparently by transposition); or (shorter) \"בֵּית מְעוֹן\"; house of habitation of (Baal);\nmeaning: \"Beth-Baal-Meon\", a place in Palestine\nusage: Beth-baal-meon. Compare \"H1186\" and \"H1194\".\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Biri","long":"source: from \"H1004\" and \"H1254\"; house of a creative one;\nmeaning: \"Beth-Biri\", a place in Palestine\nusage: Bethbirei.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Barah","long":"source: probably from \"H1004\" and \"H5679\"; house of (the) ford;\nmeaning: \"Beth-Barah\", a place in Palestine\nusage: Beth-barah.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Gader","long":"source: from \"H1004\" and \"H1447\"; house of (the) wall;\nmeaning: \"Beth-Gader\", a place in Palestine\nusage: Beth-gader.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Gamul","long":"source: from \"H1004\" and the passive participle of \"H1576\"; house of (the) weaned;\nmeaning: \"Beth-Gamul\", a place East of the Jordan\nusage: Beth-gamul.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Diblathajim","long":"source: from \"H1004\" and the dual of \"H1690\"; house of (the) two figcakes;\nmeaning: \"Beth-Diblathajim\", a place East of the Jordan\nusage: Beth-diblathaim.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Dagon","long":"source: from \"H1004\" and \"H1712\"; house of Dagon;\nmeaning: \"Beth-Dagon\", the name of two places in Palestine\nusage: Beth-dagon.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-elite","long":"source: patrial from \"H1008\" with the article interposed;\nmeaning: a \"Beth-elite\", or inhabitant of Bethel\nusage: Bethelite.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ha-Etsel","long":"source: from \"H1004\" and \"H681\" with the article interposed; house of the side;\nmeaning: \"Beth-ha-Etsel\", a place in Palestine\nusage: Beth-ezel.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-hag-Gilgal","long":"source: from \"H1004\" and \"H1537\" with the article interposed; house of Gilgal (or rolling);\nmeaning: \"Beth-hag-Gilgal\", a place in Palestine\nusage: Beth-gilgal.\n"}

View File

@ -0,0 +1 @@
{"brief":"wings of an army","long":"source: probably from \"H5062\" (through the idea of impending); a cover or heap; i.e.\nmeaning: (only plural) \"wings of an army\", or \"crowds of troops\"\nusage: bands.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ha-Jeshimoth","long":"source: from \"H1004\" and the plural of \"H3451\" with the article interposed; house of the deserts;\nmeaning: \"Beth-ha-Jeshimoth\", a town East of the Jordan\nusage: Beth-jeshimoth.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-hak-Kerem","long":"source: from \"H1004\" and \"H3754\" with the article interposed; house of the vineyard;\nmeaning: \"Beth-hak-Kerem\", a place in Palestine\nusage: Beth-haccerem.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-lechemite","long":"source: patrial from \"H1035\" with the article inserted;\nmeaning: a \"Beth-lechemite\", or native of Bethlechem\nusage: Bethlehemite.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ham-Merchak","long":"source: from \"H1004\" and \"H4801\" with the article interposed; house of the breadth;\nmeaning: \"Beth-ham-Merchak\", a place in Palestine\nusage: place that was far off.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ham-Markaboth","long":"source: or (shortened) \"בֵּית מַרְכָּבוֹת\"; from \"H1004\" and the plural of \"H4818\" (with or without the article interposed); place of (the) chariots;\nmeaning: \"Beth-ham-Markaboth\" or \"Beth-Markaboth\", a place in Palestine\nusage: Bethmarcaboth.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ha-Emek","long":"source: from \"H1004\" and \"H6010\" with the article interposed; house of the valley;\nmeaning: \"Beth-ha-Emek\", a place in Palestine\nusage: Beth-emek.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ha-Arabah","long":"source: from \"H1004\" and \"H6160\" with the article interposed; house of the Desert;\nmeaning: \"Beth-ha-Arabah\", a place in Palestine\nusage: Beth-arabah.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ha-Ram","long":"source: from \"H1004\" and \"H7311\" with the article interposed; house of the height;\nmeaning: \"Beth-ha-Ram\", a place East of the Jordan\nusage: Beth-aram.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-ha-Ran","long":"source: probably for \"H1027\";\nmeaning: \"Beth-ha-Ran\", a place East of the Jordan\nusage: Beth-haran.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-hash-Shittah","long":"source: from \"H1004\" and \"H7848\" with the article interposed; house of the acacia;\nmeaning: \"Beth-hash-Shittah\", a place in Palestine\nusage: Beth-shittah.\n"}

View File

@ -0,0 +1 @@
{"brief":"harvest","long":"source: a primitive root;\nmeaning: to \"harvest\"\nusage: gather.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-shimshite","long":"source: patrial from \"H1053\" with the article inserted;\nmeaning: a \"Beth-shimshite\", or inhabitant of Bethshemesh\nusage: Bethshemite.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Choglah","long":"source: from \"H1004\" and the same as \"H2295\"; house of a partridge;\nmeaning: \"Beth-Choglah\", a place in Palestine\nusage: Beth-hoglah.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Choron","long":"source: from \"H1004\" and \"H2356\"; house of hollowness;\nmeaning: \"Beth-Choron\", the name of two adjoining places in Palestine\nusage: Beth-horon.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Car","long":"source: from \"H1004\" and \"H3733\"; house of pasture;\nmeaning: \"Beth-Car\", a place in Palestine\nusage: Beth-car.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Lebaoth","long":"source: from \"H1004\" and the plural of \"H3833\"; house of lionesses;\nmeaning: \"Beth-Lebaoth\", a place in Palestine\nusage: Beth-lebaoth. Compare \"H3822\".\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Lechem","long":"source: from \"H1004\" and \"H3899\"; \"house of bread\";\nmeaning: \"Beth-Lechem\", a place in Palestine\nusage: Bethlehem.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-le-Aphrah","long":"source: from \"H1004\" and the feminine of \"H6083\" (with preposition interposed); house to (i.e. of) dust;\nmeaning: \"Beth-le-Aphrah\", a place in Palestine\nusage: house of Aphrah.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Millo","long":"source: or \"בֵּית מִלֹּא\"; from \"H1004\" and \"H4407\"; house of (the) rampart;\nmeaning: \"Beth-Millo\", the name of two citadels\nusage: house of Millo.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Maakah","long":"source: from \"H1004\" and \"H4601\"; house of Maakah;\nmeaning: \"Beth-Maakah\", a place in Palestine\nusage: Beth-maachah.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Nimrah","long":"source: from \"H1004\" and the feminine of \"H5246\"; \"house of\" (the) \"leopard\";\nmeaning: \"Beth-Nimrah\", a place east of the Jordan\nusage: Beth-Nimrah. Compare \"H5247\".\n"}

View File

@ -0,0 +1 @@
{"brief":"epistle","long":"source: (Aramaic) of Persian origin;\nmeaning: an \"epistle\" (as carried by a state courier or postman)\nusage: letter.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Eden","long":"source: from \"H1004\" and \"H5730\"; house of pleasure;\nmeaning: \"Beth-Eden\", a place in Syria\nusage: Beth-eden.\n"}

View File

@ -0,0 +1 @@
{"brief":"house of Azmaveth","long":"source: from \"H1004\" and \"H5820\";\nmeaning: \"house of Azmaveth\", a place in Palestine\nusage: Bethaz-maveth. Compare \"H5820\".\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Anoth","long":"source: from \"H1004\" and a plural from \"H6030\"; house of replies;\nmeaning: \"Beth-Anoth\", a place in Palestine\nusage: Beth-anoth.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Anath","long":"source: an orthographical variation for \"H1042\";\nmeaning: \"Beth-Anath\", a place in Palestine\nusage: Beth-anath.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Eked","long":"source: from \"H1004\" and a derivative of \"H6123\"; house of (the) binding (for sheep-shearing);\nmeaning: \"Beth-Eked\", a place in Palestine\nusage: shearing house.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Ashtaroth","long":"source: ; from \"H1004\" and \"H6252\"; house of Ashtoreths;\nmeaning: \"Beth-Ashtaroth\", a place in Palestine\nusage: house of Ashtaroth. Compare \"H1203\", \"H6252\".\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Palet","long":"source: from \"H1004\" and \"H6412\"; house of escape;\nmeaning: \"Beth-Palet\", a place in Palestine\nusage: Beth-palet.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Peor","long":"source: from \"H1004\" and \"H6465\"; \"house of Peor\";\nmeaning: \"Beth-Peor\", a place East of the Jordan\nusage: Bethpeor.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Patstsets","long":"source: from \"H1004\" and a derivative from \"H6327\"; house of dispersion;\nmeaning: \"Beth-Patstsets\", a place in Palestine\nusage: Beth-pazzez.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Tsur","long":"source: from \"H1004\" and \"H6697\"; house of (the) rock;\nmeaning: \"Beth-Tsur\", a place in Palestine\nusage: Beth-zur.\n"}

View File

@ -0,0 +1 @@
{"brief":"basin","long":"source: of uncertain derivation;\nmeaning: a \"basin\"\nusage: charger.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Rechob","long":"source: from \"H1004\" and \"H7339\"; house of (the) street;\nmeaning: \"Beth-Rechob\", a place in Palestine\nusage: Beth-rehob.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Rapha","long":"source: from \"H1004\" and \"H7497\"; house of (the) giant;\nmeaning: \"Beth-Rapha\", an Israelite\nusage: Beth-rapha.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Shean","long":"source: or \"בֵּית שָׁן\"; from \"H1004\" and \"H7599\"; house of ease;\nmeaning: \"Beth-Shean\" or \"Beth-Shan\", a place in Palestine\nusage: Beth-shean, Beth-Shan.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Shemesh","long":"source: from \"H1004\" and \"H8121\"; house of (the) sun;\nmeaning: \"Beth-Shemesh\", a place in Palestine\nusage: Beth-shemesh.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beth-Tappuach","long":"source: from \"H1004\" and \"H8598\"; house of (the) apple;\nmeaning: \"Beth-Tappuach\", a place in Palestine\nusage: Beth-tappuah.\n"}

View File

@ -0,0 +1 @@
{"brief":"palace","long":"source: probably from \"H1004\";\nmeaning: a \"palace\" (i.e. large house)\nusage: palace.\n"}

View File

@ -0,0 +1 @@
{"brief":"Baca","long":"source: from \"H1058\", weeping;\nmeaning: \"Baca\", a valley in Palestine\nusage: Baca.\n"}

View File

@ -0,0 +1 @@
{"brief":"weeping tree","long":"source: the same as \"H1056\";\nmeaning: the \"weeping tree\" (some gum-distilling tree, perhaps the balsam)\nusage: mulberry tree.\n"}

View File

@ -0,0 +1 @@
{"brief":"weep","long":"source: a primitive root;\nmeaning: to \"weep\"; generally to \"bemoan\"\nusage: × at all, bewail, complain, make lamentation, × more, mourn, × sore, × with tears, weep.\n"}

View File

@ -0,0 +1 @@
{"brief":"weeping","long":"source: from \"H1058\";\nmeaning: a \"weeping\"\nusage: × sore.\n"}

View File

@ -0,0 +1 @@
{"brief":"clenched","long":"source: from \"H1640\" (in the sense of \"grasping\");\nmeaning: the \"clenched\" hand\nusage: fist.\n"}

View File

@ -0,0 +1 @@
{"brief":"first-born","long":"source: from \"H1069\";\nmeaning: \"first-born\"; hence, \"chief\"\nusage: eldest (son), firstborn(-ling).\n"}

View File

@ -0,0 +1 @@
{"brief":"first-fruits","long":"source: from \"H1069\";\nmeaning: the \"first-fruits\" of the crop\nusage: first fruit (-ripe (figuratively)), hasty fruit.\n"}

View File

@ -0,0 +1 @@
{"brief":"firstling","long":"source: or (short) \"בְּכֹרָה\"; feminine of \"H1060\";\nmeaning: the \"firstling\" of man or beast; abstractly \"primogeniture\"\nusage: birthright, firstborn(-ling).\n"}

View File

@ -0,0 +1 @@
{"brief":"early fig","long":"source: feminine of \"H1061\";\nmeaning: the \"early fig\"\nusage: firstripe (fruit).\n"}

View File

@ -0,0 +1 @@
{"brief":"Bekorath","long":"source: feminine of \"H1062\"; primogeniture;\nmeaning: \"Bekorath\", an Israelite\nusage: Bechorath.\n"}

View File

@ -0,0 +1 @@
{"brief":"weeping","long":"source: from \"H1058\";\nmeaning: a \"weeping\"; by analogy, a \"dripping\"\nusage: overflowing, × sore, (continual) weeping, wept.\n"}

View File

@ -0,0 +1 @@
{"brief":"Bo-kim","long":"source: plural active participle of \"H1058\"; (with the article) the weepers;\nmeaning: \"Bo-kim\", a place in Palestine\nusage: Bochim.\n"}

View File

@ -0,0 +1 @@
{"brief":"eldest","long":"source: feminine from \"H1069\";\nmeaning: the \"eldest\" daughter\nusage: firstborn.\n"}

View File

@ -0,0 +1 @@
{"brief":"weeping","long":"source: from \"H1058\";\nmeaning: a \"weeping\"\nusage: mourning.\n"}

View File

@ -0,0 +1 @@
{"brief":"give the birthright","long":"source: a primitive root; properly, to burst the womb, i.e. (causatively) bear or make early fruit (of woman or tree); also (as denominative from \"H1061\")\nmeaning: to \"give the birthright\"\nusage: make firstborn, be firstling, bring forth first child (new fruit).\n"}

View File

@ -0,0 +1 @@
{"brief":"epistle","long":"source: feminine of \"H104\";\nmeaning: an \"epistle\"\nusage: letter.\n"}

View File

@ -0,0 +1 @@
{"brief":"camel","long":"source: from \"H1069\" (in the sense of \"youth\");\nmeaning: a young \"camel\"\nusage: dromedary.\n"}

View File

@ -0,0 +1 @@
{"brief":"Beker","long":"source: the same as \"H1070\";\nmeaning: \"Beker\", the name of two Israelites\nusage: Becher.\n"}

View File

@ -0,0 +1 @@
{"brief":"young she-camel","long":"source: feminine of \"H1070\";\nmeaning: a \"young she-camel\"\nusage: dromedary.\n"}

View File

@ -0,0 +1 @@
{"brief":"first-ripe","long":"source: by orthographical variation for \"H1063\";\nmeaning: a \"first-ripe\" fig\nusage: first-ripe.\n"}

View File

@ -0,0 +1 @@
{"brief":"Bokeru","long":"source: from \"H1069\"; first-born;\nmeaning: \"Bokeru\", an Israelite\nusage: Bocheru.\n"}

View File

@ -0,0 +1 @@
{"brief":"Bikri","long":"source: from \"H1069\"; youth-ful;\nmeaning: \"Bikri\", an Israelite\nusage: Bichri.\n"}

View File

@ -0,0 +1 @@
{"brief":"Bakrite","long":"source: patronymically from \"H1071\";\nmeaning: a \"Bakrite\" (collectively) or descendants of Beker\nusage: Bachrites.\n"}

View File

@ -0,0 +1 @@
{"brief":"failure","long":"source: from \"H1086\";\nmeaning: properly, a \"failure\"; by implication \"nothing\"; usually (adverb) \"not\" at all; also \"lest\"\nusage: lest, neither, no, none (that...), not (any), nothing.\n"}

View File

@ -0,0 +1 @@
{"brief":"Bel","long":"source: by contraction for \"H1168\";\nmeaning: \"Bel\", the Baal of the Babylonians\nusage: Bel.\n"}

View File

@ -0,0 +1 @@
{"brief":"anxiety","long":"source: (Aramaic) from \"H1080\";\nmeaning: properly, \"anxiety\", i.e. (by implication) the \"heart\" (as its seat)\nusage: heart.\n"}

View File

@ -0,0 +1 @@
{"brief":"fog","long":"source: from the same as \"H181\" (in the sense of enveloping);\nmeaning: a \"fog\"\nusage: mist, vapor.\n"}

View File

@ -0,0 +1 @@
{"brief":"afflict","long":"source: (Aramaic) corresponding to \"H1086\" (but used only in a mental sense);\nmeaning: to \"afflict\"\nusage: wear out.\n"}

View File

@ -0,0 +1 @@
{"brief":"Baladan","long":"source: from \"H1078\" and \"H113\" (contracted); \"Bel\" (is his) \"lord\";\nmeaning: \"Baladan\", the name of a Babylonian prince\nusage: Baladan.\n"}

View File

@ -0,0 +1 @@
{"brief":"break off","long":"source: a primitive root;\nmeaning: to \"break off\" or \"loose\" (in a favorable or unfavorable sense), i.e. \"desist\" (from grief) or \"invade\" (with destruction)\nusage: comfort, (recover) strength(-en).\n"}

Some files were not shown because too many files have changed in this diff Show More