├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .travis.yml ├── AUTHORS ├── COPYING ├── README.md ├── data ├── com.github.mdh34.quickdocs.appdata.xml.in ├── com.github.mdh34.quickdocs.desktop.in ├── com.github.mdh34.quickdocs.gschema.xml ├── icons │ ├── 16 │ │ └── com.github.mdh34.quickdocs.svg │ ├── 24 │ │ └── com.github.mdh34.quickdocs.svg │ ├── 32 │ │ └── com.github.mdh34.quickdocs.svg │ ├── 48 │ │ └── com.github.mdh34.quickdocs.svg │ ├── 64 │ │ └── com.github.mdh34.quickdocs.svg │ └── 128 │ │ └── com.github.mdh34.quickdocs.svg ├── images │ ├── screenshot-1.png │ ├── screenshot-2.png │ ├── screenshot-3.png │ └── screenshot-4.png └── meson.build ├── meson.build ├── meson └── post_install.py ├── po ├── LINGUAS ├── POTFILES ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── az.po ├── ba.po ├── be.po ├── bg.po ├── bh.po ├── bi.po ├── bm.po ├── bn.po ├── bo.po ├── br.po ├── bs.po ├── ca.po ├── ce.po ├── ch.po ├── ckb.po ├── co.po ├── com.github.mdh34.quickdocs.pot ├── cr.po ├── cs.po ├── cu.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── ff.po ├── fi.po ├── fj.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── he.po ├── hi.po ├── ho.po ├── hr.po ├── ht.po ├── hu.po ├── hy.po ├── hz.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jv.po ├── ka.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── ko.po ├── kr.po ├── ks.po ├── ku.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lt.po ├── lu.po ├── lv.po ├── meson.build ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mo.po ├── mr.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── pi.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── qu.po ├── rm.po ├── rn.po ├── ro.po ├── ru.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── si.po ├── sk.po ├── sl.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── sr.po ├── ss.po ├── st.po ├── su.po ├── sv.po ├── sw.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── ti.po ├── tk.po ├── tl.po ├── tn.po ├── to.po ├── tr.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── ve.po ├── vi.po ├── vo.po ├── wa.po ├── wo.po ├── xh.po ├── yi.po ├── yo.po ├── za.po ├── zh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po ├── src ├── Application.vala ├── Constants.vala ├── MainWindow.vala ├── Services │ └── Downloader.vala ├── Widgets │ ├── Package.vala │ ├── PackageList.vala │ └── View.vala └── meson.build └── vapi ├── libdevhelp-3.0.deps └── libdevhelp-3.0.vapi /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | 5 | --- 6 | 7 | **Describe the bug** 8 | A clear and concise description of what the bug is. 9 | 10 | **To Reproduce** 11 | Steps to reproduce the behavior: 12 | 13 | **Expected behavior** 14 | A clear and concise description of what you expected to happen. 15 | 16 | **Screenshots** 17 | If applicable, add screenshots to help explain your problem. 18 | 19 | **System Information** 20 | - Distribution: 21 | - Desktop Environment: [GNOME. KDE, Pantheon, etc.] 22 | - Installation Method: [Debian Package, AUR, Flatpak, from source etc.] 23 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | 5 | --- 6 | 7 | **Describe the solution you'd like** 8 | A clear and concise description of what you want to happen. 9 | 10 | **Describe alternatives you've considered** 11 | A clear and concise description of any alternative solutions or features you've considered. 12 | 13 | **Additional context** 14 | Add any other context or screenshots about the feature request here. 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *~ 3 | .buildconfig -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - lts/* 5 | 6 | sudo: required 7 | 8 | services: 9 | - docker 10 | 11 | addons: 12 | apt: 13 | sources: 14 | - ubuntu-toolchain-r-test 15 | packages: 16 | - libstdc++-5-dev 17 | 18 | install: 19 | - npm i -g @elementaryos/houston 20 | 21 | script: 22 | - houston ci 23 | --name-domain com.github.mdh34.quickdocs 24 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Matt Harris 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | # quickDocs ![Icon](https://github.com/mdh34/quickDocs/raw/master/data/icons/64/com.github.mdh34.quickdocs.svg?sanitize=true) 3 | 4 | 5 | [![build](https://travis-ci.org/mdh34/quickDocs.svg?branch=master)](https://travis-ci.org/mdh34/quickDocs) 6 | [![Get it on AppCenter](https://appcenter.elementary.io/badge.svg)](https://appcenter.elementary.io/com.github.mdh34.quickdocs) 7 | 8 | A fast developer docs reader 9 | ![Screenshot](https://raw.githubusercontent.com/mdh34/quickDocs/master/data/images/screenshot-1.png) 10 | ![Screenshot](https://raw.githubusercontent.com/mdh34/quickDocs/master/data/images/screenshot-4.png) 11 | 12 | ## Doc Sources: 13 | - Valadoc 14 | - DevDocs 15 | 16 | ## Build Dependencies: 17 | - libarchive-dev 18 | - libdevhelp-dev 19 | - libgee-0.8-dev 20 | - libgranite-dev 21 | - libgtk-3-dev 22 | - libwebkit2gtk-4.0-dev 23 | - meson 24 | - valac 25 | 26 | ## Install: 27 | ### Flatpak: 28 | quickDocs is avaliable on Flathub, install it by running: 29 | ``` 30 | flatpak install flathub com.github.mdh34.quickdocs 31 | ``` 32 | ### Unofficial Community Packages: 33 | - For Arch Linux based systems, install the AUR package from [here](https://aur.archlinux.org/packages/quickdocs/) 34 | - For OpenSUSE Leap / Tumbleweed, add the following [repo](https://build.opensuse.org/package/show/home:MichaelAquilina/quickdocs) 35 | 36 | ## Install From Source: 37 | The following instructions should work on most debian-based systems: 38 | ``` 39 | sudo apt install libarchive-dev libdevhelp-dev libgee-0.8-dev libgranite-dev libgtk-3-dev libwebkit2gtk-4.0-dev meson valac 40 | git clone https://github.com/mdh34/quickDocs.git 41 | cd ./quickDocs/ 42 | meson build --prefix=/usr 43 | cd build 44 | ninja 45 | sudo ninja install 46 | ``` 47 | -------------------------------------------------------------------------------- /data/com.github.mdh34.quickdocs.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Name=quickDocs 3 | GenericName=quickDocs 4 | Comment=A fast developer docs reader that supports Valadoc and DevDocs 5 | Categories=Development;Documentation; 6 | Exec=com.github.mdh34.quickdocs 7 | Icon=com.github.mdh34.quickdocs 8 | Terminal=false 9 | Type=Application 10 | X-GNOME-Gettext-Domain=com.github.mdh34.quickdocs 11 | Keywords=docs;quickDocs;dev; 12 | -------------------------------------------------------------------------------- /data/images/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdh34/quickDocs/2ad95599fe81ef7ebed02fc57cbcd2cb3fbce4ab/data/images/screenshot-1.png -------------------------------------------------------------------------------- /data/images/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdh34/quickDocs/2ad95599fe81ef7ebed02fc57cbcd2cb3fbce4ab/data/images/screenshot-2.png -------------------------------------------------------------------------------- /data/images/screenshot-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdh34/quickDocs/2ad95599fe81ef7ebed02fc57cbcd2cb3fbce4ab/data/images/screenshot-3.png -------------------------------------------------------------------------------- /data/images/screenshot-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdh34/quickDocs/2ad95599fe81ef7ebed02fc57cbcd2cb3fbce4ab/data/images/screenshot-4.png -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | icon_sizes = ['16', '24', '32', '48', '64', '128'] 2 | 3 | foreach i : icon_sizes 4 | install_data( 5 | join_paths('icons', i, meson.project_name() + '.svg'), 6 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps') 7 | ) 8 | install_data( 9 | join_paths('icons', i, meson.project_name() + '.svg'), 10 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps') 11 | ) 12 | endforeach 13 | 14 | install_data( 15 | meson.project_name() + '.gschema.xml', 16 | install_dir: join_paths(get_option('datadir'), 'glib-2.0', 'schemas') 17 | ) 18 | 19 | i18n.merge_file( 20 | input: meson.project_name() + '.desktop.in', 21 | output: meson.project_name() + '.desktop', 22 | po_dir: join_paths(meson.source_root(), 'po'), 23 | type: 'desktop', 24 | install: true, 25 | install_dir: join_paths(get_option('datadir'), 'applications') 26 | ) 27 | 28 | i18n.merge_file( 29 | input: meson.project_name() + '.appdata.xml.in', 30 | output: meson.project_name() + '.appdata.xml', 31 | po_dir: join_paths(meson.source_root(), 'po'), 32 | install: true, 33 | install_dir: join_paths(get_option('datadir'), 'metainfo') 34 | ) 35 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project('com.github.mdh34.quickdocs', 'vala', 'c') 2 | 3 | i18n = import('i18n') 4 | 5 | add_project_arguments(['--vapidir', join_paths(meson.current_source_dir(), 'vapi')], language: 'vala') 6 | 7 | add_global_arguments('-DGETTEXT_PACKAGE="@0@"'.format (meson.project_name()), language:'c') 8 | 9 | subdir ('src') 10 | subdir('data') 11 | subdir('po') 12 | meson.add_install_script('meson/post_install.py') 13 | -------------------------------------------------------------------------------- /meson/post_install.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import os 4 | import subprocess 5 | 6 | schemadir = os.path.join(os.environ['MESON_INSTALL_PREFIX'], 'share', 'glib-2.0', 'schemas') 7 | 8 | if not os.environ.get('DESTDIR'): 9 | print('Compiling gsettings schemas...') 10 | subprocess.call(['glib-compile-schemas', schemadir]) 11 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | aa 2 | ab 3 | ae 4 | af 5 | ak 6 | am 7 | an 8 | ar 9 | as 10 | ast 11 | av 12 | ay 13 | az 14 | ba 15 | be 16 | bg 17 | bh 18 | bi 19 | bm 20 | bn 21 | bo 22 | br 23 | bs 24 | ca 25 | ce 26 | ch 27 | ckb 28 | co 29 | cr 30 | cs 31 | cu 32 | cv 33 | cy 34 | da 35 | de 36 | dv 37 | dz 38 | ee 39 | el 40 | en_AU 41 | en_CA 42 | en_GB 43 | eo 44 | es 45 | et 46 | eu 47 | fa 48 | ff 49 | fi 50 | fj 51 | fo 52 | fr_CA 53 | fr 54 | fy 55 | ga 56 | gd 57 | gl 58 | gn 59 | gu 60 | gv 61 | ha 62 | he 63 | hi 64 | ho 65 | hr 66 | ht 67 | hu 68 | hy 69 | hz 70 | ia 71 | id 72 | ie 73 | ig 74 | ii 75 | ik 76 | io 77 | is 78 | it 79 | iu 80 | ja 81 | jv 82 | ka 83 | kg 84 | ki 85 | kj 86 | kk 87 | kl 88 | km 89 | kn 90 | ko 91 | kr 92 | ks 93 | ku 94 | kv 95 | kw 96 | ky 97 | la 98 | lb 99 | lg 100 | li 101 | ln 102 | lo 103 | lt 104 | lu 105 | lv 106 | mg 107 | mh 108 | mi 109 | mk 110 | ml 111 | mn 112 | mo 113 | mr 114 | ms 115 | mt 116 | my 117 | na 118 | nb 119 | nd 120 | ne 121 | ng 122 | nl 123 | nn 124 | no 125 | nr 126 | nv 127 | ny 128 | oc 129 | oj 130 | om 131 | or 132 | os 133 | pa 134 | pi 135 | pl 136 | ps 137 | pt_BR 138 | pt 139 | qu 140 | rm 141 | rn 142 | ro 143 | rue 144 | ru 145 | rw 146 | sa 147 | sc 148 | sd 149 | se 150 | sg 151 | si 152 | sk 153 | sl 154 | sma 155 | sm 156 | sn 157 | so 158 | sq 159 | sr 160 | ss 161 | st 162 | su 163 | sv 164 | sw 165 | ta 166 | te 167 | tg 168 | th 169 | ti 170 | tk 171 | tl 172 | tn 173 | to 174 | tr 175 | ts 176 | tt 177 | tw 178 | ty 179 | ug 180 | uk 181 | ur 182 | uz 183 | ve 184 | vi 185 | vo 186 | wa 187 | wo 188 | xh 189 | yi 190 | yo 191 | za 192 | zh_CN 193 | zh_HK 194 | zh 195 | zh_TW 196 | zu 197 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | data/com.github.mdh34.quickdocs.appdata.xml.in 2 | data/com.github.mdh34.quickdocs.desktop.in 3 | src/MainWindow.vala 4 | src/Widgets/PackageList.vala 5 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | # Afar translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: aa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ab.po: -------------------------------------------------------------------------------- 1 | # Abkhazian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ab\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ae.po: -------------------------------------------------------------------------------- 1 | # Avestan translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ae\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/af.po: -------------------------------------------------------------------------------- 1 | # Afrikaans translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: af\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ak.po: -------------------------------------------------------------------------------- 1 | # Akan translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ak\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/am.po: -------------------------------------------------------------------------------- 1 | # Amharic translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: am\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | # Aragonese translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: an\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- 1 | # Arabic translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ar\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | # Assamese translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: as\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- 1 | # Asturian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ast\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/av.po: -------------------------------------------------------------------------------- 1 | # Avaric translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: av\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | # Aymara translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ay\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- 1 | # Azerbaijani translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: az\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ba.po: -------------------------------------------------------------------------------- 1 | # Bashkir translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ba\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/bh.po: -------------------------------------------------------------------------------- 1 | # Bihari translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/bi.po: -------------------------------------------------------------------------------- 1 | # Bislama translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/bm.po: -------------------------------------------------------------------------------- 1 | # Bambara translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bm\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- 1 | # Bengali translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/bo.po: -------------------------------------------------------------------------------- 1 | # Tibetan translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | # Breton translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: br\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- 1 | # Bosnian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: bs\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- 1 | # Catalan translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ca\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ce.po: -------------------------------------------------------------------------------- 1 | # Chechen translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ce\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ch.po: -------------------------------------------------------------------------------- 1 | # Chamorro translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ch\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/co.po: -------------------------------------------------------------------------------- 1 | # Corsican translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: co\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/cr.po: -------------------------------------------------------------------------------- 1 | # Cree translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/cv.po: -------------------------------------------------------------------------------- 1 | # Chuvash translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- 1 | # Welsh translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: cy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | # Divehi translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | # Dzongkha translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: dz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ee.po: -------------------------------------------------------------------------------- 1 | # Ewe translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ee\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- 1 | # Basque translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: eu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- 1 | # Persian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fa\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | # Fulah translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ff\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/fj.po: -------------------------------------------------------------------------------- 1 | # Fijian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: fj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- 1 | # Galician translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/gn.po: -------------------------------------------------------------------------------- 1 | # Guarani translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- 1 | # Gujarati translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/gv.po: -------------------------------------------------------------------------------- 1 | # Manx translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: gv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | # Hausa translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ha\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- 1 | # Hindi translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ho.po: -------------------------------------------------------------------------------- 1 | # Hiri Motu translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ho\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ht.po: -------------------------------------------------------------------------------- 1 | # Haitian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ht\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/hy.po: -------------------------------------------------------------------------------- 1 | # Armenian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hy\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/hz.po: -------------------------------------------------------------------------------- 1 | # Herero translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: hz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ia.po: -------------------------------------------------------------------------------- 1 | # Interlingua translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ia\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- 1 | # Indonesian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: id\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- 1 | # Interlingue translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ie\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ig.po: -------------------------------------------------------------------------------- 1 | # Igbo translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ig\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ii.po: -------------------------------------------------------------------------------- 1 | # Sichuan Yi translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ii\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ik.po: -------------------------------------------------------------------------------- 1 | # Inupiak translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ik\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/io.po: -------------------------------------------------------------------------------- 1 | # Language io translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: io\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- 1 | # Icelandic translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: is\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/iu.po: -------------------------------------------------------------------------------- 1 | # Inuktitut translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: iu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | # Javanese translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: jv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- 1 | # Georgian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ka\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kg.po: -------------------------------------------------------------------------------- 1 | # Kongo translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ki.po: -------------------------------------------------------------------------------- 1 | # Kikuyu translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ki\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kj.po: -------------------------------------------------------------------------------- 1 | # Kuanyama translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | # Kazakh translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kk\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kl.po: -------------------------------------------------------------------------------- 1 | # Kalaallisut translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kl\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- 1 | # Kannada translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | # Kanuri translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kr\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ks.po: -------------------------------------------------------------------------------- 1 | # Kashmiri translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ks\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- 1 | # Kurdish translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ku\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kv.po: -------------------------------------------------------------------------------- 1 | # Komi translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/kw.po: -------------------------------------------------------------------------------- 1 | # Cornish translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: kw\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ky.po: -------------------------------------------------------------------------------- 1 | # Kirghiz translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ky\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | # Latin translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: la\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/lg.po: -------------------------------------------------------------------------------- 1 | # Ganda translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: lg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | # Limburgish translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: li\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ln.po: -------------------------------------------------------------------------------- 1 | # Lingala translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ln\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | # Laotian translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: lo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: ['--directory='+meson.source_root(), '--from-code=UTF-8'] 3 | ) -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | # Malagasy translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: mg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | # Maori translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: mi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- 1 | # Malay translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ms\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/na.po: -------------------------------------------------------------------------------- 1 | # Nauru translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: na\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | # Nepali translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ne\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ng.po: -------------------------------------------------------------------------------- 1 | # Ndonga translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ng\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/nv.po: -------------------------------------------------------------------------------- 1 | # Navajo translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: nv\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | # Nyanja translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ny\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | # Ojibwa translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: oj\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | # Oriya translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: or\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | # Pali translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: pi\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | # Pashto translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ps\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | # Sindhi translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sd\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/sg.po: -------------------------------------------------------------------------------- 1 | # Sango translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/sm.po: -------------------------------------------------------------------------------- 1 | # Samoan translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sm\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/sn.po: -------------------------------------------------------------------------------- 1 | # Shona translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: sn\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | # Somali translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: so\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- 1 | # Tamil translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ta\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- 1 | # Telugu translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: te\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/tg.po: -------------------------------------------------------------------------------- 1 | # Tajik translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tg\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- 1 | # Thai translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: th\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/to.po: -------------------------------------------------------------------------------- 1 | # Tonga translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: to\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ts.po: -------------------------------------------------------------------------------- 1 | # Tsonga translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ts\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | # Tatar translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tt\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/tw.po: -------------------------------------------------------------------------------- 1 | # Twi translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: tw\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- 1 | # Uighur translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ug\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ur.po: -------------------------------------------------------------------------------- 1 | # Urdu translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ur\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/uz.po: -------------------------------------------------------------------------------- 1 | # Uzbek translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: uz\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/ve.po: -------------------------------------------------------------------------------- 1 | # Venda translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: ve\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/wo.po: -------------------------------------------------------------------------------- 1 | # Wolof translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: wo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- 1 | # Xhosa translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: xh\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/yo.po: -------------------------------------------------------------------------------- 1 | # Yoruba translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: yo\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/za.po: -------------------------------------------------------------------------------- 1 | # Zhuang translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: za\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /po/zu.po: -------------------------------------------------------------------------------- 1 | # Zulu translations for com.github.mdh34.quickdocs package. 2 | # Copyright (C) 2018 THE com.github.mdh34.quickdocs'S COPYRIGHT HOLDER 3 | # This file is distributed under the same license as the com.github.mdh34.quickdocs package. 4 | # Automatically generated, 2018. 5 | # 6 | msgid "" 7 | msgstr "" 8 | "Project-Id-Version: com.github.mdh34.quickdocs\n" 9 | "Report-Msgid-Bugs-To: \n" 10 | "POT-Creation-Date: 2018-10-14 15:05+0100\n" 11 | "PO-Revision-Date: 2018-05-20 11:51+0100\n" 12 | "Last-Translator: Automatically generated\n" 13 | "Language-Team: none\n" 14 | "Language: zu\n" 15 | "MIME-Version: 1.0\n" 16 | "Content-Type: text/plain; charset=ASCII\n" 17 | "Content-Transfer-Encoding: 8bit\n" 18 | 19 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:7 20 | #: data/com.github.mdh34.quickdocs.desktop.in:3 21 | #: data/com.github.mdh34.quickdocs.desktop.in:4 22 | msgid "quickDocs" 23 | msgstr "" 24 | 25 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:8 26 | msgid "Quickly Read Developer Docs" 27 | msgstr "" 28 | 29 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:10 30 | #: data/com.github.mdh34.quickdocs.desktop.in:5 31 | msgid "A fast developer docs reader that supports Valadoc and DevDocs" 32 | msgstr "" 33 | 34 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:11 35 | msgid "Includes:" 36 | msgstr "" 37 | 38 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:13 39 | msgid "Offline support for both Valadoc and Devdocs" 40 | msgstr "" 41 | 42 | #: data/com.github.mdh34.quickdocs.appdata.xml.in:14 43 | msgid "Dark mode toggle to suit your workflow" 44 | msgstr "" 45 | 46 | #: data/com.github.mdh34.quickdocs.desktop.in:8 47 | msgid "com.github.mdh34.quickdocs" 48 | msgstr "" 49 | 50 | #: data/com.github.mdh34.quickdocs.desktop.in:12 51 | msgid "docs;quickDocs;dev;" 52 | msgstr "" 53 | 54 | #: src/MainWindow.vala:131 55 | msgid "Download offline documentation" 56 | msgstr "" 57 | 58 | #: src/Widgets/PackageList.vala:32 59 | msgid "Install all" 60 | msgstr "" 61 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | if dependency('libarchive').version().version_compare('>=3.3.2') 2 | add_project_arguments('--define=ARCHIVE_332', language: 'vala') 3 | endif 4 | executable( 5 | meson.project_name(), 6 | 'Application.vala', 7 | 'Constants.vala', 8 | 'MainWindow.vala', 9 | 'Services/Downloader.vala', 10 | 'Widgets/Package.vala', 11 | 'Widgets/PackageList.vala', 12 | 'Widgets/View.vala', 13 | dependencies: [ 14 | dependency('gee-0.8'), 15 | dependency('gtk+-3.0'), 16 | dependency('granite', version : '>=5.1.0'), 17 | dependency('libarchive'), 18 | dependency('libdevhelp-3.0'), 19 | dependency('webkit2gtk-4.0'), 20 | ], 21 | install: true 22 | ) 23 | -------------------------------------------------------------------------------- /vapi/libdevhelp-3.0.deps: -------------------------------------------------------------------------------- 1 | glib-2.0 2 | gio-2.0 3 | libsoup-2.4 4 | gtk+-3.0 5 | webkit2gtk-4.0 6 | --------------------------------------------------------------------------------