Skip to content

Commit

Permalink
Merge pull request #36 from Cedriane/master
Browse files Browse the repository at this point in the history
Add French book names
  • Loading branch information
jaanonim authored Dec 19, 2024
2 parents 297ecbf + 009d0d8 commit 0dcd5ad
Show file tree
Hide file tree
Showing 3 changed files with 325 additions and 1 deletion.
1 change: 1 addition & 0 deletions Languages.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Thanks to the community, we have support for the following languages:
- Rusian - [Sakardin](https://github.com/Sakardin)
- Ukrainian - [Seesmof](https://github.com/seesmof)
- Korean - [Woollim](https://github.com/woollim)
- French - [Cedriane](https://github.com/Cedriane)

## Adding new language support

Expand Down
321 changes: 321 additions & 0 deletions data/books/fr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,321 @@
{
"GEN": [
"genèse",
"genese",
"gn",
"gen"
],
"EXO": [
"exode",
"ex"
],
"LEV": [
"lévitique",
"levitique",
"lev"
],
"NUM": [
"nombres",
"nb"
],
"DEU": [
"deutéronome",
"deuteronome",
"deut",
"dt"
],
"JOS": [
"josué",
"josue",
"jos",
"js"
],
"JDG": [
"juges",
"jg"
],
"RUT": [
"ruth",
"rt"
],
"1SA": [
"1samuel",
"1sam",
"1s"
],
"2SA": [
"2samuel",
"2sam",
"2s"
],
"1KI": [
"1rois",
"1r"
],
"2KI": [
"2rois",
"2r"
],
"1CH": [
"1chroniques",
"1chr",
"1ch"
],
"2CH": [
"2chroniques",
"2chr",
"2ch"
],
"EZR": [
"esdras",
"esd"
],
"NEH": [
"néhémie",
"nehemie",
"neh",
""
],
"EST": [
"esther",
"esth",
"est"
],
"JOB": [
"job",
"jb"
],
"PSA": [
"psaumes",
"psa",
"pss",
"ps"
],
"PRO": [
"proverbes",
"prov",
"pro",
"pr"
],
"ECC": [
"ecclesiaste",
"qoheleth",
"eccl",
"ecc",
"ec",
"qoh"
],
"SNG": [
"cantique_des_cantiques",
"cantiquedescantiques",
"cantique",
"cant",
"ct"
],
"ISA": [
"esaie",
"es"
],
"JER": [
"jérémie",
"jeremie",
"jr"
],
"LAM": [
"lamentations",
"lm"
],
"EZK": [
"ezéchiel",
"ezechiel",
"ez"
],
"DAN": [
"daniel",
"dn"
],
"HOS": [
"osée",
"osee",
"os"
],
"JOL": [
"joël",
"joel",
"jl"
],
"AMO": [
"amos",
"am"
],
"OBA": [
"abdias",
"ab"
],
"JON": [
"jonas",
"jon"
],
"MIC": [
"michée",
"michee",
"mi"
],
"NAM": [
"nahum",
"na"
],
"HAB": [
"habakuk",
"ha"
],
"ZEP": [
"sophonie",
"soph",
"so"
],
"HAG": [
"aggée",
"aggee",
"ag"
],
"ZEC": [
"zacharie",
"zach",
"za"
],
"MAL": [
"malachie",
"mal",
"ml"
],
"MAT": [
"matthieu",
"matt",
"mt"
],
"MRK": [
"marc",
"mc"
],
"LUK": [
"luc",
"lc"
],
"JHN": [
"jean",
"jn"
],
"ACT": [
"actes",
"act",
"ac"
],
"ROM": [
"romains",
"rm"
],
"1CO": [
"1corinthiens",
"1cor",
"1co"
],
"2CO": [
"2corinthiens",
"2cor",
"2co"
],
"GAL": [
"galates",
"gal",
"ga"
],
"EPH": [
"ephésiens",
"eph",
"ep"
],
"PHP": [
"philippiens",
"phil",
"ph"
],
"COL": [
"colossiens",
"col"
],
"1TH": [
"1thessaloniciens",
"1thess",
"1th"
],
"2TH": [
"2thessaloniciens",
"2thess",
"2th"
],
"1TI": [
"1timothée",
"1timothee",
"1tim",
"1tm"
],
"2TI": [
"2timothée",
"2timothee",
"2tim",
"2tm"
],
"TIT": [
"tite",
"tt"
],
"PHM": [
"philémon",
"philemon",
"phlm",
"phm"
],
"HEB": [
"hébreux",
"hebreux",
"",
"he",
"hb"
],
"JAS": [
"jacques",
"jc"
],
"1PE": [
"1pierre",
"1pi",
"1p"
],
"2PE": [
"2pierre",
"2pi",
"2p"
],
"1JN": [
"1jean",
"1jn"
],
"2JN": [
"2jean",
"2jn"
],
"3JN": [
"3jean",
"3jn"
],
"JUD": [
"jude",
"jd"
],
"REV": [
"apocalypse",
"apo",
"ap"
]
}
4 changes: 3 additions & 1 deletion src/BooksLists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import sv from "../data/books/sv.json";
import uk from "../data/books/uk.json";
import ru from "../data/books/ru.json";
import ko from "../data/books/ko.json";
import fr from "../data/books/fr.json";

// prettier-ignore
const booksNames = {
Expand All @@ -32,7 +33,8 @@ const booksNames = {
"Romanian": ro,
"Ukrainian": uk,
"Russian": ru,
"Korean": ko
"Korean": ko,
"French": fr
} as BooksLangList;

export default booksNames;

0 comments on commit 0dcd5ad

Please sign in to comment.