Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
zathura
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages
Packages
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jeremie Knuesel
zathura
Commits
67818f90
Commit
67818f90
authored
Jan 06, 2020
by
Sebastian Ramacher
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release/0.4.5'
parents
78205781
f41cfd37
Changes
47
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
47 changed files
with
1793 additions
and
1616 deletions
+1793
-1616
.gitignore
.gitignore
+2
-0
.gitlab-ci.yml
.gitlab-ci.yml
+149
-0
LICENSE
LICENSE
+1
-1
data/zsh-completion.in
data/zsh-completion.in
+27
-24
doc/man/zathura.1.rst
doc/man/zathura.1.rst
+5
-5
doc/man/zathurarc.5.rst
doc/man/zathurarc.5.rst
+584
-675
meson.build
meson.build
+4
-2
po/ar.po
po/ar.po
+20
-20
po/ca.po
po/ca.po
+20
-20
po/cs.po
po/cs.po
+20
-20
po/de.po
po/de.po
+20
-20
po/el.po
po/el.po
+20
-20
po/eo.po
po/eo.po
+20
-20
po/es.po
po/es.po
+20
-20
po/es_CL.po
po/es_CL.po
+20
-20
po/et.po
po/et.po
+20
-20
po/fr.po
po/fr.po
+20
-20
po/he.po
po/he.po
+20
-20
po/hr.po
po/hr.po
+20
-20
po/id_ID.po
po/id_ID.po
+20
-20
po/it.po
po/it.po
+20
-20
po/lt.po
po/lt.po
+20
-20
po/nl.po
po/nl.po
+20
-20
po/no.po
po/no.po
+20
-20
po/pl.po
po/pl.po
+20
-20
po/pt_BR.po
po/pt_BR.po
+20
-20
po/ru.po
po/ru.po
+24
-24
po/sv.po
po/sv.po
+20
-20
po/ta_IN.po
po/ta_IN.po
+20
-20
po/tr.po
po/tr.po
+20
-20
po/uk_UA.po
po/uk_UA.po
+20
-20
subprojects/girara.wrap
subprojects/girara.wrap
+4
-0
zathura/content-type.c
zathura/content-type.c
+44
-24
zathura/content-type.h
zathura/content-type.h
+2
-1
zathura/database-plain.c
zathura/database-plain.c
+224
-220
zathura/database-sqlite.c
zathura/database-sqlite.c
+138
-140
zathura/database.c
zathura/database.c
+6
-6
zathura/database.h
zathura/database.h
+10
-5
zathura/dbus-interface.c
zathura/dbus-interface.c
+11
-5
zathura/document.c
zathura/document.c
+47
-3
zathura/document.h
zathura/document.h
+10
-0
zathura/main.c
zathura/main.c
+6
-4
zathura/plugin.c
zathura/plugin.c
+19
-12
zathura/plugin.h
zathura/plugin.h
+8
-0
zathura/shortcuts.c
zathura/shortcuts.c
+3
-2
zathura/utils.c
zathura/utils.c
+1
-1
zathura/zathura.c
zathura/zathura.c
+4
-2
No files found.
.gitignore
View file @
67818f90
...
...
@@ -7,6 +7,7 @@
*.pc
*.sw[a-z]
*.pyc
tags
# generated files
resources.*
...
...
@@ -24,6 +25,7 @@ zathura-*.tar.gz
.tx
build/
gcov/
subprojects/girara
# development files
.clang_complete
...
...
.gitlab-ci.yml
0 → 100644
View file @
67818f90
stages
:
-
build
-
test
# Cache
cache
:
&girara_cache
key
:
"
$CI_JOB_NAME-$CI_COMMIT_REF_SLUG"
paths
:
-
subprojects/girara
# Archlinux
build:archlinux:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/archlinux:latest
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*girara_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:archlinux:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/archlinux:latest
script
:
-
cd build
-
ninja test
cache
:
<<
:
*girara_cache
policy
:
pull
dependencies
:
-
build:archlinux
except
:
-
tags
# Debian 10 (Buster)
build:debian-buster:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/debian:buster
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*girara_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:debian-buster:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/debian:buster
script
:
-
cd build
-
ninja test
cache
:
<<
:
*girara_cache
policy
:
pull
dependencies
:
-
build:debian-buster
except
:
-
tags
# Ubuntu 18.04 LTS (Bionic Beaver)
build:ubuntu-bionic:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:bionic
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*girara_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:ubuntu-bionic:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:bionic
script
:
-
cd build
-
ninja test
cache
:
<<
:
*girara_cache
policy
:
pull
dependencies
:
-
build:ubuntu-bionic
except
:
-
tags
# Ubuntu 19.10 (Eoan Ermine)
build:ubuntu-eoan:
tags
:
-
pwmt
stage
:
build
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:eoan
script
:
-
mkdir -p build && cd build
-
meson ..
-
ninja
cache
:
<<
:
*girara_cache
artifacts
:
expire_in
:
1 day
paths
:
-
build
except
:
-
tags
test:ubuntu-eoan:
tags
:
-
pwmt
stage
:
test
image
:
registry.pwmt.org/pwmt/gitlab-runner-images/ubuntu:eoan
script
:
-
cd build
-
ninja test
cache
:
<<
:
*girara_cache
policy
:
pull
dependencies
:
-
build:ubuntu-eoan
except
:
-
tags
LICENSE
View file @
67818f90
Copyright (c) 2009-20
19
pwmt.org
Copyright (c) 2009-20
20
pwmt.org
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
...
...
data/zsh-completion.in
View file @
67818f90
...
...
@@ -2,51 +2,54 @@
local -a all_opts
all_opts=(
'(-c --config-dir
=DIR)'{-c,--config-dir}'[P
ath to config directory]:config directory:_files -/'
'(-d --data-dir
=DIR)'{-d,--data-dir}'[P
ath to data directory]:data directory:_files -/'
'--cache-dir=
DIR[P
ath to cache directory]:cache directory:_files -/'
'(-p --plugins-dir
=DIR)'{-p,--plugins-dir}'[P
ath to plugins directory]:plugins directory:_files -/'
'(-e --reparent
=XID)'{-e,--reparent}'[Reparents to window specified by XID (X11)]:xid
'
'(-w --password
=password)'{-w,--password}'[Document password
]:password'
'(-P --page
=page)'{-p,--page}'[Page number to go to
]:page number'
'(-l --log-level
=level)'{-l,--log-level}'[L
og level]:level:(error warning info debug)'
'(-x --s
nyctex-editor-command=cmd)'{-x,--synxtec-editor-command}'[S
ynctex editor (forwarded to the synctex command)]:command'
'--synctex-forward=
position[Move to given synctex
position]:position'
'--synctex-pid=
pid[Highlight position in given process]:pid
'
'--mode
=mode[S
tart in a non-default mode]:mode:(presentation fullscreen)'
'--fork[
F
ork into the background]'
'
-h --help[S
how help message]'
'
-v --version[P
rint version information]'
'(-c --config-dir
)'{-c,--config-dir=}'[specify p
ath to config directory]:config directory:_files -/'
'(-d --data-dir
)'{-d,--data-dir=}'[specify p
ath to data directory]:data directory:_files -/'
'--cache-dir=
[specify p
ath to cache directory]:cache directory:_files -/'
'(-p --plugins-dir
)'{-p,--plugins-dir=}'[specify p
ath to plugins directory]:plugins directory:_files -/'
'(-e --reparent
)'{-e,--reparent=}'[reparent to window specified by XID (X11)]: :_x_window
'
'(-w --password
)'{-w,--password=}'[specify a password for the document
]:password'
'(-P --page
)'{-p,--page=}'[open the document at the given page number
]:page number'
'(-l --log-level
)'{-l,--log-level=}'[set l
og level]:level:(error warning info debug)'
'(-x --s
ynctex-editor-command)'{-x,--synctex-editor-command=}'[specify s
ynctex editor (forwarded to the synctex command)]:command'
'--synctex-forward=
[move to the given
position]:position'
'--synctex-pid=
[highlight position in given process]:pid:_pids
'
'--mode
[s
tart in a non-default mode]:mode:(presentation fullscreen)'
'--fork[
f
ork into the background]'
'
(- :)'{-h,--help}'[s
how help message]'
'
(- :)'{-v,--version}'[p
rint version information]'
'*:file:->files'
)
local c
ontext state state_descr line
local c
urcontext="$curcontext" state state_descr line ret=1
typeset -A opt_args
_arguments -
S "$all_opts[@]" && return
0
_arguments -
C -s -S "$all_opts[@]" && ret=
0
local exts
local PLUGIN
local -a exts
for PLUGIN in @PLUGINDIR@/lib*.so; do
case ${PLUGIN##*/} in
libpdf-poppler.so)
exts
="$exts|pdf|PDF"
exts
+=( pdf PDF )
;;
libpdf-mupdf.so)
exts
="$exts|pdf|PDF|epub|oxps"
exts
+=( pdf PDF epub oxps )
;;
libps.so)
exts
="$exts|ps|eps|epsi|epsf"
exts
+=( ps eps epsi epsf )
;;
libdjvu.so)
exts
="$exts|djvu|djv"
exts
+=( djvu djv )
;;
libcb.so)
exts
="$exts|cb7|cbr|cbz|cbt|rar|zip|7z|tar"
exts
+=( cb7 cbr cbz cbt rar zip 7z tar )
;;
esac
done
case $state in
(files)
_
files -g "*.($exts)"
_
wanted files expl file _files -g "*.(${(j:|:)exts:-pdf})(-.)" && ret=0
;;
esac
return ret
doc/man/zathura.1.rst
View file @
67818f90
...
...
@@ -16,11 +16,6 @@ Options
.. include:: _options.txt
Environment variables
---------------------
.. include:: _env.txt
Mouse and key bindings
----------------------
...
...
@@ -41,6 +36,11 @@ Synctex support
.. include:: _synctex.txt
Environment variables
---------------------
.. include:: _env.txt
Known bugs
----------
...
...
doc/man/zathurarc.5.rst
View file @
67818f90
This diff is collapsed.
Click to expand it.
meson.build
View file @
67818f90
project('zathura', 'c',
version: '0.4.
4
',
version: '0.4.
5
',
meson_version: '>=0.47',
default_options: 'c_std=c11',
)
...
...
@@ -37,7 +37,7 @@ plugindir = join_paths(get_option('libdir'), 'zathura')
# required dependencies
libm = cc.find_library('m', required: false)
girara = dependency('girara-gtk3', version: '>=0.3.3')
girara = dependency('girara-gtk3', version: '>=0.3.3'
, fallback: ['girara', 'girara_dependency']
)
glib = dependency('glib-2.0', version: '>=2.50')
gio = dependency('gio-unix-2.0', required: host_machine.system() != 'windows')
gthread = dependency('gthread-2.0', version: '>=2.50')
...
...
@@ -193,5 +193,7 @@ pkg.generate(
]
)
zathura_dependency = declare_dependency(link_with: zathura, include_directories: include_directories)
subdir('doc')
subdir('tests')
po/ar.po
View file @
67818f90
...
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 20
19-09-06 22:48+02
00\n"
"POT-Creation-Date: 20
20-01-06 10:17+01
00\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: abouzakaria kov <zakariakov@gmail.com>\n"
"Language-Team: Arabic (http://www.transifex.com/pwmt/zathura/language/ar/)\n"
...
...
@@ -594,59 +594,59 @@ msgstr "الرابط: : %s"
msgid "Link: Invalid"
msgstr "الرابط: غير صالح"
#: zathura/main.c:14
7
#: zathura/main.c:14
5
msgid "Reparents to window specified by xid (X11)"
msgstr ""
#: zathura/main.c:14
8
#: zathura/main.c:14
6
msgid "Path to the config directory"
msgstr "المسار إلى دليل التكوين"
#: zathura/main.c:14
9
#: zathura/main.c:14
7
msgid "Path to the data directory"
msgstr "المسار إلى دليل البيانات"
#: zathura/main.c:1
50
#: zathura/main.c:1
48
msgid "Path to the cache directory"
msgstr "المسار إلى دليل ذاكرة التخزين المؤقت"
#: zathura/main.c:1
51
#: zathura/main.c:1
49
msgid "Path to the directories containing plugins"
msgstr "الطريق إلى الأدلة التي تحتوي على الإضافات"
#: zathura/main.c:15
2
#: zathura/main.c:15
0
msgid "Fork into the background"
msgstr ""
#: zathura/main.c:15
3
#: zathura/main.c:15
1
msgid "Document password"
msgstr "كلمة مرور المستند"
#: zathura/main.c:15
4
#: zathura/main.c:15
2
msgid "Page number to go to"
msgstr "الذهاب إلى رقم الصفحة "
#: zathura/main.c:15
5
#: zathura/main.c:15
3
msgid "Log level (debug, info, warning, error)"
msgstr "مستوى السجل (تصحيح ، معلومات ، تحذير ، خطأ)"
#: zathura/main.c:15
6
#: zathura/main.c:15
4
msgid "Print version information"
msgstr "طباعة معلومات إلاصدار "
#: zathura/main.c:15
8
#: zathura/main.c:15
5
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "محرر Synctex (تم إعادة توجيهه إلى أمر synctex)"
#: zathura/main.c:15
9
#: zathura/main.c:15
6
msgid "Move to given synctex position"
msgstr "الانتقال إلى موضع synctex المحدد"
#: zathura/main.c:1
60
#: zathura/main.c:1
57
msgid "Highlight given position in the given process"
msgstr "تمييز على موضع معين في عملية معينة"
#: zathura/main.c:1
62
#: zathura/main.c:1
58
msgid "Start in a non-default mode"
msgstr "البدء في وضع غير افتراضي"
...
...
@@ -687,7 +687,7 @@ msgstr "النمط غير موجود: %s"
msgid "This document does not contain any index"
msgstr "لا يحتوي هذا المستند على أي فهرس"
#: zathura/zathura.c:304 zathura/zathura.c:14
5
6
#: zathura/zathura.c:304 zathura/zathura.c:14
6
6
msgid "[No name]"
msgstr "[لا اسم]"
...
...
@@ -695,18 +695,18 @@ msgstr "[لا اسم]"
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "لا يمكن قراءة الملف من المصدر وكتابته إلى ملف مؤقت."
#: zathura/zathura.c:8
47
#: zathura/zathura.c:8
51
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "تعذرت قراءة الملف من GIO ونسخه إلى ملف مؤقت."
#: zathura/zathura.c:9
36
#: zathura/zathura.c:9
40
msgid "Enter password:"
msgstr "أدخل كلمة المرور:"
#: zathura/zathura.c:97
1
#: zathura/zathura.c:97
9
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "نوع ملف غير مدعوم. الرجاء تثبيت المكون الإضافي اللازم."
#: zathura/zathura.c:98
1
#: zathura/zathura.c:98
9
msgid "Document does not contain any pages"
msgstr "لا يحتوي المستند على أي صفحات"
po/ca.po
View file @
67818f90
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 20
19-09-06 22:48+02
00\n"
"POT-Creation-Date: 20
20-01-06 10:17+01
00\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher <sebastian+dev@ramacher.at>\n"
"Language-Team: Catalan (http://www.transifex.com/pwmt/zathura/language/ca/)\n"
...
...
@@ -590,59 +590,59 @@ msgstr "Enllaç: %s"
msgid "Link: Invalid"
msgstr "Enllaç: Invàlid"
#: zathura/main.c:14
7
#: zathura/main.c:14
5
msgid "Reparents to window specified by xid (X11)"
msgstr "Reassigna a la finestra especificada per xid (X11)"
#: zathura/main.c:14
8
#: zathura/main.c:14
6
msgid "Path to the config directory"
msgstr "Ruta al directori de configuració"
#: zathura/main.c:14
9
#: zathura/main.c:14
7
msgid "Path to the data directory"
msgstr "Camí al directori de dades"
#: zathura/main.c:1
50
#: zathura/main.c:1
48
msgid "Path to the cache directory"
msgstr ""
#: zathura/main.c:1
51
#: zathura/main.c:1
49
msgid "Path to the directories containing plugins"
msgstr "Camí al directori que conté els plugins"
#: zathura/main.c:15
2
#: zathura/main.c:15
0
msgid "Fork into the background"
msgstr "Bifurca en segon pla"
#: zathura/main.c:15
3
#: zathura/main.c:15
1
msgid "Document password"
msgstr "Contrasenya del document"
#: zathura/main.c:15
4
#: zathura/main.c:15
2
msgid "Page number to go to"
msgstr ""
#: zathura/main.c:15
5
#: zathura/main.c:15
3
msgid "Log level (debug, info, warning, error)"
msgstr "Nivell de registre (depuració, informació, advertiments, errors)"
#: zathura/main.c:15
6
#: zathura/main.c:15
4
msgid "Print version information"
msgstr "Imprimeix informació sobre la versió"
#: zathura/main.c:15
8
#: zathura/main.c:15
5
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor synctex (reenviat a l'ordre synctex)"
#: zathura/main.c:15
9
#: zathura/main.c:15
6
msgid "Move to given synctex position"
msgstr ""
#: zathura/main.c:1
60
#: zathura/main.c:1
57
msgid "Highlight given position in the given process"
msgstr ""
#: zathura/main.c:1
62
#: zathura/main.c:1
58
msgid "Start in a non-default mode"
msgstr ""
...
...
@@ -683,7 +683,7 @@ msgstr ""
msgid "This document does not contain any index"
msgstr "Aquest document no conté cap índex"
#: zathura/zathura.c:304 zathura/zathura.c:14
5
6
#: zathura/zathura.c:304 zathura/zathura.c:14
6
6
msgid "[No name]"
msgstr "[Sense nom]"
...
...
@@ -691,18 +691,18 @@ msgstr "[Sense nom]"
msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
#: zathura/zathura.c:8
47
#: zathura/zathura.c:8
51
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
#: zathura/zathura.c:9
36
#: zathura/zathura.c:9
40
msgid "Enter password:"
msgstr ""
#: zathura/zathura.c:97
1
#: zathura/zathura.c:97
9
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
#: zathura/zathura.c:98
1
#: zathura/zathura.c:98
9
msgid "Document does not contain any pages"
msgstr ""
po/cs.po
View file @
67818f90
...
...
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 20
19-09-06 22:48+02
00\n"
"POT-Creation-Date: 20
20-01-06 10:17+01
00\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher <sebastian+dev@ramacher.at>\n"
"Language-Team: Czech (http://www.transifex.com/pwmt/zathura/language/cs/)\n"
...
...
@@ -594,59 +594,59 @@ msgstr "Odkaz: %s"
msgid "Link: Invalid"
msgstr "Odkaz: Neplatný"
#: zathura/main.c:14
7
#: zathura/main.c:14
5
msgid "Reparents to window specified by xid (X11)"
msgstr "Propojí s oknem udaným xid (X11)"
#: zathura/main.c:14
8
#: zathura/main.c:14
6
msgid "Path to the config directory"
msgstr "Cesta k adresáři se souborem s nastavením"
#: zathura/main.c:14
9
#: zathura/main.c:14
7
msgid "Path to the data directory"
msgstr "Cesta k adresáři s daty"
#: zathura/main.c:1
50
#: zathura/main.c:1
48
msgid "Path to the cache directory"
msgstr "Cesta k adresáři s vyrovnávací pamětí"
#: zathura/main.c:1
51
#: zathura/main.c:1
49
msgid "Path to the directories containing plugins"
msgstr "Cesta k adresářům s přídavnými moduly"
#: zathura/main.c:15
2
#: zathura/main.c:15
0
msgid "Fork into the background"
msgstr "Forknout se na pozadí"
#: zathura/main.c:15
3
#: zathura/main.c:15
1
msgid "Document password"
msgstr "Heslo k dokumentu"
#: zathura/main.c:15
4
#: zathura/main.c:15
2
msgid "Page number to go to"
msgstr "Číslo strany, na kterou jít"
#: zathura/main.c:15
5
#: zathura/main.c:15
3
msgid "Log level (debug, info, warning, error)"
msgstr "Úroveň logování (debug, info, warning, error)"
#: zathura/main.c:15
6
#: zathura/main.c:15
4
msgid "Print version information"
msgstr "Zobrazit údaje o verzi"
#: zathura/main.c:15
8
#: zathura/main.c:15
5
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Editor Synctex (předáno příkazu synctex)"
#: zathura/main.c:15
9
#: zathura/main.c:15
6
msgid "Move to given synctex position"
msgstr "Přesunout se na udanou polohu synctex"
#: zathura/main.c:1
60
#: zathura/main.c:1
57
msgid "Highlight given position in the given process"
msgstr "Zvýraznit zadanou polohu v daném procesu"
#: zathura/main.c:1
62
#: zathura/main.c:1
58
msgid "Start in a non-default mode"
msgstr "Spustit v ne-výchozím režimu"
...
...
@@ -687,7 +687,7 @@ msgstr "Vzor nenalezen: %s"
msgid "This document does not contain any index"
msgstr "Tento dokument neobsahuje žádný rejstřík"
#: zathura/zathura.c:304 zathura/zathura.c:14
5
6
#: zathura/zathura.c:304 zathura/zathura.c:14
6
6
msgid "[No name]"
msgstr "[Nepojmenovaný]"
...
...
@@ -696,20 +696,20 @@ msgid "Could not read file from stdin and write it to a temporary file."
msgstr ""
"Nepodařilo se přečíst soubor z stdin a zapsat jej do dočasného souboru."
#: zathura/zathura.c:8
47
#: zathura/zathura.c:8
51
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr ""
"Nepodařilo se přečíst soubor z GIO a zkopírovat jej do dočasného souboru."
#: zathura/zathura.c:9
36
#: zathura/zathura.c:9
40
msgid "Enter password:"
msgstr "Zadat heslo:"
#: zathura/zathura.c:97
1
#: zathura/zathura.c:97
9
msgid "Unsupported file type. Please install the necessary plugin."
msgstr ""
"Nepodporovaný typ souboru. Nainstalujte, prosím, nezbytný přídavný modul."
#: zathura/zathura.c:98
1
#: zathura/zathura.c:98
9
msgid "Document does not contain any pages"
msgstr "Dokument neobsahuje žádné strany"
po/de.po
View file @
67818f90
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 20
19-09-06 22:48+02
00\n"
"POT-Creation-Date: 20
20-01-06 10:17+01
00\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"
"Last-Translator: Sebastian Ramacher <sebastian+dev@ramacher.at>\n"
"Language-Team: German (http://www.transifex.com/pwmt/zathura/language/de/)\n"
...
...
@@ -598,59 +598,59 @@ msgstr "Verknüpfung: %s"
msgid "Link: Invalid"
msgstr "Verknüpfung: ungültig"
#: zathura/main.c:14
7
#: zathura/main.c:14
5
msgid "Reparents to window specified by xid (X11)"
msgstr "Reparentiert zathura an das Fenster mit der xid (X11)"
#: zathura/main.c:14
8
#: zathura/main.c:14
6
msgid "Path to the config directory"
msgstr "Pfad zum Konfigurationsverzeichnis"
#: zathura/main.c:14
9
#: zathura/main.c:14
7
msgid "Path to the data directory"
msgstr "Pfad zum Datenverzeichnis"
#: zathura/main.c:1
50
#: zathura/main.c:1
48
msgid "Path to the cache directory"
msgstr "Pfad zum Cacheverzeichnis"
#: zathura/main.c:1
51
#: zathura/main.c:1
49
msgid "Path to the directories containing plugins"
msgstr "Pfad zum Pluginverzeichnis"
#: zathura/main.c:15
2
#: zathura/main.c:15
0
msgid "Fork into the background"
msgstr "Forkt den Prozess in den Hintergrund"
#: zathura/main.c:15
3
#: zathura/main.c:15
1
msgid "Document password"
msgstr "Dokument Passwort"
#: zathura/main.c:15
4
#: zathura/main.c:15
2
msgid "Page number to go to"
msgstr "Zur Seite springen"
#: zathura/main.c:15
5
#: zathura/main.c:15
3
msgid "Log level (debug, info, warning, error)"
msgstr "Log-Stufe (debug, info, warning, error)"
#: zathura/main.c:15
6
#: zathura/main.c:15
4
msgid "Print version information"
msgstr "Zeige Versionsinformationen an"
#: zathura/main.c:15
8
#: zathura/main.c:15
5
msgid "Synctex editor (forwarded to the synctex command)"
msgstr "Synctex Editor (wird an synctex weitergeleitet)"
#: zathura/main.c:15
9
#: zathura/main.c:15
6
msgid "Move to given synctex position"
msgstr "Zur gewählten SyncTeX-Position springen"
#: zathura/main.c:1
60
#: zathura/main.c:1
57
msgid "Highlight given position in the given process"
msgstr "Gewählte Position im Prozess hervorheben"
#: zathura/main.c:1
62
#: zathura/main.c:1
58
msgid "Start in a non-default mode"
msgstr "In einem Nicht-Standardmodus starten"
...
...
@@ -691,7 +691,7 @@ msgstr "Suchausdruck nicht gefunden: %s"
msgid "This document does not contain any index"
msgstr "Dieses Dokument beinhaltet kein Inhaltsverzeichnis"
#: zathura/zathura.c:304 zathura/zathura.c:14
5
6
#: zathura/zathura.c:304 zathura/zathura.c:14
6
6
msgid "[No name]"
msgstr "[Kein Name]"
...
...
@@ -699,18 +699,18 @@ msgstr "[Kein Name]"
msgid "Could not read file from stdin and write it to a temporary file."
msgstr "Konnte Datei nicht von stdin lesen und in temporäre Datei schreiben."
#: zathura/zathura.c:8
47
#: zathura/zathura.c:8
51
msgid "Could not read file from GIO and copy it to a temporary file."
msgstr "Konnte Datei nicht mittels GIO in temporäre Datei kopieren."
#: zathura/zathura.c:9
36
#: zathura/zathura.c:9
40
msgid "Enter password:"
msgstr "Passwort:"
#: zathura/zathura.c:97
1
#: zathura/zathura.c:97
9
msgid "Unsupported file type. Please install the necessary plugin."
msgstr "Dateityp ist nicht unterstützt. Installiere das benötigete Plugin."
#: zathura/zathura.c:98
1
#: zathura/zathura.c:98
9
msgid "Document does not contain any pages"
msgstr "Dieses Dokument beinhaltet keine Seiten"
po/el.po
View file @
67818f90
...
...
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: zathura\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 20
19-09-06 22:48+02
00\n"
"POT-Creation-Date: 20
20-01-06 10:17+01
00\n"
"PO-Revision-Date: 2019-08-11 19:46+0000\n"