gitextract_nqltqwj6/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── question.md │ └── workflows/ │ ├── deb.yml │ ├── eslint.yml │ └── snap.yml ├── .gitignore ├── .gitmodules ├── COPYING ├── README.md ├── com.github.johnfactotum.Foliate.json ├── data/ │ ├── com.github.johnfactotum.Foliate.desktop.in │ ├── com.github.johnfactotum.Foliate.gschema.xml │ ├── com.github.johnfactotum.Foliate.metainfo.xml.in │ ├── gschemas.compiled │ └── meson.build ├── debian/ │ ├── changelog │ ├── control │ ├── copyright │ ├── lintian-override │ ├── rules │ ├── source/ │ │ └── format │ ├── upstream/ │ │ └── metadata │ └── watch ├── docs/ │ ├── faq.md │ └── troubleshooting.md ├── eslint.config.js ├── meson.build ├── meson_options.txt ├── package.json ├── po/ │ ├── LINGUAS │ ├── POTFILES │ ├── ar.po │ ├── be.po │ ├── com.github.johnfactotum.Foliate.pot │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── es.po │ ├── eu.po │ ├── fa.po │ ├── fr.po │ ├── ga.po │ ├── gl.po │ ├── he.po │ ├── hi.po │ ├── hr.po │ ├── hu.po │ ├── id.po │ ├── ie.po │ ├── it.po │ ├── ja.po │ ├── ka.po │ ├── ko.po │ ├── meson.build │ ├── nb.po │ ├── nl.po │ ├── nn.po │ ├── oc.po │ ├── pt_BR.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ ├── vi.po │ ├── zh_CN.po │ └── zh_TW.po ├── snapcraft.yaml └── src/ ├── annotations.js ├── app.js ├── book-info.js ├── book-viewer.js ├── common/ │ └── widgets.js ├── data.js ├── format.js ├── generate-gresource.js ├── gresource.xml ├── image-viewer.js ├── library.js ├── main.js ├── meson.build ├── navbar.js ├── opds/ │ ├── main.html │ └── main.js ├── reader/ │ ├── markup.js │ ├── reader.html │ └── reader.js ├── search.js ├── selection-tools/ │ ├── common.css │ ├── translate.html │ ├── wikipedia.html │ └── wiktionary.html ├── selection-tools.js ├── speech.js ├── themes.js ├── toc.js ├── tts.js ├── ui/ │ ├── annotation-popover.ui │ ├── annotation-row.ui │ ├── book-image.ui │ ├── book-item.ui │ ├── book-row.ui │ ├── book-viewer.ui │ ├── bookmark-row.ui │ ├── export-dialog.ui │ ├── help-overlay.ui │ ├── image-viewer.ui │ ├── import-dialog.ui │ ├── library-view.ui │ ├── library.ui │ ├── media-overlay-box.ui │ ├── navbar.ui │ ├── selection-popover.ui │ ├── tts-box.ui │ └── view-preferences-window.ui ├── utils.js └── webview.js