Skip to content
This repository has been archived by the owner on Apr 23, 2024. It is now read-only.

Commit

Permalink
Add portugese bible
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel committed Mar 13, 2020
1 parent 1685925 commit 78e36d4
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions app/src/main/assets/translationDownloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ var langShort = {
"en": "English",
"fr": "French",
"de": "German",
"es": "Spanish"
"es": "Spanish",
"pt": "Portugese"
};

var langList = [
"en",
"fr",
"de",
"es"
"es",
"pt"
];

// English
Expand Down Expand Up @@ -47,6 +49,12 @@ var es = [
"sparv"
]

// Portugese
var pt = [
"acf",
"port"
]

// Download trnslation, load it, and do cool animation stuff
function downloadTranslation(language, translation, elem) {
var filename = language + "_" + translation;
Expand Down Expand Up @@ -116,4 +124,4 @@ function deleteTranslation(elem, name) {
}
}
}
}
}

0 comments on commit 78e36d4

Please sign in to comment.