Restructure the object that describes a surah.
The object is now structured differently: { id: number, name: { codepoints: number[], translated: string, transliterated: string }, origin: "makkah" | "medina", ayahs: number, slug: string, translator: string }
This commit is contained in:
parent
6a5f42cd5c
commit
f4483b62e4
119 changed files with 3373 additions and 2915 deletions
2
Gemfile
2
Gemfile
|
@ -5,4 +5,4 @@ gem "paint", "~> 2.2"
|
|||
gem "json", "~> 2.6"
|
||||
gem "standard", "~> 1.12"
|
||||
gem "io-line.rb", "~> 0.1", github: "0x1eef/io-line.rb", tag: "v0.1.0"
|
||||
gem "ryo.rb", "~> 0.3", github: "0x1eef/ryo.rb", tag: "v0.3.0"
|
||||
gem "ryo.rb", "~> 0.3", github: "0x1eef/ryo.rb", tag: "v0.4.0"
|
||||
|
|
|
@ -8,10 +8,10 @@ GIT
|
|||
|
||||
GIT
|
||||
remote: https://github.com/0x1eef/ryo.rb.git
|
||||
revision: 1fc0e7a2187d8020aadfb71b6b066dbc3af2fc2e
|
||||
tag: v0.3.0
|
||||
revision: 274a63d6ae55392ccac2c0fbe95c384e92de47b6
|
||||
tag: v0.4.0
|
||||
specs:
|
||||
ryo.rb (0.3.0)
|
||||
ryo.rb (0.4.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
|
|
|
@ -46,7 +46,7 @@ module Quran::JSON::Cmd
|
|||
def read_metadata
|
||||
o = read_json File.join(data_dir, "metadata.json")
|
||||
Ryo.from o.map {
|
||||
_1.merge!("translated_by" => source.translated_by)
|
||||
_1.merge!("translator" => source.translated_by)
|
||||
}
|
||||
end
|
||||
|
||||
|
|
|
@ -53,6 +53,8 @@ module Quran::JSON::Cmd
|
|||
def write(surah_no, rows)
|
||||
mkdir_p(locale_dir)
|
||||
rows[0] = Ryo.table_of(metadata[surah_no - 1])
|
||||
# FIXME: Add recursive support to table_of
|
||||
rows[0]["name"] = Ryo.table_of(rows[0]["name"])
|
||||
write_json File.join(locale_dir, "#{surah_no}.json"), rows
|
||||
end
|
||||
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "1",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Fatihah",
|
||||
"translated_name": "The Opener",
|
||||
"ayahs": 7,
|
||||
"slug": "al-fatihah",
|
||||
"id": 1,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Opener",
|
||||
"transliterated": "Al-Fatihah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1578,
|
||||
1581,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 7,
|
||||
"slug": "al-fatihah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "10",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Yunus",
|
||||
"translated_name": "Jonah",
|
||||
"ayahs": 109,
|
||||
"slug": "yunus",
|
||||
"id": 10,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Jonah",
|
||||
"transliterated": "Yunus",
|
||||
"codepoints": [
|
||||
1610,
|
||||
1608,
|
||||
1606,
|
||||
1587
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 109,
|
||||
"slug": "yunus",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "100",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-'Adiyat",
|
||||
"translated_name": "The Courser",
|
||||
"ayahs": 11,
|
||||
"slug": "al-adiyat",
|
||||
"id": 100,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Courser",
|
||||
"transliterated": "Al-'Adiyat",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1610,
|
||||
1575,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 11,
|
||||
"slug": "al-adiyat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "101",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Qari'ah",
|
||||
"translated_name": "The Calamity",
|
||||
"ayahs": 11,
|
||||
"slug": "al-qariah",
|
||||
"id": 101,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Calamity",
|
||||
"transliterated": "Al-Qari'ah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1585,
|
||||
1593,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 11,
|
||||
"slug": "al-qariah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "102",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "At-Takathur",
|
||||
"translated_name": "The Rivalry in world increase",
|
||||
"ayahs": 8,
|
||||
"slug": "at-takathur",
|
||||
"id": 102,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Rivalry in world increase",
|
||||
"transliterated": "At-Takathur",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1575,
|
||||
1579,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 8,
|
||||
"slug": "at-takathur",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "103",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-'Asr",
|
||||
"translated_name": "The Declining Day",
|
||||
"ayahs": 3,
|
||||
"slug": "al-asr",
|
||||
"id": 103,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Declining Day",
|
||||
"transliterated": "Al-'Asr",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1593,
|
||||
1589,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 3,
|
||||
"slug": "al-asr",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "104",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Humazah",
|
||||
"translated_name": "The Traducer",
|
||||
"ayahs": 9,
|
||||
"slug": "al-humazah",
|
||||
"id": 104,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Traducer",
|
||||
"transliterated": "Al-Humazah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1605,
|
||||
1586,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 9,
|
||||
"slug": "al-humazah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "105",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Fil",
|
||||
"translated_name": "The Elephant",
|
||||
"ayahs": 5,
|
||||
"slug": "al-fil",
|
||||
"id": 105,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Elephant",
|
||||
"transliterated": "Al-Fil",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1601,
|
||||
1610,
|
||||
1604
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 5,
|
||||
"slug": "al-fil",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "106",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Quraysh",
|
||||
"translated_name": "Quraysh",
|
||||
"ayahs": 4,
|
||||
"slug": "quraysh",
|
||||
"id": 106,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Quraysh",
|
||||
"transliterated": "Quraysh",
|
||||
"codepoints": [
|
||||
1602,
|
||||
1585,
|
||||
1610,
|
||||
1588
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 4,
|
||||
"slug": "quraysh",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "107",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Ma'un",
|
||||
"translated_name": "The Small kindnesses",
|
||||
"ayahs": 7,
|
||||
"slug": "al-maun",
|
||||
"id": 107,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Small kindnesses",
|
||||
"transliterated": "Al-Ma'un",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1593,
|
||||
1608,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 7,
|
||||
"slug": "al-maun",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "108",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Kawthar",
|
||||
"translated_name": "The Abundance",
|
||||
"ayahs": 3,
|
||||
"slug": "al-kawthar",
|
||||
"id": 108,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Abundance",
|
||||
"transliterated": "Al-Kawthar",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1608,
|
||||
1579,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 3,
|
||||
"slug": "al-kawthar",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "109",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Kafirun",
|
||||
"translated_name": "The Disbelievers",
|
||||
"ayahs": 6,
|
||||
"slug": "al-kafirun",
|
||||
"id": 109,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Disbelievers",
|
||||
"transliterated": "Al-Kafirun",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1585,
|
||||
1608,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 6,
|
||||
"slug": "al-kafirun",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
[
|
||||
{
|
||||
"id": "11",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Hud",
|
||||
"translated_name": "Hud",
|
||||
"ayahs": 123,
|
||||
"slug": "hud",
|
||||
"id": 11,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Hud",
|
||||
"transliterated": "Hud",
|
||||
"codepoints": [
|
||||
1607,
|
||||
1608,
|
||||
1583
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 123,
|
||||
"slug": "hud",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "110",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "An-Nasr",
|
||||
"translated_name": "The Divine Support",
|
||||
"ayahs": 3,
|
||||
"slug": "an-nasr",
|
||||
"id": 110,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Divine Support",
|
||||
"transliterated": "An-Nasr",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1589,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 3,
|
||||
"slug": "an-nasr",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "111",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Masad",
|
||||
"translated_name": "The Palm Fiber",
|
||||
"ayahs": 5,
|
||||
"slug": "al-masad",
|
||||
"id": 111,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Palm Fiber",
|
||||
"transliterated": "Al-Masad",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1605,
|
||||
1587,
|
||||
1583
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 5,
|
||||
"slug": "al-masad",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "112",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Ikhlas",
|
||||
"translated_name": "The Sincerity",
|
||||
"ayahs": 4,
|
||||
"slug": "al-ikhlas",
|
||||
"id": 112,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Sincerity",
|
||||
"transliterated": "Al-Ikhlas",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1604,
|
||||
1575,
|
||||
1589
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 4,
|
||||
"slug": "al-ikhlas",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "113",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Falaq",
|
||||
"translated_name": "The Daybreak",
|
||||
"ayahs": 5,
|
||||
"slug": "al-falaq",
|
||||
"id": 113,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Daybreak",
|
||||
"transliterated": "Al-Falaq",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1601,
|
||||
1604,
|
||||
1602
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 5,
|
||||
"slug": "al-falaq",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "114",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "An-Nas",
|
||||
"translated_name": "Mankind",
|
||||
"ayahs": 6,
|
||||
"slug": "an-nas",
|
||||
"id": 114,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Mankind",
|
||||
"transliterated": "An-Nas",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1575,
|
||||
1587
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 6,
|
||||
"slug": "an-nas",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "12",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Yusuf",
|
||||
"translated_name": "Joseph",
|
||||
"ayahs": 111,
|
||||
"slug": "yusuf",
|
||||
"id": 12,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Joseph",
|
||||
"transliterated": "Yusuf",
|
||||
"codepoints": [
|
||||
1610,
|
||||
1608,
|
||||
1587,
|
||||
1601
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 111,
|
||||
"slug": "yusuf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "13",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Ar-Ra'd",
|
||||
"translated_name": "The Thunder",
|
||||
"ayahs": 43,
|
||||
"slug": "ar-rad",
|
||||
"id": 13,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Thunder",
|
||||
"transliterated": "Ar-Ra'd",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1585,
|
||||
1593,
|
||||
1583
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 43,
|
||||
"slug": "ar-rad",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "14",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ibrahim",
|
||||
"translated_name": "Abraham",
|
||||
"ayahs": 52,
|
||||
"slug": "ibrahim",
|
||||
"id": 14,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Abraham",
|
||||
"transliterated": "Ibrahim",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1576,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1607,
|
||||
1610,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 52,
|
||||
"slug": "ibrahim",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "15",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Hijr",
|
||||
"translated_name": "The Rocky Tract",
|
||||
"ayahs": 99,
|
||||
"slug": "al-hijr",
|
||||
"id": 15,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Rocky Tract",
|
||||
"transliterated": "Al-Hijr",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1581,
|
||||
1580,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 99,
|
||||
"slug": "al-hijr",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "16",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "An-Nahl",
|
||||
"translated_name": "The Bee",
|
||||
"ayahs": 128,
|
||||
"slug": "an-nahl",
|
||||
"id": 16,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Bee",
|
||||
"transliterated": "An-Nahl",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1581,
|
||||
1604
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 128,
|
||||
"slug": "an-nahl",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "17",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Isra",
|
||||
"translated_name": "The Night Journey",
|
||||
"ayahs": 111,
|
||||
"slug": "al-isra",
|
||||
"id": 17,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Night Journey",
|
||||
"transliterated": "Al-Isra",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1585,
|
||||
1575,
|
||||
1569
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 111,
|
||||
"slug": "al-isra",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "18",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Kahf",
|
||||
"translated_name": "The Cave",
|
||||
"ayahs": 110,
|
||||
"slug": "al-kahf",
|
||||
"id": 18,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Cave",
|
||||
"transliterated": "Al-Kahf",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1603,
|
||||
1607,
|
||||
1601
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 110,
|
||||
"slug": "al-kahf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "19",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Maryam",
|
||||
"translated_name": "Mary",
|
||||
"ayahs": 98,
|
||||
"slug": "maryam",
|
||||
"id": 19,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Mary",
|
||||
"transliterated": "Maryam",
|
||||
"codepoints": [
|
||||
1605,
|
||||
1585,
|
||||
1610,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 98,
|
||||
"slug": "maryam",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "2",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Baqarah",
|
||||
"translated_name": "The Cow",
|
||||
"ayahs": 286,
|
||||
"slug": "al-baqarah",
|
||||
"id": 2,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Cow",
|
||||
"transliterated": "Al-Baqarah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1602,
|
||||
1585,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 286,
|
||||
"slug": "al-baqarah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
[
|
||||
{
|
||||
"id": "20",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Taha",
|
||||
"translated_name": "Ta-Ha",
|
||||
"ayahs": 135,
|
||||
"slug": "taha",
|
||||
"id": 20,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Ta-Ha",
|
||||
"transliterated": "Taha",
|
||||
"codepoints": [
|
||||
1591,
|
||||
1607
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 135,
|
||||
"slug": "taha",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "21",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Anbya",
|
||||
"translated_name": "The Prophets",
|
||||
"ayahs": 112,
|
||||
"slug": "al-anbya",
|
||||
"id": 21,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Prophets",
|
||||
"transliterated": "Al-Anbya",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1610,
|
||||
1575,
|
||||
1569
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 112,
|
||||
"slug": "al-anbya",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "22",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Hajj",
|
||||
"translated_name": "The Pilgrimage",
|
||||
"ayahs": 78,
|
||||
"slug": "al-hajj",
|
||||
"id": 22,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Pilgrimage",
|
||||
"transliterated": "Al-Hajj",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1581,
|
||||
1580
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 78,
|
||||
"slug": "al-hajj",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "23",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Mu'minun",
|
||||
"translated_name": "The Believers",
|
||||
"ayahs": 118,
|
||||
"slug": "al-muminun",
|
||||
"id": 23,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Believers",
|
||||
"transliterated": "Al-Mu'minun",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1606,
|
||||
1608,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 118,
|
||||
"slug": "al-muminun",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "24",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "An-Nur",
|
||||
"translated_name": "The Light",
|
||||
"ayahs": 64,
|
||||
"slug": "an-nur",
|
||||
"id": 24,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Light",
|
||||
"transliterated": "An-Nur",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1608,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 64,
|
||||
"slug": "an-nur",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "25",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Furqan",
|
||||
"translated_name": "The Criterion",
|
||||
"ayahs": 77,
|
||||
"slug": "al-furqan",
|
||||
"id": 25,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Criterion",
|
||||
"transliterated": "Al-Furqan",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1602,
|
||||
1575,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 77,
|
||||
"slug": "al-furqan",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "26",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ash-Shu'ara",
|
||||
"translated_name": "The Poets",
|
||||
"ayahs": 227,
|
||||
"slug": "ash-shuara",
|
||||
"id": 26,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Poets",
|
||||
"transliterated": "Ash-Shu'ara",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1585,
|
||||
1575,
|
||||
1569
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 227,
|
||||
"slug": "ash-shuara",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "27",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "An-Naml",
|
||||
"translated_name": "The Ant",
|
||||
"ayahs": 93,
|
||||
"slug": "an-naml",
|
||||
"id": 27,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Ant",
|
||||
"transliterated": "An-Naml",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1605,
|
||||
1604
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 93,
|
||||
"slug": "an-naml",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "28",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Qasas",
|
||||
"translated_name": "The Stories",
|
||||
"ayahs": 88,
|
||||
"slug": "al-qasas",
|
||||
"id": 28,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Stories",
|
||||
"transliterated": "Al-Qasas",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1602,
|
||||
1589,
|
||||
1589
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 88,
|
||||
"slug": "al-qasas",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "29",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-'Ankabut",
|
||||
"translated_name": "The Spider",
|
||||
"ayahs": 69,
|
||||
"slug": "al-ankabut",
|
||||
"id": 29,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Spider",
|
||||
"transliterated": "Al-'Ankabut",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1576,
|
||||
1608,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 69,
|
||||
"slug": "al-ankabut",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "3",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Ali 'Imran",
|
||||
"translated_name": "Family of Imran",
|
||||
"ayahs": 200,
|
||||
"slug": "ali-imran",
|
||||
"id": 3,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "Family of Imran",
|
||||
"transliterated": "Ali 'Imran",
|
||||
"codepoints": [
|
||||
1570,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1585,
|
||||
1575,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 200,
|
||||
"slug": "ali-imran",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "30",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ar-Rum",
|
||||
"translated_name": "The Romans",
|
||||
"ayahs": 60,
|
||||
"slug": "ar-rum",
|
||||
"id": 30,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Romans",
|
||||
"transliterated": "Ar-Rum",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1585,
|
||||
1608,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 60,
|
||||
"slug": "ar-rum",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "31",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Luqman",
|
||||
"translated_name": "Luqman",
|
||||
"ayahs": 34,
|
||||
"slug": "luqman",
|
||||
"id": 31,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Luqman",
|
||||
"transliterated": "Luqman",
|
||||
"codepoints": [
|
||||
1604,
|
||||
1602,
|
||||
1605,
|
||||
1575,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 34,
|
||||
"slug": "luqman",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "32",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "As-Sajdah",
|
||||
"translated_name": "The Prostration",
|
||||
"ayahs": 30,
|
||||
"slug": "as-sajdah",
|
||||
"id": 32,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Prostration",
|
||||
"transliterated": "As-Sajdah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1580,
|
||||
1583,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 30,
|
||||
"slug": "as-sajdah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "33",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Ahzab",
|
||||
"translated_name": "The Combined Forces",
|
||||
"ayahs": 73,
|
||||
"slug": "al-ahzab",
|
||||
"id": 33,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Combined Forces",
|
||||
"transliterated": "Al-Ahzab",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1586,
|
||||
1575,
|
||||
1576
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 73,
|
||||
"slug": "al-ahzab",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
[
|
||||
{
|
||||
"id": "34",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Saba",
|
||||
"translated_name": "Sheba",
|
||||
"ayahs": 54,
|
||||
"slug": "saba",
|
||||
"id": 34,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Sheba",
|
||||
"transliterated": "Saba",
|
||||
"codepoints": [
|
||||
1587,
|
||||
1576,
|
||||
1573
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 54,
|
||||
"slug": "saba",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "35",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Fatir",
|
||||
"translated_name": "Originator",
|
||||
"ayahs": 45,
|
||||
"slug": "fatir",
|
||||
"id": 35,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Originator",
|
||||
"transliterated": "Fatir",
|
||||
"codepoints": [
|
||||
1601,
|
||||
1575,
|
||||
1591,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 45,
|
||||
"slug": "fatir",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,16 +1,18 @@
|
|||
[
|
||||
{
|
||||
"id": "36",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ya-Sin",
|
||||
"translated_name": "Ya Sin",
|
||||
"ayahs": 83,
|
||||
"slug": "ya-sin",
|
||||
"id": 36,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Ya Sin",
|
||||
"transliterated": "Ya-Sin",
|
||||
"codepoints": [
|
||||
1610,
|
||||
1587
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 83,
|
||||
"slug": "ya-sin",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "37",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "As-Saffat",
|
||||
"translated_name": "Those who set the Ranks",
|
||||
"ayahs": 182,
|
||||
"slug": "as-saffat",
|
||||
"id": 37,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Those who set the Ranks",
|
||||
"transliterated": "As-Saffat",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1601,
|
||||
1575,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 182,
|
||||
"slug": "as-saffat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
[
|
||||
{
|
||||
"id": "38",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Sad",
|
||||
"translated_name": "The Letter \"Saad\"",
|
||||
"ayahs": 88,
|
||||
"slug": "sad",
|
||||
"id": 38,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Letter \"Saad\"",
|
||||
"transliterated": "Sad",
|
||||
"codepoints": [
|
||||
1589
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 88,
|
||||
"slug": "sad",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "39",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Az-Zumar",
|
||||
"translated_name": "The Troops",
|
||||
"ayahs": 75,
|
||||
"slug": "az-zumar",
|
||||
"id": 39,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Troops",
|
||||
"transliterated": "Az-Zumar",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1586,
|
||||
1605,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 75,
|
||||
"slug": "az-zumar",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "4",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "An-Nisa",
|
||||
"translated_name": "The Women",
|
||||
"ayahs": 176,
|
||||
"slug": "an-nisa",
|
||||
"id": 4,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Women",
|
||||
"transliterated": "An-Nisa",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1587,
|
||||
1575,
|
||||
1569
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 176,
|
||||
"slug": "an-nisa",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "40",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ghafir",
|
||||
"translated_name": "The Forgiver",
|
||||
"ayahs": 85,
|
||||
"slug": "ghafir",
|
||||
"id": 40,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Forgiver",
|
||||
"transliterated": "Ghafir",
|
||||
"codepoints": [
|
||||
1594,
|
||||
1575,
|
||||
1601,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 85,
|
||||
"slug": "ghafir",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "41",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Fussilat",
|
||||
"translated_name": "Explained in Detail",
|
||||
"ayahs": 54,
|
||||
"slug": "fussilat",
|
||||
"id": 41,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Explained in Detail",
|
||||
"transliterated": "Fussilat",
|
||||
"codepoints": [
|
||||
1601,
|
||||
1589,
|
||||
1604,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 54,
|
||||
"slug": "fussilat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "42",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ash-Shuraa",
|
||||
"translated_name": "The Consultation",
|
||||
"ayahs": 53,
|
||||
"slug": "ash-shuraa",
|
||||
"id": 42,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Consultation",
|
||||
"transliterated": "Ash-Shuraa",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1608,
|
||||
1585,
|
||||
1609
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 53,
|
||||
"slug": "ash-shuraa",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "43",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Az-Zukhruf",
|
||||
"translated_name": "The Ornaments of Gold",
|
||||
"ayahs": 89,
|
||||
"slug": "az-zukhruf",
|
||||
"id": 43,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Ornaments of Gold",
|
||||
"transliterated": "Az-Zukhruf",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1582,
|
||||
1585,
|
||||
1601
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 89,
|
||||
"slug": "az-zukhruf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "44",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Ad-Dukhan",
|
||||
"translated_name": "The Smoke",
|
||||
"ayahs": 59,
|
||||
"slug": "ad-dukhan",
|
||||
"id": 44,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Smoke",
|
||||
"transliterated": "Ad-Dukhan",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1582,
|
||||
1575,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 59,
|
||||
"slug": "ad-dukhan",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "45",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Jathiyah",
|
||||
"translated_name": "The Crouching",
|
||||
"ayahs": 37,
|
||||
"slug": "al-jathiyah",
|
||||
"id": 45,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Crouching",
|
||||
"transliterated": "Al-Jathiyah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1579,
|
||||
1610,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 37,
|
||||
"slug": "al-jathiyah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "46",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Ahqaf",
|
||||
"translated_name": "The Wind-Curved Sandhills",
|
||||
"ayahs": 35,
|
||||
"slug": "al-ahqaf",
|
||||
"id": 46,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Wind-Curved Sandhills",
|
||||
"transliterated": "Al-Ahqaf",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1602,
|
||||
1575,
|
||||
1601
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 35,
|
||||
"slug": "al-ahqaf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "47",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Muhammad",
|
||||
"translated_name": "Muhammad",
|
||||
"ayahs": 38,
|
||||
"slug": "muhammad",
|
||||
"id": 47,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "Muhammad",
|
||||
"transliterated": "Muhammad",
|
||||
"codepoints": [
|
||||
1605,
|
||||
1581,
|
||||
1605,
|
||||
1583
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 38,
|
||||
"slug": "muhammad",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "48",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Fath",
|
||||
"translated_name": "The Victory",
|
||||
"ayahs": 29,
|
||||
"slug": "al-fath",
|
||||
"id": 48,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Victory",
|
||||
"transliterated": "Al-Fath",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1601,
|
||||
1578,
|
||||
1581
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 29,
|
||||
"slug": "al-fath",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "49",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Hujurat",
|
||||
"translated_name": "The Rooms",
|
||||
"ayahs": 18,
|
||||
"slug": "al-hujurat",
|
||||
"id": 49,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Rooms",
|
||||
"transliterated": "Al-Hujurat",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1585,
|
||||
1575,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 18,
|
||||
"slug": "al-hujurat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "5",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Ma'idah",
|
||||
"translated_name": "The Table Spread",
|
||||
"ayahs": 120,
|
||||
"slug": "al-maidah",
|
||||
"id": 5,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Table Spread",
|
||||
"transliterated": "Al-Ma'idah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1574,
|
||||
1583,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 120,
|
||||
"slug": "al-maidah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
[
|
||||
{
|
||||
"id": "50",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Qaf",
|
||||
"translated_name": "The Letter \"Qaf\"",
|
||||
"ayahs": 45,
|
||||
"slug": "qaf",
|
||||
"id": 50,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Letter \"Qaf\"",
|
||||
"transliterated": "Qaf",
|
||||
"codepoints": [
|
||||
1602
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 45,
|
||||
"slug": "qaf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "51",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Adh-Dhariyat",
|
||||
"translated_name": "The Winnowing Winds",
|
||||
"ayahs": 60,
|
||||
"slug": "adh-dhariyat",
|
||||
"id": 51,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Winnowing Winds",
|
||||
"transliterated": "Adh-Dhariyat",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1610,
|
||||
1575,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 60,
|
||||
"slug": "adh-dhariyat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "52",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "At-Tur",
|
||||
"translated_name": "The Mount",
|
||||
"ayahs": 49,
|
||||
"slug": "at-tur",
|
||||
"id": 52,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Mount",
|
||||
"transliterated": "At-Tur",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1591,
|
||||
1608,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 49,
|
||||
"slug": "at-tur",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "53",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "An-Najm",
|
||||
"translated_name": "The Star",
|
||||
"ayahs": 62,
|
||||
"slug": "an-najm",
|
||||
"id": 53,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Star",
|
||||
"transliterated": "An-Najm",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1580,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 62,
|
||||
"slug": "an-najm",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "54",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Qamar",
|
||||
"translated_name": "The Moon",
|
||||
"ayahs": 55,
|
||||
"slug": "al-qamar",
|
||||
"id": 54,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Moon",
|
||||
"transliterated": "Al-Qamar",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1602,
|
||||
1605,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 55,
|
||||
"slug": "al-qamar",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "55",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Ar-Rahman",
|
||||
"translated_name": "The Beneficent",
|
||||
"ayahs": 78,
|
||||
"slug": "ar-rahman",
|
||||
"id": 55,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Beneficent",
|
||||
"transliterated": "Ar-Rahman",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1581,
|
||||
1605,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 78,
|
||||
"slug": "ar-rahman",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "56",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Waqi'ah",
|
||||
"translated_name": "The Inevitable",
|
||||
"ayahs": 96,
|
||||
"slug": "al-waqiah",
|
||||
"id": 56,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Inevitable",
|
||||
"transliterated": "Al-Waqi'ah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1602,
|
||||
1593,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 96,
|
||||
"slug": "al-waqiah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "57",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Hadid",
|
||||
"translated_name": "The Iron",
|
||||
"ayahs": 29,
|
||||
"slug": "al-hadid",
|
||||
"id": 57,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Iron",
|
||||
"transliterated": "Al-Hadid",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1583,
|
||||
1610,
|
||||
1583
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 29,
|
||||
"slug": "al-hadid",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "58",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Mujadila",
|
||||
"translated_name": "The Pleading Woman",
|
||||
"ayahs": 22,
|
||||
"slug": "al-mujadila",
|
||||
"id": 58,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Pleading Woman",
|
||||
"transliterated": "Al-Mujadila",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1583,
|
||||
1604,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 22,
|
||||
"slug": "al-mujadila",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "59",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Hashr",
|
||||
"translated_name": "The Exile",
|
||||
"ayahs": 24,
|
||||
"slug": "al-hashr",
|
||||
"id": 59,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Exile",
|
||||
"transliterated": "Al-Hashr",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1581,
|
||||
1588,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 24,
|
||||
"slug": "al-hashr",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "6",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-An'am",
|
||||
"translated_name": "The Cattle",
|
||||
"ayahs": 165,
|
||||
"slug": "al-anam",
|
||||
"id": 6,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Cattle",
|
||||
"transliterated": "Al-An'am",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1593,
|
||||
1575,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 165,
|
||||
"slug": "al-anam",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "60",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Mumtahanah",
|
||||
"translated_name": "She that is to be examined",
|
||||
"ayahs": 13,
|
||||
"slug": "al-mumtahanah",
|
||||
"id": 60,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "She that is to be examined",
|
||||
"transliterated": "Al-Mumtahanah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1581,
|
||||
1606,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 13,
|
||||
"slug": "al-mumtahanah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "61",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "As-Saf",
|
||||
"translated_name": "The Ranks",
|
||||
"ayahs": 14,
|
||||
"slug": "as-saf",
|
||||
"id": 61,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Ranks",
|
||||
"transliterated": "As-Saf",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1589,
|
||||
1601
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 14,
|
||||
"slug": "as-saf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "62",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Jumu'ah",
|
||||
"translated_name": "The Congregation, Friday",
|
||||
"ayahs": 11,
|
||||
"slug": "al-jumuah",
|
||||
"id": 62,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Congregation, Friday",
|
||||
"transliterated": "Al-Jumu'ah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1605,
|
||||
1593,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 11,
|
||||
"slug": "al-jumuah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "63",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Munafiqun",
|
||||
"translated_name": "The Hypocrites",
|
||||
"ayahs": 11,
|
||||
"slug": "al-munafiqun",
|
||||
"id": 63,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Hypocrites",
|
||||
"transliterated": "Al-Munafiqun",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -16,8 +15,11 @@
|
|||
1602,
|
||||
1608,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 11,
|
||||
"slug": "al-munafiqun",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "64",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "At-Taghabun",
|
||||
"translated_name": "The Mutual Disillusion",
|
||||
"ayahs": 18,
|
||||
"slug": "at-taghabun",
|
||||
"id": 64,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Mutual Disillusion",
|
||||
"transliterated": "At-Taghabun",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1575,
|
||||
1576,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 18,
|
||||
"slug": "at-taghabun",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "65",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "At-Talaq",
|
||||
"translated_name": "The Divorce",
|
||||
"ayahs": 12,
|
||||
"slug": "at-talaq",
|
||||
"id": 65,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Divorce",
|
||||
"transliterated": "At-Talaq",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1604,
|
||||
1575,
|
||||
1602
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 12,
|
||||
"slug": "at-talaq",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "66",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "At-Tahrim",
|
||||
"translated_name": "The Prohibition",
|
||||
"ayahs": 12,
|
||||
"slug": "at-tahrim",
|
||||
"id": 66,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Prohibition",
|
||||
"transliterated": "At-Tahrim",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1585,
|
||||
1610,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 12,
|
||||
"slug": "at-tahrim",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "67",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Mulk",
|
||||
"translated_name": "The Sovereignty",
|
||||
"ayahs": 30,
|
||||
"slug": "al-mulk",
|
||||
"id": 67,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Sovereignty",
|
||||
"transliterated": "Al-Mulk",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1605,
|
||||
1604,
|
||||
1603
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 30,
|
||||
"slug": "al-mulk",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "68",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Qalam",
|
||||
"translated_name": "The Pen",
|
||||
"ayahs": 52,
|
||||
"slug": "al-qalam",
|
||||
"id": 68,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Pen",
|
||||
"transliterated": "Al-Qalam",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1602,
|
||||
1604,
|
||||
1605
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 52,
|
||||
"slug": "al-qalam",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "69",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Haqqah",
|
||||
"translated_name": "The Reality",
|
||||
"ayahs": 52,
|
||||
"slug": "al-haqqah",
|
||||
"id": 69,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Reality",
|
||||
"transliterated": "Al-Haqqah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1575,
|
||||
1602,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 52,
|
||||
"slug": "al-haqqah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "7",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-A'raf",
|
||||
"translated_name": "The Heights",
|
||||
"ayahs": 206,
|
||||
"slug": "al-araf",
|
||||
"id": 7,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Heights",
|
||||
"transliterated": "Al-A'raf",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1585,
|
||||
1575,
|
||||
1601
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 206,
|
||||
"slug": "al-araf",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "70",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Ma'arij",
|
||||
"translated_name": "The Ascending Stairways",
|
||||
"ayahs": 44,
|
||||
"slug": "al-maarij",
|
||||
"id": 70,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Ascending Stairways",
|
||||
"transliterated": "Al-Ma'arij",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1575,
|
||||
1585,
|
||||
1580
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 44,
|
||||
"slug": "al-maarij",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
[
|
||||
{
|
||||
"id": "71",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Nuh",
|
||||
"translated_name": "Noah",
|
||||
"ayahs": 28,
|
||||
"slug": "nuh",
|
||||
"id": 71,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Noah",
|
||||
"transliterated": "Nuh",
|
||||
"codepoints": [
|
||||
1606,
|
||||
1608,
|
||||
1581
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 28,
|
||||
"slug": "nuh",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,18 +1,20 @@
|
|||
[
|
||||
{
|
||||
"id": "72",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Jinn",
|
||||
"translated_name": "The Jinn",
|
||||
"ayahs": 28,
|
||||
"slug": "al-jinn",
|
||||
"id": 72,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Jinn",
|
||||
"transliterated": "Al-Jinn",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1580,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 28,
|
||||
"slug": "al-jinn",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "73",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Muzzammil",
|
||||
"translated_name": "The Enshrouded One",
|
||||
"ayahs": 20,
|
||||
"slug": "al-muzzammil",
|
||||
"id": 73,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Enshrouded One",
|
||||
"transliterated": "Al-Muzzammil",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1586,
|
||||
1605,
|
||||
1604
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 20,
|
||||
"slug": "al-muzzammil",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "74",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Muddaththir",
|
||||
"translated_name": "The Cloaked One",
|
||||
"ayahs": 56,
|
||||
"slug": "al-muddaththir",
|
||||
"id": 74,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Cloaked One",
|
||||
"transliterated": "Al-Muddaththir",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -13,8 +12,11 @@
|
|||
1583,
|
||||
1579,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 56,
|
||||
"slug": "al-muddaththir",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "75",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Qiyamah",
|
||||
"translated_name": "The Resurrection",
|
||||
"ayahs": 40,
|
||||
"slug": "al-qiyamah",
|
||||
"id": 75,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Resurrection",
|
||||
"transliterated": "Al-Qiyamah",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1575,
|
||||
1605,
|
||||
1577
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 40,
|
||||
"slug": "al-qiyamah",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "76",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Insan",
|
||||
"translated_name": "The Man",
|
||||
"ayahs": 31,
|
||||
"slug": "al-insan",
|
||||
"id": 76,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Man",
|
||||
"transliterated": "Al-Insan",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1587,
|
||||
1575,
|
||||
1606
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 31,
|
||||
"slug": "al-insan",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "77",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Mursalat",
|
||||
"translated_name": "The Emissaries",
|
||||
"ayahs": 50,
|
||||
"slug": "al-mursalat",
|
||||
"id": 77,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Emissaries",
|
||||
"transliterated": "Al-Mursalat",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1604,
|
||||
1575,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 50,
|
||||
"slug": "al-mursalat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,19 +1,21 @@
|
|||
[
|
||||
{
|
||||
"id": "78",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "An-Naba",
|
||||
"translated_name": "The Tidings",
|
||||
"ayahs": 40,
|
||||
"slug": "an-naba",
|
||||
"id": 78,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Tidings",
|
||||
"transliterated": "An-Naba",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
1606,
|
||||
1576,
|
||||
1573
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 40,
|
||||
"slug": "an-naba",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "79",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "An-Nazi'at",
|
||||
"translated_name": "Those who drag forth",
|
||||
"ayahs": 46,
|
||||
"slug": "an-naziat",
|
||||
"id": 79,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "Those who drag forth",
|
||||
"transliterated": "An-Nazi'at",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1593,
|
||||
1575,
|
||||
1578
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 46,
|
||||
"slug": "an-naziat",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "8",
|
||||
"place_of_revelation": "madinah",
|
||||
"transliterated_name": "Al-Anfal",
|
||||
"translated_name": "The Spoils of War",
|
||||
"ayahs": 75,
|
||||
"slug": "al-anfal",
|
||||
"id": 8,
|
||||
"origin": "madinah",
|
||||
"name": {
|
||||
"translated": "The Spoils of War",
|
||||
"transliterated": "Al-Anfal",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1601,
|
||||
1575,
|
||||
1604
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 75,
|
||||
"slug": "al-anfal",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,17 +1,19 @@
|
|||
[
|
||||
{
|
||||
"id": "80",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "'Abasa",
|
||||
"translated_name": "He Frowned",
|
||||
"ayahs": 42,
|
||||
"slug": "abasa",
|
||||
"id": 80,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "He Frowned",
|
||||
"transliterated": "'Abasa",
|
||||
"codepoints": [
|
||||
1593,
|
||||
1576,
|
||||
1587
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 42,
|
||||
"slug": "abasa",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "81",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "At-Takwir",
|
||||
"translated_name": "The Overthrowing",
|
||||
"ayahs": 29,
|
||||
"slug": "at-takwir",
|
||||
"id": 81,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Overthrowing",
|
||||
"transliterated": "At-Takwir",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -14,8 +13,11 @@
|
|||
1608,
|
||||
1610,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 29,
|
||||
"slug": "at-takwir",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
[
|
||||
{
|
||||
"id": "82",
|
||||
"place_of_revelation": "makkah",
|
||||
"transliterated_name": "Al-Infitar",
|
||||
"translated_name": "The Cleaving",
|
||||
"ayahs": 19,
|
||||
"slug": "al-infitar",
|
||||
"id": 82,
|
||||
"origin": "makkah",
|
||||
"name": {
|
||||
"translated": "The Cleaving",
|
||||
"transliterated": "Al-Infitar",
|
||||
"codepoints": [
|
||||
1575,
|
||||
1604,
|
||||
|
@ -15,8 +14,11 @@
|
|||
1591,
|
||||
1575,
|
||||
1585
|
||||
],
|
||||
"translated_by": "Dr. Mustafa Khattab"
|
||||
]
|
||||
},
|
||||
"ayahs": 19,
|
||||
"slug": "al-infitar",
|
||||
"translator": "Dr. Mustafa Khattab"
|
||||
},
|
||||
[
|
||||
1,
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue