1.0.1 • Published 2 years ago

@kmaslesa/quran-translations v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

Quran Translations

بسم الله الرحمن الرحيم

Translations in this pacakge: Bosnian, English, German, Turkish, French, Spanish

Installation

npm install @kmaslesa/quran-translations

Usage

const quranTranslation = require('@kmaslesa/quran-translations');
quranTranslation.getHolyQuranTranslation();

RESPONSE:
[
	{
		"aya":"بِسْمِ ٱللَّهِ ٱلرَّحْمَٰنِ ٱلرَّحِيمِ",
		"ayaNumber":1,
		"page":1,
		"index":1,
		"sura":1,
		"juz":1,
		"hizb":1,
		"translation":{
			"bosnianKorkut":"U ime Allaha, Milostivog, Samilosnog!",
			"bosnianMehanovic":"S imenom Allaha, Svemilosnog, Milostivog!",
			"englishSaheeh":"(1) In the name of Allāh,[2] the Entirely Merciful, the Especially Merciful.[3]",
			"englishHilaliKhan":"1. In the Name of Allâh, the Most Gracious, the Most Merciful",
			"germanBubenheim":"Im Namen Allahs, des Allerbarmers, des Barmherzigen.",
			"turkishRowwadTranslationCentar":"Bismillâhirrahmânirrahîm",
			"frenchMontada":"1. Au nom d’Allah, le Tout Clément, le Tout Miséricordieux.[2]",
			"spanishMontadaEu":"1. (Empiezo)[2] con el nombre de Al-lah[3], el Clemente, el Misericordioso[4]."
		}
	},
	{
		"aya":"ٱلْحَمْدُ لِلَّهِ رَبِّ ٱلْعَٰلَمِينَ",
		"ayaNumber":2,
		"page":1,
		"index":2,
		"sura":1,
		"juz":1,
		"hizb":1,
		"translation":{
			"bosnianKorkut":"Tebe, Allaha, Gospodara svjetova, hvalimo,",
			"bosnianMehanovic":"Svaka hvala neka je Allahu, Gospodaru svjetova.",
			"englishSaheeh":"(2) [All] praise is [due] to Allāh, Lord[4] of the worlds -",
			"englishHilaliKhan":"2. All the praises and thanks be to Allâh, the Lord[1] of the ‘Âlamîn (mankind, jinn and all that exists).[2]",
			"germanBubenheim":"(Alles) Lob gehört Allah, dem Herrn der Welten,",
			"turkishRowwadTranslationCentar":"Hamd, alemlerin Rabbi olan Allah'a mahsustur.",
			"frenchMontada":"2. Louange à Allah, Seigneur de l’Univers.",
			"spanishMontadaEu":"2. ¡Alabado sea Al-lah, Señor de toda la creación!,"
		}
	}
	......
]
quranTranslation.getTranslationByJuz(juz); // juz=(1-30)
quranTranslation.getTranslationByHizb(hizb); // juz=(1-60)
quranTranslation.getTranslationByPage(page); // page=(1-604)
quranTranslation.getTranslationBySura(sura); // sura=(1-114)
quranTranslation.getTranslationByIndex(index); // index=(1-6236)
quranTranslation.getTranslationByAyah(aya, sura);
quranTranslations.searchAyahs(searchTerm); //searchTerm in bosnian, english, german..

EXAMPLES:
quranTranslations.searchAyahs('krava');
quranTranslations.searchAyahs('cow');
...

License

MIT